From f5b54e5643ec758465a49d27aeeb0d0e325bd629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Mah=C3=A9?= Date: Mon, 8 Aug 2022 16:20:56 -0700 Subject: [PATCH 01/23] Update guava example to 31.1 --- script/parse-examples | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/parse-examples b/script/parse-examples index ec8b0d9f9..51a536cf7 100755 --- a/script/parse-examples +++ b/script/parse-examples @@ -26,7 +26,7 @@ function clone_repo { } clone_repo elastic elasticsearch 4d62640bf116af7e825d89c7319a39c3f2f325b4 -clone_repo google guava e24fddc5fff7fd36d33ea38737b6606a7e476845 +clone_repo google guava v31.1 clone_repo ReactiveX RxJava 8a6bf14fc9a61f7c1c0016ca217be02ca86211d2 known_failures="$(cat script/known-failures.txt)" From 21a6d62ff0ab3c81c1761b719ca19131d3ddf034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Mah=C3=A9?= Date: Mon, 8 Aug 2022 16:22:31 -0700 Subject: [PATCH 02/23] Add support for annotations in array creation After upgrading guava, parsing started to fail on the following pattern: ```java String[] allMyStrings = new @Nullable String[5]; ``` This changes addresses that problem --- grammar.js | 1 + src/grammar.json | 7 + src/node-types.json | 14 + src/parser.c | 42542 +++++++++++++++++----------------- src/tree_sitter/parser.h | 1 + test/corpus/expressions.txt | 22 + 6 files changed, 21653 insertions(+), 20934 deletions(-) diff --git a/grammar.js b/grammar.js index 7ce644537..694c6b4f2 100644 --- a/grammar.js +++ b/grammar.js @@ -289,6 +289,7 @@ module.exports = grammar({ array_creation_expression: $ => prec.right(seq( 'new', + repeat($._annotation), field('type', $._simple_type), choice( seq( diff --git a/src/grammar.json b/src/grammar.json index b2b718c51..eb25cbe25 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2376,6 +2376,13 @@ "type": "STRING", "value": "new" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_annotation" + } + }, { "type": "FIELD", "name": "type", diff --git a/src/node-types.json b/src/node-types.json index f773c889f..0b24883d5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -673,6 +673,20 @@ } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "marker_annotation", + "named": true + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index 883f1ce39..8a790c09d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1147 +#define STATE_COUNT 1167 #define LARGE_STATE_COUNT 299 #define SYMBOL_COUNT 291 #define ALIAS_COUNT 1 @@ -14,7 +14,7 @@ #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 220 +#define PRODUCTION_ID_COUNT 226 enum { sym_identifier = 1, @@ -278,7 +278,7 @@ enum { aux_sym_cast_expression_repeat1 = 259, aux_sym_inferred_parameters_repeat1 = 260, aux_sym_array_creation_expression_repeat1 = 261, - aux_sym_dimensions_expr_repeat1 = 262, + aux_sym_array_creation_expression_repeat2 = 262, aux_sym_argument_list_repeat1 = 263, aux_sym_type_arguments_repeat1 = 264, aux_sym_dimensions_repeat1 = 265, @@ -573,7 +573,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_cast_expression_repeat1] = "cast_expression_repeat1", [aux_sym_inferred_parameters_repeat1] = "inferred_parameters_repeat1", [aux_sym_array_creation_expression_repeat1] = "array_creation_expression_repeat1", - [aux_sym_dimensions_expr_repeat1] = "dimensions_expr_repeat1", + [aux_sym_array_creation_expression_repeat2] = "array_creation_expression_repeat2", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", [aux_sym_dimensions_repeat1] = "dimensions_repeat1", @@ -868,7 +868,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_cast_expression_repeat1] = aux_sym_cast_expression_repeat1, [aux_sym_inferred_parameters_repeat1] = aux_sym_inferred_parameters_repeat1, [aux_sym_array_creation_expression_repeat1] = aux_sym_array_creation_expression_repeat1, - [aux_sym_dimensions_expr_repeat1] = aux_sym_dimensions_expr_repeat1, + [aux_sym_array_creation_expression_repeat2] = aux_sym_array_creation_expression_repeat2, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, [aux_sym_dimensions_repeat1] = aux_sym_dimensions_repeat1, @@ -1957,7 +1957,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_dimensions_expr_repeat1] = { + [aux_sym_array_creation_expression_repeat2] = { .visible = false, .named = false, }, @@ -2207,170 +2207,176 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [49] = {.index = 62, .length = 3}, [50] = {.index = 65, .length = 3}, [51] = {.index = 65, .length = 3}, - [52] = {.index = 68, .length = 3}, - [53] = {.index = 71, .length = 3}, - [54] = {.index = 74, .length = 3}, - [55] = {.index = 77, .length = 3}, - [56] = {.index = 80, .length = 2}, - [57] = {.index = 80, .length = 2}, + [52] = {.index = 68, .length = 2}, + [53] = {.index = 68, .length = 2}, + [54] = {.index = 70, .length = 3}, + [55] = {.index = 73, .length = 3}, + [56] = {.index = 76, .length = 3}, + [57] = {.index = 79, .length = 3}, [58] = {.index = 82, .length = 2}, [59] = {.index = 82, .length = 2}, + [60] = {.index = 84, .length = 2}, [61] = {.index = 84, .length = 2}, - [62] = {.index = 86, .length = 3}, - [63] = {.index = 86, .length = 3}, - [65] = {.index = 89, .length = 2}, - [66] = {.index = 91, .length = 2}, - [67] = {.index = 93, .length = 1}, - [68] = {.index = 94, .length = 2}, - [69] = {.index = 96, .length = 3}, - [71] = {.index = 99, .length = 3}, - [73] = {.index = 102, .length = 2}, - [74] = {.index = 104, .length = 4}, - [75] = {.index = 108, .length = 4}, - [76] = {.index = 112, .length = 5}, - [77] = {.index = 117, .length = 6}, - [78] = {.index = 123, .length = 4}, - [79] = {.index = 127, .length = 4}, - [80] = {.index = 131, .length = 4}, - [81] = {.index = 135, .length = 4}, - [82] = {.index = 139, .length = 4}, - [83] = {.index = 143, .length = 4}, - [84] = {.index = 147, .length = 2}, - [85] = {.index = 149, .length = 3}, - [86] = {.index = 152, .length = 1}, - [87] = {.index = 153, .length = 2}, - [88] = {.index = 155, .length = 1}, - [89] = {.index = 156, .length = 2}, - [90] = {.index = 158, .length = 3}, - [91] = {.index = 161, .length = 3}, - [92] = {.index = 164, .length = 2}, - [93] = {.index = 164, .length = 2}, - [94] = {.index = 166, .length = 4}, - [95] = {.index = 166, .length = 4}, - [96] = {.index = 170, .length = 3}, - [97] = {.index = 173, .length = 3}, - [98] = {.index = 176, .length = 3}, - [99] = {.index = 179, .length = 3}, - [100] = {.index = 182, .length = 3}, - [101] = {.index = 185, .length = 2}, - [102] = {.index = 187, .length = 2}, - [103] = {.index = 187, .length = 2}, - [104] = {.index = 189, .length = 4}, - [105] = {.index = 193, .length = 5}, - [106] = {.index = 198, .length = 6}, - [107] = {.index = 204, .length = 3}, - [108] = {.index = 207, .length = 5}, - [109] = {.index = 212, .length = 4}, - [110] = {.index = 102, .length = 2}, - [111] = {.index = 216, .length = 5}, - [112] = {.index = 221, .length = 5}, - [113] = {.index = 226, .length = 5}, - [114] = {.index = 231, .length = 5}, - [115] = {.index = 236, .length = 4}, - [116] = {.index = 240, .length = 2}, - [117] = {.index = 242, .length = 1}, - [118] = {.index = 243, .length = 2}, - [119] = {.index = 245, .length = 2}, - [120] = {.index = 247, .length = 1}, - [121] = {.index = 247, .length = 1}, + [63] = {.index = 86, .length = 2}, + [64] = {.index = 88, .length = 3}, + [65] = {.index = 88, .length = 3}, + [67] = {.index = 91, .length = 2}, + [68] = {.index = 93, .length = 2}, + [69] = {.index = 95, .length = 1}, + [70] = {.index = 96, .length = 2}, + [71] = {.index = 98, .length = 3}, + [73] = {.index = 101, .length = 3}, + [74] = {.index = 104, .length = 3}, + [75] = {.index = 107, .length = 3}, + [76] = {.index = 104, .length = 3}, + [77] = {.index = 107, .length = 3}, + [79] = {.index = 110, .length = 2}, + [80] = {.index = 112, .length = 4}, + [81] = {.index = 116, .length = 4}, + [82] = {.index = 120, .length = 5}, + [83] = {.index = 125, .length = 6}, + [84] = {.index = 131, .length = 4}, + [85] = {.index = 135, .length = 4}, + [86] = {.index = 139, .length = 4}, + [87] = {.index = 143, .length = 4}, + [88] = {.index = 147, .length = 4}, + [89] = {.index = 151, .length = 4}, + [90] = {.index = 155, .length = 2}, + [91] = {.index = 157, .length = 3}, + [92] = {.index = 160, .length = 1}, + [93] = {.index = 161, .length = 2}, + [94] = {.index = 163, .length = 1}, + [95] = {.index = 164, .length = 2}, + [96] = {.index = 166, .length = 3}, + [97] = {.index = 169, .length = 3}, + [98] = {.index = 172, .length = 2}, + [99] = {.index = 172, .length = 2}, + [100] = {.index = 174, .length = 4}, + [101] = {.index = 174, .length = 4}, + [102] = {.index = 178, .length = 3}, + [103] = {.index = 181, .length = 3}, + [104] = {.index = 184, .length = 3}, + [105] = {.index = 187, .length = 3}, + [106] = {.index = 190, .length = 3}, + [107] = {.index = 193, .length = 2}, + [108] = {.index = 195, .length = 2}, + [109] = {.index = 195, .length = 2}, + [110] = {.index = 197, .length = 4}, + [111] = {.index = 201, .length = 5}, + [112] = {.index = 206, .length = 6}, + [113] = {.index = 212, .length = 3}, + [114] = {.index = 215, .length = 5}, + [115] = {.index = 220, .length = 4}, + [116] = {.index = 110, .length = 2}, + [117] = {.index = 224, .length = 5}, + [118] = {.index = 229, .length = 5}, + [119] = {.index = 234, .length = 5}, + [120] = {.index = 239, .length = 5}, + [121] = {.index = 244, .length = 4}, [122] = {.index = 248, .length = 2}, [123] = {.index = 250, .length = 1}, - [124] = {.index = 250, .length = 1}, - [125] = {.index = 54, .length = 1}, - [126] = {.index = 251, .length = 3}, - [127] = {.index = 254, .length = 4}, - [128] = {.index = 258, .length = 3}, - [129] = {.index = 258, .length = 3}, - [130] = {.index = 261, .length = 4}, - [131] = {.index = 265, .length = 4}, - [132] = {.index = 269, .length = 4}, - [133] = {.index = 273, .length = 4}, - [134] = {.index = 277, .length = 4}, - [135] = {.index = 281, .length = 4}, - [136] = {.index = 285, .length = 3}, - [137] = {.index = 288, .length = 3}, - [138] = {.index = 291, .length = 3}, - [139] = {.index = 294, .length = 4}, - [140] = {.index = 298, .length = 5}, - [141] = {.index = 303, .length = 3}, - [142] = {.index = 303, .length = 3}, - [143] = {.index = 306, .length = 6}, - [144] = {.index = 312, .length = 4}, - [145] = {.index = 316, .length = 1}, - [146] = {.index = 317, .length = 2}, - [147] = {.index = 319, .length = 2}, - [148] = {.index = 321, .length = 1}, - [149] = {.index = 322, .length = 2}, - [150] = {.index = 324, .length = 2}, - [151] = {.index = 326, .length = 2}, - [152] = {.index = 328, .length = 3}, - [153] = {.index = 331, .length = 3}, - [154] = {.index = 334, .length = 2}, - [155] = {.index = 334, .length = 2}, - [156] = {.index = 336, .length = 3}, - [157] = {.index = 339, .length = 4}, - [158] = {.index = 339, .length = 4}, - [159] = {.index = 343, .length = 5}, - [160] = {.index = 348, .length = 5}, - [161] = {.index = 353, .length = 5}, - [162] = {.index = 358, .length = 5}, - [163] = {.index = 363, .length = 4}, - [164] = {.index = 367, .length = 3}, - [165] = {.index = 370, .length = 2}, - [166] = {.index = 372, .length = 3}, - [167] = {.index = 375, .length = 3}, - [168] = {.index = 378, .length = 3}, - [169] = {.index = 381, .length = 3}, - [170] = {.index = 384, .length = 3}, - [171] = {.index = 387, .length = 5}, - [172] = {.index = 392, .length = 4}, - [173] = {.index = 396, .length = 4}, - [174] = {.index = 400, .length = 2}, - [175] = {.index = 400, .length = 2}, - [176] = {.index = 400, .length = 2}, - [177] = {.index = 400, .length = 2}, - [178] = {.index = 402, .length = 1}, - [179] = {.index = 402, .length = 1}, - [180] = {.index = 402, .length = 1}, - [181] = {.index = 402, .length = 1}, - [182] = {.index = 403, .length = 2}, - [183] = {.index = 405, .length = 6}, - [184] = {.index = 411, .length = 3}, - [185] = {.index = 414, .length = 4}, - [186] = {.index = 418, .length = 4}, - [187] = {.index = 422, .length = 4}, - [188] = {.index = 426, .length = 4}, - [189] = {.index = 430, .length = 4}, - [190] = {.index = 434, .length = 5}, - [191] = {.index = 439, .length = 5}, - [192] = {.index = 444, .length = 1}, - [193] = {.index = 444, .length = 1}, - [194] = {.index = 445, .length = 3}, - [195] = {.index = 448, .length = 2}, - [196] = {.index = 445, .length = 3}, - [197] = {.index = 445, .length = 3}, - [198] = {.index = 445, .length = 3}, - [199] = {.index = 450, .length = 1}, - [200] = {.index = 450, .length = 1}, - [201] = {.index = 451, .length = 2}, - [202] = {.index = 453, .length = 2}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 451, .length = 2}, - [205] = {.index = 451, .length = 2}, - [206] = {.index = 455, .length = 2}, - [207] = {.index = 457, .length = 1}, - [208] = {.index = 458, .length = 3}, - [209] = {.index = 461, .length = 3}, - [210] = {.index = 464, .length = 3}, - [211] = {.index = 467, .length = 5}, - [212] = {.index = 472, .length = 5}, - [213] = {.index = 477, .length = 5}, - [214] = {.index = 482, .length = 3}, - [215] = {.index = 485, .length = 3}, - [216] = {.index = 488, .length = 4}, - [217] = {.index = 492, .length = 4}, - [218] = {.index = 496, .length = 6}, - [219] = {.index = 502, .length = 4}, + [124] = {.index = 251, .length = 2}, + [125] = {.index = 253, .length = 2}, + [126] = {.index = 255, .length = 1}, + [127] = {.index = 255, .length = 1}, + [128] = {.index = 256, .length = 2}, + [129] = {.index = 258, .length = 1}, + [130] = {.index = 258, .length = 1}, + [131] = {.index = 54, .length = 1}, + [132] = {.index = 259, .length = 3}, + [133] = {.index = 262, .length = 4}, + [134] = {.index = 266, .length = 3}, + [135] = {.index = 266, .length = 3}, + [136] = {.index = 269, .length = 4}, + [137] = {.index = 273, .length = 4}, + [138] = {.index = 277, .length = 4}, + [139] = {.index = 281, .length = 4}, + [140] = {.index = 285, .length = 4}, + [141] = {.index = 289, .length = 4}, + [142] = {.index = 293, .length = 3}, + [143] = {.index = 296, .length = 3}, + [144] = {.index = 299, .length = 3}, + [145] = {.index = 302, .length = 4}, + [146] = {.index = 306, .length = 5}, + [147] = {.index = 311, .length = 3}, + [148] = {.index = 311, .length = 3}, + [149] = {.index = 314, .length = 6}, + [150] = {.index = 320, .length = 4}, + [151] = {.index = 324, .length = 1}, + [152] = {.index = 325, .length = 2}, + [153] = {.index = 327, .length = 2}, + [154] = {.index = 329, .length = 1}, + [155] = {.index = 330, .length = 2}, + [156] = {.index = 332, .length = 2}, + [157] = {.index = 334, .length = 2}, + [158] = {.index = 336, .length = 3}, + [159] = {.index = 339, .length = 3}, + [160] = {.index = 342, .length = 2}, + [161] = {.index = 342, .length = 2}, + [162] = {.index = 344, .length = 3}, + [163] = {.index = 347, .length = 4}, + [164] = {.index = 347, .length = 4}, + [165] = {.index = 351, .length = 5}, + [166] = {.index = 356, .length = 5}, + [167] = {.index = 361, .length = 5}, + [168] = {.index = 366, .length = 5}, + [169] = {.index = 371, .length = 4}, + [170] = {.index = 375, .length = 3}, + [171] = {.index = 378, .length = 2}, + [172] = {.index = 380, .length = 3}, + [173] = {.index = 383, .length = 3}, + [174] = {.index = 386, .length = 3}, + [175] = {.index = 389, .length = 3}, + [176] = {.index = 392, .length = 3}, + [177] = {.index = 395, .length = 5}, + [178] = {.index = 400, .length = 4}, + [179] = {.index = 404, .length = 4}, + [180] = {.index = 408, .length = 2}, + [181] = {.index = 408, .length = 2}, + [182] = {.index = 408, .length = 2}, + [183] = {.index = 408, .length = 2}, + [184] = {.index = 410, .length = 1}, + [185] = {.index = 410, .length = 1}, + [186] = {.index = 410, .length = 1}, + [187] = {.index = 410, .length = 1}, + [188] = {.index = 411, .length = 2}, + [189] = {.index = 413, .length = 6}, + [190] = {.index = 419, .length = 3}, + [191] = {.index = 422, .length = 4}, + [192] = {.index = 426, .length = 4}, + [193] = {.index = 430, .length = 4}, + [194] = {.index = 434, .length = 4}, + [195] = {.index = 438, .length = 4}, + [196] = {.index = 442, .length = 5}, + [197] = {.index = 447, .length = 5}, + [198] = {.index = 452, .length = 1}, + [199] = {.index = 452, .length = 1}, + [200] = {.index = 453, .length = 3}, + [201] = {.index = 456, .length = 2}, + [202] = {.index = 453, .length = 3}, + [203] = {.index = 453, .length = 3}, + [204] = {.index = 453, .length = 3}, + [205] = {.index = 458, .length = 1}, + [206] = {.index = 458, .length = 1}, + [207] = {.index = 459, .length = 2}, + [208] = {.index = 461, .length = 2}, + [209] = {.index = 459, .length = 2}, + [210] = {.index = 459, .length = 2}, + [211] = {.index = 459, .length = 2}, + [212] = {.index = 463, .length = 2}, + [213] = {.index = 465, .length = 1}, + [214] = {.index = 466, .length = 3}, + [215] = {.index = 469, .length = 3}, + [216] = {.index = 472, .length = 3}, + [217] = {.index = 475, .length = 5}, + [218] = {.index = 480, .length = 5}, + [219] = {.index = 485, .length = 5}, + [220] = {.index = 490, .length = 3}, + [221] = {.index = 493, .length = 3}, + [222] = {.index = 496, .length = 4}, + [223] = {.index = 500, .length = 4}, + [224] = {.index = 504, .length = 6}, + [225] = {.index = 510, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2476,575 +2482,586 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 2}, {field_type_arguments, 1}, [68] = + {field_dimensions, 3}, + {field_type, 2}, + [70] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [71] = + [73] = {field_body, 3}, {field_name, 1}, {field_superclass, 2}, - [74] = + [76] = {field_body, 3}, {field_interfaces, 2}, {field_name, 1}, - [77] = + [79] = {field_body, 3}, {field_name, 1}, {field_permits, 2}, - [80] = + [82] = {field_name, 2}, {field_scope, 0}, - [82] = + [84] = {field_body, 3}, {field_name, 2}, - [84] = + [86] = {field_body, 3}, {field_name, 1}, - [86] = + [88] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [89] = + [91] = {field_array, 0}, {field_index, 2}, - [91] = + [93] = {field_declarator, 2, .inherited = true}, {field_type, 1}, - [93] = + [95] = {field_declarator, 1}, - [94] = + [96] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [96] = + [98] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_value, 2}, - [99] = + [101] = {field_type, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [102] = + [104] = + {field_dimensions, 3}, + {field_type, 2}, + {field_value, 4}, + [107] = + {field_dimensions, 3}, + {field_dimensions, 4}, + {field_type, 2}, + [110] = {field_name, 0}, {field_parameters, 1}, - [104] = + [112] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [108] = + [116] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0}, - [112] = + [120] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [117] = + [125] = {field_body, 1}, {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [123] = + [131] = {field_body, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [127] = + [135] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_type_parameters, 2}, - [131] = + [139] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_type_parameters, 2}, - [135] = + [143] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_superclass, 2}, - [139] = + [147] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_superclass, 2}, - [143] = + [151] = {field_body, 4}, {field_interfaces, 2}, {field_name, 1}, {field_permits, 3}, - [147] = + [155] = {field_body, 1}, {field_condition, 3}, - [149] = + [157] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [152] = + [160] = {field_init, 1}, - [153] = + [161] = {field_init, 0, .inherited = true}, {field_init, 1, .inherited = true}, - [155] = + [163] = {field_modifiers, 0}, - [156] = + [164] = {field_body, 1}, {field_name, 0}, - [158] = + [166] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [161] = + [169] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, - [164] = + [172] = {field_field, 4}, {field_object, 0}, - [166] = + [174] = {field_arguments, 4}, {field_name, 3}, {field_object, 0}, {field_type_arguments, 2}, - [170] = + [178] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [173] = + [181] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [176] = + [184] = {field_body, 4}, {field_name, 2}, {field_superclass, 3}, - [179] = + [187] = {field_body, 4}, {field_interfaces, 3}, {field_name, 2}, - [182] = + [190] = {field_body, 4}, {field_name, 2}, {field_permits, 3}, - [185] = + [193] = {field_body, 4}, {field_name, 2}, - [187] = + [195] = {field_body, 4}, {field_name, 3}, - [189] = + [197] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [193] = + [201] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [198] = + [206] = {field_body, 2}, {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [204] = + [212] = {field_name, 1}, {field_parameters, 2}, {field_type_parameters, 0}, - [207] = + [215] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1}, {field_type_parameters, 0}, - [212] = + [220] = {field_body, 2}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [216] = + [224] = {field_body, 5}, {field_interfaces, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [221] = + [229] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_superclass, 3}, {field_type_parameters, 2}, - [226] = + [234] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [231] = + [239] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_superclass, 2}, - [236] = + [244] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 0}, {field_value, 3}, - [240] = + [248] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [242] = + [250] = {field_body, 5}, - [243] = + [251] = {field_body, 5}, {field_init, 2}, - [245] = + [253] = {field_key, 0}, {field_value, 2}, - [247] = + [255] = {field_module, 1}, - [248] = + [256] = {field_modifiers, 0, .inherited = true}, {field_modifiers, 1, .inherited = true}, - [250] = + [258] = {field_package, 1}, - [251] = + [259] = {field_arguments, 1}, {field_body, 2}, {field_name, 0}, - [254] = + [262] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [258] = + [266] = {field_arguments, 5}, {field_name, 4}, {field_object, 0}, - [261] = + [269] = {field_body, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [265] = + [273] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_type_parameters, 3}, - [269] = + [277] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_type_parameters, 3}, - [273] = + [281] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_superclass, 3}, - [277] = + [285] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_superclass, 3}, - [281] = + [289] = {field_body, 5}, {field_interfaces, 3}, {field_name, 2}, {field_permits, 4}, - [285] = + [293] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [288] = + [296] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, - [291] = + [299] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [294] = + [302] = {field_body, 3}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [298] = + [306] = {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_parameters, 3, .inherited = true}, {field_type, 2}, {field_type_parameters, 0}, - [303] = + [311] = {field_dimensions, 2}, {field_name, 0}, {field_parameters, 1}, - [306] = + [314] = {field_body, 6}, {field_interfaces, 4}, {field_name, 1}, {field_permits, 5}, {field_superclass, 3}, {field_type_parameters, 2}, - [312] = + [320] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 1}, {field_value, 4}, - [316] = + [324] = {field_body, 4}, - [317] = + [325] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, - [319] = + [327] = {field_body, 6}, {field_update, 4}, - [321] = + [329] = {field_update, 1}, - [322] = + [330] = {field_update, 0, .inherited = true}, {field_update, 1, .inherited = true}, - [324] = + [332] = {field_body, 6}, {field_condition, 3}, - [326] = + [334] = {field_body, 6}, {field_init, 2}, - [328] = + [336] = {field_body, 6}, {field_init, 2}, {field_update, 4}, - [331] = + [339] = {field_body, 6}, {field_condition, 3}, {field_init, 2}, - [334] = + [342] = {field_modifiers, 1, .inherited = true}, {field_module, 2}, - [336] = + [344] = {field_arguments, 2}, {field_body, 3}, {field_name, 1}, - [339] = + [347] = {field_arguments, 6}, {field_name, 5}, {field_object, 0}, {field_type_arguments, 4}, - [343] = + [351] = {field_body, 6}, {field_interfaces, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [348] = + [356] = {field_body, 6}, {field_name, 2}, {field_permits, 5}, {field_superclass, 4}, {field_type_parameters, 3}, - [353] = + [361] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_type_parameters, 3}, - [358] = + [366] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_superclass, 3}, - [363] = + [371] = {field_body, 6}, {field_name, 2}, {field_permits, 5}, {field_type_parameters, 3}, - [367] = + [375] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [370] = + [378] = {field_arguments, 1}, {field_constructor, 0}, - [372] = + [380] = {field_body, 7}, {field_update, 4}, {field_update, 5, .inherited = true}, - [375] = + [383] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [378] = + [386] = {field_body, 7}, {field_init, 2}, {field_update, 5}, - [381] = + [389] = {field_body, 7}, {field_condition, 4}, {field_init, 2}, - [384] = + [392] = {field_body, 7}, {field_init, 2}, {field_init, 3, .inherited = true}, - [387] = + [395] = {field_body, 7}, {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_type, 2}, {field_value, 5}, - [392] = + [400] = {field_body, 7}, {field_init, 2}, {field_update, 4}, {field_update, 5, .inherited = true}, - [396] = + [404] = {field_body, 7}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, - [400] = + [408] = {field_modules, 3}, {field_package, 1}, - [402] = + [410] = {field_provided, 1}, - [403] = + [411] = {field_name, 1}, {field_type, 0}, - [405] = + [413] = {field_body, 7}, {field_interfaces, 5}, {field_name, 2}, {field_permits, 6}, {field_superclass, 4}, {field_type_parameters, 3}, - [411] = + [419] = {field_arguments, 2}, {field_constructor, 1}, {field_type_arguments, 0}, - [414] = + [422] = {field_body, 8}, {field_condition, 3}, {field_update, 5}, {field_update, 6, .inherited = true}, - [418] = + [426] = {field_body, 8}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [422] = + [430] = {field_body, 8}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, - [426] = + [434] = {field_body, 8}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, - [430] = + [438] = {field_body, 8}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, - [434] = + [442] = {field_body, 8}, {field_dimensions, 4, .inherited = true}, {field_name, 4, .inherited = true}, {field_type, 3}, {field_value, 6}, - [439] = + [447] = {field_body, 8}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [444] = + [452] = {field_modules, 1}, - [445] = + [453] = {field_modules, 3}, {field_modules, 4, .inherited = true}, {field_package, 1}, - [448] = + [456] = {field_modules, 0, .inherited = true}, {field_modules, 1, .inherited = true}, - [450] = + [458] = {field_provider, 1}, - [451] = + [459] = {field_provided, 1}, {field_provider, 4, .inherited = true}, - [453] = + [461] = {field_provider, 0, .inherited = true}, {field_provider, 1, .inherited = true}, - [455] = + [463] = {field_name, 2}, {field_type, 1}, - [457] = + [465] = {field_value, 1}, - [458] = + [466] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, - [461] = + [469] = {field_name, 1}, {field_type, 0}, {field_value, 4, .inherited = true}, - [464] = + [472] = {field_arguments, 3}, {field_constructor, 2}, {field_object, 0}, - [467] = + [475] = {field_body, 9}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, {field_update, 7, .inherited = true}, - [472] = + [480] = {field_body, 9}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, {field_update, 7, .inherited = true}, - [477] = + [485] = {field_body, 9}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, - [482] = + [490] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, - [485] = + [493] = {field_name, 2}, {field_type, 1}, {field_value, 5, .inherited = true}, - [488] = + [496] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, {field_value, 5, .inherited = true}, - [492] = + [500] = {field_arguments, 4}, {field_constructor, 3}, {field_object, 0}, {field_type_arguments, 2}, - [496] = + [504] = {field_body, 10}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, {field_update, 8, .inherited = true}, - [502] = + [510] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, @@ -3108,11 +3125,11 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [51] = { [2] = alias_sym_type_identifier, }, - [56] = { - [0] = sym_identifier, + [53] = { + [2] = alias_sym_type_identifier, }, [58] = { - [2] = sym_identifier, + [0] = sym_identifier, }, [60] = { [2] = sym_identifier, @@ -3121,92 +3138,101 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = sym_identifier, }, [64] = { + [2] = sym_identifier, + }, + [66] = { [0] = alias_sym_type_identifier, [3] = alias_sym_type_identifier, }, - [70] = { + [72] = { [3] = alias_sym_type_identifier, }, - [72] = { + [76] = { + [2] = alias_sym_type_identifier, + }, + [77] = { + [2] = alias_sym_type_identifier, + }, + [78] = { [1] = alias_sym_type_identifier, }, - [92] = { + [98] = { [4] = sym_identifier, }, - [94] = { + [100] = { [3] = sym_identifier, }, - [102] = { + [108] = { [3] = sym_identifier, }, - [110] = { + [116] = { [0] = sym_identifier, }, - [120] = { + [126] = { [1] = sym_identifier, }, - [123] = { + [129] = { [1] = sym_identifier, }, - [125] = { + [131] = { [1] = sym_identifier, }, - [128] = { + [134] = { [4] = sym_identifier, }, - [141] = { + [147] = { [0] = sym_identifier, }, - [154] = { + [160] = { [2] = sym_identifier, }, - [157] = { + [163] = { [5] = sym_identifier, }, - [174] = { + [180] = { [1] = sym_identifier, [3] = sym_identifier, }, - [175] = { + [181] = { [1] = sym_identifier, }, - [176] = { + [182] = { [3] = sym_identifier, }, - [178] = { + [184] = { [1] = sym_identifier, [3] = sym_identifier, }, - [179] = { + [185] = { [1] = sym_identifier, }, - [180] = { + [186] = { [3] = sym_identifier, }, - [192] = { + [198] = { [1] = sym_identifier, }, - [194] = { + [200] = { [1] = sym_identifier, [3] = sym_identifier, }, - [196] = { + [202] = { [1] = sym_identifier, }, - [197] = { + [203] = { [3] = sym_identifier, }, - [199] = { + [205] = { [1] = sym_identifier, }, - [201] = { + [207] = { [1] = sym_identifier, [3] = sym_identifier, }, - [203] = { + [209] = { [1] = sym_identifier, }, - [204] = { + [210] = { [3] = sym_identifier, }, }; @@ -6797,10 +6823,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [46] = {.lex_state = 59}, [47] = {.lex_state = 60}, [48] = {.lex_state = 60}, - [49] = {.lex_state = 60}, + [49] = {.lex_state = 59}, [50] = {.lex_state = 60}, [51] = {.lex_state = 60}, - [52] = {.lex_state = 59}, + [52] = {.lex_state = 60}, [53] = {.lex_state = 60}, [54] = {.lex_state = 4}, [55] = {.lex_state = 4}, @@ -6828,10 +6854,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 60}, [78] = {.lex_state = 60}, [79] = {.lex_state = 60}, - [80] = {.lex_state = 3}, + [80] = {.lex_state = 60}, [81] = {.lex_state = 60}, [82] = {.lex_state = 60}, - [83] = {.lex_state = 60}, + [83] = {.lex_state = 3}, [84] = {.lex_state = 60}, [85] = {.lex_state = 60}, [86] = {.lex_state = 60}, @@ -6852,11 +6878,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 60}, [102] = {.lex_state = 60}, [103] = {.lex_state = 60}, - [104] = {.lex_state = 60}, + [104] = {.lex_state = 3}, [105] = {.lex_state = 60}, [106] = {.lex_state = 60}, [107] = {.lex_state = 60}, - [108] = {.lex_state = 3}, + [108] = {.lex_state = 60}, [109] = {.lex_state = 60}, [110] = {.lex_state = 60}, [111] = {.lex_state = 60}, @@ -6866,11 +6892,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [115] = {.lex_state = 60}, [116] = {.lex_state = 60}, [117] = {.lex_state = 60}, - [118] = {.lex_state = 3}, + [118] = {.lex_state = 60}, [119] = {.lex_state = 60}, [120] = {.lex_state = 60}, [121] = {.lex_state = 60}, - [122] = {.lex_state = 60}, + [122] = {.lex_state = 3}, [123] = {.lex_state = 60}, [124] = {.lex_state = 60}, [125] = {.lex_state = 60}, @@ -6910,38 +6936,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [159] = {.lex_state = 60}, [160] = {.lex_state = 60}, [161] = {.lex_state = 60}, - [162] = {.lex_state = 60}, + [162] = {.lex_state = 3}, [163] = {.lex_state = 60}, [164] = {.lex_state = 60}, [165] = {.lex_state = 60}, [166] = {.lex_state = 60}, [167] = {.lex_state = 60}, - [168] = {.lex_state = 3}, + [168] = {.lex_state = 60}, [169] = {.lex_state = 60}, [170] = {.lex_state = 60}, [171] = {.lex_state = 60}, - [172] = {.lex_state = 60}, + [172] = {.lex_state = 3}, [173] = {.lex_state = 60}, [174] = {.lex_state = 60}, [175] = {.lex_state = 60}, [176] = {.lex_state = 60}, [177] = {.lex_state = 60}, [178] = {.lex_state = 60}, - [179] = {.lex_state = 60}, + [179] = {.lex_state = 3}, [180] = {.lex_state = 60}, [181] = {.lex_state = 60}, [182] = {.lex_state = 60}, - [183] = {.lex_state = 3}, + [183] = {.lex_state = 60}, [184] = {.lex_state = 60}, [185] = {.lex_state = 60}, [186] = {.lex_state = 60}, - [187] = {.lex_state = 3}, + [187] = {.lex_state = 60}, [188] = {.lex_state = 60}, [189] = {.lex_state = 60}, [190] = {.lex_state = 60}, [191] = {.lex_state = 60}, [192] = {.lex_state = 60}, - [193] = {.lex_state = 3}, + [193] = {.lex_state = 60}, [194] = {.lex_state = 60}, [195] = {.lex_state = 60}, [196] = {.lex_state = 60}, @@ -6950,7 +6976,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [199] = {.lex_state = 60}, [200] = {.lex_state = 60}, [201] = {.lex_state = 60}, - [202] = {.lex_state = 60}, + [202] = {.lex_state = 3}, [203] = {.lex_state = 60}, [204] = {.lex_state = 60}, [205] = {.lex_state = 60}, @@ -7020,7 +7046,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [269] = {.lex_state = 3}, [270] = {.lex_state = 3}, [271] = {.lex_state = 3}, - [272] = {.lex_state = 60}, + [272] = {.lex_state = 3}, [273] = {.lex_state = 3}, [274] = {.lex_state = 3}, [275] = {.lex_state = 3}, @@ -7028,7 +7054,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [277] = {.lex_state = 3}, [278] = {.lex_state = 3}, [279] = {.lex_state = 3}, - [280] = {.lex_state = 3}, + [280] = {.lex_state = 60}, [281] = {.lex_state = 3}, [282] = {.lex_state = 3}, [283] = {.lex_state = 3}, @@ -7039,12 +7065,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [288] = {.lex_state = 3}, [289] = {.lex_state = 3}, [290] = {.lex_state = 3}, - [291] = {.lex_state = 4}, + [291] = {.lex_state = 60}, [292] = {.lex_state = 60}, [293] = {.lex_state = 60}, - [294] = {.lex_state = 4}, - [295] = {.lex_state = 60}, - [296] = {.lex_state = 60}, + [294] = {.lex_state = 60}, + [295] = {.lex_state = 4}, + [296] = {.lex_state = 4}, [297] = {.lex_state = 4}, [298] = {.lex_state = 4}, [299] = {.lex_state = 0}, @@ -7052,8 +7078,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [301] = {.lex_state = 0}, [302] = {.lex_state = 0}, [303] = {.lex_state = 0}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 5}, + [304] = {.lex_state = 5}, + [305] = {.lex_state = 0}, [306] = {.lex_state = 0}, [307] = {.lex_state = 0}, [308] = {.lex_state = 5}, @@ -7062,8 +7088,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [311] = {.lex_state = 5}, [312] = {.lex_state = 5}, [313] = {.lex_state = 5}, - [314] = {.lex_state = 5}, - [315] = {.lex_state = 0}, + [314] = {.lex_state = 0}, + [315] = {.lex_state = 5}, [316] = {.lex_state = 0}, [317] = {.lex_state = 0}, [318] = {.lex_state = 5}, @@ -7074,63 +7100,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 5}, [324] = {.lex_state = 5}, [325] = {.lex_state = 5}, - [326] = {.lex_state = 6}, + [326] = {.lex_state = 5}, [327] = {.lex_state = 6}, - [328] = {.lex_state = 5}, - [329] = {.lex_state = 5}, - [330] = {.lex_state = 14}, + [328] = {.lex_state = 6}, + [329] = {.lex_state = 6}, + [330] = {.lex_state = 6}, [331] = {.lex_state = 14}, - [332] = {.lex_state = 4}, - [333] = {.lex_state = 6}, - [334] = {.lex_state = 6}, - [335] = {.lex_state = 4}, + [332] = {.lex_state = 5}, + [333] = {.lex_state = 14}, + [334] = {.lex_state = 4}, + [335] = {.lex_state = 6}, [336] = {.lex_state = 6}, - [337] = {.lex_state = 3}, - [338] = {.lex_state = 4}, + [337] = {.lex_state = 4}, + [338] = {.lex_state = 6}, [339] = {.lex_state = 3}, [340] = {.lex_state = 4}, - [341] = {.lex_state = 14}, - [342] = {.lex_state = 14}, + [341] = {.lex_state = 3}, + [342] = {.lex_state = 4}, [343] = {.lex_state = 3}, [344] = {.lex_state = 3}, - [345] = {.lex_state = 6}, - [346] = {.lex_state = 6}, + [345] = {.lex_state = 14}, + [346] = {.lex_state = 14}, [347] = {.lex_state = 6}, - [348] = {.lex_state = 0}, + [348] = {.lex_state = 6}, [349] = {.lex_state = 6}, - [350] = {.lex_state = 0}, + [350] = {.lex_state = 6}, [351] = {.lex_state = 0}, [352] = {.lex_state = 0}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 0}, + [353] = {.lex_state = 6}, + [354] = {.lex_state = 6}, [355] = {.lex_state = 0}, [356] = {.lex_state = 0}, [357] = {.lex_state = 0}, - [358] = {.lex_state = 0}, - [359] = {.lex_state = 6}, + [358] = {.lex_state = 6}, + [359] = {.lex_state = 0}, [360] = {.lex_state = 0}, [361] = {.lex_state = 0}, - [362] = {.lex_state = 6}, + [362] = {.lex_state = 0}, [363] = {.lex_state = 6}, - [364] = {.lex_state = 0}, + [364] = {.lex_state = 6}, [365] = {.lex_state = 0}, - [366] = {.lex_state = 6}, + [366] = {.lex_state = 0}, [367] = {.lex_state = 6}, - [368] = {.lex_state = 6}, - [369] = {.lex_state = 0}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 6}, [370] = {.lex_state = 0}, [371] = {.lex_state = 0}, [372] = {.lex_state = 0}, - [373] = {.lex_state = 6}, + [373] = {.lex_state = 0}, [374] = {.lex_state = 0}, - [375] = {.lex_state = 0}, + [375] = {.lex_state = 6}, [376] = {.lex_state = 0}, [377] = {.lex_state = 0}, [378] = {.lex_state = 6}, [379] = {.lex_state = 0}, - [380] = {.lex_state = 6}, - [381] = {.lex_state = 6}, - [382] = {.lex_state = 6}, + [380] = {.lex_state = 0}, + [381] = {.lex_state = 0}, + [382] = {.lex_state = 0}, [383] = {.lex_state = 6}, [384] = {.lex_state = 6}, [385] = {.lex_state = 6}, @@ -7146,7 +7172,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 6}, [396] = {.lex_state = 6}, [397] = {.lex_state = 6}, - [398] = {.lex_state = 6}, + [398] = {.lex_state = 0}, [399] = {.lex_state = 6}, [400] = {.lex_state = 6}, [401] = {.lex_state = 6}, @@ -7169,72 +7195,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [418] = {.lex_state = 6}, [419] = {.lex_state = 6}, [420] = {.lex_state = 6}, - [421] = {.lex_state = 0}, - [422] = {.lex_state = 3}, - [423] = {.lex_state = 0}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 3}, - [426] = {.lex_state = 3}, - [427] = {.lex_state = 0}, - [428] = {.lex_state = 3}, - [429] = {.lex_state = 0}, + [421] = {.lex_state = 6}, + [422] = {.lex_state = 6}, + [423] = {.lex_state = 6}, + [424] = {.lex_state = 6}, + [425] = {.lex_state = 6}, + [426] = {.lex_state = 6}, + [427] = {.lex_state = 6}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 3}, [430] = {.lex_state = 3}, - [431] = {.lex_state = 3}, + [431] = {.lex_state = 0}, [432] = {.lex_state = 3}, - [433] = {.lex_state = 3}, - [434] = {.lex_state = 12}, - [435] = {.lex_state = 3}, - [436] = {.lex_state = 12}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 3}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 3}, [437] = {.lex_state = 3}, [438] = {.lex_state = 3}, - [439] = {.lex_state = 3}, - [440] = {.lex_state = 3}, + [439] = {.lex_state = 12}, + [440] = {.lex_state = 12}, [441] = {.lex_state = 3}, - [442] = {.lex_state = 12}, + [442] = {.lex_state = 3}, [443] = {.lex_state = 3}, [444] = {.lex_state = 3}, [445] = {.lex_state = 3}, [446] = {.lex_state = 3}, - [447] = {.lex_state = 4}, + [447] = {.lex_state = 12}, [448] = {.lex_state = 3}, - [449] = {.lex_state = 6}, - [450] = {.lex_state = 3}, - [451] = {.lex_state = 0}, + [449] = {.lex_state = 3}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 3}, [452] = {.lex_state = 3}, - [453] = {.lex_state = 3}, + [453] = {.lex_state = 6}, [454] = {.lex_state = 3}, - [455] = {.lex_state = 3}, + [455] = {.lex_state = 4}, [456] = {.lex_state = 3}, - [457] = {.lex_state = 3}, + [457] = {.lex_state = 0}, [458] = {.lex_state = 15}, - [459] = {.lex_state = 15}, - [460] = {.lex_state = 3}, - [461] = {.lex_state = 4}, + [459] = {.lex_state = 0}, + [460] = {.lex_state = 0}, + [461] = {.lex_state = 0}, [462] = {.lex_state = 0}, - [463] = {.lex_state = 0}, + [463] = {.lex_state = 3}, [464] = {.lex_state = 0}, - [465] = {.lex_state = 0}, + [465] = {.lex_state = 3}, [466] = {.lex_state = 3}, - [467] = {.lex_state = 0}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 0}, - [470] = {.lex_state = 15}, - [471] = {.lex_state = 15}, - [472] = {.lex_state = 6}, - [473] = {.lex_state = 12}, + [467] = {.lex_state = 3}, + [468] = {.lex_state = 3}, + [469] = {.lex_state = 4}, + [470] = {.lex_state = 3}, + [471] = {.lex_state = 0}, + [472] = {.lex_state = 3}, + [473] = {.lex_state = 15}, [474] = {.lex_state = 3}, [475] = {.lex_state = 3}, - [476] = {.lex_state = 12}, - [477] = {.lex_state = 4}, - [478] = {.lex_state = 4}, + [476] = {.lex_state = 15}, + [477] = {.lex_state = 15}, + [478] = {.lex_state = 12}, [479] = {.lex_state = 3}, [480] = {.lex_state = 3}, - [481] = {.lex_state = 3}, - [482] = {.lex_state = 3}, + [481] = {.lex_state = 12}, + [482] = {.lex_state = 6}, [483] = {.lex_state = 3}, [484] = {.lex_state = 3}, [485] = {.lex_state = 3}, - [486] = {.lex_state = 3}, + [486] = {.lex_state = 4}, [487] = {.lex_state = 3}, [488] = {.lex_state = 3}, [489] = {.lex_state = 3}, @@ -7245,44 +7271,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 3}, [495] = {.lex_state = 3}, [496] = {.lex_state = 3}, - [497] = {.lex_state = 3}, - [498] = {.lex_state = 12}, + [497] = {.lex_state = 4}, + [498] = {.lex_state = 4}, [499] = {.lex_state = 3}, - [500] = {.lex_state = 4}, + [500] = {.lex_state = 3}, [501] = {.lex_state = 3}, - [502] = {.lex_state = 12}, - [503] = {.lex_state = 4}, - [504] = {.lex_state = 3}, - [505] = {.lex_state = 4}, + [502] = {.lex_state = 3}, + [503] = {.lex_state = 3}, + [504] = {.lex_state = 4}, + [505] = {.lex_state = 3}, [506] = {.lex_state = 3}, - [507] = {.lex_state = 4}, + [507] = {.lex_state = 3}, [508] = {.lex_state = 3}, - [509] = {.lex_state = 3}, + [509] = {.lex_state = 12}, [510] = {.lex_state = 3}, - [511] = {.lex_state = 4}, + [511] = {.lex_state = 3}, [512] = {.lex_state = 3}, [513] = {.lex_state = 3}, [514] = {.lex_state = 3}, - [515] = {.lex_state = 4}, + [515] = {.lex_state = 3}, [516] = {.lex_state = 3}, - [517] = {.lex_state = 3}, - [518] = {.lex_state = 3}, - [519] = {.lex_state = 3}, - [520] = {.lex_state = 22}, + [517] = {.lex_state = 4}, + [518] = {.lex_state = 4}, + [519] = {.lex_state = 4}, + [520] = {.lex_state = 12}, [521] = {.lex_state = 3}, - [522] = {.lex_state = 3}, + [522] = {.lex_state = 4}, [523] = {.lex_state = 3}, [524] = {.lex_state = 3}, - [525] = {.lex_state = 3}, - [526] = {.lex_state = 4}, - [527] = {.lex_state = 4}, + [525] = {.lex_state = 4}, + [526] = {.lex_state = 3}, + [527] = {.lex_state = 3}, [528] = {.lex_state = 4}, [529] = {.lex_state = 3}, [530] = {.lex_state = 3}, - [531] = {.lex_state = 3}, + [531] = {.lex_state = 22}, [532] = {.lex_state = 3}, [533] = {.lex_state = 3}, - [534] = {.lex_state = 3}, + [534] = {.lex_state = 4}, [535] = {.lex_state = 3}, [536] = {.lex_state = 3}, [537] = {.lex_state = 3}, @@ -7300,136 +7326,136 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [549] = {.lex_state = 3}, [550] = {.lex_state = 3}, [551] = {.lex_state = 3}, - [552] = {.lex_state = 22}, + [552] = {.lex_state = 3}, [553] = {.lex_state = 3}, [554] = {.lex_state = 3}, [555] = {.lex_state = 3}, [556] = {.lex_state = 3}, [557] = {.lex_state = 3}, [558] = {.lex_state = 3}, - [559] = {.lex_state = 4}, - [560] = {.lex_state = 12}, - [561] = {.lex_state = 5}, - [562] = {.lex_state = 5}, - [563] = {.lex_state = 12}, + [559] = {.lex_state = 3}, + [560] = {.lex_state = 3}, + [561] = {.lex_state = 3}, + [562] = {.lex_state = 22}, + [563] = {.lex_state = 3}, [564] = {.lex_state = 3}, [565] = {.lex_state = 5}, [566] = {.lex_state = 5}, - [567] = {.lex_state = 3}, + [567] = {.lex_state = 12}, [568] = {.lex_state = 3}, - [569] = {.lex_state = 3}, - [570] = {.lex_state = 3}, + [569] = {.lex_state = 4}, + [570] = {.lex_state = 12}, [571] = {.lex_state = 3}, [572] = {.lex_state = 3}, [573] = {.lex_state = 3}, - [574] = {.lex_state = 12}, - [575] = {.lex_state = 12}, - [576] = {.lex_state = 12}, - [577] = {.lex_state = 12}, - [578] = {.lex_state = 22}, - [579] = {.lex_state = 12}, - [580] = {.lex_state = 12}, + [574] = {.lex_state = 5}, + [575] = {.lex_state = 3}, + [576] = {.lex_state = 3}, + [577] = {.lex_state = 3}, + [578] = {.lex_state = 3}, + [579] = {.lex_state = 3}, + [580] = {.lex_state = 5}, [581] = {.lex_state = 3}, - [582] = {.lex_state = 3}, - [583] = {.lex_state = 3}, + [582] = {.lex_state = 12}, + [583] = {.lex_state = 22}, [584] = {.lex_state = 12}, - [585] = {.lex_state = 3}, + [585] = {.lex_state = 12}, [586] = {.lex_state = 12}, [587] = {.lex_state = 12}, - [588] = {.lex_state = 3}, - [589] = {.lex_state = 22}, + [588] = {.lex_state = 12}, + [589] = {.lex_state = 3}, [590] = {.lex_state = 3}, - [591] = {.lex_state = 12}, - [592] = {.lex_state = 5}, - [593] = {.lex_state = 12}, - [594] = {.lex_state = 12}, + [591] = {.lex_state = 3}, + [592] = {.lex_state = 3}, + [593] = {.lex_state = 3}, + [594] = {.lex_state = 22}, [595] = {.lex_state = 12}, - [596] = {.lex_state = 12}, - [597] = {.lex_state = 3}, - [598] = {.lex_state = 5}, - [599] = {.lex_state = 3}, + [596] = {.lex_state = 3}, + [597] = {.lex_state = 12}, + [598] = {.lex_state = 12}, + [599] = {.lex_state = 12}, [600] = {.lex_state = 3}, [601] = {.lex_state = 3}, [602] = {.lex_state = 12}, [603] = {.lex_state = 5}, - [604] = {.lex_state = 3}, - [605] = {.lex_state = 3}, - [606] = {.lex_state = 3}, + [604] = {.lex_state = 12}, + [605] = {.lex_state = 12}, + [606] = {.lex_state = 12}, [607] = {.lex_state = 3}, [608] = {.lex_state = 3}, [609] = {.lex_state = 3}, [610] = {.lex_state = 3}, - [611] = {.lex_state = 5}, + [611] = {.lex_state = 12}, [612] = {.lex_state = 3}, - [613] = {.lex_state = 3}, - [614] = {.lex_state = 3}, + [613] = {.lex_state = 5}, + [614] = {.lex_state = 5}, [615] = {.lex_state = 3}, - [616] = {.lex_state = 5}, + [616] = {.lex_state = 3}, [617] = {.lex_state = 5}, [618] = {.lex_state = 5}, [619] = {.lex_state = 3}, - [620] = {.lex_state = 5}, + [620] = {.lex_state = 3}, [621] = {.lex_state = 3}, - [622] = {.lex_state = 3}, - [623] = {.lex_state = 3}, + [622] = {.lex_state = 5}, + [623] = {.lex_state = 5}, [624] = {.lex_state = 3}, [625] = {.lex_state = 3}, - [626] = {.lex_state = 5}, + [626] = {.lex_state = 3}, [627] = {.lex_state = 3}, [628] = {.lex_state = 3}, - [629] = {.lex_state = 5}, + [629] = {.lex_state = 3}, [630] = {.lex_state = 3}, - [631] = {.lex_state = 5}, + [631] = {.lex_state = 3}, [632] = {.lex_state = 3}, - [633] = {.lex_state = 3}, - [634] = {.lex_state = 4}, - [635] = {.lex_state = 4}, + [633] = {.lex_state = 5}, + [634] = {.lex_state = 3}, + [635] = {.lex_state = 5}, [636] = {.lex_state = 3}, - [637] = {.lex_state = 5}, - [638] = {.lex_state = 4}, - [639] = {.lex_state = 4}, - [640] = {.lex_state = 3}, - [641] = {.lex_state = 5}, + [637] = {.lex_state = 3}, + [638] = {.lex_state = 3}, + [639] = {.lex_state = 3}, + [640] = {.lex_state = 4}, + [641] = {.lex_state = 4}, [642] = {.lex_state = 4}, [643] = {.lex_state = 3}, - [644] = {.lex_state = 4}, + [644] = {.lex_state = 5}, [645] = {.lex_state = 4}, - [646] = {.lex_state = 3}, - [647] = {.lex_state = 3}, - [648] = {.lex_state = 4}, - [649] = {.lex_state = 3}, - [650] = {.lex_state = 5}, - [651] = {.lex_state = 3}, + [646] = {.lex_state = 5}, + [647] = {.lex_state = 5}, + [648] = {.lex_state = 5}, + [649] = {.lex_state = 5}, + [650] = {.lex_state = 3}, + [651] = {.lex_state = 5}, [652] = {.lex_state = 5}, - [653] = {.lex_state = 3}, - [654] = {.lex_state = 3}, + [653] = {.lex_state = 4}, + [654] = {.lex_state = 5}, [655] = {.lex_state = 3}, - [656] = {.lex_state = 5}, - [657] = {.lex_state = 5}, - [658] = {.lex_state = 3}, - [659] = {.lex_state = 5}, + [656] = {.lex_state = 4}, + [657] = {.lex_state = 3}, + [658] = {.lex_state = 4}, + [659] = {.lex_state = 3}, [660] = {.lex_state = 5}, - [661] = {.lex_state = 3}, - [662] = {.lex_state = 3}, - [663] = {.lex_state = 3}, + [661] = {.lex_state = 5}, + [662] = {.lex_state = 4}, + [663] = {.lex_state = 5}, [664] = {.lex_state = 3}, - [665] = {.lex_state = 3}, - [666] = {.lex_state = 12}, - [667] = {.lex_state = 3}, + [665] = {.lex_state = 5}, + [666] = {.lex_state = 5}, + [667] = {.lex_state = 5}, [668] = {.lex_state = 3}, [669] = {.lex_state = 3}, - [670] = {.lex_state = 3}, + [670] = {.lex_state = 5}, [671] = {.lex_state = 3}, [672] = {.lex_state = 3}, - [673] = {.lex_state = 3}, - [674] = {.lex_state = 0}, + [673] = {.lex_state = 4}, + [674] = {.lex_state = 4}, [675] = {.lex_state = 3}, - [676] = {.lex_state = 3}, - [677] = {.lex_state = 0}, + [676] = {.lex_state = 5}, + [677] = {.lex_state = 5}, [678] = {.lex_state = 3}, [679] = {.lex_state = 3}, - [680] = {.lex_state = 3}, - [681] = {.lex_state = 3}, + [680] = {.lex_state = 5}, + [681] = {.lex_state = 12}, [682] = {.lex_state = 3}, [683] = {.lex_state = 3}, [684] = {.lex_state = 3}, @@ -7439,9 +7465,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [688] = {.lex_state = 3}, [689] = {.lex_state = 3}, [690] = {.lex_state = 3}, - [691] = {.lex_state = 4}, + [691] = {.lex_state = 0}, [692] = {.lex_state = 3}, - [693] = {.lex_state = 3}, + [693] = {.lex_state = 0}, [694] = {.lex_state = 3}, [695] = {.lex_state = 3}, [696] = {.lex_state = 3}, @@ -7451,7 +7477,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [700] = {.lex_state = 3}, [701] = {.lex_state = 3}, [702] = {.lex_state = 4}, - [703] = {.lex_state = 3}, + [703] = {.lex_state = 4}, [704] = {.lex_state = 3}, [705] = {.lex_state = 3}, [706] = {.lex_state = 3}, @@ -7467,24 +7493,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [716] = {.lex_state = 3}, [717] = {.lex_state = 3}, [718] = {.lex_state = 3}, - [719] = {.lex_state = 4}, + [719] = {.lex_state = 3}, [720] = {.lex_state = 3}, - [721] = {.lex_state = 4}, + [721] = {.lex_state = 3}, [722] = {.lex_state = 3}, [723] = {.lex_state = 3}, [724] = {.lex_state = 3}, [725] = {.lex_state = 3}, [726] = {.lex_state = 3}, - [727] = {.lex_state = 4}, + [727] = {.lex_state = 3}, [728] = {.lex_state = 3}, [729] = {.lex_state = 3}, [730] = {.lex_state = 3}, [731] = {.lex_state = 3}, [732] = {.lex_state = 3}, [733] = {.lex_state = 3}, - [734] = {.lex_state = 4}, + [734] = {.lex_state = 3}, [735] = {.lex_state = 3}, - [736] = {.lex_state = 3}, + [736] = {.lex_state = 4}, [737] = {.lex_state = 3}, [738] = {.lex_state = 3}, [739] = {.lex_state = 3}, @@ -7494,217 +7520,217 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [743] = {.lex_state = 3}, [744] = {.lex_state = 3}, [745] = {.lex_state = 3}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 5}, - [748] = {.lex_state = 5}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 3}, + [748] = {.lex_state = 4}, [749] = {.lex_state = 3}, [750] = {.lex_state = 3}, - [751] = {.lex_state = 12}, - [752] = {.lex_state = 5}, - [753] = {.lex_state = 5}, + [751] = {.lex_state = 3}, + [752] = {.lex_state = 3}, + [753] = {.lex_state = 3}, [754] = {.lex_state = 3}, [755] = {.lex_state = 3}, - [756] = {.lex_state = 0}, + [756] = {.lex_state = 3}, [757] = {.lex_state = 3}, - [758] = {.lex_state = 3}, + [758] = {.lex_state = 4}, [759] = {.lex_state = 3}, - [760] = {.lex_state = 5}, - [761] = {.lex_state = 0}, + [760] = {.lex_state = 3}, + [761] = {.lex_state = 3}, [762] = {.lex_state = 3}, - [763] = {.lex_state = 5}, + [763] = {.lex_state = 4}, [764] = {.lex_state = 0}, - [765] = {.lex_state = 12}, - [766] = {.lex_state = 0}, + [765] = {.lex_state = 5}, + [766] = {.lex_state = 5}, [767] = {.lex_state = 3}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 3}, - [770] = {.lex_state = 0}, + [768] = {.lex_state = 12}, + [769] = {.lex_state = 5}, + [770] = {.lex_state = 3}, [771] = {.lex_state = 3}, [772] = {.lex_state = 3}, - [773] = {.lex_state = 3}, + [773] = {.lex_state = 0}, [774] = {.lex_state = 3}, [775] = {.lex_state = 3}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 3}, + [776] = {.lex_state = 3}, + [777] = {.lex_state = 0}, [778] = {.lex_state = 3}, - [779] = {.lex_state = 3}, - [780] = {.lex_state = 3}, - [781] = {.lex_state = 4}, - [782] = {.lex_state = 3}, + [779] = {.lex_state = 0}, + [780] = {.lex_state = 0}, + [781] = {.lex_state = 3}, + [782] = {.lex_state = 5}, [783] = {.lex_state = 0}, - [784] = {.lex_state = 3}, + [784] = {.lex_state = 12}, [785] = {.lex_state = 3}, - [786] = {.lex_state = 3}, - [787] = {.lex_state = 3}, + [786] = {.lex_state = 5}, + [787] = {.lex_state = 5}, [788] = {.lex_state = 3}, [789] = {.lex_state = 3}, - [790] = {.lex_state = 3}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 3}, + [790] = {.lex_state = 0}, + [791] = {.lex_state = 3}, + [792] = {.lex_state = 0}, [793] = {.lex_state = 3}, - [794] = {.lex_state = 0}, + [794] = {.lex_state = 3}, [795] = {.lex_state = 3}, [796] = {.lex_state = 3}, [797] = {.lex_state = 3}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 3}, - [800] = {.lex_state = 5}, - [801] = {.lex_state = 0}, + [798] = {.lex_state = 3}, + [799] = {.lex_state = 5}, + [800] = {.lex_state = 0}, + [801] = {.lex_state = 3}, [802] = {.lex_state = 3}, - [803] = {.lex_state = 3}, - [804] = {.lex_state = 5}, - [805] = {.lex_state = 5}, - [806] = {.lex_state = 3}, - [807] = {.lex_state = 3}, - [808] = {.lex_state = 5}, - [809] = {.lex_state = 5}, - [810] = {.lex_state = 5}, - [811] = {.lex_state = 5}, - [812] = {.lex_state = 5}, - [813] = {.lex_state = 5}, + [803] = {.lex_state = 0}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 3}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 12}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 3}, + [810] = {.lex_state = 3}, + [811] = {.lex_state = 3}, + [812] = {.lex_state = 3}, + [813] = {.lex_state = 3}, [814] = {.lex_state = 3}, - [815] = {.lex_state = 4}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 5}, - [818] = {.lex_state = 5}, - [819] = {.lex_state = 12}, - [820] = {.lex_state = 0}, + [815] = {.lex_state = 3}, + [816] = {.lex_state = 3}, + [817] = {.lex_state = 4}, + [818] = {.lex_state = 3}, + [819] = {.lex_state = 3}, + [820] = {.lex_state = 3}, [821] = {.lex_state = 3}, [822] = {.lex_state = 3}, [823] = {.lex_state = 3}, - [824] = {.lex_state = 3}, - [825] = {.lex_state = 3}, + [824] = {.lex_state = 4}, + [825] = {.lex_state = 0}, [826] = {.lex_state = 3}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 3}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 5}, - [831] = {.lex_state = 3}, - [832] = {.lex_state = 3}, - [833] = {.lex_state = 12}, + [827] = {.lex_state = 3}, + [828] = {.lex_state = 4}, + [829] = {.lex_state = 3}, + [830] = {.lex_state = 3}, + [831] = {.lex_state = 0}, + [832] = {.lex_state = 12}, + [833] = {.lex_state = 3}, [834] = {.lex_state = 3}, - [835] = {.lex_state = 0}, + [835] = {.lex_state = 3}, [836] = {.lex_state = 3}, - [837] = {.lex_state = 4}, + [837] = {.lex_state = 0}, [838] = {.lex_state = 3}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 3}, - [841] = {.lex_state = 3}, - [842] = {.lex_state = 3}, - [843] = {.lex_state = 3}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 3}, + [839] = {.lex_state = 5}, + [840] = {.lex_state = 5}, + [841] = {.lex_state = 0}, + [842] = {.lex_state = 5}, + [843] = {.lex_state = 5}, + [844] = {.lex_state = 5}, + [845] = {.lex_state = 5}, + [846] = {.lex_state = 5}, [847] = {.lex_state = 0}, [848] = {.lex_state = 3}, - [849] = {.lex_state = 5}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 4}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 5}, - [861] = {.lex_state = 4}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 5}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 3}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 5}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 3}, + [853] = {.lex_state = 5}, + [854] = {.lex_state = 5}, + [855] = {.lex_state = 5}, + [856] = {.lex_state = 5}, + [857] = {.lex_state = 3}, + [858] = {.lex_state = 3}, + [859] = {.lex_state = 3}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 3}, + [862] = {.lex_state = 3}, + [863] = {.lex_state = 3}, + [864] = {.lex_state = 3}, + [865] = {.lex_state = 0}, [866] = {.lex_state = 3}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 5}, - [872] = {.lex_state = 0}, + [867] = {.lex_state = 3}, + [868] = {.lex_state = 5}, + [869] = {.lex_state = 5}, + [870] = {.lex_state = 5}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 4}, [873] = {.lex_state = 0}, - [874] = {.lex_state = 5}, - [875] = {.lex_state = 5}, - [876] = {.lex_state = 0}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 3}, [877] = {.lex_state = 0}, - [878] = {.lex_state = 3}, + [878] = {.lex_state = 0}, [879] = {.lex_state = 0}, [880] = {.lex_state = 0}, [881] = {.lex_state = 5}, - [882] = {.lex_state = 3}, - [883] = {.lex_state = 0}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 5}, [884] = {.lex_state = 0}, [885] = {.lex_state = 0}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 3}, + [887] = {.lex_state = 4}, [888] = {.lex_state = 3}, - [889] = {.lex_state = 4}, + [889] = {.lex_state = 0}, [890] = {.lex_state = 3}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 5}, - [893] = {.lex_state = 5}, + [891] = {.lex_state = 3}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0}, [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 4}, - [897] = {.lex_state = 4}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 5}, - [901] = {.lex_state = 0}, + [895] = {.lex_state = 4}, + [896] = {.lex_state = 0}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 3}, + [899] = {.lex_state = 5}, + [900] = {.lex_state = 3}, + [901] = {.lex_state = 5}, [902] = {.lex_state = 5}, - [903] = {.lex_state = 0}, + [903] = {.lex_state = 4}, [904] = {.lex_state = 5}, - [905] = {.lex_state = 5}, + [905] = {.lex_state = 3}, [906] = {.lex_state = 0}, [907] = {.lex_state = 0}, [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 5}, + [909] = {.lex_state = 3}, + [910] = {.lex_state = 4}, + [911] = {.lex_state = 3}, [912] = {.lex_state = 0}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 5}, + [913] = {.lex_state = 3}, + [914] = {.lex_state = 4}, [915] = {.lex_state = 5}, [916] = {.lex_state = 5}, - [917] = {.lex_state = 3}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 3}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 3}, + [919] = {.lex_state = 5}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 4}, - [922] = {.lex_state = 0}, + [921] = {.lex_state = 5}, + [922] = {.lex_state = 4}, [923] = {.lex_state = 0}, [924] = {.lex_state = 0}, - [925] = {.lex_state = 4}, + [925] = {.lex_state = 5}, [926] = {.lex_state = 0}, [927] = {.lex_state = 0}, [928] = {.lex_state = 0}, - [929] = {.lex_state = 3}, + [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, + [931] = {.lex_state = 5}, [932] = {.lex_state = 0}, [933] = {.lex_state = 0}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 4}, - [936] = {.lex_state = 3}, + [934] = {.lex_state = 4}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 0}, [937] = {.lex_state = 0}, [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, - [940] = {.lex_state = 0}, + [940] = {.lex_state = 4}, [941] = {.lex_state = 0}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 5}, - [945] = {.lex_state = 5}, - [946] = {.lex_state = 4}, - [947] = {.lex_state = 3}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, [949] = {.lex_state = 0}, [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 5}, + [954] = {.lex_state = 0}, [955] = {.lex_state = 0}, - [956] = {.lex_state = 3}, + [956] = {.lex_state = 0}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, [959] = {.lex_state = 0}, @@ -7716,53 +7742,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [965] = {.lex_state = 0}, [966] = {.lex_state = 3}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0}, + [968] = {.lex_state = 5}, + [969] = {.lex_state = 5}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, + [971] = {.lex_state = 5}, [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, - [974] = {.lex_state = 3}, + [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, + [977] = {.lex_state = 3}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 5}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 4}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 3}, + [981] = {.lex_state = 3}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, - [988] = {.lex_state = 4}, - [989] = {.lex_state = 0}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 3}, [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, - [992] = {.lex_state = 4}, - [993] = {.lex_state = 4}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0}, [994] = {.lex_state = 0}, - [995] = {.lex_state = 0}, + [995] = {.lex_state = 3}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 0}, + [997] = {.lex_state = 3}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 3}, + [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, [1001] = {.lex_state = 5}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 5}, + [1003] = {.lex_state = 4}, [1004] = {.lex_state = 0}, [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 5}, - [1008] = {.lex_state = 5}, - [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 5}, - [1011] = {.lex_state = 5}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 5}, - [1014] = {.lex_state = 5}, + [1007] = {.lex_state = 0}, + [1008] = {.lex_state = 0}, + [1009] = {.lex_state = 4}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 4}, + [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, [1016] = {.lex_state = 0}, [1017] = {.lex_state = 0}, @@ -7770,104 +7796,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 3}, + [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 3}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, [1029] = {.lex_state = 5}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, + [1030] = {.lex_state = 5}, + [1031] = {.lex_state = 4}, [1032] = {.lex_state = 4}, - [1033] = {.lex_state = 3}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 3}, - [1037] = {.lex_state = 3}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 4}, - [1042] = {.lex_state = 4}, + [1033] = {.lex_state = 5}, + [1034] = {.lex_state = 5}, + [1035] = {.lex_state = 3}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 4}, + [1038] = {.lex_state = 5}, + [1039] = {.lex_state = 5}, + [1040] = {.lex_state = 5}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 3}, [1043] = {.lex_state = 0}, [1044] = {.lex_state = 5}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 5}, + [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, + [1049] = {.lex_state = 5}, + [1050] = {.lex_state = 5}, [1051] = {.lex_state = 5}, - [1052] = {.lex_state = 5}, + [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, + [1054] = {.lex_state = 5}, + [1055] = {.lex_state = 5}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, + [1058] = {.lex_state = 3}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 5}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 3}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 3}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 5}, + [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, + [1075] = {.lex_state = 5}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 3}, + [1077] = {.lex_state = 5}, + [1078] = {.lex_state = 5}, [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 3}, + [1080] = {.lex_state = 5}, + [1081] = {.lex_state = 4}, [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, + [1083] = {.lex_state = 3}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 3}, - [1088] = {.lex_state = 3}, + [1086] = {.lex_state = 3}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 5}, + [1092] = {.lex_state = 3}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, + [1094] = {.lex_state = 3}, + [1095] = {.lex_state = 3}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 3}, - [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 3}, - [1101] = {.lex_state = 3}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0}, + [1097] = {.lex_state = 3}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 3}, + [1100] = {.lex_state = 0}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 3}, + [1103] = {.lex_state = 3}, [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, + [1105] = {.lex_state = 3}, + [1106] = {.lex_state = 3}, + [1107] = {.lex_state = 5}, [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, + [1113] = {.lex_state = 3}, [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 3}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 3}, + [1115] = {.lex_state = 0}, + [1116] = {.lex_state = 3}, + [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 3}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 3}, [1121] = {.lex_state = 0}, [1122] = {.lex_state = 0}, @@ -7876,25 +7902,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, + [1128] = {.lex_state = 5}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 3}, - [1131] = {.lex_state = 3}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 0}, [1132] = {.lex_state = 3}, [1133] = {.lex_state = 3}, - [1134] = {.lex_state = 3}, - [1135] = {.lex_state = 3}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 3}, + [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 3}, + [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 3}, + [1141] = {.lex_state = 0}, [1142] = {.lex_state = 0}, [1143] = {.lex_state = 3}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 3}, + [1148] = {.lex_state = 3}, + [1149] = {.lex_state = 3}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 3}, + [1154] = {.lex_state = 3}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 3}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8031,72 +8077,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1075), - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym_program] = STATE(1141), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(9), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -8171,73 +8217,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(472), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_type_arguments] = STATE(1033), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_type_arguments] = STATE(995), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(6), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_explicit_constructor_invocation] = STATE(7), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_explicit_constructor_invocation] = STATE(13), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8313,73 +8359,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_switch_label] = STATE(1084), + [sym_switch_label] = STATE(1100), [sym_statement] = STATE(5), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(5), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_switch_block_statement_group_repeat1] = STATE(165), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_switch_block_statement_group_repeat1] = STATE(175), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8455,71 +8501,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [ts_builtin_sym_end] = ACTIONS(97), [sym_identifier] = ACTIONS(99), [sym_decimal_integer_literal] = ACTIONS(102), @@ -8596,71 +8642,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8736,71 +8782,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8875,71 +8921,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(10), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(4), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8964,7 +9010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(224), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9014,71 +9060,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9103,7 +9149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_RBRACE] = ACTIONS(226), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9153,72 +9199,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(226), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(228), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9292,71 +9338,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9381,7 +9427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(230), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9431,71 +9477,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(8), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(7), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9520,7 +9566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(230), + [anon_sym_RBRACE] = ACTIONS(232), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9570,71 +9616,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(8), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9659,7 +9705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(232), + [anon_sym_RBRACE] = ACTIONS(234), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9709,71 +9755,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(12), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(10), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9798,7 +9844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(234), + [anon_sym_RBRACE] = ACTIONS(222), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9848,70 +9894,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(150), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(180), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9985,70 +10031,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(159), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(200), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10122,70 +10168,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(195), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(191), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10259,70 +10305,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(1081), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(151), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10396,70 +10442,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(197), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(211), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10533,70 +10579,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(198), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(192), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10670,70 +10716,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(158), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(161), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10807,70 +10853,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(189), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(169), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10944,70 +10990,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(199), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(156), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11081,70 +11127,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(151), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(150), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11218,70 +11264,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(155), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(142), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11355,70 +11401,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(192), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(163), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11492,70 +11538,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(160), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(164), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11629,70 +11675,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(180), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(1120), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11766,70 +11812,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(185), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(188), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11903,70 +11949,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(186), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(157), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12040,70 +12086,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(148), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(165), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12177,70 +12223,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(202), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(171), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12314,70 +12360,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(149), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(168), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12451,70 +12497,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(154), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(149), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12588,70 +12634,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(156), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(184), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12725,70 +12771,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(200), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(167), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12862,70 +12908,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(161), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(154), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12999,70 +13045,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(205), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(201), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13136,70 +13182,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(162), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(215), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13273,70 +13319,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(203), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(183), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13410,70 +13456,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(215), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(182), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13547,70 +13593,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(157), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(204), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13684,70 +13730,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(196), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(159), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13821,70 +13867,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(153), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(166), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13958,70 +14004,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(164), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(189), + [sym_block] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_assert_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_yield_statement] = STATE(203), + [sym_synchronized_statement] = STATE(203), + [sym_throw_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_try_with_resources_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_enhanced_for_statement] = STATE(203), + [sym__annotation] = STATE(428), + [sym_marker_annotation] = STATE(428), + [sym_annotation] = STATE(428), + [sym_declaration] = STATE(203), + [sym_module_declaration] = STATE(160), + [sym_package_declaration] = STATE(160), + [sym_import_declaration] = STATE(160), + [sym_enum_declaration] = STATE(160), + [sym_class_declaration] = STATE(160), + [sym_modifiers] = STATE(583), + [sym_annotation_type_declaration] = STATE(160), + [sym_interface_declaration] = STATE(160), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(613), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(203), + [aux_sym_array_creation_expression_repeat1] = STATE(536), + [aux_sym_modifiers_repeat1] = STATE(352), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14509,103 +14555,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(252), - [sym_identifier] = ACTIONS(254), - [sym_decimal_integer_literal] = ACTIONS(254), - [sym_hex_integer_literal] = ACTIONS(254), - [sym_octal_integer_literal] = ACTIONS(252), - [sym_binary_integer_literal] = ACTIONS(252), - [sym_decimal_floating_point_literal] = ACTIONS(252), - [sym_hex_floating_point_literal] = ACTIONS(254), - [sym_true] = ACTIONS(254), - [sym_false] = ACTIONS(254), - [sym_character_literal] = ACTIONS(252), - [sym_string_literal] = ACTIONS(254), - [sym_text_block] = ACTIONS(252), - [sym_null_literal] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(254), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PLUS] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_instanceof] = ACTIONS(254), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_COMMA] = ACTIONS(252), - [anon_sym_QMARK] = ACTIONS(252), + [sym_identifier] = ACTIONS(252), + [sym_decimal_integer_literal] = ACTIONS(252), + [sym_hex_integer_literal] = ACTIONS(252), + [sym_octal_integer_literal] = ACTIONS(254), + [sym_binary_integer_literal] = ACTIONS(254), + [sym_decimal_floating_point_literal] = ACTIONS(254), + [sym_hex_floating_point_literal] = ACTIONS(252), + [sym_true] = ACTIONS(252), + [sym_false] = ACTIONS(252), + [sym_character_literal] = ACTIONS(254), + [sym_string_literal] = ACTIONS(252), + [sym_text_block] = ACTIONS(254), + [sym_null_literal] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_AMP] = ACTIONS(252), + [anon_sym_RPAREN] = ACTIONS(254), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_GT_EQ] = ACTIONS(254), + [anon_sym_LT_EQ] = ACTIONS(254), + [anon_sym_EQ_EQ] = ACTIONS(254), + [anon_sym_BANG_EQ] = ACTIONS(254), + [anon_sym_AMP_AMP] = ACTIONS(254), + [anon_sym_PIPE_PIPE] = ACTIONS(254), + [anon_sym_PLUS] = ACTIONS(252), + [anon_sym_DASH] = ACTIONS(252), + [anon_sym_STAR] = ACTIONS(254), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_CARET] = ACTIONS(254), + [anon_sym_PERCENT] = ACTIONS(254), + [anon_sym_LT_LT] = ACTIONS(254), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_GT_GT_GT] = ACTIONS(254), + [anon_sym_instanceof] = ACTIONS(252), + [anon_sym_DASH_GT] = ACTIONS(254), + [anon_sym_COMMA] = ACTIONS(254), + [anon_sym_QMARK] = ACTIONS(254), [anon_sym_COLON] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_new] = ACTIONS(254), - [anon_sym_RBRACK] = ACTIONS(252), - [anon_sym_class] = ACTIONS(254), - [anon_sym_switch] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_default] = ACTIONS(254), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [anon_sym_break] = ACTIONS(254), - [anon_sym_continue] = ACTIONS(254), - [anon_sym_return] = ACTIONS(254), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_synchronized] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_if] = ACTIONS(254), - [anon_sym_else] = ACTIONS(254), - [anon_sym_for] = ACTIONS(254), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_open] = ACTIONS(254), - [anon_sym_module] = ACTIONS(254), - [anon_sym_static] = ACTIONS(254), - [anon_sym_package] = ACTIONS(254), - [anon_sym_import] = ACTIONS(254), - [anon_sym_enum] = ACTIONS(254), - [anon_sym_public] = ACTIONS(254), - [anon_sym_protected] = ACTIONS(254), - [anon_sym_private] = ACTIONS(254), - [anon_sym_abstract] = ACTIONS(254), - [anon_sym_final] = ACTIONS(254), - [anon_sym_strictfp] = ACTIONS(254), - [anon_sym_native] = ACTIONS(254), - [anon_sym_transient] = ACTIONS(254), - [anon_sym_volatile] = ACTIONS(254), - [anon_sym_sealed] = ACTIONS(254), - [anon_sym_non_DASHsealed] = ACTIONS(252), - [anon_sym_ATinterface] = ACTIONS(252), - [anon_sym_interface] = ACTIONS(254), - [anon_sym_byte] = ACTIONS(254), - [anon_sym_short] = ACTIONS(254), - [anon_sym_int] = ACTIONS(254), - [anon_sym_long] = ACTIONS(254), - [anon_sym_char] = ACTIONS(254), - [anon_sym_float] = ACTIONS(254), - [anon_sym_double] = ACTIONS(254), - [sym_boolean_type] = ACTIONS(254), - [sym_void_type] = ACTIONS(254), - [sym_this] = ACTIONS(254), - [sym_super] = ACTIONS(254), + [anon_sym_BANG] = ACTIONS(252), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_PLUS_PLUS] = ACTIONS(254), + [anon_sym_DASH_DASH] = ACTIONS(254), + [anon_sym_new] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(254), + [anon_sym_RBRACK] = ACTIONS(254), + [anon_sym_DOT] = ACTIONS(252), + [anon_sym_class] = ACTIONS(252), + [anon_sym_COLON_COLON] = ACTIONS(254), + [anon_sym_switch] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_RBRACE] = ACTIONS(254), + [anon_sym_default] = ACTIONS(252), + [anon_sym_SEMI] = ACTIONS(254), + [anon_sym_assert] = ACTIONS(252), + [anon_sym_do] = ACTIONS(252), + [anon_sym_while] = ACTIONS(252), + [anon_sym_break] = ACTIONS(252), + [anon_sym_continue] = ACTIONS(252), + [anon_sym_return] = ACTIONS(252), + [anon_sym_yield] = ACTIONS(252), + [anon_sym_synchronized] = ACTIONS(252), + [anon_sym_throw] = ACTIONS(252), + [anon_sym_try] = ACTIONS(252), + [anon_sym_if] = ACTIONS(252), + [anon_sym_for] = ACTIONS(252), + [anon_sym_AT] = ACTIONS(252), + [anon_sym_open] = ACTIONS(252), + [anon_sym_module] = ACTIONS(252), + [anon_sym_static] = ACTIONS(252), + [anon_sym_package] = ACTIONS(252), + [anon_sym_import] = ACTIONS(252), + [anon_sym_enum] = ACTIONS(252), + [anon_sym_public] = ACTIONS(252), + [anon_sym_protected] = ACTIONS(252), + [anon_sym_private] = ACTIONS(252), + [anon_sym_abstract] = ACTIONS(252), + [anon_sym_final] = ACTIONS(252), + [anon_sym_strictfp] = ACTIONS(252), + [anon_sym_native] = ACTIONS(252), + [anon_sym_transient] = ACTIONS(252), + [anon_sym_volatile] = ACTIONS(252), + [anon_sym_sealed] = ACTIONS(252), + [anon_sym_non_DASHsealed] = ACTIONS(254), + [anon_sym_ATinterface] = ACTIONS(254), + [anon_sym_interface] = ACTIONS(252), + [anon_sym_byte] = ACTIONS(252), + [anon_sym_short] = ACTIONS(252), + [anon_sym_int] = ACTIONS(252), + [anon_sym_long] = ACTIONS(252), + [anon_sym_char] = ACTIONS(252), + [anon_sym_float] = ACTIONS(252), + [anon_sym_double] = ACTIONS(252), + [sym_boolean_type] = ACTIONS(252), + [sym_void_type] = ACTIONS(252), + [sym_this] = ACTIONS(252), + [sym_super] = ACTIONS(252), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -14812,103 +14858,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_identifier] = ACTIONS(264), - [sym_decimal_integer_literal] = ACTIONS(264), - [sym_hex_integer_literal] = ACTIONS(264), - [sym_octal_integer_literal] = ACTIONS(266), - [sym_binary_integer_literal] = ACTIONS(266), - [sym_decimal_floating_point_literal] = ACTIONS(266), - [sym_hex_floating_point_literal] = ACTIONS(264), - [sym_true] = ACTIONS(264), - [sym_false] = ACTIONS(264), - [sym_character_literal] = ACTIONS(266), - [sym_string_literal] = ACTIONS(264), - [sym_text_block] = ACTIONS(266), - [sym_null_literal] = ACTIONS(264), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(264), - [anon_sym_LT] = ACTIONS(264), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_AMP_AMP] = ACTIONS(266), - [anon_sym_PIPE_PIPE] = ACTIONS(266), - [anon_sym_PLUS] = ACTIONS(264), - [anon_sym_DASH] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_SLASH] = ACTIONS(264), - [anon_sym_PIPE] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_GT_GT] = ACTIONS(264), - [anon_sym_GT_GT_GT] = ACTIONS(266), - [anon_sym_instanceof] = ACTIONS(264), - [anon_sym_DASH_GT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(266), + [ts_builtin_sym_end] = ACTIONS(264), + [sym_identifier] = ACTIONS(266), + [sym_decimal_integer_literal] = ACTIONS(266), + [sym_hex_integer_literal] = ACTIONS(266), + [sym_octal_integer_literal] = ACTIONS(264), + [sym_binary_integer_literal] = ACTIONS(264), + [sym_decimal_floating_point_literal] = ACTIONS(264), + [sym_hex_floating_point_literal] = ACTIONS(266), + [sym_true] = ACTIONS(266), + [sym_false] = ACTIONS(266), + [sym_character_literal] = ACTIONS(264), + [sym_string_literal] = ACTIONS(266), + [sym_text_block] = ACTIONS(264), + [sym_null_literal] = ACTIONS(266), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_RPAREN] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT_EQ] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(264), + [anon_sym_EQ_EQ] = ACTIONS(264), + [anon_sym_BANG_EQ] = ACTIONS(264), + [anon_sym_AMP_AMP] = ACTIONS(264), + [anon_sym_PIPE_PIPE] = ACTIONS(264), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(266), + [anon_sym_PIPE] = ACTIONS(266), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(266), + [anon_sym_GT_GT_GT] = ACTIONS(264), + [anon_sym_instanceof] = ACTIONS(266), + [anon_sym_DASH_GT] = ACTIONS(264), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_QMARK] = ACTIONS(264), [anon_sym_COLON] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(264), - [anon_sym_TILDE] = ACTIONS(266), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [anon_sym_new] = ACTIONS(264), - [anon_sym_LBRACK] = ACTIONS(266), - [anon_sym_RBRACK] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(264), - [anon_sym_class] = ACTIONS(264), - [anon_sym_COLON_COLON] = ACTIONS(266), - [anon_sym_switch] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(266), - [anon_sym_RBRACE] = ACTIONS(266), - [anon_sym_default] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_assert] = ACTIONS(264), - [anon_sym_do] = ACTIONS(264), - [anon_sym_while] = ACTIONS(264), - [anon_sym_break] = ACTIONS(264), - [anon_sym_continue] = ACTIONS(264), - [anon_sym_return] = ACTIONS(264), - [anon_sym_yield] = ACTIONS(264), - [anon_sym_synchronized] = ACTIONS(264), - [anon_sym_throw] = ACTIONS(264), - [anon_sym_try] = ACTIONS(264), - [anon_sym_if] = ACTIONS(264), - [anon_sym_for] = ACTIONS(264), - [anon_sym_AT] = ACTIONS(264), - [anon_sym_open] = ACTIONS(264), - [anon_sym_module] = ACTIONS(264), - [anon_sym_static] = ACTIONS(264), - [anon_sym_package] = ACTIONS(264), - [anon_sym_import] = ACTIONS(264), - [anon_sym_enum] = ACTIONS(264), - [anon_sym_public] = ACTIONS(264), - [anon_sym_protected] = ACTIONS(264), - [anon_sym_private] = ACTIONS(264), - [anon_sym_abstract] = ACTIONS(264), - [anon_sym_final] = ACTIONS(264), - [anon_sym_strictfp] = ACTIONS(264), - [anon_sym_native] = ACTIONS(264), - [anon_sym_transient] = ACTIONS(264), - [anon_sym_volatile] = ACTIONS(264), - [anon_sym_sealed] = ACTIONS(264), - [anon_sym_non_DASHsealed] = ACTIONS(266), - [anon_sym_ATinterface] = ACTIONS(266), - [anon_sym_interface] = ACTIONS(264), - [anon_sym_byte] = ACTIONS(264), - [anon_sym_short] = ACTIONS(264), - [anon_sym_int] = ACTIONS(264), - [anon_sym_long] = ACTIONS(264), - [anon_sym_char] = ACTIONS(264), - [anon_sym_float] = ACTIONS(264), - [anon_sym_double] = ACTIONS(264), - [sym_boolean_type] = ACTIONS(264), - [sym_void_type] = ACTIONS(264), - [sym_this] = ACTIONS(264), - [sym_super] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(266), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_PLUS_PLUS] = ACTIONS(264), + [anon_sym_DASH_DASH] = ACTIONS(264), + [anon_sym_new] = ACTIONS(266), + [anon_sym_RBRACK] = ACTIONS(264), + [anon_sym_class] = ACTIONS(266), + [anon_sym_switch] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(264), + [anon_sym_RBRACE] = ACTIONS(264), + [anon_sym_case] = ACTIONS(266), + [anon_sym_default] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(264), + [anon_sym_assert] = ACTIONS(266), + [anon_sym_do] = ACTIONS(266), + [anon_sym_while] = ACTIONS(266), + [anon_sym_break] = ACTIONS(266), + [anon_sym_continue] = ACTIONS(266), + [anon_sym_return] = ACTIONS(266), + [anon_sym_yield] = ACTIONS(266), + [anon_sym_synchronized] = ACTIONS(266), + [anon_sym_throw] = ACTIONS(266), + [anon_sym_try] = ACTIONS(266), + [anon_sym_if] = ACTIONS(266), + [anon_sym_else] = ACTIONS(266), + [anon_sym_for] = ACTIONS(266), + [anon_sym_AT] = ACTIONS(266), + [anon_sym_open] = ACTIONS(266), + [anon_sym_module] = ACTIONS(266), + [anon_sym_static] = ACTIONS(266), + [anon_sym_package] = ACTIONS(266), + [anon_sym_import] = ACTIONS(266), + [anon_sym_enum] = ACTIONS(266), + [anon_sym_public] = ACTIONS(266), + [anon_sym_protected] = ACTIONS(266), + [anon_sym_private] = ACTIONS(266), + [anon_sym_abstract] = ACTIONS(266), + [anon_sym_final] = ACTIONS(266), + [anon_sym_strictfp] = ACTIONS(266), + [anon_sym_native] = ACTIONS(266), + [anon_sym_transient] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_sealed] = ACTIONS(266), + [anon_sym_non_DASHsealed] = ACTIONS(264), + [anon_sym_ATinterface] = ACTIONS(264), + [anon_sym_interface] = ACTIONS(266), + [anon_sym_byte] = ACTIONS(266), + [anon_sym_short] = ACTIONS(266), + [anon_sym_int] = ACTIONS(266), + [anon_sym_long] = ACTIONS(266), + [anon_sym_char] = ACTIONS(266), + [anon_sym_float] = ACTIONS(266), + [anon_sym_double] = ACTIONS(266), + [sym_boolean_type] = ACTIONS(266), + [sym_void_type] = ACTIONS(266), + [sym_this] = ACTIONS(266), + [sym_super] = ACTIONS(266), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -15009,46 +15055,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(601), - [sym__type] = STATE(820), - [sym__unannotated_type] = STATE(592), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_formal_parameter] = STATE(950), - [sym_receiver_parameter] = STATE(335), - [sym_spread_parameter] = STATE(950), - [aux_sym_dimensions_expr_repeat1] = STATE(573), - [aux_sym_modifiers_repeat1] = STATE(461), + [sym__annotation] = STATE(528), + [sym_marker_annotation] = STATE(528), + [sym_annotation] = STATE(528), + [sym_modifiers] = STATE(610), + [sym__type] = STATE(825), + [sym__unannotated_type] = STATE(603), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_formal_parameter] = STATE(906), + [sym_receiver_parameter] = STATE(337), + [sym_spread_parameter] = STATE(906), + [aux_sym_array_creation_expression_repeat1] = STATE(572), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(276), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15104,46 +15150,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(601), - [sym__type] = STATE(845), - [sym__unannotated_type] = STATE(592), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_formal_parameter] = STATE(950), - [sym_receiver_parameter] = STATE(335), - [sym_spread_parameter] = STATE(950), - [aux_sym_dimensions_expr_repeat1] = STATE(573), - [aux_sym_modifiers_repeat1] = STATE(461), + [sym__annotation] = STATE(528), + [sym_marker_annotation] = STATE(528), + [sym_annotation] = STATE(528), + [sym_modifiers] = STATE(610), + [sym__type] = STATE(860), + [sym__unannotated_type] = STATE(603), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_formal_parameter] = STATE(906), + [sym_receiver_parameter] = STATE(337), + [sym_spread_parameter] = STATE(906), + [aux_sym_array_creation_expression_repeat1] = STATE(572), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(276), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15199,44 +15245,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(502), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(604), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(603), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(233), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), + [sym__annotation] = STATE(528), + [sym_marker_annotation] = STATE(528), + [sym_annotation] = STATE(528), + [sym_modifiers] = STATE(612), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(614), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [sym_local_variable_declaration] = STATE(234), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15292,9 +15338,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym_catch_clause] = STATE(60), - [sym_finally_clause] = STATE(191), - [aux_sym_try_statement_repeat1] = STATE(60), + [sym_catch_clause] = STATE(59), + [sym_finally_clause] = STATE(143), + [aux_sym_try_statement_repeat1] = STATE(59), [ts_builtin_sym_end] = ACTIONS(292), [sym_identifier] = ACTIONS(294), [sym_decimal_integer_literal] = ACTIONS(294), @@ -15456,9 +15502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym_catch_clause] = STATE(57), - [sym_finally_clause] = STATE(147), - [aux_sym_try_statement_repeat1] = STATE(57), + [sym_catch_clause] = STATE(60), + [sym_finally_clause] = STATE(158), + [aux_sym_try_statement_repeat1] = STATE(60), [ts_builtin_sym_end] = ACTIONS(304), [sym_identifier] = ACTIONS(306), [sym_decimal_integer_literal] = ACTIONS(306), @@ -15619,44 +15665,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(951), - [sym__element_value] = STATE(1080), - [sym_element_value_array_initializer] = STATE(1080), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym_element_value_pair] = STATE(927), + [sym__element_value] = STATE(1156), + [sym_element_value_array_initializer] = STATE(1156), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(315), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15699,44 +15745,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [62] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(876), - [sym__element_value] = STATE(1136), - [sym_element_value_array_initializer] = STATE(1136), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym_element_value_pair] = STATE(942), + [sym__element_value] = STATE(1144), + [sym_element_value_array_initializer] = STATE(1144), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(315), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15779,45 +15825,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(884), - [sym__element_value] = STATE(1129), - [sym_element_value_array_initializer] = STATE(1129), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(315), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym__element_value] = STATE(954), + [sym_element_value_array_initializer] = STATE(954), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15831,9 +15876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(325), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(325), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), @@ -15841,6 +15886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -15859,44 +15905,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym_block] = STATE(936), - [sym_expression_statement] = STATE(936), - [sym_throw_statement] = STATE(936), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym_block] = STATE(898), + [sym_expression_statement] = STATE(898), + [sym_throw_statement] = STATE(898), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15939,44 +15985,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(854), - [sym_element_value_array_initializer] = STATE(854), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym_element_value_pair] = STATE(957), + [sym__element_value] = STATE(1151), + [sym_element_value_array_initializer] = STATE(1151), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(315), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15990,9 +16037,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(329), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(327), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), @@ -16000,7 +16047,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -16967,6 +17013,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [78] = { + [ts_builtin_sym_end] = ACTIONS(248), + [sym_identifier] = ACTIONS(250), + [sym_decimal_integer_literal] = ACTIONS(250), + [sym_hex_integer_literal] = ACTIONS(250), + [sym_octal_integer_literal] = ACTIONS(248), + [sym_binary_integer_literal] = ACTIONS(248), + [sym_decimal_floating_point_literal] = ACTIONS(248), + [sym_hex_floating_point_literal] = ACTIONS(250), + [sym_true] = ACTIONS(250), + [sym_false] = ACTIONS(250), + [sym_character_literal] = ACTIONS(248), + [sym_string_literal] = ACTIONS(250), + [sym_text_block] = ACTIONS(248), + [sym_null_literal] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(248), + [anon_sym_TILDE] = ACTIONS(248), + [anon_sym_PLUS_PLUS] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(248), + [anon_sym_new] = ACTIONS(250), + [anon_sym_class] = ACTIONS(250), + [anon_sym_switch] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(248), + [anon_sym_RBRACE] = ACTIONS(248), + [anon_sym_case] = ACTIONS(250), + [anon_sym_default] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(248), + [anon_sym_assert] = ACTIONS(250), + [anon_sym_do] = ACTIONS(250), + [anon_sym_while] = ACTIONS(250), + [anon_sym_break] = ACTIONS(250), + [anon_sym_continue] = ACTIONS(250), + [anon_sym_return] = ACTIONS(250), + [anon_sym_yield] = ACTIONS(250), + [anon_sym_synchronized] = ACTIONS(250), + [anon_sym_throw] = ACTIONS(250), + [anon_sym_try] = ACTIONS(250), + [anon_sym_catch] = ACTIONS(250), + [anon_sym_finally] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_else] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_AT] = ACTIONS(250), + [anon_sym_open] = ACTIONS(250), + [anon_sym_module] = ACTIONS(250), + [anon_sym_static] = ACTIONS(250), + [anon_sym_package] = ACTIONS(250), + [anon_sym_import] = ACTIONS(250), + [anon_sym_enum] = ACTIONS(250), + [anon_sym_public] = ACTIONS(250), + [anon_sym_protected] = ACTIONS(250), + [anon_sym_private] = ACTIONS(250), + [anon_sym_abstract] = ACTIONS(250), + [anon_sym_final] = ACTIONS(250), + [anon_sym_strictfp] = ACTIONS(250), + [anon_sym_native] = ACTIONS(250), + [anon_sym_transient] = ACTIONS(250), + [anon_sym_volatile] = ACTIONS(250), + [anon_sym_sealed] = ACTIONS(250), + [anon_sym_non_DASHsealed] = ACTIONS(248), + [anon_sym_ATinterface] = ACTIONS(248), + [anon_sym_interface] = ACTIONS(250), + [anon_sym_byte] = ACTIONS(250), + [anon_sym_short] = ACTIONS(250), + [anon_sym_int] = ACTIONS(250), + [anon_sym_long] = ACTIONS(250), + [anon_sym_char] = ACTIONS(250), + [anon_sym_float] = ACTIONS(250), + [anon_sym_double] = ACTIONS(250), + [sym_boolean_type] = ACTIONS(250), + [sym_void_type] = ACTIONS(250), + [sym_this] = ACTIONS(250), + [sym_super] = ACTIONS(250), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [79] = { [ts_builtin_sym_end] = ACTIONS(379), [sym_identifier] = ACTIONS(381), [sym_decimal_integer_literal] = ACTIONS(381), @@ -17045,7 +17170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [79] = { + [80] = { [ts_builtin_sym_end] = ACTIONS(383), [sym_identifier] = ACTIONS(385), [sym_decimal_integer_literal] = ACTIONS(385), @@ -17124,44 +17249,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [81] = { + [ts_builtin_sym_end] = ACTIONS(387), + [sym_identifier] = ACTIONS(389), + [sym_decimal_integer_literal] = ACTIONS(389), + [sym_hex_integer_literal] = ACTIONS(389), + [sym_octal_integer_literal] = ACTIONS(387), + [sym_binary_integer_literal] = ACTIONS(387), + [sym_decimal_floating_point_literal] = ACTIONS(387), + [sym_hex_floating_point_literal] = ACTIONS(389), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_character_literal] = ACTIONS(387), + [sym_string_literal] = ACTIONS(389), + [sym_text_block] = ACTIONS(387), + [sym_null_literal] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(389), + [anon_sym_switch] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_case] = ACTIONS(389), + [anon_sym_default] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_assert] = ACTIONS(389), + [anon_sym_do] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(389), + [anon_sym_synchronized] = ACTIONS(389), + [anon_sym_throw] = ACTIONS(389), + [anon_sym_try] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_else] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_open] = ACTIONS(389), + [anon_sym_module] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_package] = ACTIONS(389), + [anon_sym_import] = ACTIONS(389), + [anon_sym_enum] = ACTIONS(389), + [anon_sym_public] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_abstract] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_strictfp] = ACTIONS(389), + [anon_sym_native] = ACTIONS(389), + [anon_sym_transient] = ACTIONS(389), + [anon_sym_volatile] = ACTIONS(389), + [anon_sym_sealed] = ACTIONS(389), + [anon_sym_non_DASHsealed] = ACTIONS(387), + [anon_sym_record] = ACTIONS(389), + [anon_sym_ATinterface] = ACTIONS(387), + [anon_sym_interface] = ACTIONS(389), + [anon_sym_byte] = ACTIONS(389), + [anon_sym_short] = ACTIONS(389), + [anon_sym_int] = ACTIONS(389), + [anon_sym_long] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_float] = ACTIONS(389), + [anon_sym_double] = ACTIONS(389), + [sym_boolean_type] = ACTIONS(389), + [sym_void_type] = ACTIONS(389), + [sym_this] = ACTIONS(389), + [sym_super] = ACTIONS(389), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(391), + [sym_identifier] = ACTIONS(393), + [sym_decimal_integer_literal] = ACTIONS(393), + [sym_hex_integer_literal] = ACTIONS(393), + [sym_octal_integer_literal] = ACTIONS(391), + [sym_binary_integer_literal] = ACTIONS(391), + [sym_decimal_floating_point_literal] = ACTIONS(391), + [sym_hex_floating_point_literal] = ACTIONS(393), + [sym_true] = ACTIONS(393), + [sym_false] = ACTIONS(393), + [sym_character_literal] = ACTIONS(391), + [sym_string_literal] = ACTIONS(393), + [sym_text_block] = ACTIONS(391), + [sym_null_literal] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), + [anon_sym_class] = ACTIONS(393), + [anon_sym_switch] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_case] = ACTIONS(393), + [anon_sym_default] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_assert] = ACTIONS(393), + [anon_sym_do] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_return] = ACTIONS(393), + [anon_sym_yield] = ACTIONS(393), + [anon_sym_synchronized] = ACTIONS(393), + [anon_sym_throw] = ACTIONS(393), + [anon_sym_try] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_open] = ACTIONS(393), + [anon_sym_module] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_package] = ACTIONS(393), + [anon_sym_import] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(393), + [anon_sym_public] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(393), + [anon_sym_final] = ACTIONS(393), + [anon_sym_strictfp] = ACTIONS(393), + [anon_sym_native] = ACTIONS(393), + [anon_sym_transient] = ACTIONS(393), + [anon_sym_volatile] = ACTIONS(393), + [anon_sym_sealed] = ACTIONS(393), + [anon_sym_non_DASHsealed] = ACTIONS(391), + [anon_sym_record] = ACTIONS(393), + [anon_sym_ATinterface] = ACTIONS(391), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_byte] = ACTIONS(393), + [anon_sym_short] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_long] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_double] = ACTIONS(393), + [sym_boolean_type] = ACTIONS(393), + [sym_void_type] = ACTIONS(393), + [sym_this] = ACTIONS(393), + [sym_super] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(892), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17178,14 +17460,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -17203,243 +17486,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(391), - [sym_decimal_integer_literal] = ACTIONS(391), - [sym_hex_integer_literal] = ACTIONS(391), - [sym_octal_integer_literal] = ACTIONS(389), - [sym_binary_integer_literal] = ACTIONS(389), - [sym_decimal_floating_point_literal] = ACTIONS(389), - [sym_hex_floating_point_literal] = ACTIONS(391), - [sym_true] = ACTIONS(391), - [sym_false] = ACTIONS(391), - [sym_character_literal] = ACTIONS(389), - [sym_string_literal] = ACTIONS(391), - [sym_text_block] = ACTIONS(389), - [sym_null_literal] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_new] = ACTIONS(391), - [anon_sym_class] = ACTIONS(391), - [anon_sym_switch] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_case] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_assert] = ACTIONS(391), - [anon_sym_do] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_return] = ACTIONS(391), - [anon_sym_yield] = ACTIONS(391), - [anon_sym_synchronized] = ACTIONS(391), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_try] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_else] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_AT] = ACTIONS(391), - [anon_sym_open] = ACTIONS(391), - [anon_sym_module] = ACTIONS(391), - [anon_sym_static] = ACTIONS(391), - [anon_sym_package] = ACTIONS(391), - [anon_sym_import] = ACTIONS(391), - [anon_sym_enum] = ACTIONS(391), - [anon_sym_public] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(391), - [anon_sym_final] = ACTIONS(391), - [anon_sym_strictfp] = ACTIONS(391), - [anon_sym_native] = ACTIONS(391), - [anon_sym_transient] = ACTIONS(391), - [anon_sym_volatile] = ACTIONS(391), - [anon_sym_sealed] = ACTIONS(391), - [anon_sym_non_DASHsealed] = ACTIONS(389), - [anon_sym_record] = ACTIONS(391), - [anon_sym_ATinterface] = ACTIONS(389), - [anon_sym_interface] = ACTIONS(391), - [anon_sym_byte] = ACTIONS(391), - [anon_sym_short] = ACTIONS(391), - [anon_sym_int] = ACTIONS(391), - [anon_sym_long] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_float] = ACTIONS(391), - [anon_sym_double] = ACTIONS(391), - [sym_boolean_type] = ACTIONS(391), - [sym_void_type] = ACTIONS(391), - [sym_this] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(395), - [sym_decimal_integer_literal] = ACTIONS(395), - [sym_hex_integer_literal] = ACTIONS(395), - [sym_octal_integer_literal] = ACTIONS(393), - [sym_binary_integer_literal] = ACTIONS(393), - [sym_decimal_floating_point_literal] = ACTIONS(393), - [sym_hex_floating_point_literal] = ACTIONS(395), - [sym_true] = ACTIONS(395), - [sym_false] = ACTIONS(395), - [sym_character_literal] = ACTIONS(393), - [sym_string_literal] = ACTIONS(395), - [sym_text_block] = ACTIONS(393), - [sym_null_literal] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_new] = ACTIONS(395), - [anon_sym_class] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_case] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_do] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_return] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_synchronized] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(395), - [anon_sym_try] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_open] = ACTIONS(395), - [anon_sym_module] = ACTIONS(395), - [anon_sym_static] = ACTIONS(395), - [anon_sym_package] = ACTIONS(395), - [anon_sym_import] = ACTIONS(395), - [anon_sym_enum] = ACTIONS(395), - [anon_sym_public] = ACTIONS(395), - [anon_sym_protected] = ACTIONS(395), - [anon_sym_private] = ACTIONS(395), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_final] = ACTIONS(395), - [anon_sym_strictfp] = ACTIONS(395), - [anon_sym_native] = ACTIONS(395), - [anon_sym_transient] = ACTIONS(395), - [anon_sym_volatile] = ACTIONS(395), - [anon_sym_sealed] = ACTIONS(395), - [anon_sym_non_DASHsealed] = ACTIONS(393), - [anon_sym_record] = ACTIONS(395), - [anon_sym_ATinterface] = ACTIONS(393), - [anon_sym_interface] = ACTIONS(395), - [anon_sym_byte] = ACTIONS(395), - [anon_sym_short] = ACTIONS(395), - [anon_sym_int] = ACTIONS(395), - [anon_sym_long] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_float] = ACTIONS(395), - [anon_sym_double] = ACTIONS(395), - [sym_boolean_type] = ACTIONS(395), - [sym_void_type] = ACTIONS(395), - [sym_this] = ACTIONS(395), - [sym_super] = ACTIONS(395), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_decimal_integer_literal] = ACTIONS(399), - [sym_hex_integer_literal] = ACTIONS(399), - [sym_octal_integer_literal] = ACTIONS(397), - [sym_binary_integer_literal] = ACTIONS(397), - [sym_decimal_floating_point_literal] = ACTIONS(397), - [sym_hex_floating_point_literal] = ACTIONS(399), - [sym_true] = ACTIONS(399), - [sym_false] = ACTIONS(399), - [sym_character_literal] = ACTIONS(397), - [sym_string_literal] = ACTIONS(399), - [sym_text_block] = ACTIONS(397), - [sym_null_literal] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_new] = ACTIONS(399), - [anon_sym_class] = ACTIONS(399), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_assert] = ACTIONS(399), - [anon_sym_do] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_synchronized] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(399), - [anon_sym_try] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_else] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_open] = ACTIONS(399), - [anon_sym_module] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_package] = ACTIONS(399), - [anon_sym_import] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_public] = ACTIONS(399), - [anon_sym_protected] = ACTIONS(399), - [anon_sym_private] = ACTIONS(399), - [anon_sym_abstract] = ACTIONS(399), - [anon_sym_final] = ACTIONS(399), - [anon_sym_strictfp] = ACTIONS(399), - [anon_sym_native] = ACTIONS(399), - [anon_sym_transient] = ACTIONS(399), - [anon_sym_volatile] = ACTIONS(399), - [anon_sym_sealed] = ACTIONS(399), - [anon_sym_non_DASHsealed] = ACTIONS(397), - [anon_sym_record] = ACTIONS(399), - [anon_sym_ATinterface] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_byte] = ACTIONS(399), - [anon_sym_short] = ACTIONS(399), - [anon_sym_int] = ACTIONS(399), - [anon_sym_long] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_float] = ACTIONS(399), - [anon_sym_double] = ACTIONS(399), - [sym_boolean_type] = ACTIONS(399), - [sym_void_type] = ACTIONS(399), - [sym_this] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [84] = { [ts_builtin_sym_end] = ACTIONS(401), [sym_identifier] = ACTIONS(403), @@ -17520,85 +17566,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [85] = { - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [sym_decimal_integer_literal] = ACTIONS(246), - [sym_hex_integer_literal] = ACTIONS(246), - [sym_octal_integer_literal] = ACTIONS(244), - [sym_binary_integer_literal] = ACTIONS(244), - [sym_decimal_floating_point_literal] = ACTIONS(244), - [sym_hex_floating_point_literal] = ACTIONS(246), - [sym_true] = ACTIONS(246), - [sym_false] = ACTIONS(246), - [sym_character_literal] = ACTIONS(244), - [sym_string_literal] = ACTIONS(246), - [sym_text_block] = ACTIONS(244), - [sym_null_literal] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_new] = ACTIONS(246), - [anon_sym_class] = ACTIONS(246), - [anon_sym_switch] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(246), - [anon_sym_default] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(244), - [anon_sym_assert] = ACTIONS(246), - [anon_sym_do] = ACTIONS(246), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(246), - [anon_sym_continue] = ACTIONS(246), - [anon_sym_return] = ACTIONS(246), - [anon_sym_yield] = ACTIONS(246), - [anon_sym_synchronized] = ACTIONS(246), - [anon_sym_throw] = ACTIONS(246), - [anon_sym_try] = ACTIONS(246), - [anon_sym_catch] = ACTIONS(246), - [anon_sym_finally] = ACTIONS(246), - [anon_sym_if] = ACTIONS(246), - [anon_sym_else] = ACTIONS(246), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(246), - [anon_sym_open] = ACTIONS(246), - [anon_sym_module] = ACTIONS(246), - [anon_sym_static] = ACTIONS(246), - [anon_sym_package] = ACTIONS(246), - [anon_sym_import] = ACTIONS(246), - [anon_sym_enum] = ACTIONS(246), - [anon_sym_public] = ACTIONS(246), - [anon_sym_protected] = ACTIONS(246), - [anon_sym_private] = ACTIONS(246), - [anon_sym_abstract] = ACTIONS(246), - [anon_sym_final] = ACTIONS(246), - [anon_sym_strictfp] = ACTIONS(246), - [anon_sym_native] = ACTIONS(246), - [anon_sym_transient] = ACTIONS(246), - [anon_sym_volatile] = ACTIONS(246), - [anon_sym_sealed] = ACTIONS(246), - [anon_sym_non_DASHsealed] = ACTIONS(244), - [anon_sym_ATinterface] = ACTIONS(244), - [anon_sym_interface] = ACTIONS(246), - [anon_sym_byte] = ACTIONS(246), - [anon_sym_short] = ACTIONS(246), - [anon_sym_int] = ACTIONS(246), - [anon_sym_long] = ACTIONS(246), - [anon_sym_char] = ACTIONS(246), - [anon_sym_float] = ACTIONS(246), - [anon_sym_double] = ACTIONS(246), - [sym_boolean_type] = ACTIONS(246), - [sym_void_type] = ACTIONS(246), - [sym_this] = ACTIONS(246), - [sym_super] = ACTIONS(246), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { [ts_builtin_sym_end] = ACTIONS(405), [sym_identifier] = ACTIONS(407), [sym_decimal_integer_literal] = ACTIONS(407), @@ -17677,7 +17644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [87] = { + [86] = { [ts_builtin_sym_end] = ACTIONS(409), [sym_identifier] = ACTIONS(411), [sym_decimal_integer_literal] = ACTIONS(411), @@ -17756,7 +17723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [88] = { + [87] = { [ts_builtin_sym_end] = ACTIONS(413), [sym_identifier] = ACTIONS(415), [sym_decimal_integer_literal] = ACTIONS(415), @@ -17835,7 +17802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [89] = { + [88] = { [ts_builtin_sym_end] = ACTIONS(417), [sym_identifier] = ACTIONS(419), [sym_decimal_integer_literal] = ACTIONS(419), @@ -17914,7 +17881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [90] = { + [89] = { [ts_builtin_sym_end] = ACTIONS(421), [sym_identifier] = ACTIONS(423), [sym_decimal_integer_literal] = ACTIONS(423), @@ -17930,7 +17897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(421), [sym_null_literal] = ACTIONS(423), [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), [anon_sym_PLUS] = ACTIONS(423), [anon_sym_DASH] = ACTIONS(423), [anon_sym_BANG] = ACTIONS(421), @@ -17955,6 +17921,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(423), [anon_sym_throw] = ACTIONS(423), [anon_sym_try] = ACTIONS(423), + [anon_sym_catch] = ACTIONS(423), + [anon_sym_finally] = ACTIONS(423), [anon_sym_if] = ACTIONS(423), [anon_sym_else] = ACTIONS(423), [anon_sym_for] = ACTIONS(423), @@ -17976,7 +17944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(423), [anon_sym_sealed] = ACTIONS(423), [anon_sym_non_DASHsealed] = ACTIONS(421), - [anon_sym_record] = ACTIONS(423), [anon_sym_ATinterface] = ACTIONS(421), [anon_sym_interface] = ACTIONS(423), [anon_sym_byte] = ACTIONS(423), @@ -17993,7 +17960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [91] = { + [90] = { [ts_builtin_sym_end] = ACTIONS(425), [sym_identifier] = ACTIONS(427), [sym_decimal_integer_literal] = ACTIONS(427), @@ -18072,7 +18039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [92] = { + [91] = { [ts_builtin_sym_end] = ACTIONS(429), [sym_identifier] = ACTIONS(431), [sym_decimal_integer_literal] = ACTIONS(431), @@ -18151,86 +18118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [ts_builtin_sym_end] = ACTIONS(248), - [sym_identifier] = ACTIONS(250), - [sym_decimal_integer_literal] = ACTIONS(250), - [sym_hex_integer_literal] = ACTIONS(250), - [sym_octal_integer_literal] = ACTIONS(248), - [sym_binary_integer_literal] = ACTIONS(248), - [sym_decimal_floating_point_literal] = ACTIONS(248), - [sym_hex_floating_point_literal] = ACTIONS(250), - [sym_true] = ACTIONS(250), - [sym_false] = ACTIONS(250), - [sym_character_literal] = ACTIONS(248), - [sym_string_literal] = ACTIONS(250), - [sym_text_block] = ACTIONS(248), - [sym_null_literal] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(248), - [anon_sym_DASH_DASH] = ACTIONS(248), - [anon_sym_new] = ACTIONS(250), - [anon_sym_class] = ACTIONS(250), - [anon_sym_switch] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(248), - [anon_sym_case] = ACTIONS(250), - [anon_sym_default] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(248), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(250), - [anon_sym_return] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(250), - [anon_sym_synchronized] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_catch] = ACTIONS(250), - [anon_sym_finally] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_else] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_open] = ACTIONS(250), - [anon_sym_module] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_package] = ACTIONS(250), - [anon_sym_import] = ACTIONS(250), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_final] = ACTIONS(250), - [anon_sym_strictfp] = ACTIONS(250), - [anon_sym_native] = ACTIONS(250), - [anon_sym_transient] = ACTIONS(250), - [anon_sym_volatile] = ACTIONS(250), - [anon_sym_sealed] = ACTIONS(250), - [anon_sym_non_DASHsealed] = ACTIONS(248), - [anon_sym_ATinterface] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(250), - [anon_sym_byte] = ACTIONS(250), - [anon_sym_short] = ACTIONS(250), - [anon_sym_int] = ACTIONS(250), - [anon_sym_long] = ACTIONS(250), - [anon_sym_char] = ACTIONS(250), - [anon_sym_float] = ACTIONS(250), - [anon_sym_double] = ACTIONS(250), - [sym_boolean_type] = ACTIONS(250), - [sym_void_type] = ACTIONS(250), - [sym_this] = ACTIONS(250), - [sym_super] = ACTIONS(250), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [94] = { + [92] = { [ts_builtin_sym_end] = ACTIONS(433), [sym_identifier] = ACTIONS(435), [sym_decimal_integer_literal] = ACTIONS(435), @@ -18309,7 +18197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [95] = { + [93] = { [ts_builtin_sym_end] = ACTIONS(437), [sym_identifier] = ACTIONS(439), [sym_decimal_integer_literal] = ACTIONS(439), @@ -18388,7 +18276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [96] = { + [94] = { [ts_builtin_sym_end] = ACTIONS(441), [sym_identifier] = ACTIONS(443), [sym_decimal_integer_literal] = ACTIONS(443), @@ -18467,7 +18355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [97] = { + [95] = { [ts_builtin_sym_end] = ACTIONS(445), [sym_identifier] = ACTIONS(447), [sym_decimal_integer_literal] = ACTIONS(447), @@ -18546,7 +18434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [98] = { + [96] = { [ts_builtin_sym_end] = ACTIONS(449), [sym_identifier] = ACTIONS(451), [sym_decimal_integer_literal] = ACTIONS(451), @@ -18625,7 +18513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [99] = { + [97] = { [ts_builtin_sym_end] = ACTIONS(453), [sym_identifier] = ACTIONS(455), [sym_decimal_integer_literal] = ACTIONS(455), @@ -18704,7 +18592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [100] = { + [98] = { [ts_builtin_sym_end] = ACTIONS(457), [sym_identifier] = ACTIONS(459), [sym_decimal_integer_literal] = ACTIONS(459), @@ -18783,7 +18671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [101] = { + [99] = { [ts_builtin_sym_end] = ACTIONS(461), [sym_identifier] = ACTIONS(463), [sym_decimal_integer_literal] = ACTIONS(463), @@ -18862,7 +18750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [102] = { + [100] = { [ts_builtin_sym_end] = ACTIONS(465), [sym_identifier] = ACTIONS(467), [sym_decimal_integer_literal] = ACTIONS(467), @@ -18941,7 +18829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [103] = { + [101] = { [ts_builtin_sym_end] = ACTIONS(469), [sym_identifier] = ACTIONS(471), [sym_decimal_integer_literal] = ACTIONS(471), @@ -19020,7 +18908,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [104] = { + [102] = { + [ts_builtin_sym_end] = ACTIONS(244), + [sym_identifier] = ACTIONS(246), + [sym_decimal_integer_literal] = ACTIONS(246), + [sym_hex_integer_literal] = ACTIONS(246), + [sym_octal_integer_literal] = ACTIONS(244), + [sym_binary_integer_literal] = ACTIONS(244), + [sym_decimal_floating_point_literal] = ACTIONS(244), + [sym_hex_floating_point_literal] = ACTIONS(246), + [sym_true] = ACTIONS(246), + [sym_false] = ACTIONS(246), + [sym_character_literal] = ACTIONS(244), + [sym_string_literal] = ACTIONS(246), + [sym_text_block] = ACTIONS(244), + [sym_null_literal] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_BANG] = ACTIONS(244), + [anon_sym_TILDE] = ACTIONS(244), + [anon_sym_PLUS_PLUS] = ACTIONS(244), + [anon_sym_DASH_DASH] = ACTIONS(244), + [anon_sym_new] = ACTIONS(246), + [anon_sym_class] = ACTIONS(246), + [anon_sym_switch] = ACTIONS(246), + [anon_sym_LBRACE] = ACTIONS(244), + [anon_sym_RBRACE] = ACTIONS(244), + [anon_sym_case] = ACTIONS(246), + [anon_sym_default] = ACTIONS(246), + [anon_sym_SEMI] = ACTIONS(244), + [anon_sym_assert] = ACTIONS(246), + [anon_sym_do] = ACTIONS(246), + [anon_sym_while] = ACTIONS(246), + [anon_sym_break] = ACTIONS(246), + [anon_sym_continue] = ACTIONS(246), + [anon_sym_return] = ACTIONS(246), + [anon_sym_yield] = ACTIONS(246), + [anon_sym_synchronized] = ACTIONS(246), + [anon_sym_throw] = ACTIONS(246), + [anon_sym_try] = ACTIONS(246), + [anon_sym_catch] = ACTIONS(246), + [anon_sym_finally] = ACTIONS(246), + [anon_sym_if] = ACTIONS(246), + [anon_sym_else] = ACTIONS(246), + [anon_sym_for] = ACTIONS(246), + [anon_sym_AT] = ACTIONS(246), + [anon_sym_open] = ACTIONS(246), + [anon_sym_module] = ACTIONS(246), + [anon_sym_static] = ACTIONS(246), + [anon_sym_package] = ACTIONS(246), + [anon_sym_import] = ACTIONS(246), + [anon_sym_enum] = ACTIONS(246), + [anon_sym_public] = ACTIONS(246), + [anon_sym_protected] = ACTIONS(246), + [anon_sym_private] = ACTIONS(246), + [anon_sym_abstract] = ACTIONS(246), + [anon_sym_final] = ACTIONS(246), + [anon_sym_strictfp] = ACTIONS(246), + [anon_sym_native] = ACTIONS(246), + [anon_sym_transient] = ACTIONS(246), + [anon_sym_volatile] = ACTIONS(246), + [anon_sym_sealed] = ACTIONS(246), + [anon_sym_non_DASHsealed] = ACTIONS(244), + [anon_sym_ATinterface] = ACTIONS(244), + [anon_sym_interface] = ACTIONS(246), + [anon_sym_byte] = ACTIONS(246), + [anon_sym_short] = ACTIONS(246), + [anon_sym_int] = ACTIONS(246), + [anon_sym_long] = ACTIONS(246), + [anon_sym_char] = ACTIONS(246), + [anon_sym_float] = ACTIONS(246), + [anon_sym_double] = ACTIONS(246), + [sym_boolean_type] = ACTIONS(246), + [sym_void_type] = ACTIONS(246), + [sym_this] = ACTIONS(246), + [sym_super] = ACTIONS(246), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [103] = { [ts_builtin_sym_end] = ACTIONS(473), [sym_identifier] = ACTIONS(475), [sym_decimal_integer_literal] = ACTIONS(475), @@ -19099,280 +19066,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [ts_builtin_sym_end] = ACTIONS(477), - [sym_identifier] = ACTIONS(479), - [sym_decimal_integer_literal] = ACTIONS(479), - [sym_hex_integer_literal] = ACTIONS(479), - [sym_octal_integer_literal] = ACTIONS(477), - [sym_binary_integer_literal] = ACTIONS(477), - [sym_decimal_floating_point_literal] = ACTIONS(477), - [sym_hex_floating_point_literal] = ACTIONS(479), - [sym_true] = ACTIONS(479), - [sym_false] = ACTIONS(479), - [sym_character_literal] = ACTIONS(477), - [sym_string_literal] = ACTIONS(479), - [sym_text_block] = ACTIONS(477), - [sym_null_literal] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [anon_sym_new] = ACTIONS(479), - [anon_sym_class] = ACTIONS(479), - [anon_sym_switch] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_case] = ACTIONS(479), - [anon_sym_default] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_assert] = ACTIONS(479), - [anon_sym_do] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_return] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_synchronized] = ACTIONS(479), - [anon_sym_throw] = ACTIONS(479), - [anon_sym_try] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_AT] = ACTIONS(479), - [anon_sym_open] = ACTIONS(479), - [anon_sym_module] = ACTIONS(479), - [anon_sym_static] = ACTIONS(479), - [anon_sym_package] = ACTIONS(479), - [anon_sym_import] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(479), - [anon_sym_public] = ACTIONS(479), - [anon_sym_protected] = ACTIONS(479), - [anon_sym_private] = ACTIONS(479), - [anon_sym_abstract] = ACTIONS(479), - [anon_sym_final] = ACTIONS(479), - [anon_sym_strictfp] = ACTIONS(479), - [anon_sym_native] = ACTIONS(479), - [anon_sym_transient] = ACTIONS(479), - [anon_sym_volatile] = ACTIONS(479), - [anon_sym_sealed] = ACTIONS(479), - [anon_sym_non_DASHsealed] = ACTIONS(477), - [anon_sym_record] = ACTIONS(479), - [anon_sym_ATinterface] = ACTIONS(477), - [anon_sym_interface] = ACTIONS(479), - [anon_sym_byte] = ACTIONS(479), - [anon_sym_short] = ACTIONS(479), - [anon_sym_int] = ACTIONS(479), - [anon_sym_long] = ACTIONS(479), - [anon_sym_char] = ACTIONS(479), - [anon_sym_float] = ACTIONS(479), - [anon_sym_double] = ACTIONS(479), - [sym_boolean_type] = ACTIONS(479), - [sym_void_type] = ACTIONS(479), - [sym_this] = ACTIONS(479), - [sym_super] = ACTIONS(479), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [106] = { - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [sym_decimal_integer_literal] = ACTIONS(483), - [sym_hex_integer_literal] = ACTIONS(483), - [sym_octal_integer_literal] = ACTIONS(481), - [sym_binary_integer_literal] = ACTIONS(481), - [sym_decimal_floating_point_literal] = ACTIONS(481), - [sym_hex_floating_point_literal] = ACTIONS(483), - [sym_true] = ACTIONS(483), - [sym_false] = ACTIONS(483), - [sym_character_literal] = ACTIONS(481), - [sym_string_literal] = ACTIONS(483), - [sym_text_block] = ACTIONS(481), - [sym_null_literal] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_PLUS_PLUS] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(481), - [anon_sym_new] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_case] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_assert] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_synchronized] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_try] = ACTIONS(483), - [anon_sym_if] = ACTIONS(483), - [anon_sym_else] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_open] = ACTIONS(483), - [anon_sym_module] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_package] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_protected] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_strictfp] = ACTIONS(483), - [anon_sym_native] = ACTIONS(483), - [anon_sym_transient] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_sealed] = ACTIONS(483), - [anon_sym_non_DASHsealed] = ACTIONS(481), - [anon_sym_record] = ACTIONS(483), - [anon_sym_ATinterface] = ACTIONS(481), - [anon_sym_interface] = ACTIONS(483), - [anon_sym_byte] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [anon_sym_int] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_char] = ACTIONS(483), - [anon_sym_float] = ACTIONS(483), - [anon_sym_double] = ACTIONS(483), - [sym_boolean_type] = ACTIONS(483), - [sym_void_type] = ACTIONS(483), - [sym_this] = ACTIONS(483), - [sym_super] = ACTIONS(483), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [107] = { - [ts_builtin_sym_end] = ACTIONS(485), - [sym_identifier] = ACTIONS(487), - [sym_decimal_integer_literal] = ACTIONS(487), - [sym_hex_integer_literal] = ACTIONS(487), - [sym_octal_integer_literal] = ACTIONS(485), - [sym_binary_integer_literal] = ACTIONS(485), - [sym_decimal_floating_point_literal] = ACTIONS(485), - [sym_hex_floating_point_literal] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_character_literal] = ACTIONS(485), - [sym_string_literal] = ACTIONS(487), - [sym_text_block] = ACTIONS(485), - [sym_null_literal] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_new] = ACTIONS(487), - [anon_sym_class] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_case] = ACTIONS(487), - [anon_sym_default] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_assert] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(487), - [anon_sym_synchronized] = ACTIONS(487), - [anon_sym_throw] = ACTIONS(487), - [anon_sym_try] = ACTIONS(487), - [anon_sym_catch] = ACTIONS(487), - [anon_sym_finally] = ACTIONS(487), - [anon_sym_if] = ACTIONS(487), - [anon_sym_else] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(487), - [anon_sym_open] = ACTIONS(487), - [anon_sym_module] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_package] = ACTIONS(487), - [anon_sym_import] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [anon_sym_public] = ACTIONS(487), - [anon_sym_protected] = ACTIONS(487), - [anon_sym_private] = ACTIONS(487), - [anon_sym_abstract] = ACTIONS(487), - [anon_sym_final] = ACTIONS(487), - [anon_sym_strictfp] = ACTIONS(487), - [anon_sym_native] = ACTIONS(487), - [anon_sym_transient] = ACTIONS(487), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_sealed] = ACTIONS(487), - [anon_sym_non_DASHsealed] = ACTIONS(485), - [anon_sym_ATinterface] = ACTIONS(485), - [anon_sym_interface] = ACTIONS(487), - [anon_sym_byte] = ACTIONS(487), - [anon_sym_short] = ACTIONS(487), - [anon_sym_int] = ACTIONS(487), - [anon_sym_long] = ACTIONS(487), - [anon_sym_char] = ACTIONS(487), - [anon_sym_float] = ACTIONS(487), - [anon_sym_double] = ACTIONS(487), - [sym_boolean_type] = ACTIONS(487), - [sym_void_type] = ACTIONS(487), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(514), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [104] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(933), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym__element_value] = STATE(1011), + [sym_element_value_array_initializer] = STATE(1011), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19389,15 +19120,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(489), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(477), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -19415,6 +19145,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(479), + [sym_identifier] = ACTIONS(481), + [sym_decimal_integer_literal] = ACTIONS(481), + [sym_hex_integer_literal] = ACTIONS(481), + [sym_octal_integer_literal] = ACTIONS(479), + [sym_binary_integer_literal] = ACTIONS(479), + [sym_decimal_floating_point_literal] = ACTIONS(479), + [sym_hex_floating_point_literal] = ACTIONS(481), + [sym_true] = ACTIONS(481), + [sym_false] = ACTIONS(481), + [sym_character_literal] = ACTIONS(479), + [sym_string_literal] = ACTIONS(481), + [sym_text_block] = ACTIONS(479), + [sym_null_literal] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(479), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(479), + [anon_sym_new] = ACTIONS(481), + [anon_sym_class] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_case] = ACTIONS(481), + [anon_sym_default] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_assert] = ACTIONS(481), + [anon_sym_do] = ACTIONS(481), + [anon_sym_while] = ACTIONS(481), + [anon_sym_break] = ACTIONS(481), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_synchronized] = ACTIONS(481), + [anon_sym_throw] = ACTIONS(481), + [anon_sym_try] = ACTIONS(481), + [anon_sym_if] = ACTIONS(481), + [anon_sym_else] = ACTIONS(481), + [anon_sym_for] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(481), + [anon_sym_open] = ACTIONS(481), + [anon_sym_module] = ACTIONS(481), + [anon_sym_static] = ACTIONS(481), + [anon_sym_package] = ACTIONS(481), + [anon_sym_import] = ACTIONS(481), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_public] = ACTIONS(481), + [anon_sym_protected] = ACTIONS(481), + [anon_sym_private] = ACTIONS(481), + [anon_sym_abstract] = ACTIONS(481), + [anon_sym_final] = ACTIONS(481), + [anon_sym_strictfp] = ACTIONS(481), + [anon_sym_native] = ACTIONS(481), + [anon_sym_transient] = ACTIONS(481), + [anon_sym_volatile] = ACTIONS(481), + [anon_sym_sealed] = ACTIONS(481), + [anon_sym_non_DASHsealed] = ACTIONS(479), + [anon_sym_record] = ACTIONS(481), + [anon_sym_ATinterface] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(481), + [anon_sym_byte] = ACTIONS(481), + [anon_sym_short] = ACTIONS(481), + [anon_sym_int] = ACTIONS(481), + [anon_sym_long] = ACTIONS(481), + [anon_sym_char] = ACTIONS(481), + [anon_sym_float] = ACTIONS(481), + [anon_sym_double] = ACTIONS(481), + [sym_boolean_type] = ACTIONS(481), + [sym_void_type] = ACTIONS(481), + [sym_this] = ACTIONS(481), + [sym_super] = ACTIONS(481), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [106] = { + [ts_builtin_sym_end] = ACTIONS(483), + [sym_identifier] = ACTIONS(485), + [sym_decimal_integer_literal] = ACTIONS(485), + [sym_hex_integer_literal] = ACTIONS(485), + [sym_octal_integer_literal] = ACTIONS(483), + [sym_binary_integer_literal] = ACTIONS(483), + [sym_decimal_floating_point_literal] = ACTIONS(483), + [sym_hex_floating_point_literal] = ACTIONS(485), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_character_literal] = ACTIONS(483), + [sym_string_literal] = ACTIONS(485), + [sym_text_block] = ACTIONS(483), + [sym_null_literal] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [anon_sym_new] = ACTIONS(485), + [anon_sym_class] = ACTIONS(485), + [anon_sym_switch] = ACTIONS(485), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_case] = ACTIONS(485), + [anon_sym_default] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(483), + [anon_sym_assert] = ACTIONS(485), + [anon_sym_do] = ACTIONS(485), + [anon_sym_while] = ACTIONS(485), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(485), + [anon_sym_return] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_synchronized] = ACTIONS(485), + [anon_sym_throw] = ACTIONS(485), + [anon_sym_try] = ACTIONS(485), + [anon_sym_if] = ACTIONS(485), + [anon_sym_else] = ACTIONS(485), + [anon_sym_for] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(485), + [anon_sym_open] = ACTIONS(485), + [anon_sym_module] = ACTIONS(485), + [anon_sym_static] = ACTIONS(485), + [anon_sym_package] = ACTIONS(485), + [anon_sym_import] = ACTIONS(485), + [anon_sym_enum] = ACTIONS(485), + [anon_sym_public] = ACTIONS(485), + [anon_sym_protected] = ACTIONS(485), + [anon_sym_private] = ACTIONS(485), + [anon_sym_abstract] = ACTIONS(485), + [anon_sym_final] = ACTIONS(485), + [anon_sym_strictfp] = ACTIONS(485), + [anon_sym_native] = ACTIONS(485), + [anon_sym_transient] = ACTIONS(485), + [anon_sym_volatile] = ACTIONS(485), + [anon_sym_sealed] = ACTIONS(485), + [anon_sym_non_DASHsealed] = ACTIONS(483), + [anon_sym_record] = ACTIONS(485), + [anon_sym_ATinterface] = ACTIONS(483), + [anon_sym_interface] = ACTIONS(485), + [anon_sym_byte] = ACTIONS(485), + [anon_sym_short] = ACTIONS(485), + [anon_sym_int] = ACTIONS(485), + [anon_sym_long] = ACTIONS(485), + [anon_sym_char] = ACTIONS(485), + [anon_sym_float] = ACTIONS(485), + [anon_sym_double] = ACTIONS(485), + [sym_boolean_type] = ACTIONS(485), + [sym_void_type] = ACTIONS(485), + [sym_this] = ACTIONS(485), + [sym_super] = ACTIONS(485), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [107] = { + [ts_builtin_sym_end] = ACTIONS(487), + [sym_identifier] = ACTIONS(489), + [sym_decimal_integer_literal] = ACTIONS(489), + [sym_hex_integer_literal] = ACTIONS(489), + [sym_octal_integer_literal] = ACTIONS(487), + [sym_binary_integer_literal] = ACTIONS(487), + [sym_decimal_floating_point_literal] = ACTIONS(487), + [sym_hex_floating_point_literal] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [sym_false] = ACTIONS(489), + [sym_character_literal] = ACTIONS(487), + [sym_string_literal] = ACTIONS(489), + [sym_text_block] = ACTIONS(487), + [sym_null_literal] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_new] = ACTIONS(489), + [anon_sym_class] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(487), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_case] = ACTIONS(489), + [anon_sym_default] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(489), + [anon_sym_do] = ACTIONS(489), + [anon_sym_while] = ACTIONS(489), + [anon_sym_break] = ACTIONS(489), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_return] = ACTIONS(489), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_synchronized] = ACTIONS(489), + [anon_sym_throw] = ACTIONS(489), + [anon_sym_try] = ACTIONS(489), + [anon_sym_if] = ACTIONS(489), + [anon_sym_else] = ACTIONS(489), + [anon_sym_for] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_open] = ACTIONS(489), + [anon_sym_module] = ACTIONS(489), + [anon_sym_static] = ACTIONS(489), + [anon_sym_package] = ACTIONS(489), + [anon_sym_import] = ACTIONS(489), + [anon_sym_enum] = ACTIONS(489), + [anon_sym_public] = ACTIONS(489), + [anon_sym_protected] = ACTIONS(489), + [anon_sym_private] = ACTIONS(489), + [anon_sym_abstract] = ACTIONS(489), + [anon_sym_final] = ACTIONS(489), + [anon_sym_strictfp] = ACTIONS(489), + [anon_sym_native] = ACTIONS(489), + [anon_sym_transient] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(489), + [anon_sym_sealed] = ACTIONS(489), + [anon_sym_non_DASHsealed] = ACTIONS(487), + [anon_sym_record] = ACTIONS(489), + [anon_sym_ATinterface] = ACTIONS(487), + [anon_sym_interface] = ACTIONS(489), + [anon_sym_byte] = ACTIONS(489), + [anon_sym_short] = ACTIONS(489), + [anon_sym_int] = ACTIONS(489), + [anon_sym_long] = ACTIONS(489), + [anon_sym_char] = ACTIONS(489), + [anon_sym_float] = ACTIONS(489), + [anon_sym_double] = ACTIONS(489), + [sym_boolean_type] = ACTIONS(489), + [sym_void_type] = ACTIONS(489), + [sym_this] = ACTIONS(489), + [sym_super] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [108] = { + [ts_builtin_sym_end] = ACTIONS(491), + [sym_identifier] = ACTIONS(493), + [sym_decimal_integer_literal] = ACTIONS(493), + [sym_hex_integer_literal] = ACTIONS(493), + [sym_octal_integer_literal] = ACTIONS(491), + [sym_binary_integer_literal] = ACTIONS(491), + [sym_decimal_floating_point_literal] = ACTIONS(491), + [sym_hex_floating_point_literal] = ACTIONS(493), + [sym_true] = ACTIONS(493), + [sym_false] = ACTIONS(493), + [sym_character_literal] = ACTIONS(491), + [sym_string_literal] = ACTIONS(493), + [sym_text_block] = ACTIONS(491), + [sym_null_literal] = ACTIONS(493), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(491), + [anon_sym_new] = ACTIONS(493), + [anon_sym_class] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_case] = ACTIONS(493), + [anon_sym_default] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_assert] = ACTIONS(493), + [anon_sym_do] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [anon_sym_break] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_synchronized] = ACTIONS(493), + [anon_sym_throw] = ACTIONS(493), + [anon_sym_try] = ACTIONS(493), + [anon_sym_if] = ACTIONS(493), + [anon_sym_else] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(493), + [anon_sym_open] = ACTIONS(493), + [anon_sym_module] = ACTIONS(493), + [anon_sym_static] = ACTIONS(493), + [anon_sym_package] = ACTIONS(493), + [anon_sym_import] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [anon_sym_public] = ACTIONS(493), + [anon_sym_protected] = ACTIONS(493), + [anon_sym_private] = ACTIONS(493), + [anon_sym_abstract] = ACTIONS(493), + [anon_sym_final] = ACTIONS(493), + [anon_sym_strictfp] = ACTIONS(493), + [anon_sym_native] = ACTIONS(493), + [anon_sym_transient] = ACTIONS(493), + [anon_sym_volatile] = ACTIONS(493), + [anon_sym_sealed] = ACTIONS(493), + [anon_sym_non_DASHsealed] = ACTIONS(491), + [anon_sym_record] = ACTIONS(493), + [anon_sym_ATinterface] = ACTIONS(491), + [anon_sym_interface] = ACTIONS(493), + [anon_sym_byte] = ACTIONS(493), + [anon_sym_short] = ACTIONS(493), + [anon_sym_int] = ACTIONS(493), + [anon_sym_long] = ACTIONS(493), + [anon_sym_char] = ACTIONS(493), + [anon_sym_float] = ACTIONS(493), + [anon_sym_double] = ACTIONS(493), + [sym_boolean_type] = ACTIONS(493), + [sym_void_type] = ACTIONS(493), + [sym_this] = ACTIONS(493), + [sym_super] = ACTIONS(493), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [109] = { [ts_builtin_sym_end] = ACTIONS(495), [sym_identifier] = ACTIONS(497), @@ -20127,43 +20173,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [118] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(531), + [sym_identifier] = ACTIONS(533), + [sym_decimal_integer_literal] = ACTIONS(533), + [sym_hex_integer_literal] = ACTIONS(533), + [sym_octal_integer_literal] = ACTIONS(531), + [sym_binary_integer_literal] = ACTIONS(531), + [sym_decimal_floating_point_literal] = ACTIONS(531), + [sym_hex_floating_point_literal] = ACTIONS(533), + [sym_true] = ACTIONS(533), + [sym_false] = ACTIONS(533), + [sym_character_literal] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_text_block] = ACTIONS(531), + [sym_null_literal] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_class] = ACTIONS(533), + [anon_sym_switch] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_case] = ACTIONS(533), + [anon_sym_default] = ACTIONS(533), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_assert] = ACTIONS(533), + [anon_sym_do] = ACTIONS(533), + [anon_sym_while] = ACTIONS(533), + [anon_sym_break] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(533), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(533), + [anon_sym_synchronized] = ACTIONS(533), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_try] = ACTIONS(533), + [anon_sym_if] = ACTIONS(533), + [anon_sym_else] = ACTIONS(533), + [anon_sym_for] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(533), + [anon_sym_open] = ACTIONS(533), + [anon_sym_module] = ACTIONS(533), + [anon_sym_static] = ACTIONS(533), + [anon_sym_package] = ACTIONS(533), + [anon_sym_import] = ACTIONS(533), + [anon_sym_enum] = ACTIONS(533), + [anon_sym_public] = ACTIONS(533), + [anon_sym_protected] = ACTIONS(533), + [anon_sym_private] = ACTIONS(533), + [anon_sym_abstract] = ACTIONS(533), + [anon_sym_final] = ACTIONS(533), + [anon_sym_strictfp] = ACTIONS(533), + [anon_sym_native] = ACTIONS(533), + [anon_sym_transient] = ACTIONS(533), + [anon_sym_volatile] = ACTIONS(533), + [anon_sym_sealed] = ACTIONS(533), + [anon_sym_non_DASHsealed] = ACTIONS(531), + [anon_sym_record] = ACTIONS(533), + [anon_sym_ATinterface] = ACTIONS(531), + [anon_sym_interface] = ACTIONS(533), + [anon_sym_byte] = ACTIONS(533), + [anon_sym_short] = ACTIONS(533), + [anon_sym_int] = ACTIONS(533), + [anon_sym_long] = ACTIONS(533), + [anon_sym_char] = ACTIONS(533), + [anon_sym_float] = ACTIONS(533), + [anon_sym_double] = ACTIONS(533), + [sym_boolean_type] = ACTIONS(533), + [sym_void_type] = ACTIONS(533), + [sym_this] = ACTIONS(533), + [sym_super] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [119] = { + [ts_builtin_sym_end] = ACTIONS(535), + [sym_identifier] = ACTIONS(537), + [sym_decimal_integer_literal] = ACTIONS(537), + [sym_hex_integer_literal] = ACTIONS(537), + [sym_octal_integer_literal] = ACTIONS(535), + [sym_binary_integer_literal] = ACTIONS(535), + [sym_decimal_floating_point_literal] = ACTIONS(535), + [sym_hex_floating_point_literal] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [sym_character_literal] = ACTIONS(535), + [sym_string_literal] = ACTIONS(537), + [sym_text_block] = ACTIONS(535), + [sym_null_literal] = ACTIONS(537), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_new] = ACTIONS(537), + [anon_sym_class] = ACTIONS(537), + [anon_sym_switch] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(535), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_case] = ACTIONS(537), + [anon_sym_default] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(535), + [anon_sym_assert] = ACTIONS(537), + [anon_sym_do] = ACTIONS(537), + [anon_sym_while] = ACTIONS(537), + [anon_sym_break] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(537), + [anon_sym_return] = ACTIONS(537), + [anon_sym_yield] = ACTIONS(537), + [anon_sym_synchronized] = ACTIONS(537), + [anon_sym_throw] = ACTIONS(537), + [anon_sym_try] = ACTIONS(537), + [anon_sym_if] = ACTIONS(537), + [anon_sym_else] = ACTIONS(537), + [anon_sym_for] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(537), + [anon_sym_open] = ACTIONS(537), + [anon_sym_module] = ACTIONS(537), + [anon_sym_static] = ACTIONS(537), + [anon_sym_package] = ACTIONS(537), + [anon_sym_import] = ACTIONS(537), + [anon_sym_enum] = ACTIONS(537), + [anon_sym_public] = ACTIONS(537), + [anon_sym_protected] = ACTIONS(537), + [anon_sym_private] = ACTIONS(537), + [anon_sym_abstract] = ACTIONS(537), + [anon_sym_final] = ACTIONS(537), + [anon_sym_strictfp] = ACTIONS(537), + [anon_sym_native] = ACTIONS(537), + [anon_sym_transient] = ACTIONS(537), + [anon_sym_volatile] = ACTIONS(537), + [anon_sym_sealed] = ACTIONS(537), + [anon_sym_non_DASHsealed] = ACTIONS(535), + [anon_sym_record] = ACTIONS(537), + [anon_sym_ATinterface] = ACTIONS(535), + [anon_sym_interface] = ACTIONS(537), + [anon_sym_byte] = ACTIONS(537), + [anon_sym_short] = ACTIONS(537), + [anon_sym_int] = ACTIONS(537), + [anon_sym_long] = ACTIONS(537), + [anon_sym_char] = ACTIONS(537), + [anon_sym_float] = ACTIONS(537), + [anon_sym_double] = ACTIONS(537), + [sym_boolean_type] = ACTIONS(537), + [sym_void_type] = ACTIONS(537), + [sym_this] = ACTIONS(537), + [sym_super] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [120] = { + [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(539), + [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), + [sym_string_literal] = ACTIONS(541), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [121] = { + [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(543), + [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), + [sym_string_literal] = ACTIONS(545), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [122] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym__element_value] = STATE(1011), + [sym_element_value_array_initializer] = STATE(1011), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20187,7 +20549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(547), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -20205,322 +20567,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [ts_builtin_sym_end] = ACTIONS(533), - [sym_identifier] = ACTIONS(535), - [sym_decimal_integer_literal] = ACTIONS(535), - [sym_hex_integer_literal] = ACTIONS(535), - [sym_octal_integer_literal] = ACTIONS(533), - [sym_binary_integer_literal] = ACTIONS(533), - [sym_decimal_floating_point_literal] = ACTIONS(533), - [sym_hex_floating_point_literal] = ACTIONS(535), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_character_literal] = ACTIONS(533), - [sym_string_literal] = ACTIONS(535), - [sym_text_block] = ACTIONS(533), - [sym_null_literal] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(533), - [anon_sym_DASH_DASH] = ACTIONS(533), - [anon_sym_new] = ACTIONS(535), - [anon_sym_class] = ACTIONS(535), - [anon_sym_switch] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_case] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_assert] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_yield] = ACTIONS(535), - [anon_sym_synchronized] = ACTIONS(535), - [anon_sym_throw] = ACTIONS(535), - [anon_sym_try] = ACTIONS(535), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_open] = ACTIONS(535), - [anon_sym_module] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_package] = ACTIONS(535), - [anon_sym_import] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [anon_sym_public] = ACTIONS(535), - [anon_sym_protected] = ACTIONS(535), - [anon_sym_private] = ACTIONS(535), - [anon_sym_abstract] = ACTIONS(535), - [anon_sym_final] = ACTIONS(535), - [anon_sym_strictfp] = ACTIONS(535), - [anon_sym_native] = ACTIONS(535), - [anon_sym_transient] = ACTIONS(535), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_sealed] = ACTIONS(535), - [anon_sym_non_DASHsealed] = ACTIONS(533), - [anon_sym_record] = ACTIONS(535), - [anon_sym_ATinterface] = ACTIONS(533), - [anon_sym_interface] = ACTIONS(535), - [anon_sym_byte] = ACTIONS(535), - [anon_sym_short] = ACTIONS(535), - [anon_sym_int] = ACTIONS(535), - [anon_sym_long] = ACTIONS(535), - [anon_sym_char] = ACTIONS(535), - [anon_sym_float] = ACTIONS(535), - [anon_sym_double] = ACTIONS(535), - [sym_boolean_type] = ACTIONS(535), - [sym_void_type] = ACTIONS(535), - [sym_this] = ACTIONS(535), - [sym_super] = ACTIONS(535), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [120] = { - [ts_builtin_sym_end] = ACTIONS(537), - [sym_identifier] = ACTIONS(539), - [sym_decimal_integer_literal] = ACTIONS(539), - [sym_hex_integer_literal] = ACTIONS(539), - [sym_octal_integer_literal] = ACTIONS(537), - [sym_binary_integer_literal] = ACTIONS(537), - [sym_decimal_floating_point_literal] = ACTIONS(537), - [sym_hex_floating_point_literal] = ACTIONS(539), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [sym_character_literal] = ACTIONS(537), - [sym_string_literal] = ACTIONS(539), - [sym_text_block] = ACTIONS(537), - [sym_null_literal] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_new] = ACTIONS(539), - [anon_sym_class] = ACTIONS(539), - [anon_sym_switch] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_case] = ACTIONS(539), - [anon_sym_default] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_assert] = ACTIONS(539), - [anon_sym_do] = ACTIONS(539), - [anon_sym_while] = ACTIONS(539), - [anon_sym_break] = ACTIONS(539), - [anon_sym_continue] = ACTIONS(539), - [anon_sym_return] = ACTIONS(539), - [anon_sym_yield] = ACTIONS(539), - [anon_sym_synchronized] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(539), - [anon_sym_try] = ACTIONS(539), - [anon_sym_if] = ACTIONS(539), - [anon_sym_else] = ACTIONS(539), - [anon_sym_for] = ACTIONS(539), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_open] = ACTIONS(539), - [anon_sym_module] = ACTIONS(539), - [anon_sym_static] = ACTIONS(539), - [anon_sym_package] = ACTIONS(539), - [anon_sym_import] = ACTIONS(539), - [anon_sym_enum] = ACTIONS(539), - [anon_sym_public] = ACTIONS(539), - [anon_sym_protected] = ACTIONS(539), - [anon_sym_private] = ACTIONS(539), - [anon_sym_abstract] = ACTIONS(539), - [anon_sym_final] = ACTIONS(539), - [anon_sym_strictfp] = ACTIONS(539), - [anon_sym_native] = ACTIONS(539), - [anon_sym_transient] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(539), - [anon_sym_sealed] = ACTIONS(539), - [anon_sym_non_DASHsealed] = ACTIONS(537), - [anon_sym_record] = ACTIONS(539), - [anon_sym_ATinterface] = ACTIONS(537), - [anon_sym_interface] = ACTIONS(539), - [anon_sym_byte] = ACTIONS(539), - [anon_sym_short] = ACTIONS(539), - [anon_sym_int] = ACTIONS(539), - [anon_sym_long] = ACTIONS(539), - [anon_sym_char] = ACTIONS(539), - [anon_sym_float] = ACTIONS(539), - [anon_sym_double] = ACTIONS(539), - [sym_boolean_type] = ACTIONS(539), - [sym_void_type] = ACTIONS(539), - [sym_this] = ACTIONS(539), - [sym_super] = ACTIONS(539), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [121] = { - [ts_builtin_sym_end] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [sym_decimal_integer_literal] = ACTIONS(543), - [sym_hex_integer_literal] = ACTIONS(543), - [sym_octal_integer_literal] = ACTIONS(541), - [sym_binary_integer_literal] = ACTIONS(541), - [sym_decimal_floating_point_literal] = ACTIONS(541), - [sym_hex_floating_point_literal] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_character_literal] = ACTIONS(541), - [sym_string_literal] = ACTIONS(543), - [sym_text_block] = ACTIONS(541), - [sym_null_literal] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_new] = ACTIONS(543), - [anon_sym_class] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_case] = ACTIONS(543), - [anon_sym_default] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_assert] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(543), - [anon_sym_synchronized] = ACTIONS(543), - [anon_sym_throw] = ACTIONS(543), - [anon_sym_try] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_AT] = ACTIONS(543), - [anon_sym_open] = ACTIONS(543), - [anon_sym_module] = ACTIONS(543), - [anon_sym_static] = ACTIONS(543), - [anon_sym_package] = ACTIONS(543), - [anon_sym_import] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [anon_sym_public] = ACTIONS(543), - [anon_sym_protected] = ACTIONS(543), - [anon_sym_private] = ACTIONS(543), - [anon_sym_abstract] = ACTIONS(543), - [anon_sym_final] = ACTIONS(543), - [anon_sym_strictfp] = ACTIONS(543), - [anon_sym_native] = ACTIONS(543), - [anon_sym_transient] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym_sealed] = ACTIONS(543), - [anon_sym_non_DASHsealed] = ACTIONS(541), - [anon_sym_record] = ACTIONS(543), - [anon_sym_ATinterface] = ACTIONS(541), - [anon_sym_interface] = ACTIONS(543), - [anon_sym_byte] = ACTIONS(543), - [anon_sym_short] = ACTIONS(543), - [anon_sym_int] = ACTIONS(543), - [anon_sym_long] = ACTIONS(543), - [anon_sym_char] = ACTIONS(543), - [anon_sym_float] = ACTIONS(543), - [anon_sym_double] = ACTIONS(543), - [sym_boolean_type] = ACTIONS(543), - [sym_void_type] = ACTIONS(543), - [sym_this] = ACTIONS(543), - [sym_super] = ACTIONS(543), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(545), - [sym_identifier] = ACTIONS(547), - [sym_decimal_integer_literal] = ACTIONS(547), - [sym_hex_integer_literal] = ACTIONS(547), - [sym_octal_integer_literal] = ACTIONS(545), - [sym_binary_integer_literal] = ACTIONS(545), - [sym_decimal_floating_point_literal] = ACTIONS(545), - [sym_hex_floating_point_literal] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_character_literal] = ACTIONS(545), - [sym_string_literal] = ACTIONS(547), - [sym_text_block] = ACTIONS(545), - [sym_null_literal] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_new] = ACTIONS(547), - [anon_sym_class] = ACTIONS(547), - [anon_sym_switch] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_case] = ACTIONS(547), - [anon_sym_default] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_assert] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_synchronized] = ACTIONS(547), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_try] = ACTIONS(547), - [anon_sym_if] = ACTIONS(547), - [anon_sym_else] = ACTIONS(547), - [anon_sym_for] = ACTIONS(547), - [anon_sym_AT] = ACTIONS(547), - [anon_sym_open] = ACTIONS(547), - [anon_sym_module] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_package] = ACTIONS(547), - [anon_sym_import] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [anon_sym_public] = ACTIONS(547), - [anon_sym_protected] = ACTIONS(547), - [anon_sym_private] = ACTIONS(547), - [anon_sym_abstract] = ACTIONS(547), - [anon_sym_final] = ACTIONS(547), - [anon_sym_strictfp] = ACTIONS(547), - [anon_sym_native] = ACTIONS(547), - [anon_sym_transient] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_sealed] = ACTIONS(547), - [anon_sym_non_DASHsealed] = ACTIONS(545), - [anon_sym_record] = ACTIONS(547), - [anon_sym_ATinterface] = ACTIONS(545), - [anon_sym_interface] = ACTIONS(547), - [anon_sym_byte] = ACTIONS(547), - [anon_sym_short] = ACTIONS(547), - [anon_sym_int] = ACTIONS(547), - [anon_sym_long] = ACTIONS(547), - [anon_sym_char] = ACTIONS(547), - [anon_sym_float] = ACTIONS(547), - [anon_sym_double] = ACTIONS(547), - [sym_boolean_type] = ACTIONS(547), - [sym_void_type] = ACTIONS(547), - [sym_this] = ACTIONS(547), - [sym_super] = ACTIONS(547), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [123] = { [ts_builtin_sym_end] = ACTIONS(549), [sym_identifier] = ACTIONS(551), @@ -21470,43 +21516,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [135] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(527), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym__element_value] = STATE(1066), + [sym_element_value_array_initializer] = STATE(1066), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21548,43 +21594,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [136] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1108), - [sym_element_value_array_initializer] = STATE(1108), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(1052), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21607,7 +21652,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(597), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -21626,43 +21672,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [137] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1018), - [sym_element_value_array_initializer] = STATE(1018), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym__element_value] = STATE(1011), + [sym_element_value_array_initializer] = STATE(1011), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21704,43 +21750,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [138] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(525), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1018), - [sym_element_value_array_initializer] = STATE(1018), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(1052), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21763,7 +21808,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(599), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -21782,42 +21828,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [139] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym__element_value] = STATE(1134), + [sym_element_value_array_initializer] = STATE(1134), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21840,8 +21887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -21860,42 +21906,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [140] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(625), + [sym_marker_annotation] = STATE(625), + [sym_annotation] = STATE(625), + [sym__element_value] = STATE(1066), + [sym_element_value_array_initializer] = STATE(1066), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21918,8 +21965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -22092,6 +22138,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [143] = { + [ts_builtin_sym_end] = ACTIONS(304), + [sym_identifier] = ACTIONS(306), + [sym_decimal_integer_literal] = ACTIONS(306), + [sym_hex_integer_literal] = ACTIONS(306), + [sym_octal_integer_literal] = ACTIONS(304), + [sym_binary_integer_literal] = ACTIONS(304), + [sym_decimal_floating_point_literal] = ACTIONS(304), + [sym_hex_floating_point_literal] = ACTIONS(306), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_character_literal] = ACTIONS(304), + [sym_string_literal] = ACTIONS(306), + [sym_text_block] = ACTIONS(304), + [sym_null_literal] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(304), + [anon_sym_PLUS] = ACTIONS(306), + [anon_sym_DASH] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_new] = ACTIONS(306), + [anon_sym_class] = ACTIONS(306), + [anon_sym_switch] = ACTIONS(306), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_RBRACE] = ACTIONS(304), + [anon_sym_case] = ACTIONS(306), + [anon_sym_default] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_assert] = ACTIONS(306), + [anon_sym_do] = ACTIONS(306), + [anon_sym_while] = ACTIONS(306), + [anon_sym_break] = ACTIONS(306), + [anon_sym_continue] = ACTIONS(306), + [anon_sym_return] = ACTIONS(306), + [anon_sym_yield] = ACTIONS(306), + [anon_sym_synchronized] = ACTIONS(306), + [anon_sym_throw] = ACTIONS(306), + [anon_sym_try] = ACTIONS(306), + [anon_sym_if] = ACTIONS(306), + [anon_sym_else] = ACTIONS(306), + [anon_sym_for] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(306), + [anon_sym_open] = ACTIONS(306), + [anon_sym_module] = ACTIONS(306), + [anon_sym_static] = ACTIONS(306), + [anon_sym_package] = ACTIONS(306), + [anon_sym_import] = ACTIONS(306), + [anon_sym_enum] = ACTIONS(306), + [anon_sym_public] = ACTIONS(306), + [anon_sym_protected] = ACTIONS(306), + [anon_sym_private] = ACTIONS(306), + [anon_sym_abstract] = ACTIONS(306), + [anon_sym_final] = ACTIONS(306), + [anon_sym_strictfp] = ACTIONS(306), + [anon_sym_native] = ACTIONS(306), + [anon_sym_transient] = ACTIONS(306), + [anon_sym_volatile] = ACTIONS(306), + [anon_sym_sealed] = ACTIONS(306), + [anon_sym_non_DASHsealed] = ACTIONS(304), + [anon_sym_ATinterface] = ACTIONS(304), + [anon_sym_interface] = ACTIONS(306), + [anon_sym_byte] = ACTIONS(306), + [anon_sym_short] = ACTIONS(306), + [anon_sym_int] = ACTIONS(306), + [anon_sym_long] = ACTIONS(306), + [anon_sym_char] = ACTIONS(306), + [anon_sym_float] = ACTIONS(306), + [anon_sym_double] = ACTIONS(306), + [sym_boolean_type] = ACTIONS(306), + [sym_void_type] = ACTIONS(306), + [sym_this] = ACTIONS(306), + [sym_super] = ACTIONS(306), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { [ts_builtin_sym_end] = ACTIONS(609), [sym_identifier] = ACTIONS(611), [sym_decimal_integer_literal] = ACTIONS(611), @@ -22168,7 +22291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [144] = { + [145] = { [ts_builtin_sym_end] = ACTIONS(613), [sym_identifier] = ACTIONS(615), [sym_decimal_integer_literal] = ACTIONS(615), @@ -22245,7 +22368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [145] = { + [146] = { [ts_builtin_sym_end] = ACTIONS(617), [sym_identifier] = ACTIONS(619), [sym_decimal_integer_literal] = ACTIONS(619), @@ -22322,7 +22445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [146] = { + [147] = { [ts_builtin_sym_end] = ACTIONS(621), [sym_identifier] = ACTIONS(623), [sym_decimal_integer_literal] = ACTIONS(623), @@ -22399,83 +22522,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(292), - [sym_identifier] = ACTIONS(294), - [sym_decimal_integer_literal] = ACTIONS(294), - [sym_hex_integer_literal] = ACTIONS(294), - [sym_octal_integer_literal] = ACTIONS(292), - [sym_binary_integer_literal] = ACTIONS(292), - [sym_decimal_floating_point_literal] = ACTIONS(292), - [sym_hex_floating_point_literal] = ACTIONS(294), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_character_literal] = ACTIONS(292), - [sym_string_literal] = ACTIONS(294), - [sym_text_block] = ACTIONS(292), - [sym_null_literal] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(292), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(292), - [anon_sym_new] = ACTIONS(294), - [anon_sym_class] = ACTIONS(294), - [anon_sym_switch] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(292), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_case] = ACTIONS(294), - [anon_sym_default] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(294), - [anon_sym_do] = ACTIONS(294), - [anon_sym_while] = ACTIONS(294), - [anon_sym_break] = ACTIONS(294), - [anon_sym_continue] = ACTIONS(294), - [anon_sym_return] = ACTIONS(294), - [anon_sym_yield] = ACTIONS(294), - [anon_sym_synchronized] = ACTIONS(294), - [anon_sym_throw] = ACTIONS(294), - [anon_sym_try] = ACTIONS(294), - [anon_sym_if] = ACTIONS(294), - [anon_sym_else] = ACTIONS(294), - [anon_sym_for] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(294), - [anon_sym_open] = ACTIONS(294), - [anon_sym_module] = ACTIONS(294), - [anon_sym_static] = ACTIONS(294), - [anon_sym_package] = ACTIONS(294), - [anon_sym_import] = ACTIONS(294), - [anon_sym_enum] = ACTIONS(294), - [anon_sym_public] = ACTIONS(294), - [anon_sym_protected] = ACTIONS(294), - [anon_sym_private] = ACTIONS(294), - [anon_sym_abstract] = ACTIONS(294), - [anon_sym_final] = ACTIONS(294), - [anon_sym_strictfp] = ACTIONS(294), - [anon_sym_native] = ACTIONS(294), - [anon_sym_transient] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_sealed] = ACTIONS(294), - [anon_sym_non_DASHsealed] = ACTIONS(292), - [anon_sym_ATinterface] = ACTIONS(292), - [anon_sym_interface] = ACTIONS(294), - [anon_sym_byte] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_int] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_char] = ACTIONS(294), - [anon_sym_float] = ACTIONS(294), - [anon_sym_double] = ACTIONS(294), - [sym_boolean_type] = ACTIONS(294), - [sym_void_type] = ACTIONS(294), - [sym_this] = ACTIONS(294), - [sym_super] = ACTIONS(294), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [148] = { [ts_builtin_sym_end] = ACTIONS(625), [sym_identifier] = ACTIONS(627), @@ -23555,504 +23601,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [sym_decimal_integer_literal] = ACTIONS(683), - [sym_hex_integer_literal] = ACTIONS(683), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(681), - [sym_decimal_floating_point_literal] = ACTIONS(681), - [sym_hex_floating_point_literal] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_character_literal] = ACTIONS(681), - [sym_string_literal] = ACTIONS(683), - [sym_text_block] = ACTIONS(681), - [sym_null_literal] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_new] = ACTIONS(683), - [anon_sym_class] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_assert] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(683), - [anon_sym_synchronized] = ACTIONS(683), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_try] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_else] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [anon_sym_open] = ACTIONS(683), - [anon_sym_module] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_package] = ACTIONS(683), - [anon_sym_import] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_public] = ACTIONS(683), - [anon_sym_protected] = ACTIONS(683), - [anon_sym_private] = ACTIONS(683), - [anon_sym_abstract] = ACTIONS(683), - [anon_sym_final] = ACTIONS(683), - [anon_sym_strictfp] = ACTIONS(683), - [anon_sym_native] = ACTIONS(683), - [anon_sym_transient] = ACTIONS(683), - [anon_sym_volatile] = ACTIONS(683), - [anon_sym_sealed] = ACTIONS(683), - [anon_sym_non_DASHsealed] = ACTIONS(681), - [anon_sym_ATinterface] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(683), - [anon_sym_byte] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [anon_sym_int] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_float] = ACTIONS(683), - [anon_sym_double] = ACTIONS(683), - [sym_boolean_type] = ACTIONS(683), - [sym_void_type] = ACTIONS(683), - [sym_this] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(685), - [sym_identifier] = ACTIONS(687), - [sym_decimal_integer_literal] = ACTIONS(687), - [sym_hex_integer_literal] = ACTIONS(687), - [sym_octal_integer_literal] = ACTIONS(685), - [sym_binary_integer_literal] = ACTIONS(685), - [sym_decimal_floating_point_literal] = ACTIONS(685), - [sym_hex_floating_point_literal] = ACTIONS(687), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_character_literal] = ACTIONS(685), - [sym_string_literal] = ACTIONS(687), - [sym_text_block] = ACTIONS(685), - [sym_null_literal] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_PLUS_PLUS] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(685), - [anon_sym_new] = ACTIONS(687), - [anon_sym_class] = ACTIONS(687), - [anon_sym_switch] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_case] = ACTIONS(687), - [anon_sym_default] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_assert] = ACTIONS(687), - [anon_sym_do] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_break] = ACTIONS(687), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_return] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(687), - [anon_sym_synchronized] = ACTIONS(687), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_try] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_else] = ACTIONS(687), - [anon_sym_for] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(687), - [anon_sym_open] = ACTIONS(687), - [anon_sym_module] = ACTIONS(687), - [anon_sym_static] = ACTIONS(687), - [anon_sym_package] = ACTIONS(687), - [anon_sym_import] = ACTIONS(687), - [anon_sym_enum] = ACTIONS(687), - [anon_sym_public] = ACTIONS(687), - [anon_sym_protected] = ACTIONS(687), - [anon_sym_private] = ACTIONS(687), - [anon_sym_abstract] = ACTIONS(687), - [anon_sym_final] = ACTIONS(687), - [anon_sym_strictfp] = ACTIONS(687), - [anon_sym_native] = ACTIONS(687), - [anon_sym_transient] = ACTIONS(687), - [anon_sym_volatile] = ACTIONS(687), - [anon_sym_sealed] = ACTIONS(687), - [anon_sym_non_DASHsealed] = ACTIONS(685), - [anon_sym_ATinterface] = ACTIONS(685), - [anon_sym_interface] = ACTIONS(687), - [anon_sym_byte] = ACTIONS(687), - [anon_sym_short] = ACTIONS(687), - [anon_sym_int] = ACTIONS(687), - [anon_sym_long] = ACTIONS(687), - [anon_sym_char] = ACTIONS(687), - [anon_sym_float] = ACTIONS(687), - [anon_sym_double] = ACTIONS(687), - [sym_boolean_type] = ACTIONS(687), - [sym_void_type] = ACTIONS(687), - [sym_this] = ACTIONS(687), - [sym_super] = ACTIONS(687), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(689), - [sym_identifier] = ACTIONS(691), - [sym_decimal_integer_literal] = ACTIONS(691), - [sym_hex_integer_literal] = ACTIONS(691), - [sym_octal_integer_literal] = ACTIONS(689), - [sym_binary_integer_literal] = ACTIONS(689), - [sym_decimal_floating_point_literal] = ACTIONS(689), - [sym_hex_floating_point_literal] = ACTIONS(691), - [sym_true] = ACTIONS(691), - [sym_false] = ACTIONS(691), - [sym_character_literal] = ACTIONS(689), - [sym_string_literal] = ACTIONS(691), - [sym_text_block] = ACTIONS(689), - [sym_null_literal] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [anon_sym_new] = ACTIONS(691), - [anon_sym_class] = ACTIONS(691), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_case] = ACTIONS(691), - [anon_sym_default] = ACTIONS(691), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_assert] = ACTIONS(691), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(691), - [anon_sym_break] = ACTIONS(691), - [anon_sym_continue] = ACTIONS(691), - [anon_sym_return] = ACTIONS(691), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_synchronized] = ACTIONS(691), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_try] = ACTIONS(691), - [anon_sym_if] = ACTIONS(691), - [anon_sym_else] = ACTIONS(691), - [anon_sym_for] = ACTIONS(691), - [anon_sym_AT] = ACTIONS(691), - [anon_sym_open] = ACTIONS(691), - [anon_sym_module] = ACTIONS(691), - [anon_sym_static] = ACTIONS(691), - [anon_sym_package] = ACTIONS(691), - [anon_sym_import] = ACTIONS(691), - [anon_sym_enum] = ACTIONS(691), - [anon_sym_public] = ACTIONS(691), - [anon_sym_protected] = ACTIONS(691), - [anon_sym_private] = ACTIONS(691), - [anon_sym_abstract] = ACTIONS(691), - [anon_sym_final] = ACTIONS(691), - [anon_sym_strictfp] = ACTIONS(691), - [anon_sym_native] = ACTIONS(691), - [anon_sym_transient] = ACTIONS(691), - [anon_sym_volatile] = ACTIONS(691), - [anon_sym_sealed] = ACTIONS(691), - [anon_sym_non_DASHsealed] = ACTIONS(689), - [anon_sym_ATinterface] = ACTIONS(689), - [anon_sym_interface] = ACTIONS(691), - [anon_sym_byte] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [anon_sym_int] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_char] = ACTIONS(691), - [anon_sym_float] = ACTIONS(691), - [anon_sym_double] = ACTIONS(691), - [sym_boolean_type] = ACTIONS(691), - [sym_void_type] = ACTIONS(691), - [sym_this] = ACTIONS(691), - [sym_super] = ACTIONS(691), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [sym_switch_label] = STATE(1084), - [aux_sym_switch_block_statement_group_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(695), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(695), - [sym_string_literal] = ACTIONS(693), - [sym_text_block] = ACTIONS(695), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [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(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(697), - [anon_sym_default] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(695), - [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_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_final] = 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(695), - [anon_sym_ATinterface] = ACTIONS(695), - [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), - }, - [166] = { - [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(703), - [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), - [sym_string_literal] = ACTIONS(705), - [sym_text_block] = ACTIONS(703), - [sym_null_literal] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [167] = { - [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(707), - [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), - [sym_string_literal] = ACTIONS(709), - [sym_text_block] = ACTIONS(707), - [sym_null_literal] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [168] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(1052), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -24075,7 +23659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(397), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -24093,267 +23677,961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [163] = { + [ts_builtin_sym_end] = ACTIONS(681), + [sym_identifier] = ACTIONS(683), + [sym_decimal_integer_literal] = ACTIONS(683), + [sym_hex_integer_literal] = ACTIONS(683), + [sym_octal_integer_literal] = ACTIONS(681), + [sym_binary_integer_literal] = ACTIONS(681), + [sym_decimal_floating_point_literal] = ACTIONS(681), + [sym_hex_floating_point_literal] = ACTIONS(683), + [sym_true] = ACTIONS(683), + [sym_false] = ACTIONS(683), + [sym_character_literal] = ACTIONS(681), + [sym_string_literal] = ACTIONS(683), + [sym_text_block] = ACTIONS(681), + [sym_null_literal] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_new] = ACTIONS(683), + [anon_sym_class] = ACTIONS(683), + [anon_sym_switch] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_assert] = ACTIONS(683), + [anon_sym_do] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_yield] = ACTIONS(683), + [anon_sym_synchronized] = ACTIONS(683), + [anon_sym_throw] = ACTIONS(683), + [anon_sym_try] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_else] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_open] = ACTIONS(683), + [anon_sym_module] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_package] = ACTIONS(683), + [anon_sym_import] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_public] = ACTIONS(683), + [anon_sym_protected] = ACTIONS(683), + [anon_sym_private] = ACTIONS(683), + [anon_sym_abstract] = ACTIONS(683), + [anon_sym_final] = ACTIONS(683), + [anon_sym_strictfp] = ACTIONS(683), + [anon_sym_native] = ACTIONS(683), + [anon_sym_transient] = ACTIONS(683), + [anon_sym_volatile] = ACTIONS(683), + [anon_sym_sealed] = ACTIONS(683), + [anon_sym_non_DASHsealed] = ACTIONS(681), + [anon_sym_ATinterface] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(683), + [anon_sym_byte] = ACTIONS(683), + [anon_sym_short] = ACTIONS(683), + [anon_sym_int] = ACTIONS(683), + [anon_sym_long] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_float] = ACTIONS(683), + [anon_sym_double] = ACTIONS(683), + [sym_boolean_type] = ACTIONS(683), + [sym_void_type] = ACTIONS(683), + [sym_this] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(687), + [sym_decimal_integer_literal] = ACTIONS(687), + [sym_hex_integer_literal] = ACTIONS(687), + [sym_octal_integer_literal] = ACTIONS(685), + [sym_binary_integer_literal] = ACTIONS(685), + [sym_decimal_floating_point_literal] = ACTIONS(685), + [sym_hex_floating_point_literal] = ACTIONS(687), + [sym_true] = ACTIONS(687), + [sym_false] = ACTIONS(687), + [sym_character_literal] = ACTIONS(685), + [sym_string_literal] = ACTIONS(687), + [sym_text_block] = ACTIONS(685), + [sym_null_literal] = ACTIONS(687), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_new] = ACTIONS(687), + [anon_sym_class] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(685), + [anon_sym_case] = ACTIONS(687), + [anon_sym_default] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_assert] = ACTIONS(687), + [anon_sym_do] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_break] = ACTIONS(687), + [anon_sym_continue] = ACTIONS(687), + [anon_sym_return] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_synchronized] = ACTIONS(687), + [anon_sym_throw] = ACTIONS(687), + [anon_sym_try] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_else] = ACTIONS(687), + [anon_sym_for] = ACTIONS(687), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_open] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_static] = ACTIONS(687), + [anon_sym_package] = ACTIONS(687), + [anon_sym_import] = ACTIONS(687), + [anon_sym_enum] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_abstract] = ACTIONS(687), + [anon_sym_final] = ACTIONS(687), + [anon_sym_strictfp] = ACTIONS(687), + [anon_sym_native] = ACTIONS(687), + [anon_sym_transient] = ACTIONS(687), + [anon_sym_volatile] = ACTIONS(687), + [anon_sym_sealed] = ACTIONS(687), + [anon_sym_non_DASHsealed] = ACTIONS(685), + [anon_sym_ATinterface] = ACTIONS(685), + [anon_sym_interface] = ACTIONS(687), + [anon_sym_byte] = ACTIONS(687), + [anon_sym_short] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_long] = ACTIONS(687), + [anon_sym_char] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_double] = ACTIONS(687), + [sym_boolean_type] = ACTIONS(687), + [sym_void_type] = ACTIONS(687), + [sym_this] = ACTIONS(687), + [sym_super] = ACTIONS(687), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [165] = { + [ts_builtin_sym_end] = ACTIONS(689), + [sym_identifier] = ACTIONS(691), + [sym_decimal_integer_literal] = ACTIONS(691), + [sym_hex_integer_literal] = ACTIONS(691), + [sym_octal_integer_literal] = ACTIONS(689), + [sym_binary_integer_literal] = ACTIONS(689), + [sym_decimal_floating_point_literal] = ACTIONS(689), + [sym_hex_floating_point_literal] = ACTIONS(691), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_character_literal] = ACTIONS(689), + [sym_string_literal] = ACTIONS(691), + [sym_text_block] = ACTIONS(689), + [sym_null_literal] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_new] = ACTIONS(691), + [anon_sym_class] = ACTIONS(691), + [anon_sym_switch] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_case] = ACTIONS(691), + [anon_sym_default] = ACTIONS(691), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_assert] = ACTIONS(691), + [anon_sym_do] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_break] = ACTIONS(691), + [anon_sym_continue] = ACTIONS(691), + [anon_sym_return] = ACTIONS(691), + [anon_sym_yield] = ACTIONS(691), + [anon_sym_synchronized] = ACTIONS(691), + [anon_sym_throw] = ACTIONS(691), + [anon_sym_try] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_else] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_AT] = ACTIONS(691), + [anon_sym_open] = ACTIONS(691), + [anon_sym_module] = ACTIONS(691), + [anon_sym_static] = ACTIONS(691), + [anon_sym_package] = ACTIONS(691), + [anon_sym_import] = ACTIONS(691), + [anon_sym_enum] = ACTIONS(691), + [anon_sym_public] = ACTIONS(691), + [anon_sym_protected] = ACTIONS(691), + [anon_sym_private] = ACTIONS(691), + [anon_sym_abstract] = ACTIONS(691), + [anon_sym_final] = ACTIONS(691), + [anon_sym_strictfp] = ACTIONS(691), + [anon_sym_native] = ACTIONS(691), + [anon_sym_transient] = ACTIONS(691), + [anon_sym_volatile] = ACTIONS(691), + [anon_sym_sealed] = ACTIONS(691), + [anon_sym_non_DASHsealed] = ACTIONS(689), + [anon_sym_ATinterface] = ACTIONS(689), + [anon_sym_interface] = ACTIONS(691), + [anon_sym_byte] = ACTIONS(691), + [anon_sym_short] = ACTIONS(691), + [anon_sym_int] = ACTIONS(691), + [anon_sym_long] = ACTIONS(691), + [anon_sym_char] = ACTIONS(691), + [anon_sym_float] = ACTIONS(691), + [anon_sym_double] = ACTIONS(691), + [sym_boolean_type] = ACTIONS(691), + [sym_void_type] = ACTIONS(691), + [sym_this] = ACTIONS(691), + [sym_super] = ACTIONS(691), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [166] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_identifier] = ACTIONS(695), + [sym_decimal_integer_literal] = ACTIONS(695), + [sym_hex_integer_literal] = ACTIONS(695), + [sym_octal_integer_literal] = ACTIONS(693), + [sym_binary_integer_literal] = ACTIONS(693), + [sym_decimal_floating_point_literal] = ACTIONS(693), + [sym_hex_floating_point_literal] = ACTIONS(695), + [sym_true] = ACTIONS(695), + [sym_false] = ACTIONS(695), + [sym_character_literal] = ACTIONS(693), + [sym_string_literal] = ACTIONS(695), + [sym_text_block] = ACTIONS(693), + [sym_null_literal] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_PLUS_PLUS] = ACTIONS(693), + [anon_sym_DASH_DASH] = ACTIONS(693), + [anon_sym_new] = ACTIONS(695), + [anon_sym_class] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_case] = ACTIONS(695), + [anon_sym_default] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym_assert] = ACTIONS(695), + [anon_sym_do] = ACTIONS(695), + [anon_sym_while] = ACTIONS(695), + [anon_sym_break] = ACTIONS(695), + [anon_sym_continue] = ACTIONS(695), + [anon_sym_return] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(695), + [anon_sym_synchronized] = ACTIONS(695), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(695), + [anon_sym_if] = ACTIONS(695), + [anon_sym_else] = ACTIONS(695), + [anon_sym_for] = ACTIONS(695), + [anon_sym_AT] = ACTIONS(695), + [anon_sym_open] = ACTIONS(695), + [anon_sym_module] = ACTIONS(695), + [anon_sym_static] = ACTIONS(695), + [anon_sym_package] = ACTIONS(695), + [anon_sym_import] = ACTIONS(695), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_public] = ACTIONS(695), + [anon_sym_protected] = ACTIONS(695), + [anon_sym_private] = ACTIONS(695), + [anon_sym_abstract] = ACTIONS(695), + [anon_sym_final] = ACTIONS(695), + [anon_sym_strictfp] = ACTIONS(695), + [anon_sym_native] = ACTIONS(695), + [anon_sym_transient] = ACTIONS(695), + [anon_sym_volatile] = ACTIONS(695), + [anon_sym_sealed] = ACTIONS(695), + [anon_sym_non_DASHsealed] = ACTIONS(693), + [anon_sym_ATinterface] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(695), + [anon_sym_byte] = ACTIONS(695), + [anon_sym_short] = ACTIONS(695), + [anon_sym_int] = ACTIONS(695), + [anon_sym_long] = ACTIONS(695), + [anon_sym_char] = ACTIONS(695), + [anon_sym_float] = ACTIONS(695), + [anon_sym_double] = ACTIONS(695), + [sym_boolean_type] = ACTIONS(695), + [sym_void_type] = ACTIONS(695), + [sym_this] = ACTIONS(695), + [sym_super] = ACTIONS(695), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { + [ts_builtin_sym_end] = ACTIONS(697), + [sym_identifier] = ACTIONS(699), + [sym_decimal_integer_literal] = ACTIONS(699), + [sym_hex_integer_literal] = ACTIONS(699), + [sym_octal_integer_literal] = ACTIONS(697), + [sym_binary_integer_literal] = ACTIONS(697), + [sym_decimal_floating_point_literal] = ACTIONS(697), + [sym_hex_floating_point_literal] = ACTIONS(699), + [sym_true] = ACTIONS(699), + [sym_false] = ACTIONS(699), + [sym_character_literal] = ACTIONS(697), + [sym_string_literal] = ACTIONS(699), + [sym_text_block] = ACTIONS(697), + [sym_null_literal] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(697), + [anon_sym_TILDE] = ACTIONS(697), + [anon_sym_PLUS_PLUS] = ACTIONS(697), + [anon_sym_DASH_DASH] = ACTIONS(697), + [anon_sym_new] = ACTIONS(699), + [anon_sym_class] = ACTIONS(699), + [anon_sym_switch] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_case] = ACTIONS(699), + [anon_sym_default] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_assert] = ACTIONS(699), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(699), + [anon_sym_break] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(699), + [anon_sym_return] = ACTIONS(699), + [anon_sym_yield] = ACTIONS(699), + [anon_sym_synchronized] = ACTIONS(699), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_try] = ACTIONS(699), + [anon_sym_if] = ACTIONS(699), + [anon_sym_else] = ACTIONS(699), + [anon_sym_for] = ACTIONS(699), + [anon_sym_AT] = ACTIONS(699), + [anon_sym_open] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), + [anon_sym_static] = ACTIONS(699), + [anon_sym_package] = ACTIONS(699), + [anon_sym_import] = ACTIONS(699), + [anon_sym_enum] = ACTIONS(699), + [anon_sym_public] = ACTIONS(699), + [anon_sym_protected] = ACTIONS(699), + [anon_sym_private] = ACTIONS(699), + [anon_sym_abstract] = ACTIONS(699), + [anon_sym_final] = ACTIONS(699), + [anon_sym_strictfp] = ACTIONS(699), + [anon_sym_native] = ACTIONS(699), + [anon_sym_transient] = ACTIONS(699), + [anon_sym_volatile] = ACTIONS(699), + [anon_sym_sealed] = ACTIONS(699), + [anon_sym_non_DASHsealed] = ACTIONS(697), + [anon_sym_ATinterface] = ACTIONS(697), + [anon_sym_interface] = ACTIONS(699), + [anon_sym_byte] = ACTIONS(699), + [anon_sym_short] = ACTIONS(699), + [anon_sym_int] = ACTIONS(699), + [anon_sym_long] = ACTIONS(699), + [anon_sym_char] = ACTIONS(699), + [anon_sym_float] = ACTIONS(699), + [anon_sym_double] = ACTIONS(699), + [sym_boolean_type] = ACTIONS(699), + [sym_void_type] = ACTIONS(699), + [sym_this] = ACTIONS(699), + [sym_super] = ACTIONS(699), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [168] = { + [ts_builtin_sym_end] = ACTIONS(701), + [sym_identifier] = ACTIONS(703), + [sym_decimal_integer_literal] = ACTIONS(703), + [sym_hex_integer_literal] = ACTIONS(703), + [sym_octal_integer_literal] = ACTIONS(701), + [sym_binary_integer_literal] = ACTIONS(701), + [sym_decimal_floating_point_literal] = ACTIONS(701), + [sym_hex_floating_point_literal] = ACTIONS(703), + [sym_true] = ACTIONS(703), + [sym_false] = ACTIONS(703), + [sym_character_literal] = ACTIONS(701), + [sym_string_literal] = ACTIONS(703), + [sym_text_block] = ACTIONS(701), + [sym_null_literal] = ACTIONS(703), + [anon_sym_LPAREN] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(701), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_new] = ACTIONS(703), + [anon_sym_class] = ACTIONS(703), + [anon_sym_switch] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(701), + [anon_sym_case] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_do] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_yield] = ACTIONS(703), + [anon_sym_synchronized] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_try] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_else] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [anon_sym_open] = ACTIONS(703), + [anon_sym_module] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_package] = ACTIONS(703), + [anon_sym_import] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_public] = ACTIONS(703), + [anon_sym_protected] = ACTIONS(703), + [anon_sym_private] = ACTIONS(703), + [anon_sym_abstract] = ACTIONS(703), + [anon_sym_final] = ACTIONS(703), + [anon_sym_strictfp] = ACTIONS(703), + [anon_sym_native] = ACTIONS(703), + [anon_sym_transient] = ACTIONS(703), + [anon_sym_volatile] = ACTIONS(703), + [anon_sym_sealed] = ACTIONS(703), + [anon_sym_non_DASHsealed] = ACTIONS(701), + [anon_sym_ATinterface] = ACTIONS(701), + [anon_sym_interface] = ACTIONS(703), + [anon_sym_byte] = ACTIONS(703), + [anon_sym_short] = ACTIONS(703), + [anon_sym_int] = ACTIONS(703), + [anon_sym_long] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_float] = ACTIONS(703), + [anon_sym_double] = ACTIONS(703), + [sym_boolean_type] = ACTIONS(703), + [sym_void_type] = ACTIONS(703), + [sym_this] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [169] = { - [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(711), - [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), - [sym_string_literal] = ACTIONS(713), - [sym_text_block] = ACTIONS(711), - [sym_null_literal] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(705), + [sym_identifier] = ACTIONS(707), + [sym_decimal_integer_literal] = ACTIONS(707), + [sym_hex_integer_literal] = ACTIONS(707), + [sym_octal_integer_literal] = ACTIONS(705), + [sym_binary_integer_literal] = ACTIONS(705), + [sym_decimal_floating_point_literal] = ACTIONS(705), + [sym_hex_floating_point_literal] = ACTIONS(707), + [sym_true] = ACTIONS(707), + [sym_false] = ACTIONS(707), + [sym_character_literal] = ACTIONS(705), + [sym_string_literal] = ACTIONS(707), + [sym_text_block] = ACTIONS(705), + [sym_null_literal] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_new] = ACTIONS(707), + [anon_sym_class] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_case] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_assert] = ACTIONS(707), + [anon_sym_do] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_synchronized] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(707), + [anon_sym_try] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_else] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_AT] = ACTIONS(707), + [anon_sym_open] = ACTIONS(707), + [anon_sym_module] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_package] = ACTIONS(707), + [anon_sym_import] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_public] = ACTIONS(707), + [anon_sym_protected] = ACTIONS(707), + [anon_sym_private] = ACTIONS(707), + [anon_sym_abstract] = ACTIONS(707), + [anon_sym_final] = ACTIONS(707), + [anon_sym_strictfp] = ACTIONS(707), + [anon_sym_native] = ACTIONS(707), + [anon_sym_transient] = ACTIONS(707), + [anon_sym_volatile] = ACTIONS(707), + [anon_sym_sealed] = ACTIONS(707), + [anon_sym_non_DASHsealed] = ACTIONS(705), + [anon_sym_ATinterface] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_byte] = ACTIONS(707), + [anon_sym_short] = ACTIONS(707), + [anon_sym_int] = ACTIONS(707), + [anon_sym_long] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [anon_sym_float] = ACTIONS(707), + [anon_sym_double] = ACTIONS(707), + [sym_boolean_type] = ACTIONS(707), + [sym_void_type] = ACTIONS(707), + [sym_this] = ACTIONS(707), + [sym_super] = ACTIONS(707), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [170] = { - [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(715), - [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), - [sym_string_literal] = ACTIONS(717), - [sym_text_block] = ACTIONS(715), - [sym_null_literal] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(709), + [sym_identifier] = ACTIONS(711), + [sym_decimal_integer_literal] = ACTIONS(711), + [sym_hex_integer_literal] = ACTIONS(711), + [sym_octal_integer_literal] = ACTIONS(709), + [sym_binary_integer_literal] = ACTIONS(709), + [sym_decimal_floating_point_literal] = ACTIONS(709), + [sym_hex_floating_point_literal] = ACTIONS(711), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_character_literal] = ACTIONS(709), + [sym_string_literal] = ACTIONS(711), + [sym_text_block] = ACTIONS(709), + [sym_null_literal] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_new] = ACTIONS(711), + [anon_sym_class] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_case] = ACTIONS(711), + [anon_sym_default] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(709), + [anon_sym_assert] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_break] = ACTIONS(711), + [anon_sym_continue] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_yield] = ACTIONS(711), + [anon_sym_synchronized] = ACTIONS(711), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_else] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_open] = ACTIONS(711), + [anon_sym_module] = ACTIONS(711), + [anon_sym_static] = ACTIONS(711), + [anon_sym_package] = ACTIONS(711), + [anon_sym_import] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(711), + [anon_sym_public] = ACTIONS(711), + [anon_sym_protected] = ACTIONS(711), + [anon_sym_private] = ACTIONS(711), + [anon_sym_abstract] = ACTIONS(711), + [anon_sym_final] = ACTIONS(711), + [anon_sym_strictfp] = ACTIONS(711), + [anon_sym_native] = ACTIONS(711), + [anon_sym_transient] = ACTIONS(711), + [anon_sym_volatile] = ACTIONS(711), + [anon_sym_sealed] = ACTIONS(711), + [anon_sym_non_DASHsealed] = ACTIONS(709), + [anon_sym_ATinterface] = ACTIONS(709), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_byte] = ACTIONS(711), + [anon_sym_short] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_long] = ACTIONS(711), + [anon_sym_char] = ACTIONS(711), + [anon_sym_float] = ACTIONS(711), + [anon_sym_double] = ACTIONS(711), + [sym_boolean_type] = ACTIONS(711), + [sym_void_type] = ACTIONS(711), + [sym_this] = ACTIONS(711), + [sym_super] = ACTIONS(711), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [171] = { - [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(719), - [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), - [sym_string_literal] = ACTIONS(721), - [sym_text_block] = ACTIONS(719), - [sym_null_literal] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(719), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(713), + [sym_identifier] = ACTIONS(715), + [sym_decimal_integer_literal] = ACTIONS(715), + [sym_hex_integer_literal] = ACTIONS(715), + [sym_octal_integer_literal] = ACTIONS(713), + [sym_binary_integer_literal] = ACTIONS(713), + [sym_decimal_floating_point_literal] = ACTIONS(713), + [sym_hex_floating_point_literal] = ACTIONS(715), + [sym_true] = ACTIONS(715), + [sym_false] = ACTIONS(715), + [sym_character_literal] = ACTIONS(713), + [sym_string_literal] = ACTIONS(715), + [sym_text_block] = ACTIONS(713), + [sym_null_literal] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_new] = ACTIONS(715), + [anon_sym_class] = ACTIONS(715), + [anon_sym_switch] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_case] = ACTIONS(715), + [anon_sym_default] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_assert] = ACTIONS(715), + [anon_sym_do] = ACTIONS(715), + [anon_sym_while] = ACTIONS(715), + [anon_sym_break] = ACTIONS(715), + [anon_sym_continue] = ACTIONS(715), + [anon_sym_return] = ACTIONS(715), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_synchronized] = ACTIONS(715), + [anon_sym_throw] = ACTIONS(715), + [anon_sym_try] = ACTIONS(715), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(715), + [anon_sym_for] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(715), + [anon_sym_open] = ACTIONS(715), + [anon_sym_module] = ACTIONS(715), + [anon_sym_static] = ACTIONS(715), + [anon_sym_package] = ACTIONS(715), + [anon_sym_import] = ACTIONS(715), + [anon_sym_enum] = ACTIONS(715), + [anon_sym_public] = ACTIONS(715), + [anon_sym_protected] = ACTIONS(715), + [anon_sym_private] = ACTIONS(715), + [anon_sym_abstract] = ACTIONS(715), + [anon_sym_final] = ACTIONS(715), + [anon_sym_strictfp] = ACTIONS(715), + [anon_sym_native] = ACTIONS(715), + [anon_sym_transient] = ACTIONS(715), + [anon_sym_volatile] = ACTIONS(715), + [anon_sym_sealed] = ACTIONS(715), + [anon_sym_non_DASHsealed] = ACTIONS(713), + [anon_sym_ATinterface] = ACTIONS(713), + [anon_sym_interface] = ACTIONS(715), + [anon_sym_byte] = ACTIONS(715), + [anon_sym_short] = ACTIONS(715), + [anon_sym_int] = ACTIONS(715), + [anon_sym_long] = ACTIONS(715), + [anon_sym_char] = ACTIONS(715), + [anon_sym_float] = ACTIONS(715), + [anon_sym_double] = ACTIONS(715), + [sym_boolean_type] = ACTIONS(715), + [sym_void_type] = ACTIONS(715), + [sym_this] = ACTIONS(715), + [sym_super] = ACTIONS(715), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(723), + [sym__literal] = STATE(390), + [sym_expression] = STATE(515), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_switch_expression] = STATE(441), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(880), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { + [ts_builtin_sym_end] = ACTIONS(717), + [sym_identifier] = ACTIONS(719), + [sym_decimal_integer_literal] = ACTIONS(719), + [sym_hex_integer_literal] = ACTIONS(719), + [sym_octal_integer_literal] = ACTIONS(717), + [sym_binary_integer_literal] = ACTIONS(717), + [sym_decimal_floating_point_literal] = ACTIONS(717), + [sym_hex_floating_point_literal] = ACTIONS(719), + [sym_true] = ACTIONS(719), + [sym_false] = ACTIONS(719), + [sym_character_literal] = ACTIONS(717), + [sym_string_literal] = ACTIONS(719), + [sym_text_block] = ACTIONS(717), + [sym_null_literal] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_new] = ACTIONS(719), + [anon_sym_class] = ACTIONS(719), + [anon_sym_switch] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_case] = ACTIONS(719), + [anon_sym_default] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_assert] = ACTIONS(719), + [anon_sym_do] = ACTIONS(719), + [anon_sym_while] = ACTIONS(719), + [anon_sym_break] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(719), + [anon_sym_return] = ACTIONS(719), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_synchronized] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(719), + [anon_sym_try] = ACTIONS(719), + [anon_sym_if] = ACTIONS(719), + [anon_sym_else] = ACTIONS(719), + [anon_sym_for] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_open] = ACTIONS(719), + [anon_sym_module] = ACTIONS(719), + [anon_sym_static] = ACTIONS(719), + [anon_sym_package] = ACTIONS(719), + [anon_sym_import] = ACTIONS(719), + [anon_sym_enum] = ACTIONS(719), + [anon_sym_public] = ACTIONS(719), + [anon_sym_protected] = ACTIONS(719), + [anon_sym_private] = ACTIONS(719), + [anon_sym_abstract] = ACTIONS(719), + [anon_sym_final] = ACTIONS(719), + [anon_sym_strictfp] = ACTIONS(719), + [anon_sym_native] = ACTIONS(719), + [anon_sym_transient] = ACTIONS(719), + [anon_sym_volatile] = ACTIONS(719), + [anon_sym_sealed] = ACTIONS(719), + [anon_sym_non_DASHsealed] = ACTIONS(717), + [anon_sym_ATinterface] = ACTIONS(717), + [anon_sym_interface] = ACTIONS(719), + [anon_sym_byte] = ACTIONS(719), + [anon_sym_short] = ACTIONS(719), + [anon_sym_int] = ACTIONS(719), + [anon_sym_long] = ACTIONS(719), + [anon_sym_char] = ACTIONS(719), + [anon_sym_float] = ACTIONS(719), + [anon_sym_double] = ACTIONS(719), + [sym_boolean_type] = ACTIONS(719), + [sym_void_type] = ACTIONS(719), + [sym_this] = ACTIONS(719), + [sym_super] = ACTIONS(719), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [ts_builtin_sym_end] = ACTIONS(721), + [sym_identifier] = ACTIONS(723), + [sym_decimal_integer_literal] = ACTIONS(723), + [sym_hex_integer_literal] = ACTIONS(723), + [sym_octal_integer_literal] = ACTIONS(721), + [sym_binary_integer_literal] = ACTIONS(721), + [sym_decimal_floating_point_literal] = ACTIONS(721), + [sym_hex_floating_point_literal] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_character_literal] = ACTIONS(721), + [sym_string_literal] = ACTIONS(723), + [sym_text_block] = ACTIONS(721), + [sym_null_literal] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(721), + [anon_sym_DASH_DASH] = ACTIONS(721), + [anon_sym_new] = ACTIONS(723), + [anon_sym_class] = ACTIONS(723), + [anon_sym_switch] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_assert] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_synchronized] = ACTIONS(723), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_else] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_AT] = ACTIONS(723), + [anon_sym_open] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_static] = ACTIONS(723), + [anon_sym_package] = ACTIONS(723), + [anon_sym_import] = ACTIONS(723), + [anon_sym_enum] = ACTIONS(723), + [anon_sym_public] = ACTIONS(723), + [anon_sym_protected] = ACTIONS(723), + [anon_sym_private] = ACTIONS(723), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_final] = ACTIONS(723), + [anon_sym_strictfp] = ACTIONS(723), + [anon_sym_native] = ACTIONS(723), + [anon_sym_transient] = ACTIONS(723), + [anon_sym_volatile] = ACTIONS(723), + [anon_sym_sealed] = ACTIONS(723), + [anon_sym_non_DASHsealed] = ACTIONS(721), + [anon_sym_ATinterface] = ACTIONS(721), + [anon_sym_interface] = ACTIONS(723), + [anon_sym_byte] = ACTIONS(723), + [anon_sym_short] = ACTIONS(723), + [anon_sym_int] = ACTIONS(723), + [anon_sym_long] = ACTIONS(723), + [anon_sym_char] = ACTIONS(723), + [anon_sym_float] = ACTIONS(723), + [anon_sym_double] = ACTIONS(723), + [sym_boolean_type] = ACTIONS(723), + [sym_void_type] = ACTIONS(723), + [sym_this] = ACTIONS(723), + [sym_super] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [175] = { + [sym_switch_label] = STATE(1100), + [aux_sym_switch_block_statement_group_repeat1] = STATE(175), [sym_identifier] = ACTIONS(725), [sym_decimal_integer_literal] = ACTIONS(725), [sym_hex_integer_literal] = ACTIONS(725), - [sym_octal_integer_literal] = ACTIONS(723), - [sym_binary_integer_literal] = ACTIONS(723), - [sym_decimal_floating_point_literal] = ACTIONS(723), + [sym_octal_integer_literal] = ACTIONS(727), + [sym_binary_integer_literal] = ACTIONS(727), + [sym_decimal_floating_point_literal] = ACTIONS(727), [sym_hex_floating_point_literal] = ACTIONS(725), [sym_true] = ACTIONS(725), [sym_false] = ACTIONS(725), - [sym_character_literal] = ACTIONS(723), + [sym_character_literal] = ACTIONS(727), [sym_string_literal] = ACTIONS(725), - [sym_text_block] = ACTIONS(723), + [sym_text_block] = ACTIONS(727), [sym_null_literal] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(727), [anon_sym_PLUS] = ACTIONS(725), [anon_sym_DASH] = 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_BANG] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), [anon_sym_new] = ACTIONS(725), [anon_sym_class] = ACTIONS(725), [anon_sym_switch] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_case] = ACTIONS(729), + [anon_sym_default] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(727), [anon_sym_assert] = ACTIONS(725), [anon_sym_do] = ACTIONS(725), [anon_sym_while] = ACTIONS(725), @@ -24365,7 +24643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24384,8 +24661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_transient] = ACTIONS(725), [anon_sym_volatile] = ACTIONS(725), [anon_sym_sealed] = ACTIONS(725), - [anon_sym_non_DASHsealed] = ACTIONS(723), - [anon_sym_ATinterface] = ACTIONS(723), + [anon_sym_non_DASHsealed] = ACTIONS(727), + [anon_sym_ATinterface] = ACTIONS(727), [anon_sym_interface] = ACTIONS(725), [anon_sym_byte] = ACTIONS(725), [anon_sym_short] = ACTIONS(725), @@ -24401,161 +24678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [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(727), - [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), - [sym_string_literal] = ACTIONS(729), - [sym_text_block] = ACTIONS(727), - [sym_null_literal] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [174] = { - [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(731), - [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), - [sym_string_literal] = ACTIONS(733), - [sym_text_block] = ACTIONS(731), - [sym_null_literal] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [175] = { + [176] = { [ts_builtin_sym_end] = ACTIONS(735), [sym_identifier] = ACTIONS(737), [sym_decimal_integer_literal] = ACTIONS(737), @@ -24632,7 +24755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [176] = { + [177] = { [ts_builtin_sym_end] = ACTIONS(739), [sym_identifier] = ACTIONS(741), [sym_decimal_integer_literal] = ACTIONS(741), @@ -24709,7 +24832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [177] = { + [178] = { [ts_builtin_sym_end] = ACTIONS(743), [sym_identifier] = ACTIONS(745), [sym_decimal_integer_literal] = ACTIONS(745), @@ -24786,315 +24909,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_decimal_integer_literal] = ACTIONS(270), - [sym_hex_integer_literal] = ACTIONS(270), - [sym_octal_integer_literal] = ACTIONS(268), - [sym_binary_integer_literal] = ACTIONS(268), - [sym_decimal_floating_point_literal] = ACTIONS(268), - [sym_hex_floating_point_literal] = ACTIONS(270), - [sym_true] = ACTIONS(270), - [sym_false] = ACTIONS(270), - [sym_character_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(270), - [sym_text_block] = ACTIONS(268), - [sym_null_literal] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(270), - [anon_sym_DASH] = ACTIONS(270), - [anon_sym_BANG] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PLUS_PLUS] = ACTIONS(268), - [anon_sym_DASH_DASH] = ACTIONS(268), - [anon_sym_new] = ACTIONS(270), - [anon_sym_class] = ACTIONS(270), - [anon_sym_switch] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_case] = ACTIONS(270), - [anon_sym_default] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [anon_sym_break] = ACTIONS(270), - [anon_sym_continue] = ACTIONS(270), - [anon_sym_return] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(270), - [anon_sym_synchronized] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_for] = ACTIONS(270), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_open] = ACTIONS(270), - [anon_sym_module] = ACTIONS(270), - [anon_sym_static] = ACTIONS(270), - [anon_sym_package] = ACTIONS(270), - [anon_sym_import] = ACTIONS(270), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_public] = ACTIONS(270), - [anon_sym_protected] = ACTIONS(270), - [anon_sym_private] = ACTIONS(270), - [anon_sym_abstract] = ACTIONS(270), - [anon_sym_final] = ACTIONS(270), - [anon_sym_strictfp] = ACTIONS(270), - [anon_sym_native] = ACTIONS(270), - [anon_sym_transient] = ACTIONS(270), - [anon_sym_volatile] = ACTIONS(270), - [anon_sym_sealed] = ACTIONS(270), - [anon_sym_non_DASHsealed] = ACTIONS(268), - [anon_sym_ATinterface] = ACTIONS(268), - [anon_sym_interface] = ACTIONS(270), - [anon_sym_byte] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_int] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_char] = ACTIONS(270), - [anon_sym_float] = ACTIONS(270), - [anon_sym_double] = ACTIONS(270), - [sym_boolean_type] = ACTIONS(270), - [sym_void_type] = ACTIONS(270), - [sym_this] = ACTIONS(270), - [sym_super] = ACTIONS(270), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [179] = { - [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(747), - [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), - [sym_string_literal] = ACTIONS(749), - [sym_text_block] = ACTIONS(747), - [sym_null_literal] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [180] = { - [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(751), - [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), - [sym_string_literal] = ACTIONS(753), - [sym_text_block] = ACTIONS(751), - [sym_null_literal] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [181] = { - [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(755), - [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), - [sym_string_literal] = ACTIONS(757), - [sym_text_block] = ACTIONS(755), - [sym_null_literal] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), + [sym__literal] = STATE(390), + [sym_expression] = STATE(510), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_switch_expression] = STATE(441), + [sym_block] = STATE(438), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), [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_RBRACE] = 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_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(321), [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_final] = 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_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), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [182] = { + [180] = { [ts_builtin_sym_end] = ACTIONS(759), [sym_identifier] = ACTIONS(761), [sym_decimal_integer_literal] = ACTIONS(761), @@ -25171,84 +25063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(457), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(443), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [184] = { + [181] = { [ts_builtin_sym_end] = ACTIONS(763), [sym_identifier] = ACTIONS(765), [sym_decimal_integer_literal] = ACTIONS(765), @@ -25325,7 +25140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [185] = { + [182] = { [ts_builtin_sym_end] = ACTIONS(767), [sym_identifier] = ACTIONS(769), [sym_decimal_integer_literal] = ACTIONS(769), @@ -25402,7 +25217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [186] = { + [183] = { [ts_builtin_sym_end] = ACTIONS(771), [sym_identifier] = ACTIONS(773), [sym_decimal_integer_literal] = ACTIONS(773), @@ -25479,84 +25294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(496), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(909), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [188] = { + [184] = { [ts_builtin_sym_end] = ACTIONS(775), [sym_identifier] = ACTIONS(777), [sym_decimal_integer_literal] = ACTIONS(777), @@ -25633,7 +25371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [189] = { + [185] = { [ts_builtin_sym_end] = ACTIONS(779), [sym_identifier] = ACTIONS(781), [sym_decimal_integer_literal] = ACTIONS(781), @@ -25710,7 +25448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [190] = { + [186] = { [ts_builtin_sym_end] = ACTIONS(783), [sym_identifier] = ACTIONS(785), [sym_decimal_integer_literal] = ACTIONS(785), @@ -25787,7 +25525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [191] = { + [187] = { [ts_builtin_sym_end] = ACTIONS(787), [sym_identifier] = ACTIONS(789), [sym_decimal_integer_literal] = ACTIONS(789), @@ -25864,7 +25602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [192] = { + [188] = { [ts_builtin_sym_end] = ACTIONS(791), [sym_identifier] = ACTIONS(793), [sym_decimal_integer_literal] = ACTIONS(793), @@ -25941,84 +25679,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [193] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(484), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(443), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), + [189] = { + [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(795), + [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), + [sym_string_literal] = ACTIONS(797), + [sym_text_block] = ACTIONS(795), + [sym_null_literal] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [190] = { + [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(799), + [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), + [sym_string_literal] = ACTIONS(801), + [sym_text_block] = ACTIONS(799), + [sym_null_literal] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [191] = { + [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(803), + [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), + [sym_string_literal] = ACTIONS(805), + [sym_text_block] = ACTIONS(803), + [sym_null_literal] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = 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(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), + [anon_sym_new] = ACTIONS(805), + [anon_sym_class] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(803), + [anon_sym_RBRACE] = 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_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_static] = 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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [194] = { + [192] = { [ts_builtin_sym_end] = ACTIONS(807), [sym_identifier] = ACTIONS(809), [sym_decimal_integer_literal] = ACTIONS(809), @@ -26095,7 +25987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [195] = { + [193] = { [ts_builtin_sym_end] = ACTIONS(811), [sym_identifier] = ACTIONS(813), [sym_decimal_integer_literal] = ACTIONS(813), @@ -26172,7 +26064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [196] = { + [194] = { [ts_builtin_sym_end] = ACTIONS(815), [sym_identifier] = ACTIONS(817), [sym_decimal_integer_literal] = ACTIONS(817), @@ -26213,7 +26105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(817), [anon_sym_try] = ACTIONS(817), [anon_sym_if] = ACTIONS(817), - [anon_sym_else] = ACTIONS(819), + [anon_sym_else] = ACTIONS(817), [anon_sym_for] = ACTIONS(817), [anon_sym_AT] = ACTIONS(817), [anon_sym_open] = ACTIONS(817), @@ -26249,546 +26141,777 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [195] = { + [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(819), + [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), + [sym_string_literal] = ACTIONS(821), + [sym_text_block] = ACTIONS(819), + [sym_null_literal] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [196] = { + [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(823), + [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), + [sym_string_literal] = ACTIONS(825), + [sym_text_block] = ACTIONS(823), + [sym_null_literal] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [197] = { - [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(821), - [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), - [sym_string_literal] = ACTIONS(823), - [sym_text_block] = ACTIONS(821), - [sym_null_literal] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [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(827), + [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), + [sym_string_literal] = ACTIONS(829), + [sym_text_block] = ACTIONS(827), + [sym_null_literal] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [198] = { - [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(825), - [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), - [sym_string_literal] = ACTIONS(827), - [sym_text_block] = ACTIONS(825), - [sym_null_literal] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [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(831), + [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), + [sym_string_literal] = ACTIONS(833), + [sym_text_block] = ACTIONS(831), + [sym_null_literal] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [199] = { - [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(829), - [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), - [sym_string_literal] = ACTIONS(831), - [sym_text_block] = ACTIONS(829), - [sym_null_literal] = ACTIONS(831), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [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(835), + [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), + [sym_string_literal] = ACTIONS(837), + [sym_text_block] = ACTIONS(835), + [sym_null_literal] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [200] = { - [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(833), - [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), - [sym_string_literal] = ACTIONS(835), - [sym_text_block] = ACTIONS(833), - [sym_null_literal] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [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(839), + [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), + [sym_string_literal] = ACTIONS(841), + [sym_text_block] = ACTIONS(839), + [sym_null_literal] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_PLUS] = ACTIONS(841), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [201] = { - [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(837), - [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), - [sym_string_literal] = ACTIONS(839), - [sym_text_block] = ACTIONS(837), - [sym_null_literal] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [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(843), + [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), + [sym_string_literal] = ACTIONS(845), + [sym_text_block] = ACTIONS(843), + [sym_null_literal] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [202] = { - [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(841), - [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), - [sym_string_literal] = ACTIONS(843), - [sym_text_block] = ACTIONS(841), - [sym_null_literal] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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__literal] = STATE(390), + [sym_expression] = STATE(463), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_switch_expression] = STATE(441), + [sym_block] = STATE(438), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [203] = { - [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(845), - [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), - [sym_string_literal] = ACTIONS(847), - [sym_text_block] = ACTIONS(845), - [sym_null_literal] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(268), + [sym_identifier] = ACTIONS(270), + [sym_decimal_integer_literal] = ACTIONS(270), + [sym_hex_integer_literal] = ACTIONS(270), + [sym_octal_integer_literal] = ACTIONS(268), + [sym_binary_integer_literal] = ACTIONS(268), + [sym_decimal_floating_point_literal] = ACTIONS(268), + [sym_hex_floating_point_literal] = ACTIONS(270), + [sym_true] = ACTIONS(270), + [sym_false] = ACTIONS(270), + [sym_character_literal] = ACTIONS(268), + [sym_string_literal] = ACTIONS(270), + [sym_text_block] = ACTIONS(268), + [sym_null_literal] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(268), + [anon_sym_PLUS] = ACTIONS(270), + [anon_sym_DASH] = ACTIONS(270), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(268), + [anon_sym_PLUS_PLUS] = ACTIONS(268), + [anon_sym_DASH_DASH] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_class] = ACTIONS(270), + [anon_sym_switch] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_RBRACE] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_default] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_assert] = ACTIONS(270), + [anon_sym_do] = ACTIONS(270), + [anon_sym_while] = ACTIONS(270), + [anon_sym_break] = ACTIONS(270), + [anon_sym_continue] = ACTIONS(270), + [anon_sym_return] = ACTIONS(270), + [anon_sym_yield] = ACTIONS(270), + [anon_sym_synchronized] = ACTIONS(270), + [anon_sym_throw] = ACTIONS(270), + [anon_sym_try] = ACTIONS(270), + [anon_sym_if] = ACTIONS(270), + [anon_sym_else] = ACTIONS(270), + [anon_sym_for] = ACTIONS(270), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_open] = ACTIONS(270), + [anon_sym_module] = ACTIONS(270), + [anon_sym_static] = ACTIONS(270), + [anon_sym_package] = ACTIONS(270), + [anon_sym_import] = ACTIONS(270), + [anon_sym_enum] = ACTIONS(270), + [anon_sym_public] = ACTIONS(270), + [anon_sym_protected] = ACTIONS(270), + [anon_sym_private] = ACTIONS(270), + [anon_sym_abstract] = ACTIONS(270), + [anon_sym_final] = ACTIONS(270), + [anon_sym_strictfp] = ACTIONS(270), + [anon_sym_native] = ACTIONS(270), + [anon_sym_transient] = ACTIONS(270), + [anon_sym_volatile] = ACTIONS(270), + [anon_sym_sealed] = ACTIONS(270), + [anon_sym_non_DASHsealed] = ACTIONS(268), + [anon_sym_ATinterface] = ACTIONS(268), + [anon_sym_interface] = ACTIONS(270), + [anon_sym_byte] = ACTIONS(270), + [anon_sym_short] = ACTIONS(270), + [anon_sym_int] = ACTIONS(270), + [anon_sym_long] = ACTIONS(270), + [anon_sym_char] = ACTIONS(270), + [anon_sym_float] = ACTIONS(270), + [anon_sym_double] = ACTIONS(270), + [sym_boolean_type] = ACTIONS(270), + [sym_void_type] = ACTIONS(270), + [sym_this] = ACTIONS(270), + [sym_super] = ACTIONS(270), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [204] = { + [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(847), + [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), + [sym_string_literal] = ACTIONS(849), + [sym_text_block] = ACTIONS(847), + [sym_null_literal] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = 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_RBRACE] = 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(851), + [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_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_final] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [205] = { [ts_builtin_sym_end] = ACTIONS(300), [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(302), @@ -26865,83 +26988,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [205] = { - [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(849), - [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), - [sym_string_literal] = ACTIONS(851), - [sym_text_block] = ACTIONS(849), - [sym_null_literal] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, [206] = { [ts_builtin_sym_end] = ACTIONS(853), [sym_identifier] = ACTIONS(855), @@ -27867,41 +27913,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(509), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(506), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27943,41 +27989,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(532), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27999,8 +28045,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(903), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(903), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -28019,41 +28065,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(504), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(512), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28095,41 +28141,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(549), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(488), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28144,6 +28190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(907), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28152,7 +28199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(907), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -28171,41 +28217,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(511), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28247,41 +28293,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [223] = { - [sym__literal] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(555), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_switch_expression] = STATE(441), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym__literal] = STATE(390), [sym_expression] = STATE(487), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28296,83 +28418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(488), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28399,41 +28445,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [225] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(489), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(553), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28448,7 +28494,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(915), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28457,6 +28502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(915), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -28475,41 +28521,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [226] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(499), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(484), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28551,41 +28597,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [227] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(490), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(547), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28600,7 +28646,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(919), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28609,6 +28654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(919), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -28627,41 +28673,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [228] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(555), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28703,41 +28749,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(485), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28752,6 +28798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(923), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28760,7 +28807,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(923), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -28779,41 +28825,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [230] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(503), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28828,6 +28874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(925), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28835,7 +28882,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(925), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), @@ -28855,41 +28901,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [231] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28904,7 +28950,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(927), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28913,6 +28958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(927), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -28931,41 +28977,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [232] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29007,41 +29053,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [233] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(529), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(521), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29056,6 +29102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -29064,7 +29111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(931), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -29083,41 +29129,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [234] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(545), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29139,8 +29185,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(933), [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(933), [anon_sym_AT] = ACTIONS(321), [anon_sym_open] = ACTIONS(284), [anon_sym_module] = ACTIONS(284), @@ -29159,41 +29205,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [235] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(534), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29235,42 +29281,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(435), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(490), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29283,18 +29329,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29310,42 +29356,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(535), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(507), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29358,18 +29404,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29385,42 +29431,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(510), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(444), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29433,18 +29479,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29460,42 +29506,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [239] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(495), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(436), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29508,18 +29554,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29535,41 +29581,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(519), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(448), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29610,41 +29656,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [241] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(494), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(530), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29685,41 +29731,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [242] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(431), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(452), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29760,41 +29806,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [243] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(460), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(550), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29835,41 +29881,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [244] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(548), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29910,116 +29956,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(516), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(518), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(454), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30059,42 +30030,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(456), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [246] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(496), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30134,117 +30105,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(497), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(444), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [247] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(451), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30284,43 +30180,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(445), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [248] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(444), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30333,18 +30229,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30359,42 +30255,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(455), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [249] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(546), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30434,42 +30330,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [252] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(454), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [250] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(516), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30509,117 +30405,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [253] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(435), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(541), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [251] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30659,42 +30480,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [255] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(540), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [252] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(446), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30734,42 +30555,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [256] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(453), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [253] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30809,43 +30630,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [257] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(512), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [254] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(436), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30858,18 +30679,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30884,43 +30705,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [258] = { - [sym__literal] = STATE(381), + [255] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_switch_expression] = STATE(441), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [256] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(456), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_switch_expression] = STATE(441), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [257] = { + [sym__literal] = STATE(390), [sym_expression] = STATE(479), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30933,18 +30904,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30959,42 +30930,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [259] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [258] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(468), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31034,42 +31005,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [260] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(432), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [259] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(467), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31109,42 +31080,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [261] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(433), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [260] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(466), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31184,43 +31155,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [262] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(481), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [261] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(446), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31233,18 +31204,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31259,42 +31230,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [263] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(547), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [262] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(526), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31334,43 +31305,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [263] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(489), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_switch_expression] = STATE(441), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [264] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(482), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(491), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31383,18 +31429,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31410,42 +31456,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [265] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(446), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(494), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31458,18 +31504,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31485,42 +31531,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [266] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(431), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(443), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31533,18 +31579,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31560,42 +31606,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [267] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(483), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(533), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31608,18 +31654,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31635,42 +31681,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [268] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(439), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(443), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31683,18 +31729,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31710,42 +31756,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [269] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(485), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(448), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31758,18 +31804,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31785,41 +31831,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [270] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(517), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31860,42 +31906,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [271] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(486), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(532), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31908,18 +31954,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31935,117 +31981,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [272] = { - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(695), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(695), - [sym_string_literal] = ACTIONS(693), - [sym_text_block] = ACTIONS(695), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [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(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(695), - [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_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_final] = 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(695), - [anon_sym_ATinterface] = ACTIONS(695), - [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), - }, - [273] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(542), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(514), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32058,18 +32029,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32084,43 +32055,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(521), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [273] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(513), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32133,18 +32104,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32159,43 +32130,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(466), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [274] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(495), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32208,18 +32179,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32234,43 +32205,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [276] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [275] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(483), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32283,18 +32254,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32309,43 +32280,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(491), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [276] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(499), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32358,18 +32329,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32384,42 +32355,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [277] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(551), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -32459,42 +32430,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(546), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [278] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(472), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -32534,43 +32505,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(538), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [279] = { + [sym__literal] = STATE(390), + [sym_expression] = STATE(500), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32583,18 +32554,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32609,42 +32580,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [280] = { + [sym_identifier] = ACTIONS(725), + [sym_decimal_integer_literal] = ACTIONS(725), + [sym_hex_integer_literal] = ACTIONS(725), + [sym_octal_integer_literal] = ACTIONS(727), + [sym_binary_integer_literal] = ACTIONS(727), + [sym_decimal_floating_point_literal] = ACTIONS(727), + [sym_hex_floating_point_literal] = ACTIONS(725), + [sym_true] = ACTIONS(725), + [sym_false] = ACTIONS(725), + [sym_character_literal] = ACTIONS(727), + [sym_string_literal] = ACTIONS(725), + [sym_text_block] = ACTIONS(727), + [sym_null_literal] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [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(725), + [anon_sym_class] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_case] = ACTIONS(725), + [anon_sym_default] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(727), + [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_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_final] = 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(727), + [anon_sym_ATinterface] = ACTIONS(727), + [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), + }, [281] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(439), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(470), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -32685,41 +32731,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [282] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(448), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(524), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -32760,42 +32806,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [283] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(501), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32808,18 +32854,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32835,42 +32881,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [284] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(513), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(555), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32883,18 +32929,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32910,42 +32956,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [285] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(432), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(474), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32958,18 +33004,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32985,41 +33031,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [286] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(539), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33060,42 +33106,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [287] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(433), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(390), + [sym_expression] = STATE(505), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1115), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(332), + [sym_array_access] = STATE(332), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1115), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(747), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33108,18 +33154,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33135,41 +33181,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [288] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(450), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(538), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33210,41 +33256,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [289] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(452), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), + [sym__literal] = STATE(390), + [sym_expression] = STATE(465), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), [sym_field_access] = STATE(323), [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33285,42 +33331,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [290] = { - [sym__literal] = STATE(381), + [sym__literal] = STATE(390), [sym_expression] = STATE(475), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_cast_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_instanceof_expression] = STATE(449), + [sym_lambda_expression] = STATE(449), + [sym_inferred_parameters] = STATE(1140), + [sym_ternary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_update_expression] = STATE(449), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(323), + [sym_array_access] = STATE(323), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(677), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [sym_formal_parameters] = STATE(1140), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(288), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33333,18 +33379,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), + [anon_sym_open] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33360,33 +33406,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [291] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), [sym_identifier] = ACTIONS(937), + [sym_decimal_integer_literal] = ACTIONS(937), + [sym_hex_integer_literal] = ACTIONS(937), + [sym_octal_integer_literal] = ACTIONS(939), + [sym_binary_integer_literal] = ACTIONS(939), + [sym_decimal_floating_point_literal] = ACTIONS(939), + [sym_hex_floating_point_literal] = ACTIONS(937), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [sym_character_literal] = ACTIONS(939), + [sym_string_literal] = ACTIONS(937), + [sym_text_block] = ACTIONS(939), + [sym_null_literal] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [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(937), + [anon_sym_class] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_default] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [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_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_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_final] = 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(939), + [anon_sym_ATinterface] = ACTIONS(939), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [292] = { + [sym_identifier] = ACTIONS(941), + [sym_decimal_integer_literal] = ACTIONS(941), + [sym_hex_integer_literal] = ACTIONS(941), + [sym_octal_integer_literal] = ACTIONS(943), + [sym_binary_integer_literal] = ACTIONS(943), + [sym_decimal_floating_point_literal] = ACTIONS(943), + [sym_hex_floating_point_literal] = ACTIONS(941), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_character_literal] = ACTIONS(943), + [sym_string_literal] = ACTIONS(941), + [sym_text_block] = ACTIONS(943), + [sym_null_literal] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [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(941), + [anon_sym_class] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_default] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [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_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_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_final] = 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(943), + [anon_sym_ATinterface] = ACTIONS(943), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [293] = { + [sym_identifier] = ACTIONS(945), + [sym_decimal_integer_literal] = ACTIONS(945), + [sym_hex_integer_literal] = ACTIONS(945), + [sym_octal_integer_literal] = ACTIONS(947), + [sym_binary_integer_literal] = ACTIONS(947), + [sym_decimal_floating_point_literal] = ACTIONS(947), + [sym_hex_floating_point_literal] = ACTIONS(945), + [sym_true] = ACTIONS(945), + [sym_false] = ACTIONS(945), + [sym_character_literal] = ACTIONS(947), + [sym_string_literal] = ACTIONS(945), + [sym_text_block] = ACTIONS(947), + [sym_null_literal] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [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(945), + [anon_sym_class] = ACTIONS(945), + [anon_sym_switch] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_default] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [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_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_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_final] = 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(947), + [anon_sym_ATinterface] = ACTIONS(947), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [294] = { + [sym_identifier] = ACTIONS(949), + [sym_decimal_integer_literal] = ACTIONS(949), + [sym_hex_integer_literal] = ACTIONS(949), + [sym_octal_integer_literal] = ACTIONS(951), + [sym_binary_integer_literal] = ACTIONS(951), + [sym_decimal_floating_point_literal] = ACTIONS(951), + [sym_hex_floating_point_literal] = ACTIONS(949), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_character_literal] = ACTIONS(951), + [sym_string_literal] = ACTIONS(949), + [sym_text_block] = ACTIONS(951), + [sym_null_literal] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [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(949), + [anon_sym_class] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_default] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(951), + [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_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_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_final] = 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(951), + [anon_sym_ATinterface] = ACTIONS(951), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [295] = { + [sym__literal] = STATE(390), + [sym_primary_expression] = STATE(868), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(782), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_resource] = STATE(1076), + [sym__annotation] = STATE(528), + [sym_marker_annotation] = STATE(528), + [sym_annotation] = STATE(528), + [sym_modifiers] = STATE(609), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(633), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(953), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33399,14 +33741,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_new] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_new] = ACTIONS(959), [anon_sym_default] = ACTIONS(280), [anon_sym_synchronized] = ACTIONS(280), [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), + [anon_sym_open] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), [anon_sym_static] = ACTIONS(280), [anon_sym_public] = ACTIONS(280), [anon_sym_protected] = ACTIONS(280), @@ -33433,182 +33775,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(947), - [sym_decimal_integer_literal] = ACTIONS(947), - [sym_hex_integer_literal] = ACTIONS(947), - [sym_octal_integer_literal] = ACTIONS(949), - [sym_binary_integer_literal] = ACTIONS(949), - [sym_decimal_floating_point_literal] = ACTIONS(949), - [sym_hex_floating_point_literal] = ACTIONS(947), - [sym_true] = ACTIONS(947), - [sym_false] = ACTIONS(947), - [sym_character_literal] = ACTIONS(949), - [sym_string_literal] = ACTIONS(947), - [sym_text_block] = ACTIONS(949), - [sym_null_literal] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [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(947), - [anon_sym_class] = ACTIONS(947), - [anon_sym_switch] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_default] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [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_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_final] = 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(949), - [anon_sym_ATinterface] = ACTIONS(949), - [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), - }, - [293] = { - [sym_identifier] = ACTIONS(951), - [sym_decimal_integer_literal] = ACTIONS(951), - [sym_hex_integer_literal] = ACTIONS(951), - [sym_octal_integer_literal] = ACTIONS(953), - [sym_binary_integer_literal] = ACTIONS(953), - [sym_decimal_floating_point_literal] = ACTIONS(953), - [sym_hex_floating_point_literal] = ACTIONS(951), - [sym_true] = ACTIONS(951), - [sym_false] = ACTIONS(951), - [sym_character_literal] = ACTIONS(953), - [sym_string_literal] = ACTIONS(951), - [sym_text_block] = ACTIONS(953), - [sym_null_literal] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [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(951), - [anon_sym_class] = ACTIONS(951), - [anon_sym_switch] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_default] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [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_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_final] = 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(953), - [anon_sym_ATinterface] = ACTIONS(953), - [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), - }, - [294] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [296] = { + [sym__literal] = STATE(390), + [sym_primary_expression] = STATE(868), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(782), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_resource] = STATE(1076), + [sym__annotation] = STATE(528), + [sym_marker_annotation] = STATE(528), + [sym_annotation] = STATE(528), + [sym_modifiers] = STATE(609), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(633), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(953), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33621,14 +33815,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_new] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_new] = ACTIONS(959), [anon_sym_default] = ACTIONS(280), [anon_sym_synchronized] = ACTIONS(280), [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), + [anon_sym_open] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), [anon_sym_static] = ACTIONS(280), [anon_sym_public] = ACTIONS(280), [anon_sym_protected] = ACTIONS(280), @@ -33655,182 +33849,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(957), - [sym_decimal_integer_literal] = ACTIONS(957), - [sym_hex_integer_literal] = ACTIONS(957), - [sym_octal_integer_literal] = ACTIONS(959), - [sym_binary_integer_literal] = ACTIONS(959), - [sym_decimal_floating_point_literal] = ACTIONS(959), - [sym_hex_floating_point_literal] = ACTIONS(957), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_character_literal] = ACTIONS(959), - [sym_string_literal] = ACTIONS(957), - [sym_text_block] = ACTIONS(959), - [sym_null_literal] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [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(957), - [anon_sym_class] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_default] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [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_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_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_final] = 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(959), - [anon_sym_ATinterface] = ACTIONS(959), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(961), - [sym_decimal_integer_literal] = ACTIONS(961), - [sym_hex_integer_literal] = ACTIONS(961), - [sym_octal_integer_literal] = ACTIONS(963), - [sym_binary_integer_literal] = ACTIONS(963), - [sym_decimal_floating_point_literal] = ACTIONS(963), - [sym_hex_floating_point_literal] = ACTIONS(961), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_character_literal] = ACTIONS(963), - [sym_string_literal] = ACTIONS(961), - [sym_text_block] = ACTIONS(963), - [sym_null_literal] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [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(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_switch] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_default] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [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_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_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_final] = 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(963), - [anon_sym_ATinterface] = ACTIONS(963), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [297] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(877), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym__literal] = STATE(390), + [sym_primary_expression] = STATE(868), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(782), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_resource] = STATE(920), + [sym__annotation] = STATE(528), + [sym_marker_annotation] = STATE(528), + [sym_annotation] = STATE(528), + [sym_modifiers] = STATE(609), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(633), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(953), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33843,13 +33889,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_new] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_new] = ACTIONS(959), [anon_sym_default] = ACTIONS(280), [anon_sym_synchronized] = ACTIONS(280), [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), + [anon_sym_open] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), [anon_sym_static] = ACTIONS(280), [anon_sym_public] = ACTIONS(280), [anon_sym_protected] = ACTIONS(280), @@ -33877,33 +33923,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [298] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym__literal] = STATE(390), + [sym_primary_expression] = STATE(868), + [sym_array_creation_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_class_literal] = STATE(390), + [sym_object_creation_expression] = STATE(390), + [sym__unqualified_object_creation_expression] = STATE(413), + [sym_field_access] = STATE(782), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(390), + [sym_method_reference] = STATE(390), + [sym_resource] = STATE(1076), + [sym__annotation] = STATE(528), + [sym_marker_annotation] = STATE(528), + [sym_annotation] = STATE(528), + [sym_modifiers] = STATE(609), + [sym__type] = STATE(1135), + [sym__unannotated_type] = STATE(633), + [sym_annotated_type] = STATE(681), + [sym_scoped_type_identifier] = STATE(644), + [sym_generic_type] = STATE(666), + [sym_array_type] = STATE(605), + [sym_integral_type] = STATE(605), + [sym_floating_point_type] = STATE(605), + [aux_sym_array_creation_expression_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(953), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33916,13 +33962,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_new] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_new] = ACTIONS(959), [anon_sym_default] = ACTIONS(280), [anon_sym_synchronized] = ACTIONS(280), [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), + [anon_sym_open] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), [anon_sym_static] = ACTIONS(280), [anon_sym_public] = ACTIONS(280), [anon_sym_protected] = ACTIONS(280), @@ -33953,71 +33999,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 28, - ACTIONS(965), 1, - sym_identifier, - ACTIONS(968), 1, - anon_sym_LT, - ACTIONS(971), 1, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(974), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(977), 1, - anon_sym_RBRACE, - ACTIONS(982), 1, - anon_sym_SEMI, - ACTIONS(985), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(988), 1, - anon_sym_static, - ACTIONS(991), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(994), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(997), 1, - anon_sym_record, - ACTIONS(1000), 1, + ACTIONS(71), 1, anon_sym_ATinterface, - ACTIONS(1003), 1, + ACTIONS(73), 1, anon_sym_interface, - STATE(520), 1, + ACTIONS(965), 1, + sym_identifier, + ACTIONS(967), 1, + anon_sym_LT, + ACTIONS(969), 1, + anon_sym_RBRACE, + ACTIONS(971), 1, + anon_sym_SEMI, + ACTIONS(973), 1, + anon_sym_static, + ACTIONS(975), 1, + anon_sym_record, + STATE(531), 1, sym_modifiers, - STATE(569), 1, + STATE(573), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(608), 1, + STATE(621), 1, sym__unannotated_type, - STATE(777), 1, + STATE(816), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 2, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1012), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1006), 5, + ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(299), 11, + STATE(302), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34029,7 +34075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(979), 12, + ACTIONS(29), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -34043,71 +34089,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [118] = 28, - ACTIONS(23), 1, + ACTIONS(977), 1, + sym_identifier, + ACTIONS(980), 1, + anon_sym_LT, + ACTIONS(983), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(986), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(989), 1, + anon_sym_RBRACE, + ACTIONS(994), 1, + anon_sym_SEMI, + ACTIONS(997), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1000), 1, + anon_sym_static, + ACTIONS(1003), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1006), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, + ACTIONS(1009), 1, + anon_sym_record, + ACTIONS(1012), 1, anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1019), 1, - anon_sym_RBRACE, - ACTIONS(1021), 1, - anon_sym_SEMI, - ACTIONS(1023), 1, - anon_sym_static, - ACTIONS(1025), 1, - anon_sym_record, - STATE(520), 1, + anon_sym_interface, + STATE(531), 1, sym_modifiers, - STATE(569), 1, + STATE(573), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(608), 1, + STATE(621), 1, sym__unannotated_type, - STATE(777), 1, + STATE(816), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1021), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1024), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(1018), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(299), 11, + STATE(300), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34119,7 +34165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(991), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -34147,31 +34193,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(1015), 1, + ACTIONS(965), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(967), 1, anon_sym_LT, - ACTIONS(1023), 1, + ACTIONS(973), 1, anon_sym_static, - ACTIONS(1025), 1, + ACTIONS(975), 1, anon_sym_record, ACTIONS(1027), 1, anon_sym_RBRACE, ACTIONS(1029), 1, anon_sym_SEMI, - STATE(520), 1, + STATE(531), 1, sym_modifiers, - STATE(569), 1, + STATE(573), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(608), 1, + STATE(621), 1, sym__unannotated_type, - STATE(777), 1, + STATE(816), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34182,11 +34228,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34197,7 +34243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(300), 11, + STATE(303), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34237,31 +34283,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(1015), 1, + ACTIONS(965), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(967), 1, anon_sym_LT, - ACTIONS(1021), 1, - anon_sym_SEMI, - ACTIONS(1023), 1, + ACTIONS(973), 1, anon_sym_static, - ACTIONS(1025), 1, + ACTIONS(975), 1, anon_sym_record, ACTIONS(1031), 1, anon_sym_RBRACE, - STATE(520), 1, + ACTIONS(1033), 1, + anon_sym_SEMI, + STATE(531), 1, sym_modifiers, - STATE(569), 1, + STATE(573), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(608), 1, + STATE(621), 1, sym__unannotated_type, - STATE(777), 1, + STATE(816), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34272,11 +34318,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34287,7 +34333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(299), 11, + STATE(300), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34327,31 +34373,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(1015), 1, + ACTIONS(965), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(967), 1, anon_sym_LT, - ACTIONS(1023), 1, + ACTIONS(973), 1, anon_sym_static, - ACTIONS(1025), 1, + ACTIONS(975), 1, anon_sym_record, ACTIONS(1033), 1, - anon_sym_RBRACE, - ACTIONS(1035), 1, anon_sym_SEMI, - STATE(520), 1, + ACTIONS(1035), 1, + anon_sym_RBRACE, + STATE(531), 1, sym_modifiers, - STATE(569), 1, + STATE(573), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(608), 1, + STATE(621), 1, sym__unannotated_type, - STATE(777), 1, + STATE(816), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34362,11 +34408,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34377,7 +34423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(302), 11, + STATE(300), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34402,7 +34448,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [590] = 24, + [590] = 14, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(1045), 1, + anon_sym_EQ, + ACTIONS(1049), 1, + anon_sym_LT, + ACTIONS(1052), 1, + anon_sym_DASH_GT, + ACTIONS(1057), 1, + anon_sym_DOT, + ACTIONS(1061), 1, + anon_sym_AT, + STATE(404), 1, + sym_argument_list, + STATE(599), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1054), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1037), 3, + anon_sym_open, + anon_sym_module, + sym_identifier, + ACTIONS(1047), 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(1041), 14, + 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, + ACTIONS(1043), 14, + 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_RBRACE, + anon_sym_SEMI, + [673] = 24, ACTIONS(23), 1, anon_sym_class, ACTIONS(57), 1, @@ -34415,25 +34530,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(1017), 1, + ACTIONS(967), 1, anon_sym_LT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1039), 1, + ACTIONS(1065), 1, anon_sym_RBRACE, - ACTIONS(1041), 1, + ACTIONS(1067), 1, anon_sym_SEMI, - STATE(552), 1, + STATE(562), 1, sym_modifiers, - STATE(567), 1, + STATE(578), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(614), 1, + STATE(624), 1, sym__unannotated_type, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34444,11 +34559,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34481,75 +34596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [693] = 14, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_EQ, - ACTIONS(1055), 1, - anon_sym_LT, - ACTIONS(1058), 1, - anon_sym_DASH_GT, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, - anon_sym_AT, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1043), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - ACTIONS(1053), 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(1047), 14, - 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, - ACTIONS(1049), 14, - 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_RBRACE, - anon_sym_SEMI, [776] = 24, ACTIONS(23), 1, anon_sym_class, @@ -34563,25 +34609,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(1017), 1, + ACTIONS(967), 1, anon_sym_LT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, ACTIONS(1069), 1, anon_sym_RBRACE, ACTIONS(1071), 1, anon_sym_SEMI, - STATE(552), 1, + STATE(562), 1, sym_modifiers, - STATE(567), 1, + STATE(578), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(614), 1, + STATE(624), 1, sym__unannotated_type, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34592,11 +34638,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34607,7 +34653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(304), 7, + STATE(305), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -34650,17 +34696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(1102), 1, anon_sym_interface, - STATE(552), 1, + STATE(562), 1, sym_modifiers, - STATE(567), 1, + STATE(578), 1, sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(614), 1, + STATE(624), 1, sym__unannotated_type, - STATE(873), 1, + STATE(970), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34671,11 +34717,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1111), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34709,13 +34755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [982] = 18, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1045), 1, anon_sym_EQ, - ACTIONS(1055), 1, + ACTIONS(1049), 1, anon_sym_LT, - ACTIONS(1058), 1, + ACTIONS(1052), 1, anon_sym_DASH_GT, ACTIONS(1114), 1, anon_sym_AMP, @@ -34725,27 +34771,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(1123), 1, anon_sym_DOT, - STATE(401), 1, + STATE(404), 1, sym_argument_list, - STATE(591), 1, + STATE(599), 1, sym_type_arguments, - STATE(899), 1, + STATE(950), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1054), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1067), 2, + ACTIONS(1061), 2, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1043), 4, + ACTIONS(1037), 4, anon_sym_open, anon_sym_module, sym_this, sym_identifier, - ACTIONS(1049), 9, + ACTIONS(1043), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -34755,7 +34801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1053), 11, + ACTIONS(1047), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34767,7 +34813,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(1047), 12, + ACTIONS(1041), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -34781,35 +34827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, [1072] = 15, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1045), 1, anon_sym_EQ, - ACTIONS(1055), 1, + ACTIONS(1049), 1, anon_sym_LT, - ACTIONS(1058), 1, + ACTIONS(1052), 1, anon_sym_DASH_GT, - ACTIONS(1063), 1, + ACTIONS(1057), 1, anon_sym_DOT, - ACTIONS(1067), 1, + ACTIONS(1061), 1, anon_sym_AT, ACTIONS(1127), 1, anon_sym_COLON, - STATE(401), 1, + STATE(404), 1, sym_argument_list, - STATE(591), 1, + STATE(599), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1054), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1043), 3, + ACTIONS(1037), 3, anon_sym_open, anon_sym_module, sym_identifier, - ACTIONS(1049), 10, + ACTIONS(1043), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -34820,7 +34866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1053), 11, + ACTIONS(1047), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34832,7 +34878,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(1047), 13, + ACTIONS(1041), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -34847,9 +34893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, [1153] = 5, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(419), 1, + STATE(399), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, @@ -34902,9 +34948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [1213] = 5, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(408), 1, + STATE(395), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, @@ -34957,9 +35003,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [1273] = 5, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(411), 1, + STATE(400), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, @@ -35012,9 +35058,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [1333] = 5, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(417), 1, + STATE(387), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, @@ -35066,63 +35112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1393] = 7, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1149), 1, - anon_sym_EQ, - STATE(402), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1151), 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(1145), 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(1147), 18, - 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, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [1456] = 19, + [1393] = 19, ACTIONS(23), 1, anon_sym_class, ACTIONS(57), 1, @@ -35133,17 +35123,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1153), 1, + ACTIONS(1145), 1, anon_sym_RBRACE, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(589), 1, + STATE(594), 1, sym_modifiers, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(624), 1, + STATE(627), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -35154,11 +35144,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -35190,6 +35180,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + [1480] = 7, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(1151), 1, + anon_sym_EQ, + STATE(411), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1153), 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(1147), 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(1149), 18, + 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, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, [1543] = 19, ACTIONS(23), 1, anon_sym_class, @@ -35201,17 +35247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, ACTIONS(1155), 1, anon_sym_RBRACE, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(589), 1, + STATE(594), 1, sym_modifiers, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(624), 1, + STATE(627), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -35222,11 +35268,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -35273,13 +35319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(1177), 1, anon_sym_interface, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(589), 1, + STATE(594), 1, sym_modifiers, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(624), 1, + STATE(627), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -35290,11 +35336,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1186), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(352), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -35326,72 +35372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1717] = 13, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1055), 1, - anon_sym_LT, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, - anon_sym_AT, - ACTIONS(1189), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_DASH_GT, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1049), 11, - 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(1191), 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(1047), 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_COLON, - [1791] = 3, + [1717] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 15, + ACTIONS(1129), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35407,7 +35392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1143), 30, + ACTIONS(1131), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35438,28 +35423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1845] = 3, + [1771] = 10, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(1151), 1, + anon_sym_EQ, + ACTIONS(1189), 1, + sym_identifier, + STATE(411), 1, + sym_argument_list, + STATE(899), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1137), 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(1139), 30, - anon_sym_RPAREN, + ACTIONS(1191), 2, + anon_sym_open, + anon_sym_module, + ACTIONS(1153), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35471,42 +35452,71 @@ 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(1149), 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_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_RBRACE, anon_sym_SEMI, - [1899] = 10, - ACTIONS(1045), 1, + ACTIONS(1147), 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_instanceof, + [1839] = 13, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1149), 1, + ACTIONS(1049), 1, + anon_sym_LT, + ACTIONS(1057), 1, + anon_sym_DOT, + ACTIONS(1061), 1, + anon_sym_AT, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(1196), 1, - sym_identifier, - STATE(402), 1, + ACTIONS(1197), 1, + anon_sym_DASH_GT, + STATE(404), 1, sym_argument_list, - STATE(904), 1, - sym_scoped_identifier, + STATE(599), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1198), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(1151), 11, + ACTIONS(1054), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1043), 11, + 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(1195), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35518,22 +35528,27 @@ 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(1147), 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_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - ACTIONS(1145), 14, + ACTIONS(1041), 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_COLON, + [1913] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 15, anon_sym_AMP, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, @@ -35546,7 +35561,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1143), 30, + 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_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_RBRACE, + anon_sym_SEMI, [1967] = 3, ACTIONS(3), 2, sym_line_comment, @@ -35599,12 +35645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [2021] = 5, - ACTIONS(1051), 1, + ACTIONS(1045), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1053), 11, + ACTIONS(1047), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35616,7 +35662,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(1047), 14, + ACTIONS(1041), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35631,7 +35677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1049), 18, + ACTIONS(1043), 18, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35651,29 +35697,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [2078] = 13, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(1049), 1, anon_sym_LT, - ACTIONS(1058), 1, + ACTIONS(1052), 1, anon_sym_DASH_GT, - ACTIONS(1063), 1, + ACTIONS(1057), 1, anon_sym_DOT, - ACTIONS(1067), 1, + ACTIONS(1061), 1, anon_sym_AT, ACTIONS(1204), 1, anon_sym_EQ, - STATE(401), 1, + STATE(404), 1, sym_argument_list, - STATE(591), 1, + STATE(599), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1054), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1049), 11, + ACTIONS(1043), 11, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35685,7 +35731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1053), 11, + ACTIONS(1047), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35697,7 +35743,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(1047), 12, + ACTIONS(1041), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -35711,11 +35757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, [2151] = 7, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, ACTIONS(1206), 1, anon_sym_EQ, - STATE(402), 1, + STATE(411), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, @@ -35732,7 +35778,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(1145), 14, + ACTIONS(1147), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35747,7 +35793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1147), 15, + ACTIONS(1149), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -35763,27 +35809,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [2211] = 9, + [2211] = 8, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(1151), 1, + anon_sym_EQ, + ACTIONS(1210), 1, + anon_sym_module, + STATE(411), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1153), 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(1147), 13, + 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, + ACTIONS(1149), 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_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + [2272] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1214), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - STATE(334), 1, + STATE(336), 1, aux_sym_dimensions_repeat1, - STATE(413), 1, + STATE(409), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, + STATE(335), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, + aux_sym_array_creation_expression_repeat2, STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1210), 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1212), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35793,7 +35892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1212), 23, + ACTIONS(1214), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35817,27 +35916,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2274] = 9, + [2335] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1214), 1, + ACTIONS(1216), 1, anon_sym_LBRACK, - STATE(334), 1, + STATE(336), 1, aux_sym_dimensions_repeat1, - STATE(385), 1, + STATE(421), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, + STATE(335), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, + aux_sym_array_creation_expression_repeat2, STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1216), 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1218), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35847,7 +35946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1218), 23, + ACTIONS(1220), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35871,113 +35970,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2337] = 8, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1149), 1, - anon_sym_EQ, - ACTIONS(1220), 1, - anon_sym_module, - STATE(402), 1, - sym_argument_list, + [2398] = 9, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1216), 1, + anon_sym_LBRACK, + STATE(336), 1, + aux_sym_dimensions_repeat1, + STATE(418), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1151), 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(1145), 13, + STATE(335), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(702), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1222), 9, 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, - ACTIONS(1147), 14, + anon_sym_COLON, + ACTIONS(1224), 23, + 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_RBRACE, anon_sym_SEMI, - [2398] = 5, - ACTIONS(1189), 1, - anon_sym_EQ, + [2461] = 9, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1216), 1, + anon_sym_LBRACK, + STATE(336), 1, + aux_sym_dimensions_repeat1, + STATE(405), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1191), 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(1047), 14, + STATE(335), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(702), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1226), 9, 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(1049), 15, + ACTIONS(1228), 23, + 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, - [2452] = 3, + anon_sym_RBRACE, + anon_sym_SEMI, + [2524] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 8, + ACTIONS(1232), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -35986,7 +36091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1222), 33, + ACTIONS(1230), 33, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36020,11 +36125,60 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [2502] = 3, + [2574] = 5, + ACTIONS(1193), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 8, + ACTIONS(1195), 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(1041), 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(1043), 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_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [2628] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1236), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -36033,7 +36187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1226), 33, + ACTIONS(1234), 33, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36067,28 +36221,28 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [2552] = 19, + [2678] = 19, ACTIONS(278), 1, anon_sym_RPAREN, ACTIONS(282), 1, anon_sym_AT, ACTIONS(286), 1, anon_sym_non_DASHsealed, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(335), 1, + STATE(337), 1, sym_receiver_parameter, - STATE(461), 1, + STATE(469), 1, aux_sym_modifiers_repeat1, - STATE(571), 1, - aux_sym_dimensions_expr_repeat1, - STATE(579), 1, + STATE(577), 1, + aux_sym_array_creation_expression_repeat1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(601), 1, + STATE(610), 1, sym_modifiers, - STATE(625), 1, + STATE(628), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -36099,14 +36253,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(950), 2, + STATE(906), 2, sym_formal_parameter, sym_spread_parameter, - STATE(526), 3, + STATE(528), 3, sym__annotation, sym_marker_annotation, sym_annotation, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -36130,23 +36284,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2634] = 7, - ACTIONS(1234), 1, + [2760] = 7, + ACTIONS(1242), 1, anon_sym_LBRACK, - ACTIONS(1237), 1, + ACTIONS(1245), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, + STATE(335), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(727), 4, + aux_sym_array_creation_expression_repeat2, + STATE(748), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1230), 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1238), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36156,7 +36310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1232), 23, + ACTIONS(1240), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36180,22 +36334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2691] = 7, + [2817] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1244), 1, + ACTIONS(1252), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(338), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(703), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1240), 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1248), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36205,7 +36359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1242), 23, + ACTIONS(1250), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36229,22 +36383,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2747] = 16, + [2873] = 16, ACTIONS(282), 1, anon_sym_AT, ACTIONS(286), 1, anon_sym_non_DASHsealed, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1246), 1, + ACTIONS(1254), 1, anon_sym_RPAREN, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(601), 1, + STATE(610), 1, sym_modifiers, - STATE(632), 1, + STATE(639), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -36255,14 +36409,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(885), 2, + STATE(928), 2, sym_formal_parameter, sym_spread_parameter, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(461), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -36287,22 +36441,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2821] = 7, - ACTIONS(1252), 1, + [2947] = 7, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_AT, - STATE(336), 1, + STATE(338), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(703), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1248), 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1256), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36312,7 +36466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1250), 23, + ACTIONS(1258), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36336,24 +36490,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2877] = 8, + [3003] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1244), 1, + ACTIONS(1252), 1, anon_sym_LBRACK, - STATE(334), 1, + STATE(336), 1, aux_sym_dimensions_repeat1, - STATE(428), 1, + STATE(429), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(703), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1258), 8, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1266), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36362,7 +36516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1260), 22, + ACTIONS(1268), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36385,20 +36539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [2934] = 15, + [3060] = 15, ACTIONS(282), 1, anon_sym_AT, ACTIONS(286), 1, anon_sym_non_DASHsealed, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(601), 1, + STATE(610), 1, sym_modifiers, - STATE(632), 1, + STATE(639), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -36409,14 +36563,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(1059), 2, + STATE(1019), 2, sym_formal_parameter, sym_spread_parameter, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(461), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -36441,24 +36595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3005] = 8, + [3131] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1244), 1, + ACTIONS(1252), 1, anon_sym_LBRACK, - STATE(334), 1, + STATE(336), 1, aux_sym_dimensions_repeat1, - STATE(428), 1, + STATE(429), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(703), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1262), 8, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1270), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36467,7 +36621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1264), 22, + ACTIONS(1272), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36490,24 +36644,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [3062] = 16, + [3188] = 16, ACTIONS(282), 1, anon_sym_AT, ACTIONS(286), 1, anon_sym_non_DASHsealed, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(597), 1, + STATE(607), 1, sym_modifiers, - STATE(627), 1, + STATE(637), 1, sym__unannotated_type, - STATE(843), 1, + STATE(805), 1, sym_catch_type, - STATE(1079), 1, + STATE(1085), 1, sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, @@ -36518,11 +36672,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(461), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -36547,21 +36701,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3135] = 6, - ACTIONS(1268), 1, + [3261] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(735), 12, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + sym_text_block, anon_sym_LPAREN, - ACTIONS(1272), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(737), 25, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + sym_string_literal, + sym_null_literal, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_new, + anon_sym_switch, + anon_sym_open, + anon_sym_module, + 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, + [3307] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(717), 12, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + sym_text_block, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(719), 25, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + sym_string_literal, + sym_null_literal, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_new, + anon_sym_switch, + anon_sym_open, + anon_sym_module, + 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, + [3353] = 6, + ACTIONS(1276), 1, + anon_sym_LPAREN, + ACTIONS(1280), 1, anon_sym_DOT, - STATE(361), 1, + STATE(372), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 3, + ACTIONS(1278), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1266), 31, + ACTIONS(1274), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36593,21 +36833,21 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3187] = 6, - ACTIONS(1268), 1, + [3405] = 6, + ACTIONS(1276), 1, anon_sym_LPAREN, - ACTIONS(1278), 1, + ACTIONS(1286), 1, anon_sym_DOT, - STATE(360), 1, + STATE(370), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 3, + ACTIONS(1284), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1274), 31, + ACTIONS(1282), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36639,101 +36879,58 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3239] = 3, + [3457] = 5, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(426), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(759), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(761), 25, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, + ACTIONS(1288), 9, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_open, - anon_sym_module, - 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, - [3285] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(735), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1290), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - ACTIONS(737), 25, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_open, - anon_sym_module, - 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, - [3331] = 5, - ACTIONS(1284), 1, + [3505] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(427), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1280), 9, + ACTIONS(1294), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36743,7 +36940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1282), 24, + ACTIONS(1296), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36768,15 +36965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3379] = 5, - ACTIONS(1284), 1, + [3553] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(395), 1, + STATE(407), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1286), 9, + ACTIONS(1298), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36786,7 +36983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1288), 24, + ACTIONS(1300), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36811,15 +37008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3427] = 5, - ACTIONS(1284), 1, + [3601] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(405), 1, + STATE(397), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1290), 9, + ACTIONS(1302), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36829,7 +37026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1292), 24, + ACTIONS(1304), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36854,23 +37051,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3475] = 7, + [3649] = 7, + ACTIONS(1313), 1, + anon_sym_AT, + ACTIONS(1316), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1308), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(351), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1310), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + ACTIONS(1306), 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, + [3701] = 7, ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1300), 1, + ACTIONS(1325), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1296), 2, + ACTIONS(1321), 2, anon_sym_LT, anon_sym_ATinterface, - STATE(350), 4, + STATE(351), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1298), 13, + ACTIONS(1323), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -36884,7 +37126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - ACTIONS(1294), 14, + ACTIONS(1319), 14, anon_sym_class, anon_sym_enum, anon_sym_record, @@ -36899,25 +37141,25 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3527] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_class_body, + [3753] = 6, + ACTIONS(1327), 1, + anon_sym_LT, + ACTIONS(1330), 1, + anon_sym_DOT, + STATE(422), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1302), 9, + ACTIONS(1037), 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, - anon_sym_COLON, - ACTIONS(1304), 24, + ACTIONS(1061), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36934,116 +37176,71 @@ 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_RBRACE, anon_sym_SEMI, - [3575] = 7, - ACTIONS(1313), 1, anon_sym_AT, - ACTIONS(1316), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1308), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(350), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1310), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1306), 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, - [3627] = 3, + [3802] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1321), 6, + ACTIONS(1332), 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(1334), 25, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1319), 28, - 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_final, - 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, - [3670] = 3, + [3845] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1325), 6, + ACTIONS(1338), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1323), 28, + ACTIONS(1336), 31, 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, @@ -37067,18 +37264,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3713] = 3, + [3888] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1329), 6, + ACTIONS(1342), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1327), 28, + ACTIONS(1340), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37107,18 +37304,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3756] = 3, + [3931] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1333), 6, + ACTIONS(1346), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1331), 28, + ACTIONS(1344), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37147,63 +37344,63 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3799] = 3, + [3974] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1337), 6, + ACTIONS(1348), 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(1350), 25, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1335), 28, - 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_final, - 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, - [3842] = 3, + [4017] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 6, + ACTIONS(1354), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1339), 28, + ACTIONS(1352), 31, 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, @@ -37227,18 +37424,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3885] = 3, + [4060] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1345), 6, + ACTIONS(1358), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1343), 28, + ACTIONS(1356), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37267,18 +37464,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3928] = 3, + [4103] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1349), 6, + ACTIONS(1362), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1347), 28, + ACTIONS(1360), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37307,63 +37504,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3971] = 3, + [4146] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1351), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1366), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1353), 25, - 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4014] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 3, - anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1355), 31, + ACTIONS(1364), 28, 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, @@ -37387,51 +37544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4057] = 3, + [4189] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1359), 31, - 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_final, - 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, - [4100] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1363), 9, + ACTIONS(1368), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37441,7 +37558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1365), 25, + ACTIONS(1370), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37464,14 +37581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4143] = 3, + anon_sym_AT, + [4232] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1248), 9, + ACTIONS(1256), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37481,7 +37598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1250), 25, + ACTIONS(1258), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37507,23 +37624,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4186] = 3, + [4275] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 3, + ACTIONS(1374), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1367), 31, + ACTIONS(1372), 28, 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, @@ -37547,15 +37664,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4229] = 3, + [4318] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1373), 3, + ACTIONS(1378), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1371), 31, + ACTIONS(1376), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37587,11 +37704,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4272] = 3, + [4361] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1375), 9, + ACTIONS(1380), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37601,7 +37718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1377), 25, + ACTIONS(1382), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37624,57 +37741,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4315] = 6, - ACTIONS(1379), 1, - anon_sym_LT, - ACTIONS(1382), 1, - anon_sym_DOT, - STATE(414), 1, - sym_type_arguments, + [4404] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 7, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1067), 24, - 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_LBRACK, - anon_sym_RBRACK, + ACTIONS(1386), 6, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1384), 28, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [4364] = 3, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [4447] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 9, + ACTIONS(1388), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37684,7 +37798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1386), 25, + ACTIONS(1390), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37710,15 +37824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4407] = 3, + [4490] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1390), 3, + ACTIONS(1394), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1388), 31, + ACTIONS(1392), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37750,18 +37864,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4450] = 3, + [4533] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1394), 6, + ACTIONS(1398), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1392), 28, + ACTIONS(1396), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37790,18 +37904,58 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4493] = 3, + [4576] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1398), 6, + ACTIONS(1402), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1400), 31, + 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_final, + 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, + [4619] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1396), 28, + ACTIONS(1404), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37830,18 +37984,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4536] = 3, + [4662] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 6, + ACTIONS(1410), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1400), 28, + ACTIONS(1408), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37870,17 +38024,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4579] = 6, - ACTIONS(1408), 1, + [4705] = 6, + ACTIONS(1416), 1, anon_sym_LT, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_DOT, - STATE(392), 1, + STATE(419), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 7, + ACTIONS(1412), 7, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -37888,7 +38042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1406), 24, + ACTIONS(1414), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37913,18 +38067,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4628] = 3, + [4754] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 6, + ACTIONS(1423), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1413), 28, + ACTIONS(1421), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37953,18 +38107,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4671] = 3, + [4797] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 6, + ACTIONS(1427), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1417), 28, + ACTIONS(1425), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37993,18 +38147,58 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4714] = 3, + [4840] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 6, + ACTIONS(1429), 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(1431), 25, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + [4883] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1435), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1421), 28, + ACTIONS(1433), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38033,18 +38227,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4757] = 3, + [4926] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 6, + ACTIONS(1439), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1425), 28, + ACTIONS(1437), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38073,58 +38267,58 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4800] = 3, + [4969] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1443), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1431), 25, - 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1441), 28, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [4843] = 3, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [5012] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 6, + ACTIONS(1447), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1433), 28, + ACTIONS(1445), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38153,11 +38347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4886] = 3, + [5055] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 9, + ACTIONS(1449), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38167,7 +38361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1439), 25, + ACTIONS(1451), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38192,12 +38386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4929] = 3, + [5097] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, + ACTIONS(1453), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38207,7 +38400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1049), 24, + ACTIONS(1455), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38232,11 +38425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4971] = 3, + [5139] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 9, + ACTIONS(1457), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38246,7 +38439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1443), 24, + ACTIONS(1459), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38271,11 +38464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5013] = 3, + [5181] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1445), 9, + ACTIONS(1461), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38284,8 +38477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1447), 24, + ACTIONS(1463), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38302,19 +38494,20 @@ 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_RBRACE, anon_sym_SEMI, - [5055] = 3, + anon_sym_AT, + [5223] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 9, + ACTIONS(1465), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38324,7 +38517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1451), 24, + ACTIONS(1467), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38349,11 +38542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5097] = 3, + [5265] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1453), 9, + ACTIONS(1469), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38362,8 +38555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1455), 24, + ACTIONS(1471), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38380,19 +38572,20 @@ 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_RBRACE, anon_sym_SEMI, - [5139] = 3, + anon_sym_AT, + [5307] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1457), 9, + ACTIONS(1473), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38402,7 +38595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1459), 24, + ACTIONS(1475), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38427,11 +38620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5181] = 3, + [5349] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 8, + ACTIONS(1041), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38440,7 +38633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1463), 25, + anon_sym_COLON, + ACTIONS(1043), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38457,20 +38651,58 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACE, + anon_sym_SEMI, + [5391] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1477), 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(1479), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5223] = 3, + [5433] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 8, + ACTIONS(1481), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38479,7 +38711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1467), 25, + ACTIONS(1483), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38505,11 +38737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5265] = 3, + [5475] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 8, + ACTIONS(1485), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38518,7 +38750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1471), 25, + anon_sym_COLON, + ACTIONS(1487), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38535,20 +38768,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5307] = 3, + [5517] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 9, + ACTIONS(1489), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38558,7 +38790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1475), 24, + ACTIONS(1491), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38583,13 +38815,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5349] = 4, - ACTIONS(1411), 1, + [5559] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1493), 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(1495), 24, + 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_RBRACE, + anon_sym_SEMI, + [5601] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 8, + ACTIONS(1497), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38598,7 +38867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1406), 24, + ACTIONS(1499), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38620,14 +38889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5393] = 3, + [5643] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 8, + ACTIONS(1501), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38636,7 +38906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1479), 25, + anon_sym_COLON, + ACTIONS(1503), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38653,20 +38924,60 @@ 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_RBRACE, anon_sym_SEMI, + [5685] = 5, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(376), 1, + sym_block, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1507), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1505), 28, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [5435] = 3, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [5731] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 9, + ACTIONS(1509), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38676,7 +38987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1483), 24, + ACTIONS(1511), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38701,11 +39012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5477] = 3, + [5773] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 9, + ACTIONS(1513), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38715,7 +39026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1487), 24, + ACTIONS(1515), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38740,11 +39051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5519] = 3, + [5815] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 9, + ACTIONS(1517), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38754,7 +39065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1491), 24, + ACTIONS(1519), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38779,11 +39090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5561] = 3, + [5857] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 9, + ACTIONS(1521), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38793,7 +39104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1495), 24, + ACTIONS(1523), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38818,11 +39129,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5603] = 3, + [5899] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1525), 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(1527), 25, + 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [5941] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 9, + ACTIONS(1529), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38832,7 +39182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1499), 24, + ACTIONS(1531), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38857,11 +39207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5645] = 3, + [5983] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 9, + ACTIONS(1533), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38871,7 +39221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1503), 24, + ACTIONS(1535), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38896,11 +39246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5687] = 3, + [6025] = 4, + ACTIONS(1419), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 9, + ACTIONS(1412), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38909,8 +39261,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, + ACTIONS(1414), 24, + 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, - ACTIONS(1507), 24, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [6069] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1537), 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(1539), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38935,11 +39325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5729] = 3, + [6111] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 9, + ACTIONS(1541), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38949,7 +39339,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1511), 24, + ACTIONS(1543), 24, + 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_RBRACE, + anon_sym_SEMI, + [6153] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1545), 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(1547), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38974,11 +39403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5771] = 3, + [6195] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 9, + ACTIONS(1549), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38988,7 +39417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1515), 24, + ACTIONS(1551), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39013,11 +39442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5813] = 3, + [6237] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 9, + ACTIONS(1553), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39027,7 +39456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1519), 24, + ACTIONS(1555), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39052,11 +39481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5855] = 3, + [6279] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1521), 8, + ACTIONS(1557), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39065,7 +39494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1523), 25, + anon_sym_COLON, + ACTIONS(1559), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39082,20 +39512,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5897] = 3, + [6321] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 9, + ACTIONS(1561), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39105,7 +39534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1527), 24, + ACTIONS(1563), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39130,11 +39559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5939] = 3, + [6363] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 9, + ACTIONS(1565), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39144,7 +39573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1531), 24, + ACTIONS(1567), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39169,11 +39598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5981] = 3, + [6405] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 8, + ACTIONS(1569), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39182,7 +39611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1535), 25, + anon_sym_COLON, + ACTIONS(1571), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39199,21 +39629,20 @@ 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6023] = 6, - ACTIONS(1537), 1, + [6447] = 6, + ACTIONS(1573), 1, anon_sym_LBRACK, - ACTIONS(1539), 1, + ACTIONS(1575), 1, anon_sym_DOT, - ACTIONS(1541), 1, + ACTIONS(1577), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, @@ -39250,11 +39679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [6071] = 3, + [6495] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1543), 9, + ACTIONS(1579), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39263,8 +39692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1545), 24, + ACTIONS(1581), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39281,19 +39709,20 @@ 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_RBRACE, anon_sym_SEMI, - [6113] = 3, + anon_sym_AT, + [6537] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1547), 9, + ACTIONS(1583), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39303,7 +39732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1549), 24, + ACTIONS(1585), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39328,11 +39757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6155] = 3, + [6579] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1551), 9, + ACTIONS(1587), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39341,8 +39770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1553), 24, + ACTIONS(1589), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39359,19 +39787,20 @@ 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_RBRACE, anon_sym_SEMI, - [6197] = 3, + anon_sym_AT, + [6621] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1555), 9, + ACTIONS(1591), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39381,7 +39810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1557), 24, + ACTIONS(1593), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39406,50 +39835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6239] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1559), 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(1561), 25, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [6281] = 3, + [6663] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1563), 9, + ACTIONS(1595), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39459,7 +39849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1565), 24, + ACTIONS(1597), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39484,11 +39874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6323] = 3, + [6705] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1567), 8, + ACTIONS(1599), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39497,7 +39887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1569), 25, + ACTIONS(1601), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39523,11 +39913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [6365] = 3, + [6747] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1571), 9, + ACTIONS(1603), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39537,7 +39927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1573), 24, + ACTIONS(1605), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39562,11 +39952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6407] = 3, + [6789] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1575), 9, + ACTIONS(1607), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39576,7 +39966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1577), 24, + ACTIONS(1609), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39601,11 +39991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6449] = 3, + [6831] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1579), 9, + ACTIONS(1611), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39614,8 +40004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1581), 24, + ACTIONS(1613), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39632,19 +40021,20 @@ 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_RBRACE, anon_sym_SEMI, - [6491] = 3, + anon_sym_AT, + [6873] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 9, + ACTIONS(1615), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39654,7 +40044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1585), 24, + ACTIONS(1617), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39679,11 +40069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6533] = 3, + [6915] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1587), 9, + ACTIONS(1619), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39693,7 +40083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1589), 24, + ACTIONS(1621), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39718,152 +40108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6575] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1591), 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(1593), 25, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [6617] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_block, + [6957] = 5, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1597), 3, - anon_sym_LT, + ACTIONS(1507), 2, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1595), 28, - 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_final, - 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, - [6663] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1599), 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(1601), 24, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [6704] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1605), 5, - anon_sym_LT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1603), 27, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + ACTIONS(1626), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1623), 11, anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, @@ -39874,21 +40131,10 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6745] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1609), 5, - anon_sym_LT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1607), 27, + ACTIONS(1505), 16, anon_sym_class, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_enum, anon_sym_public, @@ -39902,21 +40148,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6786] = 3, + [7002] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1611), 8, + ACTIONS(1628), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39925,7 +40161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1613), 24, + ACTIONS(1630), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39950,11 +40186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [6827] = 3, + [7043] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 8, + ACTIONS(1632), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39963,7 +40199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1406), 24, + ACTIONS(1634), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39988,33 +40224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [6868] = 5, + [7084] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1597), 2, + ACTIONS(1638), 5, + anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1618), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1615), 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(1595), 16, + ACTIONS(1636), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, + anon_sym_AT, anon_sym_static, anon_sym_enum, anon_sym_public, @@ -40028,11 +40252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, anon_sym_interface, - [6913] = 3, + 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, + [7125] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1620), 8, + ACTIONS(1640), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40041,7 +40275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1622), 24, + ACTIONS(1642), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40066,18 +40300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [6954] = 5, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(1024), 1, - sym_parenthesized_expression, + [7166] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1597), 2, + ACTIONS(1646), 5, + anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1595), 27, + ACTIONS(1644), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -40105,11 +40338,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6998] = 3, + [7207] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1624), 8, + ACTIONS(1412), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40118,7 +40351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1626), 22, + ACTIONS(1414), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40138,17 +40371,58 @@ 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_RBRACE, anon_sym_SEMI, - [7037] = 4, + anon_sym_AT, + [7248] = 5, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(1020), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1507), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1505), 27, + 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_final, + 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, + [7292] = 4, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1628), 8, + ACTIONS(1648), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40157,7 +40431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1630), 20, + ACTIONS(1650), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40178,11 +40452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7078] = 3, + [7333] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1624), 8, + ACTIONS(1270), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40191,7 +40465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1626), 22, + ACTIONS(1272), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40214,11 +40488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7117] = 3, + [7372] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1634), 8, + ACTIONS(1654), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40227,7 +40501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1636), 22, + ACTIONS(1656), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40250,11 +40524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7156] = 3, + [7411] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 12, + ACTIONS(1613), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -40267,7 +40541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1469), 18, + ACTIONS(1611), 18, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -40286,48 +40560,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7195] = 4, + [7450] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1638), 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(1640), 20, - 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_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [7236] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1463), 12, + ACTIONS(1581), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -40340,7 +40577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1461), 18, + ACTIONS(1579), 18, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -40359,7 +40596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7275] = 3, + [7489] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -40395,11 +40632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7314] = 3, + [7528] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1258), 8, + ACTIONS(1658), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40408,7 +40645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1260), 22, + ACTIONS(1660), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40431,14 +40668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7353] = 4, + [7567] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1642), 8, + ACTIONS(1658), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40447,7 +40681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1644), 20, + ACTIONS(1660), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40465,14 +40699,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_RBRACE, anon_sym_SEMI, - [7394] = 3, + [7606] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1646), 8, + ACTIONS(1662), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40481,7 +40717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1648), 22, + ACTIONS(1664), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40504,11 +40740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7433] = 3, + [7645] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, + ACTIONS(1666), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40517,7 +40753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(274), 22, + ACTIONS(1668), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40540,11 +40776,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7472] = 3, + [7684] = 4, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1670), 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(1672), 20, + 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_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [7725] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 12, + ACTIONS(1483), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -40557,7 +40830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1521), 18, + ACTIONS(1481), 18, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -40576,11 +40849,14 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7511] = 3, + [7764] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1650), 8, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1674), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40589,7 +40865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1652), 22, + ACTIONS(1676), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40607,37 +40883,23 @@ 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_RBRACE, anon_sym_SEMI, - [7550] = 9, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, + [7805] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1642), 4, + ACTIONS(272), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(1644), 15, + anon_sym_GT_GT, + ACTIONS(274), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40645,168 +40907,127 @@ 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_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7600] = 12, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, + [7844] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1642), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1644), 12, - 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, + ACTIONS(1680), 3, anon_sym_RBRACE, - anon_sym_SEMI, - [7656] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1678), 26, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [7882] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 6, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1684), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7724] = 6, - ACTIONS(1689), 1, - anon_sym_AT, - ACTIONS(1692), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(447), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1306), 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(1686), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [7768] = 7, - ACTIONS(1658), 1, + [7950] = 6, + ACTIONS(1700), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1642), 5, + ACTIONS(1674), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1644), 17, + ACTIONS(1676), 17, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40824,15 +41045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7814] = 5, - ACTIONS(1045), 1, + [7994] = 5, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(1118), 1, + STATE(1108), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 8, + ACTIONS(1041), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40841,7 +41062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1049), 19, + ACTIONS(1043), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -40861,65 +41082,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - [7856] = 14, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1658), 1, + [8036] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, + ACTIONS(1712), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 10, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1714), 6, 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_RBRACE, anon_sym_SEMI, - [7916] = 3, + [8104] = 6, + ACTIONS(1719), 1, + anon_sym_AT, + ACTIONS(1722), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1697), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1695), 26, - anon_sym_class, + STATE(455), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1306), 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(1716), 13, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -40931,309 +41170,66 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7954] = 15, - ACTIONS(1642), 1, + [8148] = 15, + ACTIONS(1674), 1, anon_sym_PIPE, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1644), 9, - 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_RBRACE, - anon_sym_SEMI, - [8016] = 6, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 7, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1644), 17, - 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_CARET, - 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_RBRACE, - anon_sym_SEMI, - [8060] = 16, - ACTIONS(1658), 1, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1644), 8, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8124] = 15, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 9, - 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_RBRACE, - anon_sym_SEMI, - [8186] = 13, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1642), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1654), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1644), 10, + ACTIONS(1676), 9, 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_RBRACE, anon_sym_SEMI, - [8244] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, + [8210] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1652), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(1727), 3, anon_sym_RBRACE, - anon_sym_SEMI, - [8312] = 6, - ACTIONS(1699), 1, - anon_sym_LPAREN, - ACTIONS(1701), 1, - anon_sym_DOT, - STATE(511), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1270), 3, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1266), 23, + anon_sym_ATinterface, + ACTIONS(1725), 26, + anon_sym_class, anon_sym_default, anon_sym_synchronized, + anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41245,6 +41241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41255,21 +41252,21 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8356] = 6, - ACTIONS(1699), 1, + [8248] = 6, + ACTIONS(1729), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1731), 1, anon_sym_DOT, - STATE(477), 1, + STATE(518), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 3, + ACTIONS(1284), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1274), 23, + ACTIONS(1282), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41293,83 +41290,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8400] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, + [8292] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(1735), 3, anon_sym_RBRACE, - anon_sym_SEMI, - [8468] = 6, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1709), 1, anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(447), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1294), 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(1707), 13, + anon_sym_ATinterface, + ACTIONS(1733), 26, + anon_sym_class, anon_sym_default, anon_sym_synchronized, + anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41381,15 +41314,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [8512] = 3, + 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, + [8330] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1713), 3, + ACTIONS(1739), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1711), 26, + ACTIONS(1737), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41416,15 +41360,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8550] = 3, + [8368] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1717), 3, + ACTIONS(1743), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1715), 26, + ACTIONS(1741), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41451,15 +41395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8588] = 3, + [8406] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1721), 3, + ACTIONS(1747), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1719), 26, + ACTIONS(1745), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41486,15 +41430,65 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8626] = 3, + [8444] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1656), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8512] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1725), 3, + ACTIONS(1751), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1723), 26, + ACTIONS(1749), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41521,69 +41515,210 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8664] = 18, - ACTIONS(1658), 1, + [8550] = 15, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1676), 9, + anon_sym_RPAREN, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8612] = 12, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1674), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1676), 12, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1684), 1, + anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8668] = 9, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1708), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1674), 4, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + ACTIONS(1676), 15, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 6, - anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_instanceof, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8732] = 3, + [8718] = 13, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1731), 3, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1674), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1676), 10, + 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_RBRACE, + anon_sym_SEMI, + [8776] = 6, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1755), 1, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1729), 26, - anon_sym_class, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(455), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1319), 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(1753), 13, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41595,26 +41730,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8770] = 3, + [8820] = 7, + ACTIONS(1700), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1674), 5, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1676), 17, + 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_CARET, + 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_RBRACE, + anon_sym_SEMI, + [8866] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1759), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1733), 26, + ACTIONS(1757), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41641,19 +41804,69 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8808] = 3, - ACTIONS(3), 2, - sym_line_comment, + [8904] = 14, + ACTIONS(1674), 1, + anon_sym_PIPE, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, sym_block_comment, - ACTIONS(1739), 3, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1676), 10, + 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_RBRACE, + anon_sym_SEMI, + [8964] = 6, + ACTIONS(1729), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, + anon_sym_DOT, + STATE(519), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1278), 3, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1737), 26, - anon_sym_class, + ACTIONS(1274), 23, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41665,7 +41878,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41676,17 +41888,115 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8846] = 3, + [9008] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1763), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [9076] = 16, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1676), 8, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [9140] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 5, + ACTIONS(1236), 5, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1226), 23, + ACTIONS(1234), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41710,17 +42020,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8883] = 3, + [9177] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 5, + ACTIONS(1232), 5, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1222), 23, + ACTIONS(1230), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41744,58 +42054,22 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8920] = 6, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(272), 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(274), 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, - [8962] = 7, - ACTIONS(282), 1, + [9214] = 7, + ACTIONS(1263), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1765), 1, anon_sym_LBRACK, - STATE(476), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1240), 10, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1256), 10, anon_sym_COLON, anon_sym_DOT, anon_sym_default, @@ -41806,7 +42080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - ACTIONS(1242), 10, + ACTIONS(1258), 10, anon_sym_AMP, anon_sym_RPAREN, anon_sym_EQ, @@ -41817,119 +42091,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - [9006] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [9258] = 20, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1768), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1776), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1778), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1786), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1788), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1792), 1, + anon_sym_GT_GT, + ACTIONS(1796), 1, + anon_sym_COMMA, + ACTIONS(1798), 1, anon_sym_QMARK, + STATE(837), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [9072] = 20, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1780), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1782), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1794), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [9328] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1775), 1, - anon_sym_COMMA, - ACTIONS(1777), 1, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - STATE(770), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1773), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [9142] = 7, - ACTIONS(1255), 1, + ACTIONS(1800), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [9394] = 7, + ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1779), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - STATE(476), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(1248), 10, anon_sym_COLON, anon_sym_DOT, @@ -41952,645 +42226,570 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - [9186] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 3, + [9438] = 6, + ACTIONS(1573), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1355), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [9221] = 12, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - ACTIONS(1784), 1, - anon_sym_COMMA, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1788), 1, - anon_sym_SEMI, - STATE(761), 1, - sym_enum_constant, - STATE(1141), 1, - sym_modifiers, - STATE(1142), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [9274] = 12, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1771), 1, - anon_sym_GT_GT, + ACTIONS(1577), 1, + anon_sym_COLON_COLON, + ACTIONS(1804), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1642), 2, + ACTIONS(272), 8, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1759), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1644), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(274), 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_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9327] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, anon_sym_QMARK, - ACTIONS(1790), 1, - anon_sym_COMMA, - ACTIONS(1792), 1, - anon_sym_SEMI, - STATE(931), 1, - aux_sym_for_statement_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [9396] = 15, - ACTIONS(1668), 1, + anon_sym_SEMI, + [9480] = 16, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1776), 1, + anon_sym_AMP_AMP, + ACTIONS(1784), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1786), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1788), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1792), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 6, - anon_sym_AMP_AMP, + ACTIONS(1676), 5, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [9455] = 16, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + [9541] = 20, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1763), 1, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1806), 1, + anon_sym_RPAREN, + ACTIONS(1808), 1, + anon_sym_COMMA, + STATE(871), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 5, + [9610] = 20, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9516] = 6, - ACTIONS(1763), 1, + ACTIONS(1700), 1, anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1810), 1, + anon_sym_RPAREN, + ACTIONS(1812), 1, + anon_sym_COMMA, + STATE(924), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 7, - anon_sym_AMP, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1644), 14, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, 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, - [9557] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + [9679] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1816), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1814), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [9714] = 20, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(1818), 1, + anon_sym_RPAREN, + STATE(936), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1652), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [9622] = 15, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + [9783] = 20, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1767), 1, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(1820), 1, + anon_sym_RPAREN, + STATE(877), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9681] = 14, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, - anon_sym_AMP, - ACTIONS(1763), 1, + [9852] = 7, + ACTIONS(1784), 1, anon_sym_SLASH, - ACTIONS(1771), 1, - anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1780), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1782), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1674), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1676), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1644), 7, 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, - [9738] = 20, - ACTIONS(1658), 1, + [9895] = 9, + ACTIONS(1784), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1794), 1, - anon_sym_RPAREN, - ACTIONS(1796), 1, - anon_sym_COMMA, - STATE(948), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1674), 4, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + ACTIONS(1676), 12, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9807] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1798), 1, - anon_sym_RPAREN, - ACTIONS(1800), 1, + anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, - STATE(907), 1, - aux_sym_for_statement_repeat2, + anon_sym_QMARK, + anon_sym_COLON, + [9942] = 14, + ACTIONS(1674), 1, + anon_sym_PIPE, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1768), 1, + anon_sym_AMP, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1792), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9876] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1802), 1, - anon_sym_RPAREN, - STATE(910), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [9945] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1676), 7, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, anon_sym_CARET, - ACTIONS(1684), 1, + anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(1800), 1, + anon_sym_COLON, + [9999] = 12, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(286), 1, + anon_sym_non_DASHsealed, + ACTIONS(1822), 1, + sym_identifier, + ACTIONS(1824), 1, anon_sym_COMMA, - ACTIONS(1804), 1, + ACTIONS(1826), 1, + anon_sym_RBRACE, + ACTIONS(1828), 1, + anon_sym_SEMI, + STATE(780), 1, + sym_enum_constant, + STATE(1143), 1, + sym_modifiers, + STATE(1145), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(469), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(280), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [10052] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1832), 3, anon_sym_RPAREN, - STATE(872), 1, - aux_sym_for_statement_repeat2, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1830), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [10087] = 15, + ACTIONS(1674), 1, + anon_sym_PIPE, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1768), 1, + anon_sym_AMP, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1788), 1, + anon_sym_CARET, + ACTIONS(1792), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10014] = 7, - ACTIONS(1763), 1, + ACTIONS(1780), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1782), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1676), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [10146] = 6, + ACTIONS(1784), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1642), 5, + ACTIONS(1674), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1644), 14, + ACTIONS(1676), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42605,15 +42804,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [10057] = 3, + [10187] = 20, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1794), 1, + anon_sym_COLON, + ACTIONS(1812), 1, + anon_sym_COMMA, + STATE(961), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1808), 3, - anon_sym_RPAREN, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10256] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1354), 3, + anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1806), 23, + ACTIONS(1352), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42637,15 +42885,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10092] = 3, + [10291] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1373), 3, + ACTIONS(1378), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1371), 23, + ACTIONS(1376), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42669,182 +42917,126 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10127] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1810), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [10192] = 18, - ACTIONS(1668), 1, + [10326] = 15, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_AMP, - ACTIONS(1755), 1, - anon_sym_AMP_AMP, - ACTIONS(1757), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1784), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1786), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1788), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1792), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1705), 3, + ACTIONS(1676), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, - [10257] = 18, - ACTIONS(1658), 1, + [10385] = 12, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1784), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1674), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1770), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1676), 9, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1812), 3, - anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_SEMI, - [10322] = 13, - ACTIONS(1668), 1, + anon_sym_QMARK, + anon_sym_COLON, + [10438] = 13, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1763), 1, + ACTIONS(1784), 1, anon_sym_SLASH, - ACTIONS(1771), 1, + ACTIONS(1792), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 2, + ACTIONS(1674), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 7, + ACTIONS(1676), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -42852,108 +43044,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [10377] = 15, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1814), 1, - anon_sym_GT, - ACTIONS(1816), 1, - anon_sym_QMARK, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(861), 2, - sym_wildcard, - sym__type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(564), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [10436] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [10493] = 20, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1800), 1, + ACTIONS(1834), 1, anon_sym_COMMA, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(918), 1, - aux_sym_for_statement_repeat2, + ACTIONS(1836), 1, + anon_sym_SEMI, + STATE(930), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [10562] = 20, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(1838), 1, + anon_sym_RPAREN, + STATE(967), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10505] = 3, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10631] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 3, + ACTIONS(1842), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1820), 23, + ACTIONS(1840), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42977,71 +43174,214 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10540] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [10666] = 18, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1768), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1776), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1778), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1786), 1, anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_CARET, + ACTIONS(1792), 1, + anon_sym_GT_GT, + ACTIONS(1798), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1770), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1774), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1780), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1782), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1844), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10731] = 20, ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1800), 1, + ACTIONS(1808), 1, anon_sym_COMMA, - ACTIONS(1824), 1, + ACTIONS(1846), 1, anon_sym_RPAREN, - STATE(858), 1, + STATE(882), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10800] = 18, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1768), 1, + anon_sym_AMP, + ACTIONS(1776), 1, + anon_sym_AMP_AMP, + ACTIONS(1778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_CARET, + ACTIONS(1792), 1, + anon_sym_GT_GT, + ACTIONS(1798), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1770), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1774), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1714), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10865] = 20, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1848), 1, + anon_sym_COMMA, + ACTIONS(1850), 1, + anon_sym_RBRACE, + STATE(944), 1, + aux_sym_array_initializer_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10609] = 15, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10934] = 15, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1816), 1, - anon_sym_QMARK, - ACTIONS(1826), 1, + ACTIONS(1852), 1, anon_sym_GT, - STATE(579), 1, + ACTIONS(1854), 1, + anon_sym_QMARK, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, ACTIONS(3), 2, sym_line_comment, @@ -43052,372 +43392,366 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(921), 2, + STATE(895), 2, sym_wildcard, sym__type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(564), 4, + STATE(568), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [10668] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1830), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1828), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10703] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [10993] = 18, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1768), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1776), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1778), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1786), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1788), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1792), 1, + anon_sym_GT_GT, + ACTIONS(1798), 1, anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1832), 1, - anon_sym_RPAREN, - STATE(927), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10772] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1369), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1367), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10807] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1780), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1782), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1656), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [11058] = 20, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1773), 1, - anon_sym_COLON, - ACTIONS(1796), 1, + ACTIONS(1808), 1, anon_sym_COMMA, - STATE(952), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1856), 1, + anon_sym_RPAREN, + STATE(929), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10876] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1390), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1388), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10911] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [11127] = 20, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1800), 1, + ACTIONS(1808), 1, anon_sym_COMMA, - ACTIONS(1834), 1, + ACTIONS(1858), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(926), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [11196] = 18, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1768), 1, + anon_sym_AMP, + ACTIONS(1776), 1, + anon_sym_AMP_AMP, + ACTIONS(1778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_CARET, + ACTIONS(1792), 1, + anon_sym_GT_GT, + ACTIONS(1798), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1770), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10980] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1780), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1782), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1684), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [11261] = 18, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1768), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1776), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1778), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1784), 1, + anon_sym_SLASH, + ACTIONS(1786), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1788), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1792), 1, + anon_sym_GT_GT, + ACTIONS(1798), 1, anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1836), 1, - anon_sym_RPAREN, - STATE(857), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1770), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1774), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1780), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1782), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1763), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [11326] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11049] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1860), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [11391] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1727), 3, - anon_sym_DASH_GT, + ACTIONS(1844), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [11114] = 3, + [11456] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 3, + ACTIONS(1338), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1359), 23, + ACTIONS(1336), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43441,149 +43775,172 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11149] = 9, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1771), 1, - anon_sym_GT_GT, + [11491] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1642), 4, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - ACTIONS(1644), 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_CARET, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(1394), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1392), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [11526] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1402), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1400), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [11561] = 15, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1063), 1, + sym_identifier, + ACTIONS(1854), 1, anon_sym_QMARK, - anon_sym_COLON, - [11196] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1862), 1, + anon_sym_GT, + STATE(586), 1, + sym_scoped_type_identifier, + STATE(604), 1, + sym_generic_type, + STATE(611), 1, + sym__unannotated_type, + STATE(681), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(922), 2, + sym_wildcard, + sym__type, + STATE(605), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(568), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [11620] = 20, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(1864), 1, + anon_sym_RPAREN, + STATE(879), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1810), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11261] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1838), 1, - anon_sym_COMMA, - ACTIONS(1840), 1, - anon_sym_RBRACE, - STATE(949), 1, - aux_sym_array_initializer_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [11330] = 3, + [11689] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1844), 3, + ACTIONS(1868), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1842), 23, + ACTIONS(1866), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43607,219 +43964,277 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11365] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + [11724] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1672), 3, - anon_sym_DASH_GT, + ACTIONS(1870), 2, anon_sym_COMMA, - anon_sym_COLON, - [11430] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + anon_sym_RBRACE, + [11788] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1872), 2, anon_sym_RPAREN, anon_sym_COMMA, - [11494] = 19, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [11852] = 11, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(286), 1, + anon_sym_non_DASHsealed, + ACTIONS(1822), 1, + sym_identifier, + ACTIONS(1828), 1, + anon_sym_SEMI, + ACTIONS(1874), 1, + anon_sym_RBRACE, + STATE(937), 1, + sym_enum_constant, + STATE(1082), 1, + sym_enum_body_declarations, + STATE(1143), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(469), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(280), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [11902] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1848), 1, - anon_sym_COLON, - ACTIONS(1850), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11560] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1876), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [11966] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1800), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [11624] = 18, - ACTIONS(1015), 1, + anon_sym_COMMA, + [12030] = 5, + ACTIONS(1507), 1, + anon_sym_non_DASHsealed, + ACTIONS(1878), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1623), 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(1505), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [12068] = 14, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1017), 1, - anon_sym_LT, ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1856), 1, - anon_sym_enum, - ACTIONS(1858), 1, - anon_sym_record, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, + anon_sym_QMARK, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(615), 1, + STATE(611), 1, sym__unannotated_type, - STATE(826), 1, - sym__constructor_declarator, - STATE(940), 1, - sym__method_header, + STATE(681), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -43829,169 +44244,97 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(1032), 2, + sym_wildcard, + sym__type, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, + STATE(568), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [11688] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [12124] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1864), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [11752] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1712), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1866), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [11816] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1868), 2, - anon_sym_COMMA, + ACTIONS(1881), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [11880] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, + [12188] = 18, + ACTIONS(965), 1, sym_identifier, - ACTIONS(1816), 1, - anon_sym_QMARK, - STATE(579), 1, + ACTIONS(967), 1, + anon_sym_LT, + ACTIONS(1883), 1, + anon_sym_class, + ACTIONS(1885), 1, + anon_sym_enum, + ACTIONS(1887), 1, + anon_sym_record, + ACTIONS(1889), 1, + anon_sym_ATinterface, + ACTIONS(1891), 1, + anon_sym_interface, + STATE(573), 1, + sym_type_parameters, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(626), 1, sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, + STATE(826), 1, + sym__constructor_declarator, + STATE(912), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -44001,163 +44344,130 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(988), 2, - sym_wildcard, - sym__type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(564), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [11936] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [12252] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1893), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [12316] = 19, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1895), 1, + anon_sym_COLON, + ACTIONS(1897), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [12000] = 5, - ACTIONS(1597), 1, - anon_sym_non_DASHsealed, - ACTIONS(1870), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1615), 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(1595), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12038] = 11, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(1873), 1, - anon_sym_RBRACE, - STATE(898), 1, - sym_enum_constant, - STATE(1121), 1, - sym_enum_body_declarations, - STATE(1141), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12088] = 11, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12382] = 11, ACTIONS(282), 1, anon_sym_AT, ACTIONS(286), 1, anon_sym_non_DASHsealed, - ACTIONS(1782), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(1788), 1, + ACTIONS(1828), 1, anon_sym_SEMI, - ACTIONS(1875), 1, + ACTIONS(1899), 1, anon_sym_RBRACE, - STATE(898), 1, + STATE(937), 1, sym_enum_constant, - STATE(1094), 1, + STATE(1139), 1, sym_enum_body_declarations, - STATE(1141), 1, + STATE(1143), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(461), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -44176,203 +44486,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [12138] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, + [12432] = 18, ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1877), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [12201] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1879), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [12264] = 18, - ACTIONS(1658), 1, + ACTIONS(1700), 1, anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [12327] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1708), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1883), 1, + ACTIONS(1901), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12390] = 14, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12495] = 14, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + ACTIONS(1903), 1, + anon_sym_open, + ACTIONS(1905), 1, + anon_sym_module, + ACTIONS(1907), 1, + anon_sym_package, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(606), 1, sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - STATE(846), 1, - sym__type, - STATE(1027), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -44382,173 +44557,173 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [12445] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [12550] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1885), 1, + ACTIONS(1909), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12508] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12613] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1887), 1, - anon_sym_RPAREN, + ACTIONS(1911), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12571] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12676] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1889), 1, - anon_sym_RPAREN, + ACTIONS(1913), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12634] = 14, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12739] = 14, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_open, - ACTIONS(1893), 1, - anon_sym_module, - ACTIONS(1895), 1, - anon_sym_package, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(596), 1, + STATE(611), 1, sym__unannotated_type, + STATE(681), 1, + sym_annotated_type, + STATE(866), 1, + sym__type, + STATE(977), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -44558,82 +44733,78 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [12689] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1897), 1, - anon_sym_COLON, + [12794] = 14, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1063), 1, + sym_identifier, + STATE(586), 1, + sym_scoped_type_identifier, + STATE(604), 1, + sym_generic_type, + STATE(611), 1, + sym__unannotated_type, + STATE(681), 1, + sym_annotated_type, + STATE(866), 1, + sym__type, + STATE(997), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [12752] = 14, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(605), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(576), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [12849] = 14, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, - STATE(846), 1, + STATE(866), 1, sym__type, - STATE(1086), 1, + STATE(1166), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, @@ -44644,481 +44815,620 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [12807] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [12904] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1899), 1, - anon_sym_SEMI, + ACTIONS(1915), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12870] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12967] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1901), 1, - anon_sym_COLON, + ACTIONS(1917), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12933] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13030] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1903), 1, - anon_sym_RBRACK, + ACTIONS(1919), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [13093] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1921), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12996] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13156] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1923), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13059] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13219] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1907), 1, - anon_sym_SEMI, + ACTIONS(1925), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [13282] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1927), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13122] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - STATE(846), 1, - sym__type, - STATE(956), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(572), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13177] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13345] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1909), 1, + ACTIONS(1929), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13240] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13408] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1911), 1, - anon_sym_RPAREN, + ACTIONS(1931), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13303] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13471] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1913), 1, - anon_sym_RBRACK, + ACTIONS(1933), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [13534] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1935), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13366] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13597] = 18, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1692), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1694), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1704), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1915), 1, - anon_sym_SEMI, + ACTIONS(1937), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1652), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1688), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1698), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [13660] = 18, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1692), 1, + anon_sym_AMP_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_SLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1704), 1, + anon_sym_CARET, + ACTIONS(1708), 1, + anon_sym_GT_GT, + ACTIONS(1710), 1, + anon_sym_instanceof, + ACTIONS(1712), 1, + anon_sym_QMARK, + ACTIONS(1939), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1652), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1688), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13429] = 13, + ACTIONS(1696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1706), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13723] = 13, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, - STATE(823), 1, + STATE(910), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45129,83 +45439,75 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13481] = 13, + [13775] = 13, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1941), 1, sym_identifier, - STATE(579), 1, + STATE(341), 1, + sym__unannotated_type, + STATE(375), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(406), 1, sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, + STATE(437), 1, sym_annotated_type, - STATE(1056), 1, + STATE(445), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1945), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1947), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(434), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(571), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1943), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13533] = 16, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1037), 1, + [13827] = 13, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1856), 1, - anon_sym_enum, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(567), 1, - sym_type_parameters, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(612), 1, + STATE(611), 1, sym__unannotated_type, - STATE(940), 1, - sym__method_header, + STATE(681), 1, + sym_annotated_type, + STATE(1031), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -45215,30 +45517,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, + STATE(576), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13591] = 13, + [13879] = 13, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, - STATE(982), 1, + STATE(804), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45249,35 +45556,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13643] = 13, + [13931] = 13, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, - STATE(829), 1, + STATE(1023), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45288,35 +45595,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13695] = 13, + [13983] = 13, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, - STATE(837), 1, + STATE(817), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45327,74 +45634,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13747] = 13, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1917), 1, + [14035] = 16, + ACTIONS(967), 1, + anon_sym_LT, + ACTIONS(1063), 1, sym_identifier, - STATE(337), 1, - sym__unannotated_type, - STATE(373), 1, + ACTIONS(1883), 1, + anon_sym_class, + ACTIONS(1885), 1, + anon_sym_enum, + ACTIONS(1889), 1, + anon_sym_ATinterface, + ACTIONS(1891), 1, + anon_sym_interface, + STATE(578), 1, + sym_type_parameters, + STATE(586), 1, sym_scoped_type_identifier, - STATE(391), 1, + STATE(604), 1, sym_generic_type, - STATE(438), 1, - sym_annotated_type, - STATE(440), 1, - sym__type, + STATE(620), 1, + sym__unannotated_type, + STATE(912), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 2, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1923), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(426), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(570), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1919), 5, + ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13799] = 13, + [14093] = 13, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, - STATE(887), 1, + STATE(822), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45405,35 +45715,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13851] = 13, + [14145] = 13, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(681), 1, sym_annotated_type, - STATE(896), 1, + STATE(900), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45444,100 +45754,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13903] = 8, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - STATE(898), 1, - sym_enum_constant, - STATE(1141), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [13944] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1429), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1431), 12, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [13975] = 6, - ACTIONS(1925), 1, + [14197] = 6, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1951), 1, anon_sym_DOT, - STATE(582), 1, + STATE(592), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 6, + ACTIONS(1284), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1266), 13, + ACTIONS(1282), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45551,17 +45800,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14012] = 6, - ACTIONS(1925), 1, + [14234] = 6, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(1929), 1, + ACTIONS(1953), 1, anon_sym_DOT, - STATE(581), 1, + STATE(593), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 6, + ACTIONS(1278), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, @@ -45582,11 +45831,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14049] = 3, + [14271] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1248), 10, + ACTIONS(1368), 10, anon_sym_COLON, anon_sym_DOT, anon_sym_default, @@ -45597,7 +45846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - ACTIONS(1250), 12, + ACTIONS(1370), 12, anon_sym_AMP, anon_sym_RPAREN, anon_sym_EQ, @@ -45610,18 +45859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14080] = 12, + [14302] = 12, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1931), 1, + ACTIONS(1955), 1, anon_sym_QMARK, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(596), 1, + STATE(606), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -45632,53 +45881,192 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14129] = 3, + [14351] = 8, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(286), 1, + anon_sym_non_DASHsealed, + ACTIONS(1822), 1, + sym_identifier, + STATE(937), 1, + sym_enum_constant, + STATE(1143), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 8, - anon_sym_LPAREN, + STATE(469), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(280), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [14392] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1256), 10, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1258), 12, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1226), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + anon_sym_DOT_DOT_DOT, + [14423] = 11, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1941), 1, + sym_identifier, + STATE(339), 1, + sym__unannotated_type, + STATE(375), 1, + sym_scoped_type_identifier, + STATE(406), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1945), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1947), 2, + sym_boolean_type, + sym_void_type, + STATE(434), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(589), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1943), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, + [14469] = 11, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1063), 1, + sym_identifier, + STATE(586), 1, + sym_scoped_type_identifier, + STATE(604), 1, + sym_generic_type, + STATE(643), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, + STATE(605), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(589), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14515] = 11, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1957), 1, sym_identifier, - [14159] = 3, + STATE(586), 1, + sym_scoped_type_identifier, + STATE(604), 1, + sym_generic_type, + STATE(659), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(605), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(579), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14561] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 8, + ACTIONS(1232), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -45687,7 +46075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1222), 13, + ACTIONS(1230), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45701,51 +46089,52 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14189] = 11, + [14591] = 12, + ACTIONS(85), 1, + anon_sym_LT, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1959), 1, sym_identifier, - STATE(579), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(632), 1, + sym_type_arguments, + STATE(651), 1, sym_generic_type, - STATE(646), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1961), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, + STATE(656), 2, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(590), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14235] = 11, + [14639] = 11, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(647), 1, + STATE(606), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -45756,31 +46145,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14281] = 11, + [14685] = 11, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1933), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(646), 1, + STATE(679), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -45791,66 +46180,66 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14327] = 11, + [14731] = 11, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(339), 1, - sym__unannotated_type, - STATE(373), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(391), 1, + STATE(604), 1, sym_generic_type, + STATE(659), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 2, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1923), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(426), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(579), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1919), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14373] = 11, + [14777] = 11, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(658), 1, + STATE(655), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -45861,66 +46250,126 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14419] = 11, + [14823] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1236), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1234), 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, + [14853] = 12, + ACTIONS(85), 1, + anon_sym_LT, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1963), 1, sym_identifier, - STATE(579), 1, + STATE(617), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(632), 1, + sym_type_arguments, + STATE(648), 1, sym_generic_type, - STATE(596), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1965), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, + STATE(658), 2, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(600), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14465] = 11, - ACTIONS(321), 1, + [14901] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1469), 7, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1471), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1037), 1, + anon_sym_DOT_DOT_DOT, + [14930] = 13, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + ACTIONS(1883), 1, + anon_sym_class, + ACTIONS(1885), 1, + anon_sym_enum, + ACTIONS(1889), 1, + anon_sym_ATinterface, + ACTIONS(1891), 1, + anon_sym_interface, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(628), 1, + STATE(631), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -45931,26 +46380,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14511] = 3, + [14979] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 7, + ACTIONS(1497), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -45958,7 +46402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1535), 13, + ACTIONS(1499), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -45972,24 +46416,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14540] = 3, + [15008] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(1967), 1, + anon_sym_DOT, + STATE(599), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1559), 7, - anon_sym_DOT, + ACTIONS(1037), 6, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1561), 13, - anon_sym_LPAREN, + ACTIONS(1061), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -45998,24 +46445,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14569] = 6, + [15043] = 6, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1935), 1, + ACTIONS(1969), 1, anon_sym_DOT, - STATE(591), 1, + STATE(598), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 6, + ACTIONS(1412), 6, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1067), 11, + ACTIONS(1414), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46027,11 +46474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14604] = 3, + [15078] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1591), 7, + ACTIONS(1461), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46039,7 +46486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1593), 13, + ACTIONS(1463), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46053,63 +46500,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14633] = 13, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1856), 1, - anon_sym_enum, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(621), 1, - sym__unannotated_type, + [15107] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14682] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1937), 1, + ACTIONS(1525), 7, anon_sym_DOT, - STATE(587), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1404), 6, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1406), 11, + ACTIONS(1527), 13, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -46118,44 +46526,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14717] = 3, + [15136] = 5, + ACTIONS(1973), 1, + anon_sym_QMARK, + ACTIONS(1975), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 7, - anon_sym_DOT, + STATE(589), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1971), 13, anon_sym_open, anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, + 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, - ACTIONS(1467), 13, - anon_sym_LPAREN, - anon_sym_AMP, + [15168] = 10, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1978), 1, + sym_identifier, + STATE(646), 1, + sym_scoped_type_identifier, + STATE(665), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1980), 2, + sym_boolean_type, + sym_void_type, + STATE(674), 2, + sym_integral_type, + sym_floating_point_type, + STATE(589), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15210] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1354), 6, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [14746] = 3, + ACTIONS(1352), 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, + [15238] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 6, + ACTIONS(1394), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1355), 13, + ACTIONS(1392), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46169,18 +46635,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14774] = 3, + [15266] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 6, + ACTIONS(1402), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1359), 13, + ACTIONS(1400), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46193,37 +46659,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, - sym_identifier, - [14802] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1373), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1371), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + sym_identifier, + [15294] = 12, + ACTIONS(1063), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_class, + ACTIONS(1889), 1, + anon_sym_ATinterface, + ACTIONS(1891), 1, + anon_sym_interface, + STATE(586), 1, + sym_scoped_type_identifier, + STATE(604), 1, + sym_generic_type, + STATE(629), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(605), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(75), 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, - [14830] = 3, + [15340] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 7, + ACTIONS(1640), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46231,7 +46706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1601), 12, + ACTIONS(1642), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46244,18 +46719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14858] = 3, + [15368] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1390), 6, + ACTIONS(1338), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1388), 13, + ACTIONS(1336), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46269,11 +46744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14886] = 3, + [15396] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1611), 7, + ACTIONS(1632), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46281,7 +46756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1613), 12, + ACTIONS(1634), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46294,11 +46769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14914] = 3, + [15424] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 7, + ACTIONS(1587), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46306,7 +46781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1479), 12, + ACTIONS(1589), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46319,79 +46794,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14942] = 5, - ACTIONS(1941), 1, - anon_sym_QMARK, - ACTIONS(1943), 1, - anon_sym_AT, + [15452] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1939), 13, + ACTIONS(1599), 7, + anon_sym_DOT, 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, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - [14974] = 12, - ACTIONS(1037), 1, + ACTIONS(1601), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [15480] = 10, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(1982), 1, sym_identifier, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(579), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(670), 1, sym_generic_type, - STATE(623), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1984), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, + STATE(673), 2, sym_integral_type, sym_floating_point_type, + STATE(589), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15020] = 3, + [15522] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 6, + ACTIONS(1378), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1367), 13, + ACTIONS(1376), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46405,11 +46876,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15048] = 3, + [15550] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1567), 7, + ACTIONS(1628), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46417,8 +46888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1569), 12, - anon_sym_LPAREN, + ACTIONS(1630), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46430,77 +46900,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15076] = 13, + [15577] = 13, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1948), 1, + ACTIONS(1988), 1, anon_sym_DOT, - ACTIONS(1952), 1, + ACTIONS(1992), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1954), 1, + ACTIONS(1994), 1, sym_this, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(970), 1, + STATE(1079), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - ACTIONS(1260), 3, + ACTIONS(1272), 3, anon_sym_AMP, anon_sym_RPAREN, anon_sym_COLON_COLON, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15123] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1404), 7, + aux_sym_array_creation_expression_repeat1, + [15624] = 4, + ACTIONS(1969), 1, anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1406), 11, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [15150] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1620), 7, - anon_sym_DOT, + ACTIONS(1412), 6, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1622), 11, + ACTIONS(1414), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46512,20 +46959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15177] = 4, - ACTIONS(1937), 1, - anon_sym_DOT, + [15653] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 6, + ACTIONS(1412), 7, + anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1406), 11, + ACTIONS(1414), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46537,24 +46983,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15206] = 7, + [15680] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1264), 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1268), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46564,16 +47010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [15240] = 10, - ACTIONS(1037), 1, + [15714] = 10, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(627), 1, + STATE(637), 1, sym__unannotated_type, - STATE(806), 1, + STATE(857), 1, sym_catch_type, ACTIONS(3), 2, sym_line_comment, @@ -46584,7 +47030,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -46594,48 +47040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15280] = 13, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1260), 1, - anon_sym_COLON_COLON, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1956), 1, - sym_identifier, - ACTIONS(1958), 1, - anon_sym_DOT, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1126), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15325] = 10, + [15754] = 10, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1960), 1, + ACTIONS(1996), 1, sym_identifier, - STATE(611), 1, - sym_scoped_type_identifier, - STATE(622), 1, + STATE(632), 1, sym_type_arguments, - STATE(637), 1, + STATE(766), 1, + sym_scoped_type_identifier, + STATE(869), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -46643,10 +47057,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1962), 2, + ACTIONS(1998), 2, sym_boolean_type, sym_void_type, - STATE(645), 2, + STATE(1010), 2, sym_integral_type, sym_floating_point_type, ACTIONS(75), 5, @@ -46655,27 +47069,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15364] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1964), 1, + [15793] = 9, + ACTIONS(1063), 1, sym_identifier, - STATE(618), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(622), 1, - sym_type_arguments, - STATE(629), 1, + STATE(604), 1, sym_generic_type, + STATE(664), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1966), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(642), 2, + STATE(605), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, ACTIONS(75), 5, @@ -46684,14 +47097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15403] = 9, - ACTIONS(1037), 1, + [15830] = 9, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(636), 1, + STATE(638), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -46702,7 +47115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -46712,24 +47125,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15440] = 7, + [15867] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1260), 8, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1272), 8, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46738,74 +47151,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [15473] = 13, + [15900] = 9, + ACTIONS(1063), 1, + sym_identifier, + STATE(586), 1, + sym_scoped_type_identifier, + STATE(604), 1, + sym_generic_type, + STATE(630), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(605), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15937] = 13, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1260), 1, + ACTIONS(1272), 1, anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1958), 1, + ACTIONS(2002), 1, anon_sym_DOT, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(776), 1, + STATE(790), 1, sym__variable_declarator_id, - STATE(913), 1, + STATE(956), 1, sym_variable_declarator, - STATE(1110), 1, + STATE(1091), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15518] = 9, - ACTIONS(1037), 1, + aux_sym_array_creation_expression_repeat1, + [15982] = 13, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1272), 1, + anon_sym_COLON_COLON, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(2000), 1, sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(619), 1, - sym__unannotated_type, + ACTIONS(2002), 1, + anon_sym_DOT, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(808), 1, + sym__variable_declarator_id, + STATE(956), 1, + sym_variable_declarator, + STATE(1123), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15555] = 9, - ACTIONS(1037), 1, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16027] = 9, + ACTIONS(1063), 1, sym_identifier, - STATE(579), 1, + STATE(586), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(604), 1, sym_generic_type, - STATE(649), 1, + STATE(657), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -46816,7 +47261,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(605), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -46826,123 +47271,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15592] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1968), 1, - sym_identifier, - STATE(622), 1, - sym_type_arguments, - STATE(747), 1, - sym_scoped_type_identifier, - STATE(892), 1, - sym_generic_type, + [16064] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1970), 2, - sym_boolean_type, - sym_void_type, - STATE(964), 2, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(2006), 2, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2004), 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, - [15631] = 9, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(643), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15668] = 12, + sym_identifier, + [16088] = 12, + ACTIONS(85), 1, + anon_sym_LT, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, - sym_identifier, - STATE(473), 1, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(350), 1, + sym_argument_list, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(598), 1, + sym_type_arguments, + STATE(1073), 1, sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, - sym_variable_declarator, - STATE(1097), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + STATE(660), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15710] = 4, - ACTIONS(1976), 1, + aux_sym_array_creation_expression_repeat1, + [16130] = 12, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(282), 1, anon_sym_AT, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, + anon_sym_LBRACK, + ACTIONS(2012), 1, + anon_sym_DOT, + STATE(349), 1, + sym_argument_list, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(599), 1, + sym_type_arguments, + STATE(1071), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1745), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1618), 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, - [15736] = 3, + STATE(663), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16172] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1980), 2, + ACTIONS(2016), 2, anon_sym_LBRACE, anon_sym_AT, - ACTIONS(1978), 13, + ACTIONS(2014), 13, anon_sym_extends, anon_sym_implements, anon_sym_permits, @@ -46956,77 +47373,168 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15760] = 12, + [16196] = 12, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(2018), 1, + sym_identifier, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(790), 1, + sym__variable_declarator_id, + STATE(821), 1, + sym__method_declarator, + STATE(956), 1, + sym_variable_declarator, + STATE(1087), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2020), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16238] = 12, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(2018), 1, + sym_identifier, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(790), 1, + sym__variable_declarator_id, + STATE(821), 1, + sym__method_declarator, + STATE(956), 1, + sym_variable_declarator, + STATE(1104), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2020), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16280] = 12, ACTIONS(85), 1, anon_sym_LT, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, + ACTIONS(2012), 1, anon_sym_DOT, STATE(349), 1, sym_argument_list, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(587), 1, + STATE(599), 1, sym_type_arguments, - STATE(976), 1, + STATE(1071), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, + STATE(327), 2, sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + [16322] = 12, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(350), 1, + sym_argument_list, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(598), 1, + sym_type_arguments, + STATE(1073), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(330), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15802] = 12, + aux_sym_array_creation_expression_repeat1, + [16364] = 12, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(2018), 1, sym_identifier, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(791), 1, + STATE(790), 1, sym__variable_declarator_id, - STATE(832), 1, + STATE(821), 1, sym__method_declarator, - STATE(913), 1, + STATE(956), 1, sym_variable_declarator, - STATE(1095), 1, + STATE(1127), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(2020), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15844] = 3, + aux_sym_array_creation_expression_repeat1, + [16406] = 4, + ACTIONS(2022), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1988), 2, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(1986), 13, - anon_sym_extends, - anon_sym_implements, - anon_sym_permits, + ACTIONS(1800), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1626), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -47037,5875 +47545,6005 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15868] = 12, + [16432] = 12, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(2018), 1, sym_identifier, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(791), 1, + STATE(790), 1, sym__variable_declarator_id, - STATE(832), 1, + STATE(821), 1, sym__method_declarator, - STATE(913), 1, + STATE(956), 1, sym_variable_declarator, - STATE(1065), 1, + STATE(1159), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(2020), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15910] = 12, + aux_sym_array_creation_expression_repeat1, + [16474] = 11, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(2024), 1, sym_identifier, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(791), 1, + STATE(790), 1, sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, + STATE(956), 1, + sym_variable_declarator, + STATE(1127), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16513] = 11, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + sym_identifier, + ACTIONS(1992), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1994), 1, + sym_this, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(1079), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16552] = 11, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(2026), 1, + sym_identifier, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(790), 1, + sym__variable_declarator_id, + STATE(956), 1, + sym_variable_declarator, + STATE(1087), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16591] = 11, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(2000), 1, + sym_identifier, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(800), 1, + sym__variable_declarator_id, + STATE(956), 1, + sym_variable_declarator, + STATE(1136), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [16630] = 11, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(2000), 1, + sym_identifier, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(790), 1, + sym__variable_declarator_id, + STATE(956), 1, sym_variable_declarator, - STATE(1074), 1, + STATE(1109), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15952] = 12, - ACTIONS(85), 1, - anon_sym_LT, + aux_sym_array_creation_expression_repeat1, + [16669] = 8, + ACTIONS(2028), 1, + sym_identifier, + STATE(786), 1, + sym_scoped_type_identifier, + STATE(921), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2030), 2, + sym_boolean_type, + sym_void_type, + STATE(973), 2, + sym_integral_type, + sym_floating_point_type, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16702] = 11, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(1272), 1, + anon_sym_COLON_COLON, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1990), 1, + ACTIONS(2000), 1, + sym_identifier, + ACTIONS(2002), 1, anon_sym_DOT, - STATE(347), 1, - sym_argument_list, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(591), 1, - sym_type_arguments, - STATE(977), 1, + STATE(602), 1, sym_dimensions, + STATE(1157), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(650), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15994] = 12, + aux_sym_array_creation_expression_repeat1, + [16741] = 9, + ACTIONS(2032), 1, + anon_sym_RBRACE, + ACTIONS(2034), 1, + anon_sym_requires, + ACTIONS(2036), 1, + anon_sym_exports, + ACTIONS(2038), 1, + anon_sym_opens, + ACTIONS(2040), 1, + anon_sym_uses, + ACTIONS(2042), 1, + anon_sym_provides, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(650), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(719), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [16775] = 10, ACTIONS(85), 1, anon_sym_LT, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(1990), 1, + ACTIONS(2012), 1, anon_sym_DOT, - STATE(347), 1, - sym_argument_list, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(591), 1, + STATE(599), 1, sym_type_arguments, - STATE(977), 1, + STATE(1004), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(327), 2, + STATE(661), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16036] = 12, - ACTIONS(85), 1, - anon_sym_LT, + aux_sym_array_creation_expression_repeat1, + [16811] = 9, + ACTIONS(2044), 1, + anon_sym_RBRACE, + ACTIONS(2046), 1, + anon_sym_requires, + ACTIONS(2049), 1, + anon_sym_exports, + ACTIONS(2052), 1, + anon_sym_opens, + ACTIONS(2055), 1, + anon_sym_uses, + ACTIONS(2058), 1, + anon_sym_provides, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(636), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(719), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [16845] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, + ACTIONS(2063), 1, + anon_sym_PIPE, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(587), 1, - sym_type_arguments, - STATE(976), 1, + STATE(602), 1, sym_dimensions, + STATE(771), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(2061), 3, + anon_sym_open, + anon_sym_module, + sym_identifier, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16078] = 11, + aux_sym_array_creation_expression_repeat1, + [16879] = 10, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2000), 1, sym_identifier, - STATE(473), 1, + ACTIONS(2065), 1, + anon_sym_DOT_DOT_DOT, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(839), 1, + STATE(1024), 1, sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1123), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16117] = 11, + aux_sym_array_creation_expression_repeat1, + [16915] = 10, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1260), 1, - anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(1992), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1958), 1, - anon_sym_DOT, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(1111), 1, + STATE(1079), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16156] = 11, + aux_sym_array_creation_expression_repeat1, + [16951] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, - sym_identifier, - STATE(473), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(668), 1, + sym_formal_parameters, + STATE(777), 1, sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1072), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + ACTIONS(2069), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16195] = 8, - ACTIONS(1992), 1, - sym_identifier, - STATE(760), 1, - sym_scoped_type_identifier, - STATE(863), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1994), 2, - sym_boolean_type, - sym_void_type, - STATE(978), 2, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [16228] = 11, + aux_sym_array_creation_expression_repeat1, + [16985] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1996), 1, - sym_identifier, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(764), 1, sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1095), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16267] = 11, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2071), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [17015] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, - sym_identifier, - STATE(473), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(672), 1, + sym_formal_parameters, + STATE(764), 1, sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1065), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + ACTIONS(2071), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16306] = 11, + aux_sym_array_creation_expression_repeat1, + [17049] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2073), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1954), 1, + ACTIONS(2075), 1, sym_this, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(970), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + ACTIONS(1268), 3, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16345] = 6, + aux_sym_array_creation_expression_repeat1, + [17083] = 6, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2000), 1, + ACTIONS(2077), 1, anon_sym_DOT, - STATE(587), 1, + STATE(598), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 4, + ACTIONS(1412), 4, anon_sym_open, anon_sym_module, sym_this, sym_identifier, - ACTIONS(1406), 6, + ACTIONS(1414), 6, anon_sym_AMP, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16373] = 9, + [17111] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_PIPE, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(777), 1, sym_dimensions, - STATE(750), 1, - aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16407] = 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2069), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [17141] = 10, + ACTIONS(85), 1, + anon_sym_LT, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(2007), 1, - sym_identifier, - ACTIONS(2009), 1, - sym_this, - STATE(473), 1, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(598), 1, + sym_type_arguments, + STATE(1008), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1264), 3, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - STATE(721), 4, + STATE(328), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16441] = 10, + aux_sym_array_creation_expression_repeat1, + [17177] = 10, + ACTIONS(85), 1, + anon_sym_LT, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, + ACTIONS(2012), 1, anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(599), 1, + sym_type_arguments, + STATE(1004), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, + STATE(329), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16477] = 9, - ACTIONS(2011), 1, - anon_sym_RBRACE, - ACTIONS(2013), 1, - anon_sym_requires, - ACTIONS(2015), 1, - anon_sym_exports, - ACTIONS(2017), 1, - anon_sym_opens, - ACTIONS(2019), 1, - anon_sym_uses, - ACTIONS(2021), 1, - anon_sym_provides, + aux_sym_array_creation_expression_repeat1, + [17213] = 10, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(350), 1, + sym_argument_list, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(1073), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(640), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(701), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [16511] = 10, + STATE(660), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17249] = 10, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1063), 1, + ACTIONS(1057), 1, anon_sym_DOT, - ACTIONS(1067), 1, + ACTIONS(1061), 1, anon_sym_AT, - STATE(401), 1, + STATE(404), 1, sym_argument_list, - STATE(591), 1, + STATE(599), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1054), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(2023), 2, + ACTIONS(2080), 2, anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(1043), 3, + ACTIONS(1037), 3, anon_sym_open, anon_sym_module, sym_identifier, - [16547] = 10, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1952), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1956), 1, - sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(970), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16583] = 9, - ACTIONS(2025), 1, - anon_sym_RBRACE, - ACTIONS(2027), 1, + [17285] = 9, + ACTIONS(2034), 1, anon_sym_requires, - ACTIONS(2030), 1, + ACTIONS(2036), 1, anon_sym_exports, - ACTIONS(2033), 1, + ACTIONS(2038), 1, anon_sym_opens, - ACTIONS(2036), 1, + ACTIONS(2040), 1, anon_sym_uses, - ACTIONS(2039), 1, + ACTIONS(2042), 1, anon_sym_provides, + ACTIONS(2082), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(633), 2, + STATE(636), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(701), 5, + STATE(719), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [16617] = 9, + [17319] = 10, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(2042), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(473), 1, + ACTIONS(2008), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(350), 1, + sym_argument_list, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(653), 1, - sym_formal_parameters, - STATE(768), 1, + STATE(1073), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(721), 4, + STATE(330), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16651] = 9, + aux_sym_array_creation_expression_repeat1, + [17355] = 10, + ACTIONS(85), 1, + anon_sym_LT, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(2042), 1, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(481), 1, + aux_sym_dimensions_repeat1, + STATE(598), 1, + sym_type_arguments, + STATE(1008), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(654), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17391] = 8, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_LBRACK, + ACTIONS(2084), 1, anon_sym_LPAREN, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(654), 1, - sym_formal_parameters, - STATE(766), 1, + STATE(764), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 3, + ACTIONS(2071), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(721), 4, + STATE(758), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17422] = 8, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(2008), 1, + anon_sym_LBRACK, + STATE(421), 1, + sym_dimensions, + STATE(481), 1, + aux_sym_dimensions_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1220), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(335), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16685] = 10, + aux_sym_array_creation_expression_repeat1, + [17453] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2086), 1, sym_identifier, - ACTIONS(2048), 1, - anon_sym_DOT_DOT_DOT, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(1055), 1, - sym__variable_declarator_id, + STATE(835), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2088), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16721] = 10, + aux_sym_array_creation_expression_repeat1, + [17486] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, + STATE(350), 1, sym_argument_list, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(1073), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, + STATE(330), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16757] = 7, + aux_sym_array_creation_expression_repeat1, + [17519] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - STATE(473), 1, + ACTIONS(2092), 1, + anon_sym_PIPE, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(766), 1, + STATE(602), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + ACTIONS(2090), 3, + anon_sym_open, + anon_sym_module, + sym_identifier, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(2046), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [16787] = 7, + aux_sym_array_creation_expression_repeat1, + [17550] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(350), 1, + sym_argument_list, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(1073), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(660), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(2044), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [16817] = 9, - ACTIONS(2013), 1, - anon_sym_requires, - ACTIONS(2015), 1, - anon_sym_exports, - ACTIONS(2017), 1, - anon_sym_opens, - ACTIONS(2019), 1, - anon_sym_uses, - ACTIONS(2021), 1, - anon_sym_provides, - ACTIONS(2050), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(633), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(701), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [16851] = 8, + aux_sym_array_creation_expression_repeat1, + [17583] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1982), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - STATE(413), 1, - sym_dimensions, - STATE(473), 1, + ACTIONS(2086), 1, + sym_identifier, + STATE(481), 1, aux_sym_dimensions_repeat1, + STATE(602), 1, + sym_dimensions, + STATE(823), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1212), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(2088), 2, + anon_sym_open, + anon_sym_module, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16882] = 9, + aux_sym_array_creation_expression_repeat1, + [17616] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(405), 1, sym_dimensions, + STATE(481), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, + ACTIONS(1228), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(335), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16915] = 8, + aux_sym_array_creation_expression_repeat1, + [17647] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(2054), 1, - anon_sym_PIPE, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(418), 1, sym_dimensions, + STATE(481), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - STATE(721), 4, + ACTIONS(1224), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(335), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16946] = 8, + aux_sym_array_creation_expression_repeat1, + [17678] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2094), 1, anon_sym_LPAREN, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(764), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 3, + ACTIONS(2071), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16977] = 9, + aux_sym_array_creation_expression_repeat1, + [17709] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(409), 1, sym_dimensions, + STATE(481), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, + ACTIONS(1214), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(335), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17010] = 9, + aux_sym_array_creation_expression_repeat1, + [17740] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(2058), 1, + ACTIONS(2000), 1, sym_identifier, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, - STATE(831), 1, - sym__method_declarator, + STATE(1089), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17043] = 9, + aux_sym_array_creation_expression_repeat1, + [17773] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(2058), 1, - sym_identifier, - STATE(473), 1, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(1008), 1, sym_dimensions, - STATE(822), 1, - sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 2, + STATE(328), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17803] = 4, + ACTIONS(2077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1412), 4, anon_sym_open, anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17076] = 8, + sym_this, + sym_identifier, + ACTIONS(1414), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [17825] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_LPAREN, - STATE(473), 1, + ACTIONS(2096), 1, + anon_sym_DOT, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(764), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 3, - anon_sym_EQ, + ACTIONS(2071), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_SEMI, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17107] = 9, + aux_sym_array_creation_expression_repeat1, + [17855] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, - sym_identifier, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(891), 1, sym_dimensions, - STATE(1076), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + ACTIONS(2098), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17140] = 8, + aux_sym_array_creation_expression_repeat1, + [17883] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1982), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - STATE(385), 1, - sym_dimensions, - STATE(473), 1, + ACTIONS(2100), 1, + anon_sym_default, + ACTIONS(2102), 1, + anon_sym_SEMI, + STATE(481), 1, aux_sym_dimensions_repeat1, + STATE(876), 1, + sym_dimensions, + STATE(1138), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1218), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17171] = 9, + aux_sym_array_creation_expression_repeat1, + [17915] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2066), 1, - anon_sym_SEMI, - STATE(473), 1, + ACTIONS(2010), 1, + anon_sym_DOT, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(947), 1, + STATE(1008), 1, sym_dimensions, - STATE(1140), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(654), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17203] = 8, + aux_sym_array_creation_expression_repeat1, + [17945] = 9, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(2068), 1, - anon_sym_DOT, - STATE(473), 1, + ACTIONS(2100), 1, + anon_sym_default, + ACTIONS(2104), 1, + anon_sym_SEMI, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(966), 1, sym_dimensions, + STATE(1165), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17233] = 7, + aux_sym_array_creation_expression_repeat1, + [17977] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(866), 1, + STATE(890), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 3, + ACTIONS(2106), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_throws, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17261] = 7, + aux_sym_array_creation_expression_repeat1, + [18005] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(865), 1, + STATE(1008), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2072), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(721), 4, + STATE(654), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17289] = 9, + aux_sym_array_creation_expression_repeat1, + [18032] = 7, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2008), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2074), 1, - anon_sym_SEMI, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(890), 1, + STATE(1008), 1, sym_dimensions, - STATE(1113), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(328), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(763), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17321] = 4, - ACTIONS(2000), 1, + aux_sym_array_creation_expression_repeat1, + [18059] = 11, + ACTIONS(967), 1, + anon_sym_LT, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2108), 1, + anon_sym_extends, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(71), 1, + sym_class_body, + STATE(685), 1, + sym_type_parameters, + STATE(743), 1, + sym_superclass, + STATE(867), 1, + sym_super_interfaces, + STATE(1015), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [18094] = 8, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2012), 1, anon_sym_DOT, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_type_arguments, + STATE(1035), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 4, + ACTIONS(1061), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1037), 3, anon_sym_open, anon_sym_module, - sym_this, sym_identifier, - ACTIONS(1406), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [17343] = 8, + [18123] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1260), 1, + ACTIONS(1272), 1, anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(1958), 1, + ACTIONS(2002), 1, anon_sym_DOT, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17372] = 8, + aux_sym_array_creation_expression_repeat1, + [18152] = 11, + ACTIONS(967), 1, + anon_sym_LT, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2108), 1, + anon_sym_extends, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(110), 1, + sym_class_body, + STATE(686), 1, + sym_type_parameters, + STATE(753), 1, + sym_superclass, + STATE(814), 1, + sym_super_interfaces, + STATE(1064), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [18187] = 8, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1802), 1, anon_sym_LBRACK, - ACTIONS(2007), 1, + ACTIONS(2073), 1, sym_identifier, - ACTIONS(2009), 1, + ACTIONS(2075), 1, sym_this, - STATE(473), 1, + STATE(481), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(602), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(758), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17401] = 8, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1990), 1, - anon_sym_DOT, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(591), 1, - sym_type_arguments, - STATE(999), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1067), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1043), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [17430] = 8, + aux_sym_array_creation_expression_repeat1, + [18216] = 8, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1990), 1, + ACTIONS(2012), 1, anon_sym_DOT, - ACTIONS(2042), 1, + ACTIONS(2067), 1, anon_sym_LPAREN, - STATE(591), 1, + STATE(599), 1, sym_type_arguments, - STATE(1036), 1, + STATE(989), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 2, + ACTIONS(1061), 2, anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1043), 3, + ACTIONS(1037), 3, anon_sym_open, anon_sym_module, sym_identifier, - [17459] = 11, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_extends, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(134), 1, - sym_class_body, - STATE(672), 1, - sym_type_parameters, - STATE(714), 1, - sym_superclass, - STATE(787), 1, - sym_super_interfaces, - STATE(965), 1, - sym_permits, + [18245] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17494] = 11, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1284), 1, + ACTIONS(1272), 9, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_extends, - ACTIONS(2078), 1, + anon_sym_SEMI, anon_sym_implements, - ACTIONS(2080), 1, anon_sym_permits, - STATE(104), 1, - sym_class_body, - STATE(667), 1, - sym_type_parameters, - STATE(708), 1, - sym_superclass, - STATE(828), 1, - sym_super_interfaces, - STATE(980), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [17529] = 9, + [18261] = 9, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2082), 1, + ACTIONS(2114), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2116), 1, anon_sym_new, - ACTIONS(2088), 1, + ACTIONS(2120), 1, sym_this, - ACTIONS(2090), 1, + ACTIONS(2122), 1, sym_super, - STATE(394), 1, + STATE(384), 1, sym__unqualified_object_creation_expression, - STATE(778), 1, + STATE(820), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 2, + ACTIONS(2118), 2, anon_sym_open, anon_sym_module, - [17559] = 8, - ACTIONS(2092), 1, + [18291] = 8, + ACTIONS(2124), 1, anon_sym_RBRACE, - ACTIONS(2094), 1, + ACTIONS(2126), 1, anon_sym_case, - ACTIONS(2096), 1, + ACTIONS(2128), 1, anon_sym_default, STATE(3), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1004), 1, + STATE(984), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(673), 2, + STATE(697), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - STATE(706), 2, + STATE(718), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [17587] = 9, + [18319] = 9, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2082), 1, + ACTIONS(2114), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2116), 1, anon_sym_new, - ACTIONS(2088), 1, + ACTIONS(2120), 1, sym_this, - ACTIONS(2098), 1, + ACTIONS(2130), 1, sym_super, - STATE(394), 1, + STATE(384), 1, sym__unqualified_object_creation_expression, - STATE(929), 1, + STATE(905), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 2, + ACTIONS(2118), 2, anon_sym_open, anon_sym_module, - [17617] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1260), 9, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [17633] = 9, - ACTIONS(1284), 1, + [18349] = 9, + ACTIONS(1292), 1, anon_sym_LBRACE, - ACTIONS(2076), 1, + ACTIONS(2108), 1, anon_sym_extends, - ACTIONS(2078), 1, + ACTIONS(2110), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2112), 1, anon_sym_permits, - STATE(113), 1, + STATE(86), 1, sym_class_body, - STATE(696), 1, + STATE(711), 1, sym_superclass, - STATE(841), 1, + STATE(827), 1, sym_super_interfaces, - STATE(1026), 1, + STATE(994), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17662] = 7, - ACTIONS(2100), 1, - sym_identifier, - STATE(671), 1, - aux_sym_requires_module_directive_repeat1, - STATE(762), 1, - sym_requires_modifier, - STATE(1047), 1, - sym_scoped_identifier, + [18378] = 9, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2108), 1, + anon_sym_extends, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(105), 1, + sym_class_body, + STATE(701), 1, + sym_superclass, + STATE(863), 1, + sym_super_interfaces, + STATE(974), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(2104), 2, - anon_sym_transitive, - anon_sym_static, - [17687] = 9, - ACTIONS(1017), 1, + [18407] = 9, + ACTIONS(967), 1, anon_sym_LT, - ACTIONS(2080), 1, + ACTIONS(2112), 1, anon_sym_permits, - ACTIONS(2106), 1, + ACTIONS(2132), 1, anon_sym_extends, - ACTIONS(2108), 1, + ACTIONS(2134), 1, anon_sym_LBRACE, - STATE(129), 1, + STATE(92), 1, sym_interface_body, - STATE(699), 1, + STATE(757), 1, sym_type_parameters, - STATE(782), 1, + STATE(829), 1, sym_extends_interfaces, - STATE(969), 1, + STATE(1046), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17716] = 9, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2106), 1, - anon_sym_extends, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_interface_body, - STATE(738), 1, - sym_type_parameters, - STATE(803), 1, - sym_extends_interfaces, - STATE(1020), 1, - sym_permits, + [18436] = 7, + ACTIONS(2136), 1, + sym_identifier, + STATE(689), 1, + aux_sym_requires_module_directive_repeat1, + STATE(770), 1, + sym_requires_modifier, + STATE(1050), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17745] = 8, - ACTIONS(2110), 1, + ACTIONS(2138), 2, + anon_sym_open, + anon_sym_module, + ACTIONS(2140), 2, + anon_sym_transitive, + anon_sym_static, + [18461] = 8, + ACTIONS(2142), 1, sym_identifier, - ACTIONS(2112), 1, + ACTIONS(2144), 1, anon_sym_open, - ACTIONS(2114), 1, + ACTIONS(2146), 1, anon_sym_module, - STATE(676), 1, + STATE(692), 1, aux_sym_requires_module_directive_repeat1, - STATE(762), 1, + STATE(770), 1, sym_requires_modifier, - STATE(1010), 1, + STATE(1080), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2104), 2, + ACTIONS(2140), 2, anon_sym_transitive, anon_sym_static, - [17772] = 9, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_extends, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, + [18488] = 9, + ACTIONS(967), 1, + anon_sym_LT, + ACTIONS(2112), 1, anon_sym_permits, - STATE(86), 1, - sym_class_body, - STATE(697), 1, - sym_superclass, - STATE(796), 1, - sym_super_interfaces, - STATE(1050), 1, + ACTIONS(2132), 1, + anon_sym_extends, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(79), 1, + sym_interface_body, + STATE(744), 1, + sym_type_parameters, + STATE(862), 1, + sym_extends_interfaces, + STATE(1017), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17801] = 7, - ACTIONS(2096), 1, - anon_sym_default, - ACTIONS(2116), 1, - anon_sym_RBRACE, - ACTIONS(2118), 1, - anon_sym_case, - STATE(3), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1084), 1, - sym_switch_label, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(680), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [17825] = 6, - ACTIONS(1045), 1, + [18517] = 6, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1284), 1, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(756), 1, + STATE(783), 1, sym_argument_list, - STATE(895), 1, + STATE(935), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2120), 3, + ACTIONS(2148), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [17847] = 7, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2082), 1, - sym_identifier, - ACTIONS(2088), 1, - sym_this, - ACTIONS(2098), 1, - sym_super, - STATE(929), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 2, - anon_sym_open, - anon_sym_module, - [17871] = 5, - STATE(676), 1, + [18539] = 5, + STATE(692), 1, aux_sym_requires_module_directive_repeat1, - STATE(762), 1, + STATE(770), 1, sym_requires_modifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2124), 2, + ACTIONS(2152), 2, anon_sym_transitive, anon_sym_static, - ACTIONS(2122), 3, + ACTIONS(2150), 3, anon_sym_open, anon_sym_module, sym_identifier, - [17891] = 6, - ACTIONS(1045), 1, + [18559] = 6, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1284), 1, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(764), 1, + STATE(773), 1, sym_argument_list, - STATE(869), 1, + STATE(893), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 3, + ACTIONS(2155), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [17913] = 5, + [18581] = 5, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2129), 1, + ACTIONS(2157), 1, sym_identifier, - STATE(1042), 1, + STATE(934), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(740), 4, + STATE(717), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17933] = 5, + aux_sym_array_creation_expression_repeat1, + [18601] = 5, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2129), 1, + ACTIONS(2157), 1, sym_identifier, - STATE(851), 1, + STATE(1003), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(740), 4, + STATE(717), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17953] = 7, - ACTIONS(2131), 1, + aux_sym_array_creation_expression_repeat1, + [18621] = 7, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2114), 1, + sym_identifier, + ACTIONS(2120), 1, + sym_this, + ACTIONS(2130), 1, + sym_super, + STATE(905), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2118), 2, + anon_sym_open, + anon_sym_module, + [18645] = 7, + ACTIONS(2128), 1, + anon_sym_default, + ACTIONS(2159), 1, anon_sym_RBRACE, - ACTIONS(2133), 1, + ACTIONS(2161), 1, anon_sym_case, - ACTIONS(2136), 1, - anon_sym_default, STATE(3), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1084), 1, + STATE(1100), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(680), 2, + STATE(698), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [17977] = 2, + [18669] = 7, + ACTIONS(2163), 1, + anon_sym_RBRACE, + ACTIONS(2165), 1, + anon_sym_case, + ACTIONS(2168), 1, + anon_sym_default, + STATE(3), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1100), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 6, + STATE(698), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [18693] = 6, + ACTIONS(2171), 1, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [17990] = 4, + ACTIONS(2173), 1, + anon_sym_case, + ACTIONS(2176), 1, + anon_sym_default, + STATE(1096), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(699), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [18714] = 4, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2141), 1, + ACTIONS(2179), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(749), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18007] = 4, - ACTIONS(321), 1, + aux_sym_array_creation_expression_repeat1, + [18731] = 7, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(120), 1, + sym_class_body, + STATE(818), 1, + sym_super_interfaces, + STATE(1060), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [18754] = 4, + ACTIONS(282), 1, anon_sym_AT, - ACTIONS(2143), 1, - sym_identifier, + ACTIONS(2181), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(736), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18771] = 4, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(2183), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(736), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18024] = 2, + aux_sym_array_creation_expression_repeat1, + [18788] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 6, + ACTIONS(2185), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18037] = 2, + [18801] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2145), 6, + ACTIONS(2187), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18050] = 6, - ACTIONS(2147), 1, - anon_sym_RBRACE, - ACTIONS(2149), 1, - anon_sym_case, - ACTIONS(2152), 1, - anon_sym_default, - STATE(1083), 1, - sym_switch_label, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(686), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [18071] = 2, + [18814] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2145), 6, + ACTIONS(2189), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18084] = 2, + [18827] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 6, + ACTIONS(2191), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18097] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2157), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(722), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18114] = 2, + [18840] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 6, + ACTIONS(2193), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18127] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2161), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18144] = 2, + [18853] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 6, + ACTIONS(2195), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18157] = 2, + [18866] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 6, + ACTIONS(2197), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18170] = 2, + [18879] = 7, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(100), 1, + sym_class_body, + STATE(812), 1, + sym_super_interfaces, + STATE(1069), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [18902] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 6, + ACTIONS(2199), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18183] = 2, + [18915] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 6, + ACTIONS(2201), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18196] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(115), 1, - sym_class_body, - STATE(836), 1, - sym_super_interfaces, - STATE(1006), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18219] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(87), 1, - sym_class_body, - STATE(795), 1, - sym_super_interfaces, - STATE(995), 1, - sym_permits, + [18928] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18242] = 2, + ACTIONS(2203), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18941] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 6, + ACTIONS(2205), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18255] = 7, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2106), 1, - anon_sym_extends, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(75), 1, - sym_interface_body, - STATE(842), 1, - sym_extends_interfaces, - STATE(1046), 1, - sym_permits, + [18954] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18278] = 4, + ACTIONS(2207), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18967] = 4, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2173), 1, + ACTIONS(2209), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18295] = 2, + aux_sym_array_creation_expression_repeat1, + [18984] = 6, + ACTIONS(2126), 1, + anon_sym_case, + ACTIONS(2128), 1, + anon_sym_default, + ACTIONS(2159), 1, + anon_sym_RBRACE, + STATE(1096), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(699), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [19005] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 6, + ACTIONS(2211), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18308] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18325] = 2, + [19018] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2179), 6, + ACTIONS(2213), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18338] = 2, + [19031] = 4, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(589), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19048] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 6, + ACTIONS(2217), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18351] = 2, + [19061] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 6, + ACTIONS(2219), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18364] = 6, - ACTIONS(2094), 1, - anon_sym_case, - ACTIONS(2096), 1, - anon_sym_default, - ACTIONS(2116), 1, - anon_sym_RBRACE, - STATE(1083), 1, - sym_switch_label, + [19074] = 4, + ACTIONS(321), 1, + anon_sym_AT, + ACTIONS(2221), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(686), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [18385] = 2, + STATE(589), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19091] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 6, + ACTIONS(2223), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18398] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(116), 1, - sym_class_body, - STATE(840), 1, - sym_super_interfaces, - STATE(1021), 1, - sym_permits, + [19104] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18421] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2187), 6, + ACTIONS(2225), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18434] = 2, + [19117] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 6, + ACTIONS(2227), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [19130] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2229), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18447] = 2, + [19143] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2231), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18460] = 2, + [19156] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 6, + ACTIONS(2233), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18473] = 2, + [19169] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 6, + ACTIONS(2235), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18486] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(82), 1, - sym_class_body, - STATE(779), 1, - sym_super_interfaces, - STATE(1049), 1, - sym_permits, + [19182] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2241), 1, + sym_this, + STATE(918), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18509] = 2, + ACTIONS(2239), 2, + anon_sym_open, + anon_sym_module, + [19203] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 6, + ACTIONS(2243), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18522] = 2, + [19216] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 6, + ACTIONS(2245), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18535] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2201), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(683), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18552] = 2, + [19229] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 6, + ACTIONS(2247), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18565] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2205), 1, + [19242] = 4, + ACTIONS(1973), 1, anon_sym_LBRACK, + ACTIONS(2249), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, + STATE(736), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18582] = 2, + aux_sym_array_creation_expression_repeat1, + [19259] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 6, + ACTIONS(2252), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18595] = 4, - ACTIONS(282), 1, + [19272] = 4, + ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2209), 1, - anon_sym_LBRACK, + ACTIONS(2254), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, + STATE(721), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18612] = 4, + aux_sym_array_creation_expression_repeat1, + [19289] = 4, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2211), 1, + ACTIONS(2256), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(724), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18629] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2213), 1, - sym_identifier, - ACTIONS(2217), 1, - sym_this, - STATE(878), 1, - sym_type_arguments, + aux_sym_array_creation_expression_repeat1, + [19306] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 2, - anon_sym_open, - anon_sym_module, - [18650] = 2, + ACTIONS(2252), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19319] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 6, + ACTIONS(2258), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18663] = 2, + [19332] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 6, + ACTIONS(2258), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18676] = 4, + [19345] = 7, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(87), 1, + sym_class_body, + STATE(830), 1, + sym_super_interfaces, + STATE(982), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [19368] = 7, + ACTIONS(2112), 1, + anon_sym_permits, + ACTIONS(2132), 1, + anon_sym_extends, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(94), 1, + sym_interface_body, + STATE(802), 1, + sym_extends_interfaces, + STATE(996), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [19391] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2260), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [19404] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2262), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [19417] = 4, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2223), 1, + ACTIONS(2264), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(682), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18693] = 4, + aux_sym_array_creation_expression_repeat1, + [19434] = 4, ACTIONS(282), 1, anon_sym_AT, - ACTIONS(2225), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, + STATE(736), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18710] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2227), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18723] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2229), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18736] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2231), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18749] = 4, + aux_sym_array_creation_expression_repeat1, + [19451] = 4, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2233), 1, + ACTIONS(2268), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(700), 4, + STATE(589), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18766] = 2, + aux_sym_array_creation_expression_repeat1, + [19468] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 6, + ACTIONS(2270), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18779] = 2, + [19481] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2272), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [19494] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2237), 6, + ACTIONS(2274), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18792] = 4, - ACTIONS(1941), 1, - anon_sym_LBRACK, - ACTIONS(2239), 1, - anon_sym_AT, + [19507] = 7, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(66), 1, + sym_class_body, + STATE(859), 1, + sym_super_interfaces, + STATE(976), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18809] = 2, + [19530] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 6, + ACTIONS(2276), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18822] = 2, + [19543] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 6, + ACTIONS(2278), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18835] = 2, + [19556] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 6, + ACTIONS(2280), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18848] = 7, - ACTIONS(2080), 1, + [19569] = 7, + ACTIONS(2112), 1, anon_sym_permits, - ACTIONS(2106), 1, + ACTIONS(2132), 1, anon_sym_extends, - ACTIONS(2108), 1, + ACTIONS(2134), 1, anon_sym_LBRACE, - STATE(119), 1, + STATE(99), 1, sym_interface_body, - STATE(814), 1, + STATE(833), 1, sym_extends_interfaces, - STATE(957), 1, + STATE(999), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18871] = 2, + [19592] = 4, + ACTIONS(282), 1, + anon_sym_AT, + ACTIONS(2282), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18884] = 4, + STATE(736), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19609] = 4, ACTIONS(321), 1, anon_sym_AT, - ACTIONS(2250), 1, + ACTIONS(2284), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18901] = 2, + aux_sym_array_creation_expression_repeat1, + [19626] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18914] = 2, + ACTIONS(2286), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19639] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 6, + ACTIONS(2288), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18927] = 2, + [19652] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2256), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2290), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19665] = 4, + ACTIONS(282), 1, anon_sym_AT, - anon_sym_throws, - [18940] = 2, + ACTIONS(2292), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18953] = 2, + STATE(736), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19682] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18966] = 6, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(1875), 1, - anon_sym_RBRACE, - ACTIONS(2262), 1, + ACTIONS(2294), 5, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COMMA, - STATE(783), 1, - aux_sym_enum_body_repeat1, - STATE(1094), 1, - sym_enum_body_declarations, + anon_sym_COLON, + anon_sym_SEMI, + [19694] = 4, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(411), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18986] = 6, + ACTIONS(1149), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [19710] = 6, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1984), 1, + ACTIONS(2010), 1, anon_sym_DOT, - STATE(349), 1, + STATE(350), 1, sym_argument_list, - STATE(587), 1, + STATE(598), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19006] = 6, + [19730] = 5, + ACTIONS(2296), 1, + anon_sym_catch, + ACTIONS(2298), 1, + anon_sym_finally, + STATE(205), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(58), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [19748] = 4, + STATE(1081), 1, + sym__wildcard_bounds, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2302), 2, + anon_sym_extends, + sym_super, + [19764] = 6, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1990), 1, + ACTIONS(2012), 1, anon_sym_DOT, - STATE(347), 1, + STATE(349), 1, sym_argument_list, - STATE(591), 1, + STATE(599), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19026] = 5, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2268), 1, - anon_sym_static, - STATE(1001), 1, - sym_scoped_identifier, + [19784] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 2, + ACTIONS(2304), 5, anon_sym_open, anon_sym_module, - [19044] = 4, - ACTIONS(2005), 1, + anon_sym_transitive, + anon_sym_static, + sym_identifier, + [19796] = 4, + ACTIONS(2063), 1, anon_sym_PIPE, - STATE(759), 1, + STATE(775), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 3, + ACTIONS(2306), 3, anon_sym_open, anon_sym_module, sym_identifier, - [19060] = 4, - STATE(1032), 1, - sym__wildcard_bounds, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2272), 2, - anon_sym_GT, - anon_sym_COMMA, - ACTIONS(2274), 2, - anon_sym_extends, - sym_super, - [19076] = 3, + [19812] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1049), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [19090] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(402), 1, - sym_argument_list, + ACTIONS(2308), 5, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + sym_identifier, + [19824] = 4, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1147), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [19106] = 4, - ACTIONS(2276), 1, + ACTIONS(2310), 3, anon_sym_COMMA, - STATE(754), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2279), 3, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_permits, - [19122] = 5, - ACTIONS(1956), 1, + [19840] = 5, + ACTIONS(2000), 1, sym_identifier, - STATE(791), 1, + STATE(790), 1, sym__variable_declarator_id, - STATE(1057), 1, + STATE(1025), 1, sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - [19140] = 4, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(883), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2281), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19156] = 2, + [19858] = 4, + ACTIONS(2312), 1, + anon_sym_PIPE, + STATE(775), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 5, + ACTIONS(2090), 3, anon_sym_open, anon_sym_module, - anon_sym_transitive, - anon_sym_static, sym_identifier, - [19168] = 5, - ACTIONS(1956), 1, + [19874] = 5, + ACTIONS(2000), 1, sym_identifier, - STATE(791), 1, + STATE(790), 1, sym__variable_declarator_id, - STATE(973), 1, + STATE(1022), 1, sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - [19186] = 4, - ACTIONS(2285), 1, - anon_sym_PIPE, - STATE(759), 1, - aux_sym_catch_type_repeat1, + [19892] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2315), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19904] = 5, + ACTIONS(2317), 1, + sym_identifier, + ACTIONS(2321), 1, + anon_sym_static, + STATE(1054), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 3, + ACTIONS(2319), 2, anon_sym_open, anon_sym_module, - sym_identifier, - [19202] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(345), 1, - sym_argument_list, - STATE(587), 1, - sym_type_arguments, + [19922] = 6, + ACTIONS(1828), 1, + anon_sym_SEMI, + ACTIONS(1874), 1, + anon_sym_RBRACE, + ACTIONS(2323), 1, + anon_sym_COMMA, + STATE(806), 1, + aux_sym_enum_body_repeat1, + STATE(1082), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19222] = 6, - ACTIONS(1788), 1, + [19942] = 6, + ACTIONS(1828), 1, anon_sym_SEMI, - ACTIONS(2288), 1, + ACTIONS(2325), 1, anon_sym_COMMA, - ACTIONS(2290), 1, + ACTIONS(2327), 1, anon_sym_RBRACE, - STATE(746), 1, + STATE(779), 1, aux_sym_enum_body_repeat1, - STATE(1067), 1, + STATE(1121), 1, sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19242] = 2, + [19962] = 4, + ACTIONS(2329), 1, + anon_sym_COMMA, + STATE(781), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2332), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_permits, + [19978] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2080), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1043), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [19992] = 4, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2334), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20008] = 4, + STATE(1013), 1, + sym__wildcard_bounds, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2302), 2, + anon_sym_extends, + sym_super, + ACTIONS(2336), 2, + anon_sym_GT, + anon_sym_COMMA, + [20024] = 5, + ACTIONS(2000), 1, + sym_identifier, + STATE(790), 1, + sym__variable_declarator_id, + STATE(1021), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 5, + ACTIONS(1990), 2, anon_sym_open, anon_sym_module, - anon_sym_transitive, - anon_sym_static, - sym_identifier, - [19254] = 6, + [20042] = 6, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1045), 1, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(1990), 1, + ACTIONS(2010), 1, anon_sym_DOT, - STATE(346), 1, + STATE(347), 1, sym_argument_list, - STATE(591), 1, + STATE(598), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19274] = 4, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_class_body, + [20062] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2012), 1, + anon_sym_DOT, + STATE(348), 1, + sym_argument_list, + STATE(599), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19290] = 4, - STATE(992), 1, - sym__wildcard_bounds, + [20082] = 4, + ACTIONS(2338), 1, + sym_identifier, + STATE(844), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2340), 2, + anon_sym_open, + anon_sym_module, + [20097] = 4, + ACTIONS(2342), 1, + sym_identifier, + STATE(565), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 2, - anon_sym_extends, - sym_super, - ACTIONS(2296), 2, - anon_sym_GT, - anon_sym_COMMA, - [19306] = 2, + ACTIONS(2344), 2, + anon_sym_open, + anon_sym_module, + [20112] = 3, + ACTIONS(2348), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 5, + ACTIONS(2346), 3, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON, anon_sym_SEMI, - [19318] = 5, - ACTIONS(2300), 1, - anon_sym_catch, - ACTIONS(2302), 1, - anon_sym_finally, - STATE(204), 1, - sym_finally_clause, + [20125] = 4, + ACTIONS(2350), 1, + sym_identifier, + STATE(1029), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(58), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [19336] = 2, + ACTIONS(2352), 2, + anon_sym_open, + anon_sym_module, + [20140] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 5, + ACTIONS(2354), 4, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_SEMI, - [19348] = 5, - ACTIONS(1956), 1, + [20151] = 4, + ACTIONS(2356), 1, sym_identifier, - STATE(791), 1, - sym__variable_declarator_id, - STATE(971), 1, - sym_variable_declarator, + STATE(855), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2358), 2, anon_sym_open, anon_sym_module, - [19366] = 4, - ACTIONS(1775), 1, - anon_sym_COMMA, - STATE(847), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2306), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [19381] = 4, - ACTIONS(2308), 1, + [20166] = 4, + ACTIONS(2360), 1, sym_identifier, - STATE(810), 1, + STATE(853), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 2, + ACTIONS(2362), 2, anon_sym_open, anon_sym_module, - [19396] = 4, - ACTIONS(2312), 1, + [20181] = 4, + ACTIONS(2364), 1, sym_identifier, - STATE(812), 1, + STATE(846), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 2, + ACTIONS(2366), 2, anon_sym_open, anon_sym_module, - [19411] = 4, - ACTIONS(2316), 1, + [20196] = 4, + ACTIONS(2368), 1, sym_identifier, - STATE(817), 1, + STATE(458), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 2, + ACTIONS(2370), 2, anon_sym_open, anon_sym_module, - [19426] = 4, - ACTIONS(2320), 1, + [20211] = 4, + ACTIONS(2372), 1, sym_identifier, - STATE(805), 1, + STATE(842), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 2, + ACTIONS(2374), 2, anon_sym_open, anon_sym_module, - [19441] = 4, - ACTIONS(2324), 1, + [20226] = 4, + ACTIONS(2376), 1, sym_identifier, - STATE(800), 1, + STATE(839), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 2, + ACTIONS(2378), 2, anon_sym_open, anon_sym_module, - [19456] = 4, - ACTIONS(2328), 1, + [20241] = 5, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(1577), 1, + anon_sym_COLON_COLON, + ACTIONS(2380), 1, + anon_sym_DOT, + STATE(1108), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20258] = 4, + ACTIONS(2348), 1, anon_sym_EQ, - ACTIONS(2332), 1, + ACTIONS(2382), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 2, + ACTIONS(2346), 2, anon_sym_COMMA, anon_sym_SEMI, - [19471] = 5, - ACTIONS(2334), 1, - anon_sym_LBRACE, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(379), 1, - sym_constructor_body, - STATE(1002), 1, - sym_throws, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [19488] = 4, - ACTIONS(2338), 1, + [20273] = 4, + ACTIONS(2384), 1, sym_identifier, - ACTIONS(2342), 1, - sym_super, + STATE(925), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 2, + ACTIONS(2386), 2, anon_sym_open, anon_sym_module, - [19503] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, + [20288] = 5, + ACTIONS(2112), 1, anon_sym_permits, - STATE(92), 1, - sym_class_body, - STATE(990), 1, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(112), 1, + sym_interface_body, + STATE(1059), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19520] = 4, - ACTIONS(2344), 1, - sym_identifier, - STATE(809), 1, - sym_scoped_identifier, + [20305] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 2, - anon_sym_open, - anon_sym_module, - [19535] = 4, - ACTIONS(2348), 1, - anon_sym_AMP, - STATE(781), 1, - aux_sym_type_bound_repeat1, + ACTIONS(2388), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20316] = 4, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(841), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 2, - anon_sym_GT, - anon_sym_COMMA, - [19550] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, + ACTIONS(2392), 2, anon_sym_LBRACE, - STATE(103), 1, - sym_interface_body, - STATE(1045), 1, - sym_permits, + anon_sym_SEMI, + [20331] = 4, + ACTIONS(2000), 1, + sym_identifier, + STATE(1124), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19567] = 4, - ACTIONS(2353), 1, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + [20346] = 4, + ACTIONS(2394), 1, anon_sym_COMMA, - STATE(783), 1, + STATE(806), 1, aux_sym_enum_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 2, + ACTIONS(2397), 2, anon_sym_RBRACE, anon_sym_SEMI, - [19582] = 4, - ACTIONS(2358), 1, + [20361] = 4, + ACTIONS(2401), 1, + anon_sym_extends, + STATE(1037), 1, + sym_type_bound, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2399), 2, + anon_sym_GT, + anon_sym_COMMA, + [20376] = 4, + ACTIONS(2348), 1, + anon_sym_EQ, + ACTIONS(2403), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2346), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [20391] = 4, + ACTIONS(2405), 1, sym_identifier, - STATE(1052), 1, + STATE(969), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 2, + ACTIONS(2407), 2, anon_sym_open, anon_sym_module, - [19597] = 4, - ACTIONS(2362), 1, + [20406] = 4, + ACTIONS(2409), 1, sym_identifier, - STATE(1060), 1, + STATE(870), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 2, + ACTIONS(2411), 2, anon_sym_open, anon_sym_module, - [19612] = 4, - ACTIONS(2366), 1, + [20421] = 4, + ACTIONS(2413), 1, sym_identifier, - STATE(914), 1, + STATE(1034), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 2, + ACTIONS(2415), 2, anon_sym_open, anon_sym_module, - [19627] = 5, - ACTIONS(1284), 1, + [20436] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2112), 1, anon_sym_permits, - STATE(81), 1, + STATE(132), 1, sym_class_body, - STATE(1048), 1, + STATE(998), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19644] = 4, - ACTIONS(2370), 1, + [20453] = 4, + ACTIONS(2417), 1, sym_identifier, - STATE(979), 1, + STATE(1026), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 2, + ACTIONS(2419), 2, anon_sym_open, anon_sym_module, - [19659] = 4, - ACTIONS(2374), 1, - sym_identifier, - STATE(902), 1, - sym_scoped_identifier, + [20468] = 5, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(109), 1, + sym_class_body, + STATE(979), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 2, - anon_sym_open, - anon_sym_module, - [19674] = 4, - ACTIONS(2378), 1, + [20485] = 4, + ACTIONS(2421), 1, sym_identifier, - STATE(1061), 1, + STATE(1039), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 2, + ACTIONS(2423), 2, anon_sym_open, anon_sym_module, - [19689] = 3, - ACTIONS(2328), 1, - anon_sym_EQ, + [20500] = 5, + ACTIONS(2425), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_throws, + STATE(368), 1, + sym_constructor_body, + STATE(1053), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 3, - anon_sym_RPAREN, + [20517] = 4, + ACTIONS(2429), 1, + anon_sym_AMP, + STATE(828), 1, + aux_sym_type_bound_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2431), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SEMI, - [19702] = 5, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2382), 1, + [20532] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(77), 1, - sym_enum_body, - STATE(1058), 1, - sym_super_interfaces, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(108), 1, + sym_class_body, + STATE(1007), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19719] = 4, - ACTIONS(2384), 1, + [20549] = 4, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(781), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2433), 2, + anon_sym_LBRACE, + anon_sym_permits, + [20564] = 4, + ACTIONS(2435), 1, sym_identifier, - STATE(915), 1, - sym_scoped_identifier, + ACTIONS(2439), 1, + sym_super, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 2, + ACTIONS(2437), 2, anon_sym_open, anon_sym_module, - [19734] = 2, + [20579] = 4, + ACTIONS(2427), 1, + anon_sym_throws, + STATE(1006), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2441), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [19745] = 5, - ACTIONS(1284), 1, + [20594] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2332), 4, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(2080), 1, + anon_sym_SEMI, anon_sym_permits, - STATE(123), 1, - sym_class_body, - STATE(972), 1, - sym_permits, + [20605] = 4, + ACTIONS(2427), 1, + anon_sym_throws, + STATE(1041), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19762] = 5, - ACTIONS(1284), 1, + ACTIONS(2443), 2, anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(88), 1, - sym_class_body, - STATE(991), 1, - sym_permits, + anon_sym_SEMI, + [20620] = 4, + ACTIONS(2445), 1, + anon_sym_AMP, + STATE(824), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19779] = 4, - ACTIONS(2390), 1, - sym_identifier, - STATE(944), 1, - sym_scoped_identifier, + ACTIONS(2448), 2, + anon_sym_GT, + anon_sym_COMMA, + [20635] = 5, + ACTIONS(1577), 1, + anon_sym_COLON_COLON, + ACTIONS(2450), 1, + anon_sym_AMP, + ACTIONS(2452), 1, + anon_sym_RPAREN, + STATE(938), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 2, - anon_sym_open, - anon_sym_module, - [19794] = 2, + [20652] = 5, + ACTIONS(2425), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_throws, + STATE(371), 1, + sym_constructor_body, + STATE(986), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2394), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19805] = 4, - ACTIONS(2396), 1, - sym_identifier, - STATE(860), 1, - sym_scoped_identifier, + [20669] = 5, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(126), 1, + sym_class_body, + STATE(1067), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2398), 2, - anon_sym_open, - anon_sym_module, - [19820] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2400), 1, + [20686] = 4, + ACTIONS(2429), 1, + anon_sym_AMP, + STATE(824), 1, + aux_sym_type_bound_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2454), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2402), 1, - anon_sym_SEMI, - STATE(943), 1, - aux_sym_provides_module_directive_repeat1, + [20701] = 5, + ACTIONS(2112), 1, + anon_sym_permits, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(85), 1, + sym_interface_body, + STATE(1000), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19837] = 5, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2406), 1, + [20718] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(767), 1, - sym_block, - STATE(1015), 1, - sym_resource_specification, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(119), 1, + sym_class_body, + STATE(1062), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19854] = 4, - ACTIONS(2408), 1, - sym_identifier, - STATE(561), 1, - sym_scoped_identifier, + [20735] = 4, + ACTIONS(2456), 1, + anon_sym_COMMA, + STATE(831), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 2, - anon_sym_open, - anon_sym_module, - [19869] = 5, - ACTIONS(2080), 1, + ACTIONS(1844), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [20750] = 4, + ACTIONS(2401), 1, + anon_sym_extends, + STATE(1009), 1, + sym_type_bound, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2459), 2, + anon_sym_GT, + anon_sym_COMMA, + [20765] = 5, + ACTIONS(2112), 1, anon_sym_permits, - ACTIONS(2108), 1, + ACTIONS(2134), 1, anon_sym_LBRACE, - STATE(68), 1, + STATE(69), 1, sym_interface_body, - STATE(959), 1, + STATE(987), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19886] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COMMA, - ACTIONS(2412), 1, - anon_sym_SEMI, - STATE(941), 1, - aux_sym_provides_module_directive_repeat1, + [20782] = 5, + ACTIONS(2110), 1, + anon_sym_implements, + ACTIONS(2461), 1, + anon_sym_LBRACE, + STATE(72), 1, + sym_enum_body, + STATE(1016), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19903] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COMMA, - ACTIONS(2414), 1, - anon_sym_SEMI, - STATE(939), 1, - aux_sym_provides_module_directive_repeat1, + [20799] = 4, + ACTIONS(2427), 1, + anon_sym_throws, + STATE(992), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19920] = 4, - ACTIONS(1956), 1, + ACTIONS(2463), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [20814] = 4, + ACTIONS(2465), 1, sym_identifier, - STATE(1125), 1, - sym__variable_declarator_id, + STATE(901), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2467), 2, anon_sym_open, anon_sym_module, - [19935] = 4, - ACTIONS(2416), 1, + [20829] = 4, + ACTIONS(1796), 1, + anon_sym_COMMA, + STATE(831), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2469), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [20844] = 4, + ACTIONS(2471), 1, sym_identifier, - STATE(875), 1, + STATE(1044), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 2, + ACTIONS(2473), 2, anon_sym_open, anon_sym_module, - [19950] = 5, - ACTIONS(1278), 1, + [20859] = 5, + ACTIONS(1286), 1, anon_sym_DOT, - ACTIONS(2400), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2420), 1, + ACTIONS(2477), 1, anon_sym_SEMI, - STATE(937), 1, + STATE(964), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19967] = 5, - ACTIONS(1272), 1, + [20876] = 5, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2424), 1, + ACTIONS(2479), 1, anon_sym_SEMI, - STATE(922), 1, - aux_sym_exports_module_directive_repeat1, + STATE(962), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19984] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2422), 1, + [20893] = 4, + ACTIONS(2390), 1, anon_sym_COMMA, - ACTIONS(2426), 1, - anon_sym_SEMI, - STATE(934), 1, - aux_sym_exports_module_directive_repeat1, + STATE(781), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20001] = 5, - ACTIONS(1278), 1, + ACTIONS(2481), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [20908] = 5, + ACTIONS(1286), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2428), 1, + ACTIONS(2483), 1, anon_sym_SEMI, - STATE(932), 1, - aux_sym_exports_module_directive_repeat1, + STATE(960), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20018] = 5, - ACTIONS(1272), 1, + [20925] = 5, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2430), 1, + ACTIONS(2485), 1, anon_sym_SEMI, - STATE(930), 1, - aux_sym_exports_module_directive_repeat1, + STATE(958), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20035] = 5, - ACTIONS(1278), 1, + [20942] = 5, + ACTIONS(1286), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2432), 1, + ACTIONS(2489), 1, anon_sym_SEMI, - STATE(928), 1, + STATE(955), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20052] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(91), 1, - sym_interface_body, - STATE(1054), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20069] = 4, - ACTIONS(2434), 1, - anon_sym_AMP, - STATE(781), 1, - aux_sym_type_bound_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2436), 2, - anon_sym_GT, - anon_sym_COMMA, - [20084] = 4, - ACTIONS(2438), 1, - anon_sym_COMMA, - STATE(816), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1810), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [20099] = 5, - ACTIONS(1272), 1, + [20959] = 5, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2441), 1, + ACTIONS(2491), 1, anon_sym_SEMI, - STATE(926), 1, + STATE(953), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20116] = 5, - ACTIONS(1278), 1, + [20976] = 5, + ACTIONS(1286), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2443), 1, + ACTIONS(2493), 1, anon_sym_SEMI, - STATE(924), 1, + STATE(951), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20133] = 4, - ACTIONS(2447), 1, - anon_sym_extends, - STATE(1041), 1, - sym_type_bound, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2445), 2, - anon_sym_GT, - anon_sym_COMMA, - [20148] = 5, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2451), 1, - anon_sym_RPAREN, - STATE(923), 1, - aux_sym_cast_expression_repeat1, + [20993] = 5, + ACTIONS(2495), 1, + anon_sym_LPAREN, + ACTIONS(2497), 1, + anon_sym_LBRACE, + STATE(767), 1, + sym_block, + STATE(1027), 1, + sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20165] = 4, - ACTIONS(2453), 1, + [21010] = 4, + ACTIONS(2499), 1, sym_identifier, - STATE(341), 1, + STATE(883), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 2, + ACTIONS(2501), 2, anon_sym_open, anon_sym_module, - [20180] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(967), 1, - sym_throws, + [21025] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 2, - anon_sym_LBRACE, + ACTIONS(2503), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [21036] = 5, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2487), 1, + anon_sym_COMMA, + ACTIONS(2505), 1, anon_sym_SEMI, - [20195] = 2, + STATE(949), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 4, + [21053] = 4, + ACTIONS(2507), 1, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_permits, - [20206] = 4, - ACTIONS(2459), 1, - sym_identifier, - STATE(458), 1, - sym_scoped_identifier, + STATE(851), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2461), 2, - anon_sym_open, - anon_sym_module, - [20221] = 4, - ACTIONS(2463), 1, + ACTIONS(1844), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [21068] = 4, + ACTIONS(2510), 1, sym_identifier, - STATE(1008), 1, + STATE(916), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 2, + ACTIONS(2512), 2, anon_sym_open, anon_sym_module, - [20236] = 5, - ACTIONS(2334), 1, - anon_sym_LBRACE, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(352), 1, - sym_constructor_body, - STATE(1038), 1, - sym_throws, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20253] = 4, - ACTIONS(2467), 1, + [21083] = 5, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2487), 1, anon_sym_COMMA, - STATE(754), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2469), 2, - anon_sym_LBRACE, + ACTIONS(2514), 1, anon_sym_SEMI, - [20268] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(117), 1, - sym_class_body, - STATE(955), 1, - sym_permits, + STATE(947), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20285] = 4, - ACTIONS(2467), 1, + [21100] = 5, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2487), 1, anon_sym_COMMA, - STATE(827), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2471), 2, - anon_sym_LBRACE, + ACTIONS(2516), 1, anon_sym_SEMI, - [20300] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, - anon_sym_DOT, - STATE(1118), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20317] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(983), 1, - sym_throws, + STATE(945), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 2, - anon_sym_LBRACE, + [21117] = 5, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2487), 1, + anon_sym_COMMA, + ACTIONS(2518), 1, anon_sym_SEMI, - [20332] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(1019), 1, - sym_throws, + STATE(943), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 2, - anon_sym_LBRACE, + [21134] = 5, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2487), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, anon_sym_SEMI, - [20347] = 4, - ACTIONS(2447), 1, - anon_sym_extends, - STATE(993), 1, - sym_type_bound, + STATE(941), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, - sym_block_comment, - ACTIONS(2479), 2, - anon_sym_GT, - anon_sym_COMMA, - [20362] = 4, - ACTIONS(2467), 1, - anon_sym_COMMA, - STATE(754), 1, - aux_sym_type_list_repeat1, + sym_block_comment, + [21151] = 4, + ACTIONS(2000), 1, + sym_identifier, + STATE(1110), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2481), 2, - anon_sym_LBRACE, - anon_sym_permits, - [20377] = 2, + ACTIONS(1990), 2, + anon_sym_open, + anon_sym_module, + [21166] = 4, + ACTIONS(85), 1, + anon_sym_LT, + STATE(1042), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20388] = 5, - ACTIONS(1284), 1, + ACTIONS(2522), 2, + anon_sym_new, + sym_identifier, + [21181] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2112), 1, anon_sym_permits, - STATE(69), 1, + STATE(127), 1, sym_class_body, - STATE(1030), 1, + STATE(1065), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20405] = 4, - ACTIONS(2434), 1, + [21198] = 5, + ACTIONS(1577), 1, + anon_sym_COLON_COLON, + ACTIONS(2450), 1, anon_sym_AMP, - STATE(815), 1, - aux_sym_type_bound_repeat1, + ACTIONS(2524), 1, + anon_sym_RPAREN, + STATE(894), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 2, - anon_sym_GT, - anon_sym_COMMA, - [20420] = 5, - ACTIONS(2078), 1, + [21215] = 5, + ACTIONS(2110), 1, anon_sym_implements, - ACTIONS(2382), 1, + ACTIONS(2461), 1, anon_sym_LBRACE, - STATE(132), 1, + STATE(96), 1, sym_enum_body, - STATE(968), 1, + STATE(1048), 1, sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20437] = 4, - ACTIONS(2328), 1, - anon_sym_EQ, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2330), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [20452] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, + [21232] = 5, + ACTIONS(2112), 1, anon_sym_permits, - STATE(111), 1, - sym_class_body, - STATE(1023), 1, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_interface_body, + STATE(1061), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20469] = 5, - ACTIONS(1284), 1, + [21249] = 5, + ACTIONS(1292), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2112), 1, anon_sym_permits, - STATE(114), 1, + STATE(124), 1, sym_class_body, - STATE(1017), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20486] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(97), 1, - sym_interface_body, - STATE(987), 1, + STATE(972), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20503] = 4, - ACTIONS(1956), 1, + [21266] = 4, + ACTIONS(2526), 1, sym_identifier, - STATE(1091), 1, - sym__variable_declarator_id, + STATE(346), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2528), 2, anon_sym_open, anon_sym_module, - [20518] = 2, + [21281] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2489), 4, + ACTIONS(2530), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20529] = 5, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_RPAREN, - STATE(894), 1, - aux_sym_cast_expression_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20546] = 4, - ACTIONS(2467), 1, + [21292] = 4, + ACTIONS(2390), 1, anon_sym_COMMA, - STATE(834), 1, + STATE(819), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 2, + ACTIONS(2532), 2, anon_sym_LBRACE, anon_sym_permits, - [20561] = 4, - ACTIONS(2495), 1, - anon_sym_COMMA, - STATE(847), 1, - aux_sym_argument_list_repeat1, + [21307] = 5, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(2112), 1, + anon_sym_permits, + STATE(88), 1, + sym_class_body, + STATE(988), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [20576] = 4, - ACTIONS(85), 1, - anon_sym_LT, - STATE(1022), 1, - sym_type_arguments, + [21324] = 4, + ACTIONS(1573), 1, + anon_sym_LBRACK, + ACTIONS(1575), 1, + anon_sym_DOT, + ACTIONS(1577), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 2, - anon_sym_new, - sym_identifier, - [20591] = 5, - ACTIONS(1278), 1, + [21338] = 4, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2010), 1, anon_sym_DOT, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2500), 1, + STATE(350), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21352] = 4, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2534), 1, anon_sym_SEMI, - STATE(920), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2536), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20608] = 4, - ACTIONS(2502), 1, + [21366] = 4, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(2538), 1, anon_sym_RPAREN, - ACTIONS(2504), 1, - anon_sym_SEMI, - STATE(850), 1, - aux_sym_resource_specification_repeat1, + STATE(885), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20622] = 4, - ACTIONS(2507), 1, + [21380] = 4, + ACTIONS(2540), 1, anon_sym_GT, - ACTIONS(2509), 1, + ACTIONS(2542), 1, anon_sym_COMMA, - STATE(935), 1, - aux_sym_type_parameters_repeat1, + STATE(887), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20636] = 4, - ACTIONS(2511), 1, + [21394] = 4, + ACTIONS(2544), 1, anon_sym_RPAREN, - ACTIONS(2513), 1, + ACTIONS(2546), 1, anon_sym_COMMA, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(874), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20650] = 4, - ACTIONS(2516), 1, + [21408] = 4, + ACTIONS(2548), 1, + anon_sym_RPAREN, + ACTIONS(2550), 1, anon_sym_COMMA, - ACTIONS(2519), 1, - anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + STATE(874), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20664] = 4, - ACTIONS(2521), 1, + [21422] = 4, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2523), 1, + ACTIONS(2556), 1, anon_sym_RBRACE, - STATE(912), 1, + STATE(875), 1, aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20678] = 4, - ACTIONS(2525), 1, - anon_sym_RPAREN, - ACTIONS(2527), 1, - anon_sym_COMMA, - STATE(855), 1, - aux_sym_inferred_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20692] = 4, - ACTIONS(1788), 1, + [21436] = 4, + ACTIONS(2100), 1, + anon_sym_default, + ACTIONS(2558), 1, anon_sym_SEMI, - ACTIONS(2290), 1, - anon_sym_RBRACE, - STATE(1067), 1, - sym_enum_body_declarations, + STATE(1125), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20706] = 4, - ACTIONS(1800), 1, + [21450] = 4, + ACTIONS(1808), 1, anon_sym_COMMA, - ACTIONS(2530), 1, + ACTIONS(2560), 1, anon_sym_RPAREN, - STATE(852), 1, + STATE(885), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20720] = 4, - ACTIONS(1800), 1, + [21464] = 4, + ACTIONS(2562), 1, anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2565), 1, + anon_sym_SEMI, + STATE(878), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20734] = 4, - ACTIONS(2534), 1, - anon_sym_RPAREN, - ACTIONS(2536), 1, + [21478] = 4, + ACTIONS(1808), 1, anon_sym_COMMA, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2567), 1, + anon_sym_RPAREN, + STATE(885), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20748] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, + [21492] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 2, + ACTIONS(1860), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [20760] = 4, - ACTIONS(2540), 1, - anon_sym_GT, - ACTIONS(2542), 1, - anon_sym_COMMA, - STATE(889), 1, - aux_sym_type_arguments_repeat1, + [21502] = 4, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2569), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20774] = 4, - ACTIONS(2544), 1, + [21516] = 4, + ACTIONS(1808), 1, anon_sym_COMMA, - ACTIONS(2547), 1, - anon_sym_RBRACE, - STATE(862), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2571), 1, + anon_sym_RPAREN, + STATE(885), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20788] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, + [21530] = 4, + ACTIONS(1286), 1, anon_sym_DOT, - STATE(345), 1, - sym_argument_list, + ACTIONS(2569), 1, + anon_sym_LBRACE, + STATE(152), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20802] = 4, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(2549), 1, + [21544] = 4, + ACTIONS(2573), 1, + anon_sym_AMP, + ACTIONS(2576), 1, anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20816] = 2, + STATE(884), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2551), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [20826] = 2, + [21558] = 4, + ACTIONS(2578), 1, + anon_sym_RPAREN, + ACTIONS(2580), 1, + anon_sym_COMMA, + STATE(885), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [20836] = 4, - ACTIONS(2555), 1, + [21572] = 4, + ACTIONS(2583), 1, + anon_sym_RPAREN, + ACTIONS(2585), 1, anon_sym_COMMA, - ACTIONS(2558), 1, - anon_sym_SEMI, - STATE(867), 1, - aux_sym_for_statement_repeat1, + STATE(886), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20850] = 4, - ACTIONS(2560), 1, - anon_sym_AMP, - ACTIONS(2563), 1, - anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, + [21586] = 4, + ACTIONS(2588), 1, + anon_sym_GT, + ACTIONS(2590), 1, + anon_sym_COMMA, + STATE(887), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20864] = 2, + [21600] = 4, + ACTIONS(2593), 1, + sym_identifier, + ACTIONS(2595), 1, + anon_sym_STAR, + STATE(1114), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 3, + [21614] = 4, + ACTIONS(2597), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2599), 1, anon_sym_SEMI, - [20874] = 4, - ACTIONS(1866), 1, - anon_sym_RBRACE, - ACTIONS(2567), 1, - anon_sym_COMMA, - STATE(870), 1, - aux_sym_array_initializer_repeat1, + STATE(878), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20888] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, + [21628] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2570), 2, - anon_sym_COMMA, + ACTIONS(2601), 3, + anon_sym_LBRACE, anon_sym_SEMI, - [20900] = 4, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + anon_sym_throws, + [21638] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20914] = 4, - ACTIONS(27), 1, + ACTIONS(2603), 3, anon_sym_LBRACE, - ACTIONS(2574), 1, anon_sym_SEMI, - STATE(376), 1, - sym_block, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20928] = 4, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1539), 1, - anon_sym_DOT, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, + anon_sym_throws, + [21648] = 4, + ACTIONS(1848), 1, + anon_sym_COMMA, + ACTIONS(1850), 1, + anon_sym_RBRACE, + STATE(944), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20942] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, + [21662] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2576), 2, + ACTIONS(2605), 3, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [20954] = 4, - ACTIONS(2536), 1, - anon_sym_COMMA, - ACTIONS(2578), 1, + [21672] = 4, + ACTIONS(2450), 1, + anon_sym_AMP, + ACTIONS(2607), 1, anon_sym_RPAREN, - STATE(942), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(884), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20968] = 4, - ACTIONS(2580), 1, - anon_sym_RPAREN, - ACTIONS(2582), 1, - anon_sym_SEMI, - STATE(938), 1, - aux_sym_resource_specification_repeat1, + [21686] = 4, + ACTIONS(2542), 1, + anon_sym_COMMA, + ACTIONS(2609), 1, + anon_sym_GT, + STATE(940), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20982] = 3, - ACTIONS(2584), 1, - sym_identifier, + [21700] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 2, - anon_sym_open, - anon_sym_module, - [20994] = 4, - ACTIONS(2588), 1, + ACTIONS(2611), 3, anon_sym_COMMA, - ACTIONS(2591), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(879), 1, + [21710] = 4, + ACTIONS(2613), 1, + anon_sym_COMMA, + ACTIONS(2616), 1, + anon_sym_SEMI, + STATE(897), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21008] = 4, - ACTIONS(2536), 1, - anon_sym_COMMA, - ACTIONS(2593), 1, - anon_sym_RPAREN, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + [21724] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21022] = 3, - ACTIONS(1278), 1, + ACTIONS(2618), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [21734] = 4, + ACTIONS(1286), 1, anon_sym_DOT, + ACTIONS(2569), 1, + anon_sym_LBRACE, + STATE(198), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2595), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [21034] = 4, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(2599), 1, - anon_sym_STAR, - STATE(1063), 1, - sym_asterisk, + [21748] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21048] = 2, + ACTIONS(2620), 3, + anon_sym_LBRACE, + anon_sym_implements, + anon_sym_permits, + [21758] = 3, + ACTIONS(1286), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 3, + ACTIONS(2622), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [21058] = 4, - ACTIONS(2536), 1, - anon_sym_COMMA, - ACTIONS(2603), 1, - anon_sym_RPAREN, - STATE(880), 1, - aux_sym_annotation_argument_list_repeat1, + [21770] = 3, + ACTIONS(1280), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21072] = 4, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(2607), 1, + ACTIONS(2624), 2, anon_sym_COMMA, - STATE(891), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21086] = 4, - ACTIONS(2609), 1, - anon_sym_RPAREN, - ACTIONS(2611), 1, + anon_sym_SEMI, + [21782] = 4, + ACTIONS(2626), 1, + anon_sym_GT, + ACTIONS(2628), 1, anon_sym_COMMA, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, + STATE(914), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21100] = 2, + [21796] = 4, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2569), 1, + anon_sym_LBRACE, + STATE(199), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 3, - anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [21110] = 4, - ACTIONS(2599), 1, - anon_sym_STAR, - ACTIONS(2616), 1, + [21810] = 3, + ACTIONS(2435), 1, sym_identifier, - STATE(1064), 1, - sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21124] = 4, - ACTIONS(2542), 1, + ACTIONS(2437), 2, + anon_sym_open, + anon_sym_module, + [21822] = 4, + ACTIONS(1254), 1, + anon_sym_RPAREN, + ACTIONS(2546), 1, anon_sym_COMMA, - ACTIONS(2618), 1, - anon_sym_GT, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + STATE(933), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21138] = 4, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2620), 1, + [21836] = 4, + ACTIONS(1828), 1, anon_sym_SEMI, - STATE(1096), 1, - sym__default_value, + ACTIONS(2327), 1, + anon_sym_RBRACE, + STATE(1121), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21152] = 4, - ACTIONS(2607), 1, + [21850] = 4, + ACTIONS(1870), 1, + anon_sym_RBRACE, + ACTIONS(2630), 1, anon_sym_COMMA, - ACTIONS(2622), 1, - anon_sym_RPAREN, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, + STATE(908), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21166] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, + [21864] = 4, + ACTIONS(2595), 1, + anon_sym_STAR, + ACTIONS(2633), 1, + sym_identifier, + STATE(1118), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21180] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_module_body, + [21878] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21194] = 4, - ACTIONS(2449), 1, + ACTIONS(2448), 3, anon_sym_AMP, - ACTIONS(2626), 1, - anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21208] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2628), 3, + anon_sym_GT, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21218] = 2, + [21888] = 4, + ACTIONS(2595), 1, + anon_sym_STAR, + ACTIONS(2633), 1, + sym_identifier, + STATE(1146), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 3, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - [21228] = 4, - ACTIONS(2542), 1, - anon_sym_COMMA, - ACTIONS(2630), 1, - anon_sym_GT, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + [21902] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(2635), 1, + anon_sym_SEMI, + STATE(381), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21242] = 2, + [21916] = 4, + ACTIONS(2593), 1, + sym_identifier, + ACTIONS(2595), 1, + anon_sym_STAR, + STATE(1150), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21252] = 4, - ACTIONS(1121), 1, + [21930] = 4, + ACTIONS(2637), 1, + anon_sym_GT, + ACTIONS(2639), 1, anon_sym_COMMA, - ACTIONS(2632), 1, - anon_sym_RPAREN, - STATE(855), 1, - aux_sym_inferred_parameters_repeat1, + STATE(914), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21266] = 4, - ACTIONS(1045), 1, + [21944] = 4, + ACTIONS(1039), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2642), 1, anon_sym_DOT, - STATE(1138), 1, + STATE(1163), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21280] = 2, + [21958] = 4, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2569), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 3, + [21972] = 4, + ACTIONS(2644), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2647), 1, anon_sym_SEMI, - [21290] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_module_body, + STATE(917), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21304] = 4, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(2607), 1, - anon_sym_COMMA, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, + [21986] = 3, + ACTIONS(2649), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21318] = 4, - ACTIONS(1272), 1, + ACTIONS(2651), 2, + anon_sym_open, + anon_sym_module, + [21998] = 4, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2624), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - STATE(171), 1, + STATE(206), 1, sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21332] = 4, - ACTIONS(1278), 1, + [22012] = 4, + ACTIONS(2653), 1, + anon_sym_RPAREN, + ACTIONS(2655), 1, + anon_sym_SEMI, + STATE(932), 1, + aux_sym_resource_specification_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22026] = 4, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(2010), 1, anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(172), 1, - sym_module_body, + STATE(347), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21346] = 4, - ACTIONS(2638), 1, - anon_sym_RPAREN, - ACTIONS(2640), 1, + [22040] = 4, + ACTIONS(2542), 1, anon_sym_COMMA, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2657), 1, + anon_sym_GT, + STATE(872), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21360] = 4, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(2643), 1, + [22054] = 4, + ACTIONS(2659), 1, anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2661), 1, + anon_sym_SEMI, + STATE(923), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21374] = 4, - ACTIONS(2645), 1, + [22068] = 4, + ACTIONS(1812), 1, anon_sym_COMMA, - ACTIONS(2648), 1, - anon_sym_SEMI, - STATE(908), 1, - aux_sym__variable_declarator_list_repeat1, + ACTIONS(2664), 1, + anon_sym_RPAREN, + STATE(851), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21388] = 2, + [22082] = 3, + ACTIONS(1286), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1812), 3, - anon_sym_RPAREN, + ACTIONS(2666), 2, anon_sym_COMMA, anon_sym_SEMI, - [21398] = 4, - ACTIONS(1800), 1, + [22094] = 4, + ACTIONS(1808), 1, anon_sym_COMMA, - ACTIONS(2650), 1, + ACTIONS(2668), 1, anon_sym_RPAREN, - STATE(852), 1, + STATE(885), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21412] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(143), 1, - sym_module_body, + [22108] = 4, + ACTIONS(2670), 1, + anon_sym_RPAREN, + ACTIONS(2672), 1, + anon_sym_COMMA, + STATE(965), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21426] = 4, - ACTIONS(387), 1, - anon_sym_RBRACE, - ACTIONS(2652), 1, + [22122] = 4, + ACTIONS(2546), 1, anon_sym_COMMA, - STATE(862), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2674), 1, + anon_sym_RPAREN, + STATE(873), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22136] = 4, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(2676), 1, + anon_sym_RPAREN, + STATE(885), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21440] = 4, - ACTIONS(2654), 1, + [22150] = 4, + ACTIONS(1834), 1, anon_sym_COMMA, - ACTIONS(2656), 1, + ACTIONS(2678), 1, anon_sym_SEMI, - STATE(953), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(946), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21454] = 4, - ACTIONS(1272), 1, + [22164] = 3, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(144), 1, - sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21468] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2658), 1, + ACTIONS(2680), 2, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2660), 1, - anon_sym_to, + [22176] = 4, + ACTIONS(963), 1, + anon_sym_RPAREN, + ACTIONS(2682), 1, + anon_sym_SEMI, + STATE(923), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21482] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2662), 1, - anon_sym_SEMI, - ACTIONS(2664), 1, - anon_sym_to, + [22190] = 4, + ACTIONS(2546), 1, + anon_sym_COMMA, + ACTIONS(2674), 1, + anon_sym_RPAREN, + STATE(874), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21496] = 4, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(2599), 1, - anon_sym_STAR, - STATE(1144), 1, - sym_asterisk, + [22204] = 4, + ACTIONS(2628), 1, + anon_sym_COMMA, + ACTIONS(2684), 1, + anon_sym_GT, + STATE(903), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22218] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21510] = 4, - ACTIONS(1800), 1, + ACTIONS(2686), 3, anon_sym_COMMA, - ACTIONS(2666), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + [22228] = 4, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(2688), 1, anon_sym_RPAREN, - STATE(852), 1, + STATE(885), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21524] = 4, - ACTIONS(2599), 1, - anon_sym_STAR, - ACTIONS(2616), 1, - sym_identifier, - STATE(1145), 1, - sym_asterisk, + [22242] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21538] = 4, - ACTIONS(2422), 1, + ACTIONS(2397), 3, anon_sym_COMMA, - ACTIONS(2668), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + [22252] = 4, + ACTIONS(2450), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_RPAREN, + STATE(884), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21552] = 4, + [22266] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2692), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22276] = 4, ACTIONS(2542), 1, anon_sym_COMMA, - ACTIONS(2670), 1, + ACTIONS(2694), 1, anon_sym_GT, - STATE(897), 1, + STATE(887), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21566] = 4, - ACTIONS(2422), 1, + [22290] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2672), 1, + ACTIONS(2696), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(917), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21580] = 4, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2674), 1, + [22304] = 4, + ACTIONS(2672), 1, + anon_sym_COMMA, + ACTIONS(2698), 1, anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, + STATE(948), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21594] = 4, - ACTIONS(2422), 1, + [22318] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2676), 1, + ACTIONS(2700), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(917), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21608] = 4, - ACTIONS(2678), 1, - anon_sym_GT, - ACTIONS(2680), 1, + [22332] = 4, + ACTIONS(597), 1, + anon_sym_RBRACE, + ACTIONS(2702), 1, anon_sym_COMMA, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + STATE(908), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21622] = 4, - ACTIONS(2422), 1, + [22346] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2683), 1, + ACTIONS(2704), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(917), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21636] = 4, - ACTIONS(1800), 1, + [22360] = 4, + ACTIONS(2706), 1, anon_sym_COMMA, - ACTIONS(2685), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2709), 1, + anon_sym_SEMI, + STATE(946), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21650] = 4, - ACTIONS(2422), 1, + [22374] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2687), 1, + ACTIONS(2711), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(917), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21664] = 3, - ACTIONS(2338), 1, - sym_identifier, + [22388] = 4, + ACTIONS(2672), 1, + anon_sym_COMMA, + ACTIONS(2713), 1, + anon_sym_RPAREN, + STATE(952), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 2, - anon_sym_open, - anon_sym_module, - [21676] = 4, - ACTIONS(2422), 1, + [22402] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2689), 1, + ACTIONS(2715), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(917), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21690] = 4, - ACTIONS(1790), 1, + [22416] = 4, + ACTIONS(1121), 1, anon_sym_COMMA, - ACTIONS(2691), 1, - anon_sym_SEMI, - STATE(867), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2717), 1, + anon_sym_RPAREN, + STATE(886), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21704] = 4, - ACTIONS(2422), 1, + [22430] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2693), 1, + ACTIONS(2719), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(917), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21718] = 4, - ACTIONS(1838), 1, + [22444] = 4, + ACTIONS(2721), 1, + anon_sym_RPAREN, + ACTIONS(2723), 1, anon_sym_COMMA, - ACTIONS(1840), 1, - anon_sym_RBRACE, - STATE(949), 1, - aux_sym_array_initializer_repeat1, + STATE(952), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21732] = 4, - ACTIONS(2422), 1, + [22458] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2695), 1, + ACTIONS(2726), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(917), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21746] = 4, - ACTIONS(2509), 1, + [22472] = 4, + ACTIONS(2728), 1, anon_sym_COMMA, - ACTIONS(2697), 1, - anon_sym_GT, - STATE(946), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2730), 1, + anon_sym_RBRACE, + STATE(963), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21760] = 2, + [22486] = 4, + ACTIONS(2487), 1, + anon_sym_COMMA, + ACTIONS(2732), 1, + anon_sym_SEMI, + STATE(917), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2699), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [21770] = 4, - ACTIONS(2400), 1, + [22500] = 4, + ACTIONS(2597), 1, anon_sym_COMMA, - ACTIONS(2701), 1, + ACTIONS(2734), 1, anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(889), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21784] = 4, - ACTIONS(941), 1, + [22514] = 4, + ACTIONS(2672), 1, + anon_sym_COMMA, + ACTIONS(2736), 1, anon_sym_RPAREN, - ACTIONS(2703), 1, - anon_sym_SEMI, - STATE(850), 1, - aux_sym_resource_specification_repeat1, + STATE(959), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21798] = 4, - ACTIONS(2400), 1, + [22528] = 4, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2705), 1, + ACTIONS(2738), 1, anon_sym_SEMI, - STATE(879), 1, + STATE(897), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21812] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_SEMI, - STATE(372), 1, - sym_block, + [22542] = 4, + ACTIONS(2672), 1, + anon_sym_COMMA, + ACTIONS(2740), 1, + anon_sym_RPAREN, + STATE(952), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21826] = 4, - ACTIONS(2400), 1, + [22556] = 4, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2709), 1, + ACTIONS(2742), 1, anon_sym_SEMI, - STATE(879), 1, + STATE(897), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21840] = 4, - ACTIONS(2536), 1, + [22570] = 4, + ACTIONS(1812), 1, anon_sym_COMMA, - ACTIONS(2711), 1, - anon_sym_RPAREN, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2469), 1, + anon_sym_COLON, + STATE(851), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21854] = 4, - ACTIONS(2400), 1, + [22584] = 4, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2713), 1, + ACTIONS(2744), 1, anon_sym_SEMI, - STATE(879), 1, + STATE(897), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21868] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2715), 1, - anon_sym_SEMI, - ACTIONS(2717), 1, - anon_sym_to, + [22598] = 4, + ACTIONS(547), 1, + anon_sym_RBRACE, + ACTIONS(2746), 1, + anon_sym_COMMA, + STATE(875), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21882] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2719), 1, + [22612] = 4, + ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2748), 1, anon_sym_SEMI, - ACTIONS(2721), 1, - anon_sym_to, + STATE(897), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21896] = 4, - ACTIONS(2723), 1, - anon_sym_GT, - ACTIONS(2725), 1, + [22626] = 4, + ACTIONS(2672), 1, anon_sym_COMMA, - STATE(946), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2750), 1, + anon_sym_RPAREN, + STATE(952), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21910] = 4, - ACTIONS(2064), 1, + [22640] = 4, + ACTIONS(2100), 1, anon_sym_default, - ACTIONS(2728), 1, + ACTIONS(2752), 1, anon_sym_SEMI, - STATE(1107), 1, + STATE(1131), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21924] = 4, - ACTIONS(1796), 1, - anon_sym_COMMA, - ACTIONS(2730), 1, - anon_sym_RPAREN, - STATE(816), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21938] = 4, - ACTIONS(599), 1, - anon_sym_RBRACE, - ACTIONS(2732), 1, + [22654] = 4, + ACTIONS(1808), 1, anon_sym_COMMA, - STATE(870), 1, - aux_sym_array_initializer_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21952] = 4, - ACTIONS(1246), 1, + ACTIONS(2754), 1, anon_sym_RPAREN, - ACTIONS(2607), 1, - anon_sym_COMMA, - STATE(903), 1, - aux_sym_formal_parameters_repeat1, + STATE(885), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21966] = 4, - ACTIONS(2536), 1, - anon_sym_COMMA, - ACTIONS(2734), 1, - anon_sym_RPAREN, - STATE(859), 1, - aux_sym_annotation_argument_list_repeat1, + [22668] = 4, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2756), 1, + anon_sym_SEMI, + ACTIONS(2758), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21980] = 4, - ACTIONS(1796), 1, - anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_COLON, - STATE(816), 1, - aux_sym_argument_list_repeat1, + [22682] = 4, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2760), 1, + anon_sym_SEMI, + ACTIONS(2762), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21994] = 4, - ACTIONS(2654), 1, - anon_sym_COMMA, - ACTIONS(2736), 1, + [22696] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(2764), 1, anon_sym_SEMI, - STATE(908), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(379), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22008] = 3, - ACTIONS(1278), 1, + [22710] = 4, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2738), 1, - anon_sym_with, + ACTIONS(2766), 1, + anon_sym_SEMI, + ACTIONS(2768), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22019] = 3, - ACTIONS(1284), 1, + [22724] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(109), 1, + STATE(81), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22030] = 2, + [22735] = 3, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(347), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 2, - anon_sym_LBRACE, - anon_sym_permits, - [22039] = 3, - ACTIONS(2108), 1, + [22746] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(98), 1, - sym_interface_body, + STATE(125), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22050] = 3, - ACTIONS(939), 1, + [22757] = 3, + ACTIONS(955), 1, anon_sym_LPAREN, - STATE(1031), 1, + STATE(1014), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22061] = 3, - ACTIONS(2108), 1, + [22768] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(90), 1, - sym_interface_body, + STATE(128), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22072] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(1106), 1, - sym_argument_list, + [22779] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22083] = 3, - ACTIONS(1045), 1, + ACTIONS(2770), 2, + anon_sym_LBRACE, + anon_sym_permits, + [22788] = 3, + ACTIONS(955), 1, anon_sym_LPAREN, - STATE(383), 1, - sym_argument_list, + STATE(38), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22094] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(40), 1, - sym_parenthesized_expression, + [22799] = 3, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(129), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22105] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(398), 1, - sym_argument_list, + [22810] = 3, + ACTIONS(2772), 1, + sym_identifier, + ACTIONS(2774), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22116] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(349), 1, - sym_argument_list, + [22821] = 3, + ACTIONS(2776), 1, + sym_identifier, + ACTIONS(2778), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22127] = 3, - ACTIONS(1284), 1, + [22832] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(79), 1, + STATE(118), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22138] = 3, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2744), 1, - anon_sym_SEMI, + [22843] = 3, + ACTIONS(2780), 1, + anon_sym_LBRACE, + STATE(74), 1, + sym_annotation_type_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22854] = 3, + ACTIONS(2782), 1, + anon_sym_DASH_GT, + ACTIONS(2784), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22149] = 2, + [22865] = 3, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22158] = 3, - ACTIONS(2382), 1, + [22876] = 3, + ACTIONS(2425), 1, anon_sym_LBRACE, - STATE(78), 1, - sym_enum_body, + STATE(374), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22169] = 3, - ACTIONS(2108), 1, + [22887] = 3, + ACTIONS(2134), 1, anon_sym_LBRACE, - STATE(74), 1, + STATE(130), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22180] = 2, + [22898] = 3, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22189] = 2, + [22909] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [22198] = 3, - ACTIONS(1284), 1, + ACTIONS(2786), 2, anon_sym_LBRACE, - STATE(131), 1, - sym_class_body, + anon_sym_throws, + [22918] = 3, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(668), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22209] = 2, + [22929] = 3, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(672), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22218] = 3, - ACTIONS(2754), 1, - sym_identifier, - ACTIONS(2756), 1, - anon_sym_SEMI, + [22940] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22229] = 2, + ACTIONS(2788), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [22949] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22238] = 3, - ACTIONS(491), 1, + ACTIONS(2790), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [22958] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(416), 1, - sym_array_initializer, + STATE(123), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22249] = 3, - ACTIONS(491), 1, - anon_sym_LBRACE, - STATE(400), 1, - sym_array_initializer, + [22969] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22260] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym_argument_list, + ACTIONS(2792), 2, + sym_this, + sym_super, + [22978] = 3, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(113), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22271] = 3, - ACTIONS(2758), 1, - anon_sym_DOT, - ACTIONS(2760), 1, - anon_sym_SEMI, + [22989] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22282] = 3, - ACTIONS(1284), 1, + ACTIONS(2794), 2, anon_sym_LBRACE, - STATE(120), 1, + anon_sym_permits, + [22998] = 3, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(98), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22293] = 3, - ACTIONS(1045), 1, + [23009] = 3, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(70), 1, + sym_interface_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23020] = 3, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(68), 1, + sym_interface_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23031] = 3, + ACTIONS(1577), 1, + anon_sym_COLON_COLON, + ACTIONS(2380), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23042] = 3, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(1103), 1, + STATE(394), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22304] = 2, + [23053] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2762), 2, + ACTIONS(2637), 2, anon_sym_GT, anon_sym_COMMA, - [22313] = 2, + [23062] = 3, + ACTIONS(397), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22322] = 3, - ACTIONS(939), 1, + [23073] = 3, + ACTIONS(1039), 1, anon_sym_LPAREN, - STATE(1114), 1, - sym_parenthesized_expression, + STATE(383), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22333] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_class_body, + [23084] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22344] = 2, + ACTIONS(2796), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23093] = 3, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(90), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22353] = 3, - ACTIONS(2108), 1, + [23104] = 3, + ACTIONS(397), 1, anon_sym_LBRACE, - STATE(127), 1, - sym_interface_body, + STATE(424), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22364] = 2, + [23115] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2678), 2, + ACTIONS(2798), 2, anon_sym_GT, anon_sym_COMMA, - [22373] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(145), 1, - sym_block, + [23124] = 3, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(350), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22384] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(126), 1, - sym_class_body, + [23135] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22395] = 3, - ACTIONS(1284), 1, + ACTIONS(2556), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [23144] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(125), 1, + STATE(377), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22406] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2766), 2, - anon_sym_GT, - anon_sym_COMMA, - [22415] = 2, + [23155] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 2, + ACTIONS(2300), 2, anon_sym_GT, anon_sym_COMMA, - [22424] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, + [23164] = 3, + ACTIONS(2800), 1, + anon_sym_LBRACE, + STATE(51), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22435] = 3, - ACTIONS(1284), 1, + [23175] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(124), 1, + STATE(91), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22446] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(1040), 1, - sym_formal_parameters, + [23186] = 3, + ACTIONS(2461), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22457] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(397), 1, - sym_argument_list, + [23197] = 3, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(101), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22468] = 3, - ACTIONS(2770), 1, + [23208] = 3, + ACTIONS(2497), 1, anon_sym_LBRACE, - STATE(76), 1, - sym_annotation_type_body, + STATE(89), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22479] = 2, + [23219] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 2, + ACTIONS(2548), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23228] = 3, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_throws, - [22488] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(399), 1, - sym_argument_list, + STATE(209), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22499] = 3, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(2776), 1, - anon_sym_SEMI, + [23239] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22510] = 3, - ACTIONS(2334), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_constructor_body, + ACTIONS(2802), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23248] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22521] = 3, - ACTIONS(2778), 1, - anon_sym_DOT, - ACTIONS(2780), 1, + ACTIONS(2804), 2, + anon_sym_COMMA, anon_sym_SEMI, + [23257] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22532] = 3, - ACTIONS(2782), 1, - anon_sym_DASH_GT, - ACTIONS(2784), 1, - anon_sym_COLON, + ACTIONS(2806), 2, + anon_sym_AMP, + anon_sym_RPAREN, + [23266] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2808), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23275] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22543] = 2, + ACTIONS(2810), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23284] = 3, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2812), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22552] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(70), 1, - sym_class_body, + [23295] = 3, + ACTIONS(2497), 1, + anon_sym_LBRACE, + STATE(57), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22563] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2788), 1, - anon_sym_SEMI, + [23306] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22574] = 3, - ACTIONS(1272), 1, + ACTIONS(2583), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23315] = 3, + ACTIONS(1286), 1, anon_sym_DOT, - ACTIONS(2790), 1, + ACTIONS(2814), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22585] = 3, - ACTIONS(1278), 1, + [23326] = 3, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2792), 1, + ACTIONS(2816), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22596] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2794), 1, - anon_sym_SEMI, + [23337] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22607] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2796), 1, - anon_sym_SEMI, + ACTIONS(2818), 2, + anon_sym_GT, + anon_sym_COMMA, + [23346] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22618] = 3, - ACTIONS(1278), 1, + ACTIONS(2588), 2, + anon_sym_GT, + anon_sym_COMMA, + [23355] = 3, + ACTIONS(1280), 1, anon_sym_DOT, - ACTIONS(2798), 1, - anon_sym_SEMI, + ACTIONS(2820), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22629] = 3, - ACTIONS(1278), 1, + [23366] = 3, + ACTIONS(1286), 1, anon_sym_DOT, - ACTIONS(2800), 1, + ACTIONS(2822), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22640] = 3, - ACTIONS(2802), 1, - anon_sym_DOT, - ACTIONS(2804), 1, - anon_sym_SEMI, + [23377] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22651] = 3, - ACTIONS(2406), 1, + ACTIONS(2824), 2, anon_sym_LBRACE, - STATE(59), 1, - sym_block, + anon_sym_throws, + [23386] = 3, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(1152), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22662] = 2, + [23397] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2638), 2, - anon_sym_RPAREN, + ACTIONS(2826), 2, + anon_sym_GT, anon_sym_COMMA, - [22671] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(66), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22682] = 2, + [23406] = 3, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2828), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22691] = 2, + [23417] = 3, + ACTIONS(2830), 1, + anon_sym_DOT, + ACTIONS(2832), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 2, - anon_sym_LBRACE, + [23428] = 3, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2834), 1, anon_sym_SEMI, - [22700] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(105), 1, - sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22711] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(110), 1, - sym_class_body, + [23439] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22722] = 2, + ACTIONS(2836), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23448] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 2, + ACTIONS(2838), 2, anon_sym_new, sym_identifier, - [22731] = 3, - ACTIONS(1284), 1, + [23457] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(71), 1, + STATE(357), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22742] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_block, + [23468] = 3, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22753] = 3, - ACTIONS(2406), 1, - anon_sym_LBRACE, - STATE(107), 1, - sym_block, + [23479] = 3, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(1012), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22764] = 3, - ACTIONS(1284), 1, + [23490] = 3, + ACTIONS(2134), 1, anon_sym_LBRACE, - STATE(112), 1, - sym_class_body, + STATE(97), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22775] = 2, + [23501] = 3, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(1043), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 2, + [23512] = 3, + ACTIONS(2461), 1, anon_sym_LBRACE, - anon_sym_permits, - [22784] = 2, + STATE(131), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [22793] = 3, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, + [23523] = 3, + ACTIONS(2842), 1, anon_sym_DOT, + ACTIONS(2844), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22804] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(106), 1, - sym_class_body, + [23534] = 3, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2846), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22815] = 3, - ACTIONS(2814), 1, - anon_sym_LBRACE, - STATE(49), 1, - sym_switch_block, + [23545] = 3, + ACTIONS(2848), 1, + anon_sym_DOT, + ACTIONS(2850), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22826] = 2, + [23556] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 2, - anon_sym_GT, + ACTIONS(1870), 2, anon_sym_COMMA, - [22835] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2816), 2, - sym_this, - sym_super, - [22844] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_formal_parameters, + anon_sym_RBRACE, + [23565] = 3, + ACTIONS(2425), 1, + anon_sym_LBRACE, + STATE(362), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22855] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(654), 1, - sym_formal_parameters, + [23576] = 3, + ACTIONS(2852), 1, + anon_sym_DOT, + ACTIONS(2854), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22866] = 2, + [23587] = 3, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2856), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 2, + [23598] = 3, + ACTIONS(2780), 1, anon_sym_LBRACE, - anon_sym_throws, - [22875] = 3, - ACTIONS(2820), 1, - sym_identifier, - STATE(1016), 1, - sym_element_value_pair, + STATE(95), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22886] = 3, - ACTIONS(2334), 1, + [23609] = 3, + ACTIONS(27), 1, anon_sym_LBRACE, - STATE(357), 1, - sym_constructor_body, + STATE(147), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22897] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(985), 1, - sym_formal_parameters, + [23620] = 3, + ACTIONS(2858), 1, + sym_identifier, + STATE(1068), 1, + sym_element_value_pair, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22908] = 3, - ACTIONS(1284), 1, + [23631] = 3, + ACTIONS(2134), 1, anon_sym_LBRACE, - STATE(358), 1, - sym_class_body, + STATE(77), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22919] = 2, + [23642] = 3, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 2, - anon_sym_GT, - anon_sym_COMMA, - [22928] = 2, + [23653] = 3, + ACTIONS(2134), 1, + anon_sym_LBRACE, + STATE(111), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2723), 2, - anon_sym_GT, - anon_sym_COMMA, - [22937] = 3, - ACTIONS(2770), 1, + [23664] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(101), 1, - sym_annotation_type_body, + STATE(67), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22948] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2824), 1, - anon_sym_SEMI, + [23675] = 3, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(1161), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22959] = 3, - ACTIONS(2108), 1, + [23686] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(100), 1, - sym_interface_body, + STATE(114), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22970] = 3, - ACTIONS(2108), 1, + [23697] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(96), 1, - sym_interface_body, + STATE(76), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22981] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2826), 1, - anon_sym_SEMI, + [23708] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22992] = 3, - ACTIONS(1284), 1, + ACTIONS(2860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23717] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(95), 1, + STATE(115), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23003] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(94), 1, - sym_class_body, + [23728] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23014] = 3, - ACTIONS(1284), 1, + ACTIONS(2721), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23737] = 3, + ACTIONS(1292), 1, anon_sym_LBRACE, - STATE(89), 1, + STATE(133), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23025] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2828), 1, - anon_sym_SEMI, + [23748] = 3, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(1130), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23036] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2830), 1, - anon_sym_SEMI, + [23759] = 3, + ACTIONS(397), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23047] = 2, + [23770] = 3, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(402), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23056] = 3, - ACTIONS(2108), 1, + [23781] = 3, + ACTIONS(397), 1, anon_sym_LBRACE, - STATE(84), 1, - sym_interface_body, + STATE(401), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23067] = 2, + [23792] = 3, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(385), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23076] = 2, + [23803] = 3, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2862), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2834), 2, - anon_sym_AMP, - anon_sym_RPAREN, - [23085] = 2, + [23814] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 2, + ACTIONS(2659), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [23094] = 3, - ACTIONS(2382), 1, - anon_sym_LBRACE, - STATE(121), 1, - sym_enum_body, + anon_sym_SEMI, + [23823] = 3, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(2864), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23105] = 2, + [23834] = 3, + ACTIONS(1286), 1, + anon_sym_DOT, + ACTIONS(2866), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23114] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2838), 1, - anon_sym_with, + [23845] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23125] = 3, - ACTIONS(1272), 1, + ACTIONS(2868), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23854] = 3, + ACTIONS(1286), 1, anon_sym_DOT, - ACTIONS(2840), 1, + ACTIONS(2870), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23136] = 2, - ACTIONS(2597), 1, - sym_identifier, + [23865] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23144] = 2, - ACTIONS(2842), 1, - anon_sym_SEMI, + ACTIONS(2872), 2, + anon_sym_GT, + anon_sym_COMMA, + [23874] = 2, + ACTIONS(1899), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23152] = 2, - ACTIONS(2844), 1, - anon_sym_SEMI, + [23882] = 2, + ACTIONS(2874), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23160] = 2, - ACTIONS(2846), 1, - anon_sym_SEMI, + [23890] = 2, + ACTIONS(2876), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23168] = 2, - ACTIONS(2848), 1, - anon_sym_DASH_GT, + [23898] = 2, + ACTIONS(2878), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23176] = 2, - ACTIONS(1875), 1, - anon_sym_RBRACE, + [23906] = 2, + ACTIONS(2880), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23184] = 2, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, + [23914] = 2, + ACTIONS(2882), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23192] = 2, - ACTIONS(2850), 1, - anon_sym_module, + [23922] = 2, + ACTIONS(2884), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23200] = 2, - ACTIONS(933), 1, - anon_sym_RBRACK, + [23930] = 2, + ACTIONS(2886), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23208] = 2, - ACTIONS(2852), 1, - anon_sym_DOT, + [23938] = 2, + ACTIONS(2888), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23216] = 2, - ACTIONS(2854), 1, + [23946] = 2, + ACTIONS(2890), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23224] = 2, - ACTIONS(1058), 1, - anon_sym_DASH_GT, + [23954] = 2, + ACTIONS(2892), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23232] = 2, - ACTIONS(2856), 1, - anon_sym_SEMI, + [23962] = 2, + ACTIONS(921), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23240] = 2, - ACTIONS(2858), 1, - ts_builtin_sym_end, + [23970] = 2, + ACTIONS(2894), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23248] = 2, - ACTIONS(2860), 1, - anon_sym_EQ, + [23978] = 2, + ACTIONS(2896), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23256] = 2, - ACTIONS(2523), 1, - anon_sym_RBRACE, + [23986] = 2, + ACTIONS(2782), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23264] = 2, - ACTIONS(2862), 1, + [23994] = 2, + ACTIONS(2898), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23272] = 2, - ACTIONS(2864), 1, - anon_sym_RPAREN, + [24002] = 2, + ACTIONS(2900), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23280] = 2, - ACTIONS(2734), 1, - anon_sym_RPAREN, + [24010] = 2, + ACTIONS(2902), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23288] = 2, - ACTIONS(2866), 1, - anon_sym_while, + [24018] = 2, + ACTIONS(2784), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23296] = 2, - ACTIONS(2868), 1, - anon_sym_LBRACE, + [24026] = 2, + ACTIONS(2904), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23304] = 2, - ACTIONS(2782), 1, - anon_sym_DASH_GT, + [24034] = 2, + ACTIONS(2593), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23312] = 2, - ACTIONS(2784), 1, - anon_sym_COLON, + [24042] = 2, + ACTIONS(2633), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23320] = 2, - ACTIONS(2870), 1, + [24050] = 2, + ACTIONS(2906), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23328] = 2, - ACTIONS(2872), 1, - anon_sym_LBRACE, + [24058] = 2, + ACTIONS(2908), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23336] = 2, - ACTIONS(2874), 1, + [24066] = 2, + ACTIONS(2910), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23344] = 2, - ACTIONS(2876), 1, - sym_identifier, + [24074] = 2, + ACTIONS(2642), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23352] = 2, - ACTIONS(2878), 1, + [24082] = 2, + ACTIONS(2912), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23360] = 2, - ACTIONS(2880), 1, - anon_sym_LBRACE, + [24090] = 2, + ACTIONS(2914), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23368] = 2, - ACTIONS(2882), 1, + [24098] = 2, + ACTIONS(2916), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23376] = 2, - ACTIONS(2634), 1, - anon_sym_DOT, + [24106] = 2, + ACTIONS(903), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23384] = 2, - ACTIONS(2884), 1, - anon_sym_EQ, + [24114] = 2, + ACTIONS(2918), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23392] = 2, - ACTIONS(1873), 1, - anon_sym_RBRACE, + [24122] = 2, + ACTIONS(2920), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23400] = 2, - ACTIONS(2886), 1, + [24130] = 2, + ACTIONS(2922), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23408] = 2, - ACTIONS(2888), 1, - anon_sym_SEMI, + [24138] = 2, + ACTIONS(2924), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23416] = 2, - ACTIONS(2890), 1, + [24146] = 2, + ACTIONS(2926), 1, + sym_this, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24154] = 2, + ACTIONS(2928), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23424] = 2, - ACTIONS(2892), 1, - sym_identifier, + [24162] = 2, + ACTIONS(2930), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23432] = 2, - ACTIONS(2894), 1, - anon_sym_RPAREN, + [24170] = 2, + ACTIONS(2932), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23440] = 2, - ACTIONS(2896), 1, - sym_this, + [24178] = 2, + ACTIONS(2934), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23448] = 2, - ACTIONS(2898), 1, - sym_identifier, + [24186] = 2, + ACTIONS(1874), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23456] = 2, - ACTIONS(2900), 1, - anon_sym_DASH_GT, + [24194] = 2, + ACTIONS(911), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23464] = 2, - ACTIONS(2902), 1, + [24202] = 2, + ACTIONS(2936), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23472] = 2, - ACTIONS(2904), 1, - anon_sym_LPAREN, + [24210] = 2, + ACTIONS(2938), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23480] = 2, - ACTIONS(2906), 1, - anon_sym_LBRACE, + [24218] = 2, + ACTIONS(2940), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23488] = 2, - ACTIONS(2908), 1, - anon_sym_SEMI, + [24226] = 2, + ACTIONS(2730), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23496] = 2, - ACTIONS(2910), 1, + [24234] = 2, + ACTIONS(2942), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23504] = 2, - ACTIONS(2912), 1, - anon_sym_SEMI, + [24242] = 2, + ACTIONS(2944), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23512] = 2, - ACTIONS(921), 1, - anon_sym_RBRACK, + [24250] = 2, + ACTIONS(2946), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23520] = 2, - ACTIONS(2914), 1, + [24258] = 2, + ACTIONS(2948), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23528] = 2, - ACTIONS(2916), 1, - anon_sym_EQ, + [24266] = 2, + ACTIONS(2950), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23536] = 2, - ACTIONS(1840), 1, - anon_sym_RBRACE, + [24274] = 2, + ACTIONS(2952), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23544] = 2, - ACTIONS(2918), 1, - anon_sym_SEMI, + [24282] = 2, + ACTIONS(2954), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23552] = 2, - ACTIONS(2920), 1, + [24290] = 2, + ACTIONS(2956), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23560] = 2, - ACTIONS(2616), 1, - sym_identifier, + [24298] = 2, + ACTIONS(1577), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23568] = 2, - ACTIONS(2922), 1, - anon_sym_LPAREN, + [24306] = 2, + ACTIONS(2958), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23576] = 2, - ACTIONS(2924), 1, - sym_this, + [24314] = 2, + ACTIONS(929), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23584] = 2, - ACTIONS(2926), 1, + [24322] = 2, + ACTIONS(2960), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23592] = 2, - ACTIONS(2928), 1, - sym_identifier, + [24330] = 2, + ACTIONS(2962), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23600] = 2, - ACTIONS(2930), 1, - sym_identifier, + [24338] = 2, + ACTIONS(1052), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23608] = 2, - ACTIONS(2932), 1, - anon_sym_RBRACE, + [24346] = 2, + ACTIONS(2964), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23616] = 2, - ACTIONS(2934), 1, + [24354] = 2, + ACTIONS(2966), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23624] = 2, - ACTIONS(2936), 1, - anon_sym_SEMI, + [24362] = 2, + ACTIONS(2968), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23632] = 2, - ACTIONS(925), 1, - anon_sym_RBRACK, + [24370] = 2, + ACTIONS(2698), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23640] = 2, - ACTIONS(2938), 1, - anon_sym_RPAREN, + [24378] = 2, + ACTIONS(2327), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23648] = 2, - ACTIONS(2940), 1, + [24386] = 2, + ACTIONS(2970), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23656] = 2, - ACTIONS(929), 1, - anon_sym_RBRACK, + [24394] = 2, + ACTIONS(2972), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23664] = 2, - ACTIONS(2942), 1, - anon_sym_DASH_GT, + [24402] = 2, + ACTIONS(2974), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23672] = 2, - ACTIONS(2603), 1, - anon_sym_RPAREN, + [24410] = 2, + ACTIONS(2976), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23680] = 2, - ACTIONS(2944), 1, - anon_sym_class, + [24418] = 2, + ACTIONS(2978), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23688] = 2, - ACTIONS(2946), 1, - sym_identifier, + [24426] = 2, + ACTIONS(2736), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23696] = 2, - ACTIONS(2948), 1, - sym_identifier, + [24434] = 2, + ACTIONS(2980), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23704] = 2, - ACTIONS(2950), 1, + [24442] = 2, + ACTIONS(2982), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23712] = 2, - ACTIONS(2952), 1, + [24450] = 2, + ACTIONS(2984), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23720] = 2, - ACTIONS(2954), 1, - sym_identifier, + [24458] = 2, + ACTIONS(2986), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23728] = 2, - ACTIONS(2578), 1, + [24466] = 2, + ACTIONS(2670), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23736] = 2, - ACTIONS(2956), 1, - sym_identifier, + [24474] = 2, + ACTIONS(2988), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23744] = 2, - ACTIONS(2958), 1, - anon_sym_SEMI, + [24482] = 2, + ACTIONS(2990), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23752] = 2, - ACTIONS(2960), 1, - sym_identifier, + [24490] = 2, + ACTIONS(2992), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23760] = 2, - ACTIONS(2962), 1, - anon_sym_SEMI, + [24498] = 2, + ACTIONS(2994), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23768] = 2, - ACTIONS(2964), 1, - sym_identifier, + [24506] = 2, + ACTIONS(2996), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23776] = 2, - ACTIONS(2290), 1, + [24514] = 2, + ACTIONS(1850), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23784] = 2, - ACTIONS(2966), 1, - sym_identifier, + [24522] = 2, + ACTIONS(2998), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23792] = 2, - ACTIONS(2968), 1, - anon_sym_SEMI, + [24530] = 2, + ACTIONS(3000), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23800] = 2, - ACTIONS(2970), 1, + [24538] = 2, + ACTIONS(3002), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23808] = 2, - ACTIONS(2972), 1, - anon_sym_SEMI, + [24546] = 2, + ACTIONS(3004), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -52918,7 +53556,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(302)] = 354, [SMALL_STATE(303)] = 472, [SMALL_STATE(304)] = 590, - [SMALL_STATE(305)] = 693, + [SMALL_STATE(305)] = 673, [SMALL_STATE(306)] = 776, [SMALL_STATE(307)] = 879, [SMALL_STATE(308)] = 982, @@ -52928,838 +53566,858 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(312)] = 1273, [SMALL_STATE(313)] = 1333, [SMALL_STATE(314)] = 1393, - [SMALL_STATE(315)] = 1456, + [SMALL_STATE(315)] = 1480, [SMALL_STATE(316)] = 1543, [SMALL_STATE(317)] = 1630, [SMALL_STATE(318)] = 1717, - [SMALL_STATE(319)] = 1791, - [SMALL_STATE(320)] = 1845, - [SMALL_STATE(321)] = 1899, + [SMALL_STATE(319)] = 1771, + [SMALL_STATE(320)] = 1839, + [SMALL_STATE(321)] = 1913, [SMALL_STATE(322)] = 1967, [SMALL_STATE(323)] = 2021, [SMALL_STATE(324)] = 2078, [SMALL_STATE(325)] = 2151, [SMALL_STATE(326)] = 2211, - [SMALL_STATE(327)] = 2274, - [SMALL_STATE(328)] = 2337, + [SMALL_STATE(327)] = 2272, + [SMALL_STATE(328)] = 2335, [SMALL_STATE(329)] = 2398, - [SMALL_STATE(330)] = 2452, - [SMALL_STATE(331)] = 2502, - [SMALL_STATE(332)] = 2552, - [SMALL_STATE(333)] = 2634, - [SMALL_STATE(334)] = 2691, - [SMALL_STATE(335)] = 2747, - [SMALL_STATE(336)] = 2821, - [SMALL_STATE(337)] = 2877, - [SMALL_STATE(338)] = 2934, - [SMALL_STATE(339)] = 3005, - [SMALL_STATE(340)] = 3062, - [SMALL_STATE(341)] = 3135, - [SMALL_STATE(342)] = 3187, - [SMALL_STATE(343)] = 3239, - [SMALL_STATE(344)] = 3285, - [SMALL_STATE(345)] = 3331, - [SMALL_STATE(346)] = 3379, - [SMALL_STATE(347)] = 3427, - [SMALL_STATE(348)] = 3475, - [SMALL_STATE(349)] = 3527, - [SMALL_STATE(350)] = 3575, - [SMALL_STATE(351)] = 3627, - [SMALL_STATE(352)] = 3670, - [SMALL_STATE(353)] = 3713, - [SMALL_STATE(354)] = 3756, - [SMALL_STATE(355)] = 3799, - [SMALL_STATE(356)] = 3842, - [SMALL_STATE(357)] = 3885, - [SMALL_STATE(358)] = 3928, - [SMALL_STATE(359)] = 3971, - [SMALL_STATE(360)] = 4014, - [SMALL_STATE(361)] = 4057, - [SMALL_STATE(362)] = 4100, - [SMALL_STATE(363)] = 4143, - [SMALL_STATE(364)] = 4186, - [SMALL_STATE(365)] = 4229, - [SMALL_STATE(366)] = 4272, - [SMALL_STATE(367)] = 4315, - [SMALL_STATE(368)] = 4364, - [SMALL_STATE(369)] = 4407, - [SMALL_STATE(370)] = 4450, - [SMALL_STATE(371)] = 4493, - [SMALL_STATE(372)] = 4536, - [SMALL_STATE(373)] = 4579, - [SMALL_STATE(374)] = 4628, - [SMALL_STATE(375)] = 4671, - [SMALL_STATE(376)] = 4714, - [SMALL_STATE(377)] = 4757, - [SMALL_STATE(378)] = 4800, - [SMALL_STATE(379)] = 4843, - [SMALL_STATE(380)] = 4886, - [SMALL_STATE(381)] = 4929, - [SMALL_STATE(382)] = 4971, - [SMALL_STATE(383)] = 5013, - [SMALL_STATE(384)] = 5055, - [SMALL_STATE(385)] = 5097, - [SMALL_STATE(386)] = 5139, - [SMALL_STATE(387)] = 5181, - [SMALL_STATE(388)] = 5223, - [SMALL_STATE(389)] = 5265, - [SMALL_STATE(390)] = 5307, - [SMALL_STATE(391)] = 5349, - [SMALL_STATE(392)] = 5393, - [SMALL_STATE(393)] = 5435, - [SMALL_STATE(394)] = 5477, - [SMALL_STATE(395)] = 5519, - [SMALL_STATE(396)] = 5561, - [SMALL_STATE(397)] = 5603, - [SMALL_STATE(398)] = 5645, - [SMALL_STATE(399)] = 5687, - [SMALL_STATE(400)] = 5729, - [SMALL_STATE(401)] = 5771, - [SMALL_STATE(402)] = 5813, - [SMALL_STATE(403)] = 5855, - [SMALL_STATE(404)] = 5897, - [SMALL_STATE(405)] = 5939, - [SMALL_STATE(406)] = 5981, - [SMALL_STATE(407)] = 6023, - [SMALL_STATE(408)] = 6071, - [SMALL_STATE(409)] = 6113, - [SMALL_STATE(410)] = 6155, - [SMALL_STATE(411)] = 6197, - [SMALL_STATE(412)] = 6239, - [SMALL_STATE(413)] = 6281, - [SMALL_STATE(414)] = 6323, - [SMALL_STATE(415)] = 6365, - [SMALL_STATE(416)] = 6407, - [SMALL_STATE(417)] = 6449, - [SMALL_STATE(418)] = 6491, - [SMALL_STATE(419)] = 6533, - [SMALL_STATE(420)] = 6575, - [SMALL_STATE(421)] = 6617, - [SMALL_STATE(422)] = 6663, - [SMALL_STATE(423)] = 6704, - [SMALL_STATE(424)] = 6745, - [SMALL_STATE(425)] = 6786, - [SMALL_STATE(426)] = 6827, - [SMALL_STATE(427)] = 6868, - [SMALL_STATE(428)] = 6913, - [SMALL_STATE(429)] = 6954, - [SMALL_STATE(430)] = 6998, - [SMALL_STATE(431)] = 7037, - [SMALL_STATE(432)] = 7078, - [SMALL_STATE(433)] = 7117, - [SMALL_STATE(434)] = 7156, - [SMALL_STATE(435)] = 7195, - [SMALL_STATE(436)] = 7236, - [SMALL_STATE(437)] = 7275, - [SMALL_STATE(438)] = 7314, - [SMALL_STATE(439)] = 7353, - [SMALL_STATE(440)] = 7394, - [SMALL_STATE(441)] = 7433, - [SMALL_STATE(442)] = 7472, - [SMALL_STATE(443)] = 7511, - [SMALL_STATE(444)] = 7550, - [SMALL_STATE(445)] = 7600, - [SMALL_STATE(446)] = 7656, - [SMALL_STATE(447)] = 7724, - [SMALL_STATE(448)] = 7768, - [SMALL_STATE(449)] = 7814, - [SMALL_STATE(450)] = 7856, - [SMALL_STATE(451)] = 7916, - [SMALL_STATE(452)] = 7954, - [SMALL_STATE(453)] = 8016, - [SMALL_STATE(454)] = 8060, - [SMALL_STATE(455)] = 8124, - [SMALL_STATE(456)] = 8186, - [SMALL_STATE(457)] = 8244, - [SMALL_STATE(458)] = 8312, - [SMALL_STATE(459)] = 8356, - [SMALL_STATE(460)] = 8400, - [SMALL_STATE(461)] = 8468, - [SMALL_STATE(462)] = 8512, - [SMALL_STATE(463)] = 8550, - [SMALL_STATE(464)] = 8588, - [SMALL_STATE(465)] = 8626, - [SMALL_STATE(466)] = 8664, - [SMALL_STATE(467)] = 8732, - [SMALL_STATE(468)] = 8770, - [SMALL_STATE(469)] = 8808, - [SMALL_STATE(470)] = 8846, - [SMALL_STATE(471)] = 8883, - [SMALL_STATE(472)] = 8920, - [SMALL_STATE(473)] = 8962, - [SMALL_STATE(474)] = 9006, - [SMALL_STATE(475)] = 9072, - [SMALL_STATE(476)] = 9142, - [SMALL_STATE(477)] = 9186, - [SMALL_STATE(478)] = 9221, - [SMALL_STATE(479)] = 9274, - [SMALL_STATE(480)] = 9327, - [SMALL_STATE(481)] = 9396, - [SMALL_STATE(482)] = 9455, - [SMALL_STATE(483)] = 9516, - [SMALL_STATE(484)] = 9557, - [SMALL_STATE(485)] = 9622, - [SMALL_STATE(486)] = 9681, - [SMALL_STATE(487)] = 9738, - [SMALL_STATE(488)] = 9807, - [SMALL_STATE(489)] = 9876, - [SMALL_STATE(490)] = 9945, - [SMALL_STATE(491)] = 10014, - [SMALL_STATE(492)] = 10057, - [SMALL_STATE(493)] = 10092, - [SMALL_STATE(494)] = 10127, - [SMALL_STATE(495)] = 10192, - [SMALL_STATE(496)] = 10257, - [SMALL_STATE(497)] = 10322, - [SMALL_STATE(498)] = 10377, - [SMALL_STATE(499)] = 10436, - [SMALL_STATE(500)] = 10505, - [SMALL_STATE(501)] = 10540, - [SMALL_STATE(502)] = 10609, - [SMALL_STATE(503)] = 10668, - [SMALL_STATE(504)] = 10703, - [SMALL_STATE(505)] = 10772, - [SMALL_STATE(506)] = 10807, - [SMALL_STATE(507)] = 10876, - [SMALL_STATE(508)] = 10911, - [SMALL_STATE(509)] = 10980, - [SMALL_STATE(510)] = 11049, - [SMALL_STATE(511)] = 11114, - [SMALL_STATE(512)] = 11149, + [SMALL_STATE(330)] = 2461, + [SMALL_STATE(331)] = 2524, + [SMALL_STATE(332)] = 2574, + [SMALL_STATE(333)] = 2628, + [SMALL_STATE(334)] = 2678, + [SMALL_STATE(335)] = 2760, + [SMALL_STATE(336)] = 2817, + [SMALL_STATE(337)] = 2873, + [SMALL_STATE(338)] = 2947, + [SMALL_STATE(339)] = 3003, + [SMALL_STATE(340)] = 3060, + [SMALL_STATE(341)] = 3131, + [SMALL_STATE(342)] = 3188, + [SMALL_STATE(343)] = 3261, + [SMALL_STATE(344)] = 3307, + [SMALL_STATE(345)] = 3353, + [SMALL_STATE(346)] = 3405, + [SMALL_STATE(347)] = 3457, + [SMALL_STATE(348)] = 3505, + [SMALL_STATE(349)] = 3553, + [SMALL_STATE(350)] = 3601, + [SMALL_STATE(351)] = 3649, + [SMALL_STATE(352)] = 3701, + [SMALL_STATE(353)] = 3753, + [SMALL_STATE(354)] = 3802, + [SMALL_STATE(355)] = 3845, + [SMALL_STATE(356)] = 3888, + [SMALL_STATE(357)] = 3931, + [SMALL_STATE(358)] = 3974, + [SMALL_STATE(359)] = 4017, + [SMALL_STATE(360)] = 4060, + [SMALL_STATE(361)] = 4103, + [SMALL_STATE(362)] = 4146, + [SMALL_STATE(363)] = 4189, + [SMALL_STATE(364)] = 4232, + [SMALL_STATE(365)] = 4275, + [SMALL_STATE(366)] = 4318, + [SMALL_STATE(367)] = 4361, + [SMALL_STATE(368)] = 4404, + [SMALL_STATE(369)] = 4447, + [SMALL_STATE(370)] = 4490, + [SMALL_STATE(371)] = 4533, + [SMALL_STATE(372)] = 4576, + [SMALL_STATE(373)] = 4619, + [SMALL_STATE(374)] = 4662, + [SMALL_STATE(375)] = 4705, + [SMALL_STATE(376)] = 4754, + [SMALL_STATE(377)] = 4797, + [SMALL_STATE(378)] = 4840, + [SMALL_STATE(379)] = 4883, + [SMALL_STATE(380)] = 4926, + [SMALL_STATE(381)] = 4969, + [SMALL_STATE(382)] = 5012, + [SMALL_STATE(383)] = 5055, + [SMALL_STATE(384)] = 5097, + [SMALL_STATE(385)] = 5139, + [SMALL_STATE(386)] = 5181, + [SMALL_STATE(387)] = 5223, + [SMALL_STATE(388)] = 5265, + [SMALL_STATE(389)] = 5307, + [SMALL_STATE(390)] = 5349, + [SMALL_STATE(391)] = 5391, + [SMALL_STATE(392)] = 5433, + [SMALL_STATE(393)] = 5475, + [SMALL_STATE(394)] = 5517, + [SMALL_STATE(395)] = 5559, + [SMALL_STATE(396)] = 5601, + [SMALL_STATE(397)] = 5643, + [SMALL_STATE(398)] = 5685, + [SMALL_STATE(399)] = 5731, + [SMALL_STATE(400)] = 5773, + [SMALL_STATE(401)] = 5815, + [SMALL_STATE(402)] = 5857, + [SMALL_STATE(403)] = 5899, + [SMALL_STATE(404)] = 5941, + [SMALL_STATE(405)] = 5983, + [SMALL_STATE(406)] = 6025, + [SMALL_STATE(407)] = 6069, + [SMALL_STATE(408)] = 6111, + [SMALL_STATE(409)] = 6153, + [SMALL_STATE(410)] = 6195, + [SMALL_STATE(411)] = 6237, + [SMALL_STATE(412)] = 6279, + [SMALL_STATE(413)] = 6321, + [SMALL_STATE(414)] = 6363, + [SMALL_STATE(415)] = 6405, + [SMALL_STATE(416)] = 6447, + [SMALL_STATE(417)] = 6495, + [SMALL_STATE(418)] = 6537, + [SMALL_STATE(419)] = 6579, + [SMALL_STATE(420)] = 6621, + [SMALL_STATE(421)] = 6663, + [SMALL_STATE(422)] = 6705, + [SMALL_STATE(423)] = 6747, + [SMALL_STATE(424)] = 6789, + [SMALL_STATE(425)] = 6831, + [SMALL_STATE(426)] = 6873, + [SMALL_STATE(427)] = 6915, + [SMALL_STATE(428)] = 6957, + [SMALL_STATE(429)] = 7002, + [SMALL_STATE(430)] = 7043, + [SMALL_STATE(431)] = 7084, + [SMALL_STATE(432)] = 7125, + [SMALL_STATE(433)] = 7166, + [SMALL_STATE(434)] = 7207, + [SMALL_STATE(435)] = 7248, + [SMALL_STATE(436)] = 7292, + [SMALL_STATE(437)] = 7333, + [SMALL_STATE(438)] = 7372, + [SMALL_STATE(439)] = 7411, + [SMALL_STATE(440)] = 7450, + [SMALL_STATE(441)] = 7489, + [SMALL_STATE(442)] = 7528, + [SMALL_STATE(443)] = 7567, + [SMALL_STATE(444)] = 7606, + [SMALL_STATE(445)] = 7645, + [SMALL_STATE(446)] = 7684, + [SMALL_STATE(447)] = 7725, + [SMALL_STATE(448)] = 7764, + [SMALL_STATE(449)] = 7805, + [SMALL_STATE(450)] = 7844, + [SMALL_STATE(451)] = 7882, + [SMALL_STATE(452)] = 7950, + [SMALL_STATE(453)] = 7994, + [SMALL_STATE(454)] = 8036, + [SMALL_STATE(455)] = 8104, + [SMALL_STATE(456)] = 8148, + [SMALL_STATE(457)] = 8210, + [SMALL_STATE(458)] = 8248, + [SMALL_STATE(459)] = 8292, + [SMALL_STATE(460)] = 8330, + [SMALL_STATE(461)] = 8368, + [SMALL_STATE(462)] = 8406, + [SMALL_STATE(463)] = 8444, + [SMALL_STATE(464)] = 8512, + [SMALL_STATE(465)] = 8550, + [SMALL_STATE(466)] = 8612, + [SMALL_STATE(467)] = 8668, + [SMALL_STATE(468)] = 8718, + [SMALL_STATE(469)] = 8776, + [SMALL_STATE(470)] = 8820, + [SMALL_STATE(471)] = 8866, + [SMALL_STATE(472)] = 8904, + [SMALL_STATE(473)] = 8964, + [SMALL_STATE(474)] = 9008, + [SMALL_STATE(475)] = 9076, + [SMALL_STATE(476)] = 9140, + [SMALL_STATE(477)] = 9177, + [SMALL_STATE(478)] = 9214, + [SMALL_STATE(479)] = 9258, + [SMALL_STATE(480)] = 9328, + [SMALL_STATE(481)] = 9394, + [SMALL_STATE(482)] = 9438, + [SMALL_STATE(483)] = 9480, + [SMALL_STATE(484)] = 9541, + [SMALL_STATE(485)] = 9610, + [SMALL_STATE(486)] = 9679, + [SMALL_STATE(487)] = 9714, + [SMALL_STATE(488)] = 9783, + [SMALL_STATE(489)] = 9852, + [SMALL_STATE(490)] = 9895, + [SMALL_STATE(491)] = 9942, + [SMALL_STATE(492)] = 9999, + [SMALL_STATE(493)] = 10052, + [SMALL_STATE(494)] = 10087, + [SMALL_STATE(495)] = 10146, + [SMALL_STATE(496)] = 10187, + [SMALL_STATE(497)] = 10256, + [SMALL_STATE(498)] = 10291, + [SMALL_STATE(499)] = 10326, + [SMALL_STATE(500)] = 10385, + [SMALL_STATE(501)] = 10438, + [SMALL_STATE(502)] = 10493, + [SMALL_STATE(503)] = 10562, + [SMALL_STATE(504)] = 10631, + [SMALL_STATE(505)] = 10666, + [SMALL_STATE(506)] = 10731, + [SMALL_STATE(507)] = 10800, + [SMALL_STATE(508)] = 10865, + [SMALL_STATE(509)] = 10934, + [SMALL_STATE(510)] = 10993, + [SMALL_STATE(511)] = 11058, + [SMALL_STATE(512)] = 11127, [SMALL_STATE(513)] = 11196, [SMALL_STATE(514)] = 11261, - [SMALL_STATE(515)] = 11330, - [SMALL_STATE(516)] = 11365, - [SMALL_STATE(517)] = 11430, - [SMALL_STATE(518)] = 11494, - [SMALL_STATE(519)] = 11560, - [SMALL_STATE(520)] = 11624, - [SMALL_STATE(521)] = 11688, - [SMALL_STATE(522)] = 11752, - [SMALL_STATE(523)] = 11816, - [SMALL_STATE(524)] = 11880, - [SMALL_STATE(525)] = 11936, - [SMALL_STATE(526)] = 12000, - [SMALL_STATE(527)] = 12038, - [SMALL_STATE(528)] = 12088, - [SMALL_STATE(529)] = 12138, - [SMALL_STATE(530)] = 12201, - [SMALL_STATE(531)] = 12264, - [SMALL_STATE(532)] = 12327, - [SMALL_STATE(533)] = 12390, - [SMALL_STATE(534)] = 12445, - [SMALL_STATE(535)] = 12508, - [SMALL_STATE(536)] = 12571, - [SMALL_STATE(537)] = 12634, - [SMALL_STATE(538)] = 12689, - [SMALL_STATE(539)] = 12752, - [SMALL_STATE(540)] = 12807, - [SMALL_STATE(541)] = 12870, - [SMALL_STATE(542)] = 12933, - [SMALL_STATE(543)] = 12996, - [SMALL_STATE(544)] = 13059, - [SMALL_STATE(545)] = 13122, - [SMALL_STATE(546)] = 13177, - [SMALL_STATE(547)] = 13240, - [SMALL_STATE(548)] = 13303, - [SMALL_STATE(549)] = 13366, - [SMALL_STATE(550)] = 13429, - [SMALL_STATE(551)] = 13481, - [SMALL_STATE(552)] = 13533, - [SMALL_STATE(553)] = 13591, - [SMALL_STATE(554)] = 13643, - [SMALL_STATE(555)] = 13695, - [SMALL_STATE(556)] = 13747, - [SMALL_STATE(557)] = 13799, - [SMALL_STATE(558)] = 13851, - [SMALL_STATE(559)] = 13903, - [SMALL_STATE(560)] = 13944, - [SMALL_STATE(561)] = 13975, - [SMALL_STATE(562)] = 14012, - [SMALL_STATE(563)] = 14049, - [SMALL_STATE(564)] = 14080, - [SMALL_STATE(565)] = 14129, - [SMALL_STATE(566)] = 14159, - [SMALL_STATE(567)] = 14189, - [SMALL_STATE(568)] = 14235, - [SMALL_STATE(569)] = 14281, - [SMALL_STATE(570)] = 14327, - [SMALL_STATE(571)] = 14373, - [SMALL_STATE(572)] = 14419, - [SMALL_STATE(573)] = 14465, - [SMALL_STATE(574)] = 14511, - [SMALL_STATE(575)] = 14540, - [SMALL_STATE(576)] = 14569, - [SMALL_STATE(577)] = 14604, - [SMALL_STATE(578)] = 14633, - [SMALL_STATE(579)] = 14682, - [SMALL_STATE(580)] = 14717, - [SMALL_STATE(581)] = 14746, - [SMALL_STATE(582)] = 14774, - [SMALL_STATE(583)] = 14802, - [SMALL_STATE(584)] = 14830, - [SMALL_STATE(585)] = 14858, - [SMALL_STATE(586)] = 14886, - [SMALL_STATE(587)] = 14914, - [SMALL_STATE(588)] = 14942, - [SMALL_STATE(589)] = 14974, - [SMALL_STATE(590)] = 15020, - [SMALL_STATE(591)] = 15048, - [SMALL_STATE(592)] = 15076, - [SMALL_STATE(593)] = 15123, - [SMALL_STATE(594)] = 15150, - [SMALL_STATE(595)] = 15177, - [SMALL_STATE(596)] = 15206, - [SMALL_STATE(597)] = 15240, - [SMALL_STATE(598)] = 15280, - [SMALL_STATE(599)] = 15325, - [SMALL_STATE(600)] = 15364, - [SMALL_STATE(601)] = 15403, - [SMALL_STATE(602)] = 15440, - [SMALL_STATE(603)] = 15473, - [SMALL_STATE(604)] = 15518, - [SMALL_STATE(605)] = 15555, - [SMALL_STATE(606)] = 15592, - [SMALL_STATE(607)] = 15631, - [SMALL_STATE(608)] = 15668, - [SMALL_STATE(609)] = 15710, - [SMALL_STATE(610)] = 15736, - [SMALL_STATE(611)] = 15760, - [SMALL_STATE(612)] = 15802, - [SMALL_STATE(613)] = 15844, - [SMALL_STATE(614)] = 15868, - [SMALL_STATE(615)] = 15910, - [SMALL_STATE(616)] = 15952, - [SMALL_STATE(617)] = 15994, - [SMALL_STATE(618)] = 16036, - [SMALL_STATE(619)] = 16078, - [SMALL_STATE(620)] = 16117, - [SMALL_STATE(621)] = 16156, - [SMALL_STATE(622)] = 16195, - [SMALL_STATE(623)] = 16228, - [SMALL_STATE(624)] = 16267, - [SMALL_STATE(625)] = 16306, - [SMALL_STATE(626)] = 16345, - [SMALL_STATE(627)] = 16373, - [SMALL_STATE(628)] = 16407, - [SMALL_STATE(629)] = 16441, - [SMALL_STATE(630)] = 16477, - [SMALL_STATE(631)] = 16511, - [SMALL_STATE(632)] = 16547, - [SMALL_STATE(633)] = 16583, - [SMALL_STATE(634)] = 16617, - [SMALL_STATE(635)] = 16651, - [SMALL_STATE(636)] = 16685, - [SMALL_STATE(637)] = 16721, - [SMALL_STATE(638)] = 16757, - [SMALL_STATE(639)] = 16787, - [SMALL_STATE(640)] = 16817, - [SMALL_STATE(641)] = 16851, - [SMALL_STATE(642)] = 16882, - [SMALL_STATE(643)] = 16915, - [SMALL_STATE(644)] = 16946, - [SMALL_STATE(645)] = 16977, - [SMALL_STATE(646)] = 17010, - [SMALL_STATE(647)] = 17043, - [SMALL_STATE(648)] = 17076, - [SMALL_STATE(649)] = 17107, - [SMALL_STATE(650)] = 17140, - [SMALL_STATE(651)] = 17171, - [SMALL_STATE(652)] = 17203, - [SMALL_STATE(653)] = 17233, - [SMALL_STATE(654)] = 17261, - [SMALL_STATE(655)] = 17289, - [SMALL_STATE(656)] = 17321, - [SMALL_STATE(657)] = 17343, - [SMALL_STATE(658)] = 17372, - [SMALL_STATE(659)] = 17401, - [SMALL_STATE(660)] = 17430, - [SMALL_STATE(661)] = 17459, - [SMALL_STATE(662)] = 17494, - [SMALL_STATE(663)] = 17529, - [SMALL_STATE(664)] = 17559, - [SMALL_STATE(665)] = 17587, - [SMALL_STATE(666)] = 17617, - [SMALL_STATE(667)] = 17633, - [SMALL_STATE(668)] = 17662, - [SMALL_STATE(669)] = 17687, - [SMALL_STATE(670)] = 17716, - [SMALL_STATE(671)] = 17745, - [SMALL_STATE(672)] = 17772, - [SMALL_STATE(673)] = 17801, - [SMALL_STATE(674)] = 17825, - [SMALL_STATE(675)] = 17847, - [SMALL_STATE(676)] = 17871, - [SMALL_STATE(677)] = 17891, - [SMALL_STATE(678)] = 17913, - [SMALL_STATE(679)] = 17933, - [SMALL_STATE(680)] = 17953, - [SMALL_STATE(681)] = 17977, - [SMALL_STATE(682)] = 17990, - [SMALL_STATE(683)] = 18007, - [SMALL_STATE(684)] = 18024, - [SMALL_STATE(685)] = 18037, - [SMALL_STATE(686)] = 18050, - [SMALL_STATE(687)] = 18071, - [SMALL_STATE(688)] = 18084, - [SMALL_STATE(689)] = 18097, - [SMALL_STATE(690)] = 18114, - [SMALL_STATE(691)] = 18127, - [SMALL_STATE(692)] = 18144, - [SMALL_STATE(693)] = 18157, - [SMALL_STATE(694)] = 18170, - [SMALL_STATE(695)] = 18183, - [SMALL_STATE(696)] = 18196, - [SMALL_STATE(697)] = 18219, - [SMALL_STATE(698)] = 18242, - [SMALL_STATE(699)] = 18255, - [SMALL_STATE(700)] = 18278, - [SMALL_STATE(701)] = 18295, - [SMALL_STATE(702)] = 18308, - [SMALL_STATE(703)] = 18325, - [SMALL_STATE(704)] = 18338, - [SMALL_STATE(705)] = 18351, - [SMALL_STATE(706)] = 18364, - [SMALL_STATE(707)] = 18385, - [SMALL_STATE(708)] = 18398, - [SMALL_STATE(709)] = 18421, - [SMALL_STATE(710)] = 18434, - [SMALL_STATE(711)] = 18447, - [SMALL_STATE(712)] = 18460, - [SMALL_STATE(713)] = 18473, - [SMALL_STATE(714)] = 18486, - [SMALL_STATE(715)] = 18509, - [SMALL_STATE(716)] = 18522, - [SMALL_STATE(717)] = 18535, - [SMALL_STATE(718)] = 18552, - [SMALL_STATE(719)] = 18565, - [SMALL_STATE(720)] = 18582, - [SMALL_STATE(721)] = 18595, - [SMALL_STATE(722)] = 18612, - [SMALL_STATE(723)] = 18629, - [SMALL_STATE(724)] = 18650, - [SMALL_STATE(725)] = 18663, - [SMALL_STATE(726)] = 18676, - [SMALL_STATE(727)] = 18693, - [SMALL_STATE(728)] = 18710, - [SMALL_STATE(729)] = 18723, - [SMALL_STATE(730)] = 18736, - [SMALL_STATE(731)] = 18749, - [SMALL_STATE(732)] = 18766, - [SMALL_STATE(733)] = 18779, - [SMALL_STATE(734)] = 18792, - [SMALL_STATE(735)] = 18809, - [SMALL_STATE(736)] = 18822, - [SMALL_STATE(737)] = 18835, - [SMALL_STATE(738)] = 18848, - [SMALL_STATE(739)] = 18871, - [SMALL_STATE(740)] = 18884, - [SMALL_STATE(741)] = 18901, - [SMALL_STATE(742)] = 18914, - [SMALL_STATE(743)] = 18927, - [SMALL_STATE(744)] = 18940, - [SMALL_STATE(745)] = 18953, - [SMALL_STATE(746)] = 18966, - [SMALL_STATE(747)] = 18986, - [SMALL_STATE(748)] = 19006, - [SMALL_STATE(749)] = 19026, - [SMALL_STATE(750)] = 19044, - [SMALL_STATE(751)] = 19060, - [SMALL_STATE(752)] = 19076, - [SMALL_STATE(753)] = 19090, - [SMALL_STATE(754)] = 19106, - [SMALL_STATE(755)] = 19122, - [SMALL_STATE(756)] = 19140, - [SMALL_STATE(757)] = 19156, - [SMALL_STATE(758)] = 19168, - [SMALL_STATE(759)] = 19186, - [SMALL_STATE(760)] = 19202, - [SMALL_STATE(761)] = 19222, - [SMALL_STATE(762)] = 19242, - [SMALL_STATE(763)] = 19254, - [SMALL_STATE(764)] = 19274, - [SMALL_STATE(765)] = 19290, - [SMALL_STATE(766)] = 19306, - [SMALL_STATE(767)] = 19318, - [SMALL_STATE(768)] = 19336, - [SMALL_STATE(769)] = 19348, - [SMALL_STATE(770)] = 19366, - [SMALL_STATE(771)] = 19381, - [SMALL_STATE(772)] = 19396, - [SMALL_STATE(773)] = 19411, - [SMALL_STATE(774)] = 19426, - [SMALL_STATE(775)] = 19441, - [SMALL_STATE(776)] = 19456, - [SMALL_STATE(777)] = 19471, - [SMALL_STATE(778)] = 19488, - [SMALL_STATE(779)] = 19503, - [SMALL_STATE(780)] = 19520, - [SMALL_STATE(781)] = 19535, - [SMALL_STATE(782)] = 19550, - [SMALL_STATE(783)] = 19567, - [SMALL_STATE(784)] = 19582, - [SMALL_STATE(785)] = 19597, - [SMALL_STATE(786)] = 19612, - [SMALL_STATE(787)] = 19627, - [SMALL_STATE(788)] = 19644, - [SMALL_STATE(789)] = 19659, - [SMALL_STATE(790)] = 19674, - [SMALL_STATE(791)] = 19689, - [SMALL_STATE(792)] = 19702, - [SMALL_STATE(793)] = 19719, - [SMALL_STATE(794)] = 19734, - [SMALL_STATE(795)] = 19745, - [SMALL_STATE(796)] = 19762, - [SMALL_STATE(797)] = 19779, - [SMALL_STATE(798)] = 19794, - [SMALL_STATE(799)] = 19805, - [SMALL_STATE(800)] = 19820, - [SMALL_STATE(801)] = 19837, - [SMALL_STATE(802)] = 19854, - [SMALL_STATE(803)] = 19869, - [SMALL_STATE(804)] = 19886, - [SMALL_STATE(805)] = 19903, - [SMALL_STATE(806)] = 19920, - [SMALL_STATE(807)] = 19935, - [SMALL_STATE(808)] = 19950, - [SMALL_STATE(809)] = 19967, - [SMALL_STATE(810)] = 19984, - [SMALL_STATE(811)] = 20001, - [SMALL_STATE(812)] = 20018, - [SMALL_STATE(813)] = 20035, - [SMALL_STATE(814)] = 20052, - [SMALL_STATE(815)] = 20069, - [SMALL_STATE(816)] = 20084, - [SMALL_STATE(817)] = 20099, - [SMALL_STATE(818)] = 20116, - [SMALL_STATE(819)] = 20133, - [SMALL_STATE(820)] = 20148, - [SMALL_STATE(821)] = 20165, - [SMALL_STATE(822)] = 20180, - [SMALL_STATE(823)] = 20195, - [SMALL_STATE(824)] = 20206, - [SMALL_STATE(825)] = 20221, - [SMALL_STATE(826)] = 20236, - [SMALL_STATE(827)] = 20253, - [SMALL_STATE(828)] = 20268, - [SMALL_STATE(829)] = 20285, - [SMALL_STATE(830)] = 20300, - [SMALL_STATE(831)] = 20317, - [SMALL_STATE(832)] = 20332, - [SMALL_STATE(833)] = 20347, - [SMALL_STATE(834)] = 20362, - [SMALL_STATE(835)] = 20377, - [SMALL_STATE(836)] = 20388, - [SMALL_STATE(837)] = 20405, - [SMALL_STATE(838)] = 20420, - [SMALL_STATE(839)] = 20437, - [SMALL_STATE(840)] = 20452, - [SMALL_STATE(841)] = 20469, - [SMALL_STATE(842)] = 20486, - [SMALL_STATE(843)] = 20503, - [SMALL_STATE(844)] = 20518, - [SMALL_STATE(845)] = 20529, - [SMALL_STATE(846)] = 20546, - [SMALL_STATE(847)] = 20561, - [SMALL_STATE(848)] = 20576, - [SMALL_STATE(849)] = 20591, - [SMALL_STATE(850)] = 20608, - [SMALL_STATE(851)] = 20622, - [SMALL_STATE(852)] = 20636, - [SMALL_STATE(853)] = 20650, - [SMALL_STATE(854)] = 20664, - [SMALL_STATE(855)] = 20678, - [SMALL_STATE(856)] = 20692, - [SMALL_STATE(857)] = 20706, - [SMALL_STATE(858)] = 20720, - [SMALL_STATE(859)] = 20734, - [SMALL_STATE(860)] = 20748, - [SMALL_STATE(861)] = 20760, - [SMALL_STATE(862)] = 20774, - [SMALL_STATE(863)] = 20788, - [SMALL_STATE(864)] = 20802, - [SMALL_STATE(865)] = 20816, - [SMALL_STATE(866)] = 20826, - [SMALL_STATE(867)] = 20836, - [SMALL_STATE(868)] = 20850, - [SMALL_STATE(869)] = 20864, - [SMALL_STATE(870)] = 20874, - [SMALL_STATE(871)] = 20888, - [SMALL_STATE(872)] = 20900, - [SMALL_STATE(873)] = 20914, - [SMALL_STATE(874)] = 20928, - [SMALL_STATE(875)] = 20942, - [SMALL_STATE(876)] = 20954, - [SMALL_STATE(877)] = 20968, - [SMALL_STATE(878)] = 20982, - [SMALL_STATE(879)] = 20994, - [SMALL_STATE(880)] = 21008, - [SMALL_STATE(881)] = 21022, - [SMALL_STATE(882)] = 21034, - [SMALL_STATE(883)] = 21048, - [SMALL_STATE(884)] = 21058, - [SMALL_STATE(885)] = 21072, - [SMALL_STATE(886)] = 21086, - [SMALL_STATE(887)] = 21100, - [SMALL_STATE(888)] = 21110, - [SMALL_STATE(889)] = 21124, - [SMALL_STATE(890)] = 21138, - [SMALL_STATE(891)] = 21152, - [SMALL_STATE(892)] = 21166, - [SMALL_STATE(893)] = 21180, - [SMALL_STATE(894)] = 21194, - [SMALL_STATE(895)] = 21208, - [SMALL_STATE(896)] = 21218, - [SMALL_STATE(897)] = 21228, - [SMALL_STATE(898)] = 21242, - [SMALL_STATE(899)] = 21252, - [SMALL_STATE(900)] = 21266, - [SMALL_STATE(901)] = 21280, - [SMALL_STATE(902)] = 21290, - [SMALL_STATE(903)] = 21304, - [SMALL_STATE(904)] = 21318, - [SMALL_STATE(905)] = 21332, - [SMALL_STATE(906)] = 21346, - [SMALL_STATE(907)] = 21360, - [SMALL_STATE(908)] = 21374, - [SMALL_STATE(909)] = 21388, - [SMALL_STATE(910)] = 21398, - [SMALL_STATE(911)] = 21412, - [SMALL_STATE(912)] = 21426, - [SMALL_STATE(913)] = 21440, - [SMALL_STATE(914)] = 21454, - [SMALL_STATE(915)] = 21468, - [SMALL_STATE(916)] = 21482, - [SMALL_STATE(917)] = 21496, - [SMALL_STATE(918)] = 21510, - [SMALL_STATE(919)] = 21524, - [SMALL_STATE(920)] = 21538, - [SMALL_STATE(921)] = 21552, - [SMALL_STATE(922)] = 21566, - [SMALL_STATE(923)] = 21580, - [SMALL_STATE(924)] = 21594, - [SMALL_STATE(925)] = 21608, - [SMALL_STATE(926)] = 21622, - [SMALL_STATE(927)] = 21636, - [SMALL_STATE(928)] = 21650, - [SMALL_STATE(929)] = 21664, - [SMALL_STATE(930)] = 21676, - [SMALL_STATE(931)] = 21690, - [SMALL_STATE(932)] = 21704, - [SMALL_STATE(933)] = 21718, - [SMALL_STATE(934)] = 21732, - [SMALL_STATE(935)] = 21746, - [SMALL_STATE(936)] = 21760, - [SMALL_STATE(937)] = 21770, - [SMALL_STATE(938)] = 21784, - [SMALL_STATE(939)] = 21798, - [SMALL_STATE(940)] = 21812, - [SMALL_STATE(941)] = 21826, - [SMALL_STATE(942)] = 21840, - [SMALL_STATE(943)] = 21854, - [SMALL_STATE(944)] = 21868, - [SMALL_STATE(945)] = 21882, - [SMALL_STATE(946)] = 21896, - [SMALL_STATE(947)] = 21910, - [SMALL_STATE(948)] = 21924, - [SMALL_STATE(949)] = 21938, - [SMALL_STATE(950)] = 21952, - [SMALL_STATE(951)] = 21966, - [SMALL_STATE(952)] = 21980, - [SMALL_STATE(953)] = 21994, - [SMALL_STATE(954)] = 22008, - [SMALL_STATE(955)] = 22019, - [SMALL_STATE(956)] = 22030, - [SMALL_STATE(957)] = 22039, - [SMALL_STATE(958)] = 22050, - [SMALL_STATE(959)] = 22061, - [SMALL_STATE(960)] = 22072, - [SMALL_STATE(961)] = 22083, - [SMALL_STATE(962)] = 22094, - [SMALL_STATE(963)] = 22105, - [SMALL_STATE(964)] = 22116, - [SMALL_STATE(965)] = 22127, - [SMALL_STATE(966)] = 22138, - [SMALL_STATE(967)] = 22149, - [SMALL_STATE(968)] = 22158, - [SMALL_STATE(969)] = 22169, - [SMALL_STATE(970)] = 22180, - [SMALL_STATE(971)] = 22189, - [SMALL_STATE(972)] = 22198, - [SMALL_STATE(973)] = 22209, - [SMALL_STATE(974)] = 22218, - [SMALL_STATE(975)] = 22229, - [SMALL_STATE(976)] = 22238, - [SMALL_STATE(977)] = 22249, - [SMALL_STATE(978)] = 22260, - [SMALL_STATE(979)] = 22271, - [SMALL_STATE(980)] = 22282, - [SMALL_STATE(981)] = 22293, - [SMALL_STATE(982)] = 22304, - [SMALL_STATE(983)] = 22313, - [SMALL_STATE(984)] = 22322, - [SMALL_STATE(985)] = 22333, - [SMALL_STATE(986)] = 22344, - [SMALL_STATE(987)] = 22353, - [SMALL_STATE(988)] = 22364, - [SMALL_STATE(989)] = 22373, - [SMALL_STATE(990)] = 22384, - [SMALL_STATE(991)] = 22395, - [SMALL_STATE(992)] = 22406, - [SMALL_STATE(993)] = 22415, - [SMALL_STATE(994)] = 22424, - [SMALL_STATE(995)] = 22435, - [SMALL_STATE(996)] = 22446, - [SMALL_STATE(997)] = 22457, - [SMALL_STATE(998)] = 22468, - [SMALL_STATE(999)] = 22479, - [SMALL_STATE(1000)] = 22488, - [SMALL_STATE(1001)] = 22499, - [SMALL_STATE(1002)] = 22510, - [SMALL_STATE(1003)] = 22521, - [SMALL_STATE(1004)] = 22532, - [SMALL_STATE(1005)] = 22543, - [SMALL_STATE(1006)] = 22552, - [SMALL_STATE(1007)] = 22563, - [SMALL_STATE(1008)] = 22574, - [SMALL_STATE(1009)] = 22585, - [SMALL_STATE(1010)] = 22596, - [SMALL_STATE(1011)] = 22607, - [SMALL_STATE(1012)] = 22618, - [SMALL_STATE(1013)] = 22629, - [SMALL_STATE(1014)] = 22640, - [SMALL_STATE(1015)] = 22651, - [SMALL_STATE(1016)] = 22662, - [SMALL_STATE(1017)] = 22671, - [SMALL_STATE(1018)] = 22682, - [SMALL_STATE(1019)] = 22691, - [SMALL_STATE(1020)] = 22700, - [SMALL_STATE(1021)] = 22711, - [SMALL_STATE(1022)] = 22722, - [SMALL_STATE(1023)] = 22731, - [SMALL_STATE(1024)] = 22742, - [SMALL_STATE(1025)] = 22753, - [SMALL_STATE(1026)] = 22764, - [SMALL_STATE(1027)] = 22775, - [SMALL_STATE(1028)] = 22784, - [SMALL_STATE(1029)] = 22793, - [SMALL_STATE(1030)] = 22804, - [SMALL_STATE(1031)] = 22815, - [SMALL_STATE(1032)] = 22826, - [SMALL_STATE(1033)] = 22835, - [SMALL_STATE(1034)] = 22844, - [SMALL_STATE(1035)] = 22855, - [SMALL_STATE(1036)] = 22866, - [SMALL_STATE(1037)] = 22875, - [SMALL_STATE(1038)] = 22886, - [SMALL_STATE(1039)] = 22897, - [SMALL_STATE(1040)] = 22908, - [SMALL_STATE(1041)] = 22919, - [SMALL_STATE(1042)] = 22928, - [SMALL_STATE(1043)] = 22937, - [SMALL_STATE(1044)] = 22948, - [SMALL_STATE(1045)] = 22959, - [SMALL_STATE(1046)] = 22970, - [SMALL_STATE(1047)] = 22981, - [SMALL_STATE(1048)] = 22992, - [SMALL_STATE(1049)] = 23003, - [SMALL_STATE(1050)] = 23014, - [SMALL_STATE(1051)] = 23025, - [SMALL_STATE(1052)] = 23036, - [SMALL_STATE(1053)] = 23047, - [SMALL_STATE(1054)] = 23056, - [SMALL_STATE(1055)] = 23067, - [SMALL_STATE(1056)] = 23076, - [SMALL_STATE(1057)] = 23085, - [SMALL_STATE(1058)] = 23094, - [SMALL_STATE(1059)] = 23105, - [SMALL_STATE(1060)] = 23114, - [SMALL_STATE(1061)] = 23125, - [SMALL_STATE(1062)] = 23136, - [SMALL_STATE(1063)] = 23144, - [SMALL_STATE(1064)] = 23152, - [SMALL_STATE(1065)] = 23160, - [SMALL_STATE(1066)] = 23168, - [SMALL_STATE(1067)] = 23176, - [SMALL_STATE(1068)] = 23184, - [SMALL_STATE(1069)] = 23192, - [SMALL_STATE(1070)] = 23200, - [SMALL_STATE(1071)] = 23208, - [SMALL_STATE(1072)] = 23216, - [SMALL_STATE(1073)] = 23224, - [SMALL_STATE(1074)] = 23232, - [SMALL_STATE(1075)] = 23240, - [SMALL_STATE(1076)] = 23248, - [SMALL_STATE(1077)] = 23256, - [SMALL_STATE(1078)] = 23264, - [SMALL_STATE(1079)] = 23272, - [SMALL_STATE(1080)] = 23280, - [SMALL_STATE(1081)] = 23288, - [SMALL_STATE(1082)] = 23296, - [SMALL_STATE(1083)] = 23304, - [SMALL_STATE(1084)] = 23312, - [SMALL_STATE(1085)] = 23320, - [SMALL_STATE(1086)] = 23328, - [SMALL_STATE(1087)] = 23336, - [SMALL_STATE(1088)] = 23344, - [SMALL_STATE(1089)] = 23352, - [SMALL_STATE(1090)] = 23360, - [SMALL_STATE(1091)] = 23368, - [SMALL_STATE(1092)] = 23376, - [SMALL_STATE(1093)] = 23384, - [SMALL_STATE(1094)] = 23392, - [SMALL_STATE(1095)] = 23400, - [SMALL_STATE(1096)] = 23408, - [SMALL_STATE(1097)] = 23416, - [SMALL_STATE(1098)] = 23424, - [SMALL_STATE(1099)] = 23432, - [SMALL_STATE(1100)] = 23440, - [SMALL_STATE(1101)] = 23448, - [SMALL_STATE(1102)] = 23456, - [SMALL_STATE(1103)] = 23464, - [SMALL_STATE(1104)] = 23472, - [SMALL_STATE(1105)] = 23480, - [SMALL_STATE(1106)] = 23488, - [SMALL_STATE(1107)] = 23496, - [SMALL_STATE(1108)] = 23504, - [SMALL_STATE(1109)] = 23512, - [SMALL_STATE(1110)] = 23520, - [SMALL_STATE(1111)] = 23528, - [SMALL_STATE(1112)] = 23536, - [SMALL_STATE(1113)] = 23544, - [SMALL_STATE(1114)] = 23552, - [SMALL_STATE(1115)] = 23560, - [SMALL_STATE(1116)] = 23568, - [SMALL_STATE(1117)] = 23576, - [SMALL_STATE(1118)] = 23584, - [SMALL_STATE(1119)] = 23592, - [SMALL_STATE(1120)] = 23600, - [SMALL_STATE(1121)] = 23608, - [SMALL_STATE(1122)] = 23616, - [SMALL_STATE(1123)] = 23624, - [SMALL_STATE(1124)] = 23632, - [SMALL_STATE(1125)] = 23640, - [SMALL_STATE(1126)] = 23648, - [SMALL_STATE(1127)] = 23656, - [SMALL_STATE(1128)] = 23664, - [SMALL_STATE(1129)] = 23672, - [SMALL_STATE(1130)] = 23680, - [SMALL_STATE(1131)] = 23688, - [SMALL_STATE(1132)] = 23696, - [SMALL_STATE(1133)] = 23704, - [SMALL_STATE(1134)] = 23712, - [SMALL_STATE(1135)] = 23720, - [SMALL_STATE(1136)] = 23728, - [SMALL_STATE(1137)] = 23736, - [SMALL_STATE(1138)] = 23744, - [SMALL_STATE(1139)] = 23752, - [SMALL_STATE(1140)] = 23760, - [SMALL_STATE(1141)] = 23768, - [SMALL_STATE(1142)] = 23776, - [SMALL_STATE(1143)] = 23784, - [SMALL_STATE(1144)] = 23792, - [SMALL_STATE(1145)] = 23800, - [SMALL_STATE(1146)] = 23808, + [SMALL_STATE(515)] = 11326, + [SMALL_STATE(516)] = 11391, + [SMALL_STATE(517)] = 11456, + [SMALL_STATE(518)] = 11491, + [SMALL_STATE(519)] = 11526, + [SMALL_STATE(520)] = 11561, + [SMALL_STATE(521)] = 11620, + [SMALL_STATE(522)] = 11689, + [SMALL_STATE(523)] = 11724, + [SMALL_STATE(524)] = 11788, + [SMALL_STATE(525)] = 11852, + [SMALL_STATE(526)] = 11902, + [SMALL_STATE(527)] = 11966, + [SMALL_STATE(528)] = 12030, + [SMALL_STATE(529)] = 12068, + [SMALL_STATE(530)] = 12124, + [SMALL_STATE(531)] = 12188, + [SMALL_STATE(532)] = 12252, + [SMALL_STATE(533)] = 12316, + [SMALL_STATE(534)] = 12382, + [SMALL_STATE(535)] = 12432, + [SMALL_STATE(536)] = 12495, + [SMALL_STATE(537)] = 12550, + [SMALL_STATE(538)] = 12613, + [SMALL_STATE(539)] = 12676, + [SMALL_STATE(540)] = 12739, + [SMALL_STATE(541)] = 12794, + [SMALL_STATE(542)] = 12849, + [SMALL_STATE(543)] = 12904, + [SMALL_STATE(544)] = 12967, + [SMALL_STATE(545)] = 13030, + [SMALL_STATE(546)] = 13093, + [SMALL_STATE(547)] = 13156, + [SMALL_STATE(548)] = 13219, + [SMALL_STATE(549)] = 13282, + [SMALL_STATE(550)] = 13345, + [SMALL_STATE(551)] = 13408, + [SMALL_STATE(552)] = 13471, + [SMALL_STATE(553)] = 13534, + [SMALL_STATE(554)] = 13597, + [SMALL_STATE(555)] = 13660, + [SMALL_STATE(556)] = 13723, + [SMALL_STATE(557)] = 13775, + [SMALL_STATE(558)] = 13827, + [SMALL_STATE(559)] = 13879, + [SMALL_STATE(560)] = 13931, + [SMALL_STATE(561)] = 13983, + [SMALL_STATE(562)] = 14035, + [SMALL_STATE(563)] = 14093, + [SMALL_STATE(564)] = 14145, + [SMALL_STATE(565)] = 14197, + [SMALL_STATE(566)] = 14234, + [SMALL_STATE(567)] = 14271, + [SMALL_STATE(568)] = 14302, + [SMALL_STATE(569)] = 14351, + [SMALL_STATE(570)] = 14392, + [SMALL_STATE(571)] = 14423, + [SMALL_STATE(572)] = 14469, + [SMALL_STATE(573)] = 14515, + [SMALL_STATE(574)] = 14561, + [SMALL_STATE(575)] = 14591, + [SMALL_STATE(576)] = 14639, + [SMALL_STATE(577)] = 14685, + [SMALL_STATE(578)] = 14731, + [SMALL_STATE(579)] = 14777, + [SMALL_STATE(580)] = 14823, + [SMALL_STATE(581)] = 14853, + [SMALL_STATE(582)] = 14901, + [SMALL_STATE(583)] = 14930, + [SMALL_STATE(584)] = 14979, + [SMALL_STATE(585)] = 15008, + [SMALL_STATE(586)] = 15043, + [SMALL_STATE(587)] = 15078, + [SMALL_STATE(588)] = 15107, + [SMALL_STATE(589)] = 15136, + [SMALL_STATE(590)] = 15168, + [SMALL_STATE(591)] = 15210, + [SMALL_STATE(592)] = 15238, + [SMALL_STATE(593)] = 15266, + [SMALL_STATE(594)] = 15294, + [SMALL_STATE(595)] = 15340, + [SMALL_STATE(596)] = 15368, + [SMALL_STATE(597)] = 15396, + [SMALL_STATE(598)] = 15424, + [SMALL_STATE(599)] = 15452, + [SMALL_STATE(600)] = 15480, + [SMALL_STATE(601)] = 15522, + [SMALL_STATE(602)] = 15550, + [SMALL_STATE(603)] = 15577, + [SMALL_STATE(604)] = 15624, + [SMALL_STATE(605)] = 15653, + [SMALL_STATE(606)] = 15680, + [SMALL_STATE(607)] = 15714, + [SMALL_STATE(608)] = 15754, + [SMALL_STATE(609)] = 15793, + [SMALL_STATE(610)] = 15830, + [SMALL_STATE(611)] = 15867, + [SMALL_STATE(612)] = 15900, + [SMALL_STATE(613)] = 15937, + [SMALL_STATE(614)] = 15982, + [SMALL_STATE(615)] = 16027, + [SMALL_STATE(616)] = 16064, + [SMALL_STATE(617)] = 16088, + [SMALL_STATE(618)] = 16130, + [SMALL_STATE(619)] = 16172, + [SMALL_STATE(620)] = 16196, + [SMALL_STATE(621)] = 16238, + [SMALL_STATE(622)] = 16280, + [SMALL_STATE(623)] = 16322, + [SMALL_STATE(624)] = 16364, + [SMALL_STATE(625)] = 16406, + [SMALL_STATE(626)] = 16432, + [SMALL_STATE(627)] = 16474, + [SMALL_STATE(628)] = 16513, + [SMALL_STATE(629)] = 16552, + [SMALL_STATE(630)] = 16591, + [SMALL_STATE(631)] = 16630, + [SMALL_STATE(632)] = 16669, + [SMALL_STATE(633)] = 16702, + [SMALL_STATE(634)] = 16741, + [SMALL_STATE(635)] = 16775, + [SMALL_STATE(636)] = 16811, + [SMALL_STATE(637)] = 16845, + [SMALL_STATE(638)] = 16879, + [SMALL_STATE(639)] = 16915, + [SMALL_STATE(640)] = 16951, + [SMALL_STATE(641)] = 16985, + [SMALL_STATE(642)] = 17015, + [SMALL_STATE(643)] = 17049, + [SMALL_STATE(644)] = 17083, + [SMALL_STATE(645)] = 17111, + [SMALL_STATE(646)] = 17141, + [SMALL_STATE(647)] = 17177, + [SMALL_STATE(648)] = 17213, + [SMALL_STATE(649)] = 17249, + [SMALL_STATE(650)] = 17285, + [SMALL_STATE(651)] = 17319, + [SMALL_STATE(652)] = 17355, + [SMALL_STATE(653)] = 17391, + [SMALL_STATE(654)] = 17422, + [SMALL_STATE(655)] = 17453, + [SMALL_STATE(656)] = 17486, + [SMALL_STATE(657)] = 17519, + [SMALL_STATE(658)] = 17550, + [SMALL_STATE(659)] = 17583, + [SMALL_STATE(660)] = 17616, + [SMALL_STATE(661)] = 17647, + [SMALL_STATE(662)] = 17678, + [SMALL_STATE(663)] = 17709, + [SMALL_STATE(664)] = 17740, + [SMALL_STATE(665)] = 17773, + [SMALL_STATE(666)] = 17803, + [SMALL_STATE(667)] = 17825, + [SMALL_STATE(668)] = 17855, + [SMALL_STATE(669)] = 17883, + [SMALL_STATE(670)] = 17915, + [SMALL_STATE(671)] = 17945, + [SMALL_STATE(672)] = 17977, + [SMALL_STATE(673)] = 18005, + [SMALL_STATE(674)] = 18032, + [SMALL_STATE(675)] = 18059, + [SMALL_STATE(676)] = 18094, + [SMALL_STATE(677)] = 18123, + [SMALL_STATE(678)] = 18152, + [SMALL_STATE(679)] = 18187, + [SMALL_STATE(680)] = 18216, + [SMALL_STATE(681)] = 18245, + [SMALL_STATE(682)] = 18261, + [SMALL_STATE(683)] = 18291, + [SMALL_STATE(684)] = 18319, + [SMALL_STATE(685)] = 18349, + [SMALL_STATE(686)] = 18378, + [SMALL_STATE(687)] = 18407, + [SMALL_STATE(688)] = 18436, + [SMALL_STATE(689)] = 18461, + [SMALL_STATE(690)] = 18488, + [SMALL_STATE(691)] = 18517, + [SMALL_STATE(692)] = 18539, + [SMALL_STATE(693)] = 18559, + [SMALL_STATE(694)] = 18581, + [SMALL_STATE(695)] = 18601, + [SMALL_STATE(696)] = 18621, + [SMALL_STATE(697)] = 18645, + [SMALL_STATE(698)] = 18669, + [SMALL_STATE(699)] = 18693, + [SMALL_STATE(700)] = 18714, + [SMALL_STATE(701)] = 18731, + [SMALL_STATE(702)] = 18754, + [SMALL_STATE(703)] = 18771, + [SMALL_STATE(704)] = 18788, + [SMALL_STATE(705)] = 18801, + [SMALL_STATE(706)] = 18814, + [SMALL_STATE(707)] = 18827, + [SMALL_STATE(708)] = 18840, + [SMALL_STATE(709)] = 18853, + [SMALL_STATE(710)] = 18866, + [SMALL_STATE(711)] = 18879, + [SMALL_STATE(712)] = 18902, + [SMALL_STATE(713)] = 18915, + [SMALL_STATE(714)] = 18928, + [SMALL_STATE(715)] = 18941, + [SMALL_STATE(716)] = 18954, + [SMALL_STATE(717)] = 18967, + [SMALL_STATE(718)] = 18984, + [SMALL_STATE(719)] = 19005, + [SMALL_STATE(720)] = 19018, + [SMALL_STATE(721)] = 19031, + [SMALL_STATE(722)] = 19048, + [SMALL_STATE(723)] = 19061, + [SMALL_STATE(724)] = 19074, + [SMALL_STATE(725)] = 19091, + [SMALL_STATE(726)] = 19104, + [SMALL_STATE(727)] = 19117, + [SMALL_STATE(728)] = 19130, + [SMALL_STATE(729)] = 19143, + [SMALL_STATE(730)] = 19156, + [SMALL_STATE(731)] = 19169, + [SMALL_STATE(732)] = 19182, + [SMALL_STATE(733)] = 19203, + [SMALL_STATE(734)] = 19216, + [SMALL_STATE(735)] = 19229, + [SMALL_STATE(736)] = 19242, + [SMALL_STATE(737)] = 19259, + [SMALL_STATE(738)] = 19272, + [SMALL_STATE(739)] = 19289, + [SMALL_STATE(740)] = 19306, + [SMALL_STATE(741)] = 19319, + [SMALL_STATE(742)] = 19332, + [SMALL_STATE(743)] = 19345, + [SMALL_STATE(744)] = 19368, + [SMALL_STATE(745)] = 19391, + [SMALL_STATE(746)] = 19404, + [SMALL_STATE(747)] = 19417, + [SMALL_STATE(748)] = 19434, + [SMALL_STATE(749)] = 19451, + [SMALL_STATE(750)] = 19468, + [SMALL_STATE(751)] = 19481, + [SMALL_STATE(752)] = 19494, + [SMALL_STATE(753)] = 19507, + [SMALL_STATE(754)] = 19530, + [SMALL_STATE(755)] = 19543, + [SMALL_STATE(756)] = 19556, + [SMALL_STATE(757)] = 19569, + [SMALL_STATE(758)] = 19592, + [SMALL_STATE(759)] = 19609, + [SMALL_STATE(760)] = 19626, + [SMALL_STATE(761)] = 19639, + [SMALL_STATE(762)] = 19652, + [SMALL_STATE(763)] = 19665, + [SMALL_STATE(764)] = 19682, + [SMALL_STATE(765)] = 19694, + [SMALL_STATE(766)] = 19710, + [SMALL_STATE(767)] = 19730, + [SMALL_STATE(768)] = 19748, + [SMALL_STATE(769)] = 19764, + [SMALL_STATE(770)] = 19784, + [SMALL_STATE(771)] = 19796, + [SMALL_STATE(772)] = 19812, + [SMALL_STATE(773)] = 19824, + [SMALL_STATE(774)] = 19840, + [SMALL_STATE(775)] = 19858, + [SMALL_STATE(776)] = 19874, + [SMALL_STATE(777)] = 19892, + [SMALL_STATE(778)] = 19904, + [SMALL_STATE(779)] = 19922, + [SMALL_STATE(780)] = 19942, + [SMALL_STATE(781)] = 19962, + [SMALL_STATE(782)] = 19978, + [SMALL_STATE(783)] = 19992, + [SMALL_STATE(784)] = 20008, + [SMALL_STATE(785)] = 20024, + [SMALL_STATE(786)] = 20042, + [SMALL_STATE(787)] = 20062, + [SMALL_STATE(788)] = 20082, + [SMALL_STATE(789)] = 20097, + [SMALL_STATE(790)] = 20112, + [SMALL_STATE(791)] = 20125, + [SMALL_STATE(792)] = 20140, + [SMALL_STATE(793)] = 20151, + [SMALL_STATE(794)] = 20166, + [SMALL_STATE(795)] = 20181, + [SMALL_STATE(796)] = 20196, + [SMALL_STATE(797)] = 20211, + [SMALL_STATE(798)] = 20226, + [SMALL_STATE(799)] = 20241, + [SMALL_STATE(800)] = 20258, + [SMALL_STATE(801)] = 20273, + [SMALL_STATE(802)] = 20288, + [SMALL_STATE(803)] = 20305, + [SMALL_STATE(804)] = 20316, + [SMALL_STATE(805)] = 20331, + [SMALL_STATE(806)] = 20346, + [SMALL_STATE(807)] = 20361, + [SMALL_STATE(808)] = 20376, + [SMALL_STATE(809)] = 20391, + [SMALL_STATE(810)] = 20406, + [SMALL_STATE(811)] = 20421, + [SMALL_STATE(812)] = 20436, + [SMALL_STATE(813)] = 20453, + [SMALL_STATE(814)] = 20468, + [SMALL_STATE(815)] = 20485, + [SMALL_STATE(816)] = 20500, + [SMALL_STATE(817)] = 20517, + [SMALL_STATE(818)] = 20532, + [SMALL_STATE(819)] = 20549, + [SMALL_STATE(820)] = 20564, + [SMALL_STATE(821)] = 20579, + [SMALL_STATE(822)] = 20594, + [SMALL_STATE(823)] = 20605, + [SMALL_STATE(824)] = 20620, + [SMALL_STATE(825)] = 20635, + [SMALL_STATE(826)] = 20652, + [SMALL_STATE(827)] = 20669, + [SMALL_STATE(828)] = 20686, + [SMALL_STATE(829)] = 20701, + [SMALL_STATE(830)] = 20718, + [SMALL_STATE(831)] = 20735, + [SMALL_STATE(832)] = 20750, + [SMALL_STATE(833)] = 20765, + [SMALL_STATE(834)] = 20782, + [SMALL_STATE(835)] = 20799, + [SMALL_STATE(836)] = 20814, + [SMALL_STATE(837)] = 20829, + [SMALL_STATE(838)] = 20844, + [SMALL_STATE(839)] = 20859, + [SMALL_STATE(840)] = 20876, + [SMALL_STATE(841)] = 20893, + [SMALL_STATE(842)] = 20908, + [SMALL_STATE(843)] = 20925, + [SMALL_STATE(844)] = 20942, + [SMALL_STATE(845)] = 20959, + [SMALL_STATE(846)] = 20976, + [SMALL_STATE(847)] = 20993, + [SMALL_STATE(848)] = 21010, + [SMALL_STATE(849)] = 21025, + [SMALL_STATE(850)] = 21036, + [SMALL_STATE(851)] = 21053, + [SMALL_STATE(852)] = 21068, + [SMALL_STATE(853)] = 21083, + [SMALL_STATE(854)] = 21100, + [SMALL_STATE(855)] = 21117, + [SMALL_STATE(856)] = 21134, + [SMALL_STATE(857)] = 21151, + [SMALL_STATE(858)] = 21166, + [SMALL_STATE(859)] = 21181, + [SMALL_STATE(860)] = 21198, + [SMALL_STATE(861)] = 21215, + [SMALL_STATE(862)] = 21232, + [SMALL_STATE(863)] = 21249, + [SMALL_STATE(864)] = 21266, + [SMALL_STATE(865)] = 21281, + [SMALL_STATE(866)] = 21292, + [SMALL_STATE(867)] = 21307, + [SMALL_STATE(868)] = 21324, + [SMALL_STATE(869)] = 21338, + [SMALL_STATE(870)] = 21352, + [SMALL_STATE(871)] = 21366, + [SMALL_STATE(872)] = 21380, + [SMALL_STATE(873)] = 21394, + [SMALL_STATE(874)] = 21408, + [SMALL_STATE(875)] = 21422, + [SMALL_STATE(876)] = 21436, + [SMALL_STATE(877)] = 21450, + [SMALL_STATE(878)] = 21464, + [SMALL_STATE(879)] = 21478, + [SMALL_STATE(880)] = 21492, + [SMALL_STATE(881)] = 21502, + [SMALL_STATE(882)] = 21516, + [SMALL_STATE(883)] = 21530, + [SMALL_STATE(884)] = 21544, + [SMALL_STATE(885)] = 21558, + [SMALL_STATE(886)] = 21572, + [SMALL_STATE(887)] = 21586, + [SMALL_STATE(888)] = 21600, + [SMALL_STATE(889)] = 21614, + [SMALL_STATE(890)] = 21628, + [SMALL_STATE(891)] = 21638, + [SMALL_STATE(892)] = 21648, + [SMALL_STATE(893)] = 21662, + [SMALL_STATE(894)] = 21672, + [SMALL_STATE(895)] = 21686, + [SMALL_STATE(896)] = 21700, + [SMALL_STATE(897)] = 21710, + [SMALL_STATE(898)] = 21724, + [SMALL_STATE(899)] = 21734, + [SMALL_STATE(900)] = 21748, + [SMALL_STATE(901)] = 21758, + [SMALL_STATE(902)] = 21770, + [SMALL_STATE(903)] = 21782, + [SMALL_STATE(904)] = 21796, + [SMALL_STATE(905)] = 21810, + [SMALL_STATE(906)] = 21822, + [SMALL_STATE(907)] = 21836, + [SMALL_STATE(908)] = 21850, + [SMALL_STATE(909)] = 21864, + [SMALL_STATE(910)] = 21878, + [SMALL_STATE(911)] = 21888, + [SMALL_STATE(912)] = 21902, + [SMALL_STATE(913)] = 21916, + [SMALL_STATE(914)] = 21930, + [SMALL_STATE(915)] = 21944, + [SMALL_STATE(916)] = 21958, + [SMALL_STATE(917)] = 21972, + [SMALL_STATE(918)] = 21986, + [SMALL_STATE(919)] = 21998, + [SMALL_STATE(920)] = 22012, + [SMALL_STATE(921)] = 22026, + [SMALL_STATE(922)] = 22040, + [SMALL_STATE(923)] = 22054, + [SMALL_STATE(924)] = 22068, + [SMALL_STATE(925)] = 22082, + [SMALL_STATE(926)] = 22094, + [SMALL_STATE(927)] = 22108, + [SMALL_STATE(928)] = 22122, + [SMALL_STATE(929)] = 22136, + [SMALL_STATE(930)] = 22150, + [SMALL_STATE(931)] = 22164, + [SMALL_STATE(932)] = 22176, + [SMALL_STATE(933)] = 22190, + [SMALL_STATE(934)] = 22204, + [SMALL_STATE(935)] = 22218, + [SMALL_STATE(936)] = 22228, + [SMALL_STATE(937)] = 22242, + [SMALL_STATE(938)] = 22252, + [SMALL_STATE(939)] = 22266, + [SMALL_STATE(940)] = 22276, + [SMALL_STATE(941)] = 22290, + [SMALL_STATE(942)] = 22304, + [SMALL_STATE(943)] = 22318, + [SMALL_STATE(944)] = 22332, + [SMALL_STATE(945)] = 22346, + [SMALL_STATE(946)] = 22360, + [SMALL_STATE(947)] = 22374, + [SMALL_STATE(948)] = 22388, + [SMALL_STATE(949)] = 22402, + [SMALL_STATE(950)] = 22416, + [SMALL_STATE(951)] = 22430, + [SMALL_STATE(952)] = 22444, + [SMALL_STATE(953)] = 22458, + [SMALL_STATE(954)] = 22472, + [SMALL_STATE(955)] = 22486, + [SMALL_STATE(956)] = 22500, + [SMALL_STATE(957)] = 22514, + [SMALL_STATE(958)] = 22528, + [SMALL_STATE(959)] = 22542, + [SMALL_STATE(960)] = 22556, + [SMALL_STATE(961)] = 22570, + [SMALL_STATE(962)] = 22584, + [SMALL_STATE(963)] = 22598, + [SMALL_STATE(964)] = 22612, + [SMALL_STATE(965)] = 22626, + [SMALL_STATE(966)] = 22640, + [SMALL_STATE(967)] = 22654, + [SMALL_STATE(968)] = 22668, + [SMALL_STATE(969)] = 22682, + [SMALL_STATE(970)] = 22696, + [SMALL_STATE(971)] = 22710, + [SMALL_STATE(972)] = 22724, + [SMALL_STATE(973)] = 22735, + [SMALL_STATE(974)] = 22746, + [SMALL_STATE(975)] = 22757, + [SMALL_STATE(976)] = 22768, + [SMALL_STATE(977)] = 22779, + [SMALL_STATE(978)] = 22788, + [SMALL_STATE(979)] = 22799, + [SMALL_STATE(980)] = 22810, + [SMALL_STATE(981)] = 22821, + [SMALL_STATE(982)] = 22832, + [SMALL_STATE(983)] = 22843, + [SMALL_STATE(984)] = 22854, + [SMALL_STATE(985)] = 22865, + [SMALL_STATE(986)] = 22876, + [SMALL_STATE(987)] = 22887, + [SMALL_STATE(988)] = 22898, + [SMALL_STATE(989)] = 22909, + [SMALL_STATE(990)] = 22918, + [SMALL_STATE(991)] = 22929, + [SMALL_STATE(992)] = 22940, + [SMALL_STATE(993)] = 22949, + [SMALL_STATE(994)] = 22958, + [SMALL_STATE(995)] = 22969, + [SMALL_STATE(996)] = 22978, + [SMALL_STATE(997)] = 22989, + [SMALL_STATE(998)] = 22998, + [SMALL_STATE(999)] = 23009, + [SMALL_STATE(1000)] = 23020, + [SMALL_STATE(1001)] = 23031, + [SMALL_STATE(1002)] = 23042, + [SMALL_STATE(1003)] = 23053, + [SMALL_STATE(1004)] = 23062, + [SMALL_STATE(1005)] = 23073, + [SMALL_STATE(1006)] = 23084, + [SMALL_STATE(1007)] = 23093, + [SMALL_STATE(1008)] = 23104, + [SMALL_STATE(1009)] = 23115, + [SMALL_STATE(1010)] = 23124, + [SMALL_STATE(1011)] = 23135, + [SMALL_STATE(1012)] = 23144, + [SMALL_STATE(1013)] = 23155, + [SMALL_STATE(1014)] = 23164, + [SMALL_STATE(1015)] = 23175, + [SMALL_STATE(1016)] = 23186, + [SMALL_STATE(1017)] = 23197, + [SMALL_STATE(1018)] = 23208, + [SMALL_STATE(1019)] = 23219, + [SMALL_STATE(1020)] = 23228, + [SMALL_STATE(1021)] = 23239, + [SMALL_STATE(1022)] = 23248, + [SMALL_STATE(1023)] = 23257, + [SMALL_STATE(1024)] = 23266, + [SMALL_STATE(1025)] = 23275, + [SMALL_STATE(1026)] = 23284, + [SMALL_STATE(1027)] = 23295, + [SMALL_STATE(1028)] = 23306, + [SMALL_STATE(1029)] = 23315, + [SMALL_STATE(1030)] = 23326, + [SMALL_STATE(1031)] = 23337, + [SMALL_STATE(1032)] = 23346, + [SMALL_STATE(1033)] = 23355, + [SMALL_STATE(1034)] = 23366, + [SMALL_STATE(1035)] = 23377, + [SMALL_STATE(1036)] = 23386, + [SMALL_STATE(1037)] = 23397, + [SMALL_STATE(1038)] = 23406, + [SMALL_STATE(1039)] = 23417, + [SMALL_STATE(1040)] = 23428, + [SMALL_STATE(1041)] = 23439, + [SMALL_STATE(1042)] = 23448, + [SMALL_STATE(1043)] = 23457, + [SMALL_STATE(1044)] = 23468, + [SMALL_STATE(1045)] = 23479, + [SMALL_STATE(1046)] = 23490, + [SMALL_STATE(1047)] = 23501, + [SMALL_STATE(1048)] = 23512, + [SMALL_STATE(1049)] = 23523, + [SMALL_STATE(1050)] = 23534, + [SMALL_STATE(1051)] = 23545, + [SMALL_STATE(1052)] = 23556, + [SMALL_STATE(1053)] = 23565, + [SMALL_STATE(1054)] = 23576, + [SMALL_STATE(1055)] = 23587, + [SMALL_STATE(1056)] = 23598, + [SMALL_STATE(1057)] = 23609, + [SMALL_STATE(1058)] = 23620, + [SMALL_STATE(1059)] = 23631, + [SMALL_STATE(1060)] = 23642, + [SMALL_STATE(1061)] = 23653, + [SMALL_STATE(1062)] = 23664, + [SMALL_STATE(1063)] = 23675, + [SMALL_STATE(1064)] = 23686, + [SMALL_STATE(1065)] = 23697, + [SMALL_STATE(1066)] = 23708, + [SMALL_STATE(1067)] = 23717, + [SMALL_STATE(1068)] = 23728, + [SMALL_STATE(1069)] = 23737, + [SMALL_STATE(1070)] = 23748, + [SMALL_STATE(1071)] = 23759, + [SMALL_STATE(1072)] = 23770, + [SMALL_STATE(1073)] = 23781, + [SMALL_STATE(1074)] = 23792, + [SMALL_STATE(1075)] = 23803, + [SMALL_STATE(1076)] = 23814, + [SMALL_STATE(1077)] = 23823, + [SMALL_STATE(1078)] = 23834, + [SMALL_STATE(1079)] = 23845, + [SMALL_STATE(1080)] = 23854, + [SMALL_STATE(1081)] = 23865, + [SMALL_STATE(1082)] = 23874, + [SMALL_STATE(1083)] = 23882, + [SMALL_STATE(1084)] = 23890, + [SMALL_STATE(1085)] = 23898, + [SMALL_STATE(1086)] = 23906, + [SMALL_STATE(1087)] = 23914, + [SMALL_STATE(1088)] = 23922, + [SMALL_STATE(1089)] = 23930, + [SMALL_STATE(1090)] = 23938, + [SMALL_STATE(1091)] = 23946, + [SMALL_STATE(1092)] = 23954, + [SMALL_STATE(1093)] = 23962, + [SMALL_STATE(1094)] = 23970, + [SMALL_STATE(1095)] = 23978, + [SMALL_STATE(1096)] = 23986, + [SMALL_STATE(1097)] = 23994, + [SMALL_STATE(1098)] = 24002, + [SMALL_STATE(1099)] = 24010, + [SMALL_STATE(1100)] = 24018, + [SMALL_STATE(1101)] = 24026, + [SMALL_STATE(1102)] = 24034, + [SMALL_STATE(1103)] = 24042, + [SMALL_STATE(1104)] = 24050, + [SMALL_STATE(1105)] = 24058, + [SMALL_STATE(1106)] = 24066, + [SMALL_STATE(1107)] = 24074, + [SMALL_STATE(1108)] = 24082, + [SMALL_STATE(1109)] = 24090, + [SMALL_STATE(1110)] = 24098, + [SMALL_STATE(1111)] = 24106, + [SMALL_STATE(1112)] = 24114, + [SMALL_STATE(1113)] = 24122, + [SMALL_STATE(1114)] = 24130, + [SMALL_STATE(1115)] = 24138, + [SMALL_STATE(1116)] = 24146, + [SMALL_STATE(1117)] = 24154, + [SMALL_STATE(1118)] = 24162, + [SMALL_STATE(1119)] = 24170, + [SMALL_STATE(1120)] = 24178, + [SMALL_STATE(1121)] = 24186, + [SMALL_STATE(1122)] = 24194, + [SMALL_STATE(1123)] = 24202, + [SMALL_STATE(1124)] = 24210, + [SMALL_STATE(1125)] = 24218, + [SMALL_STATE(1126)] = 24226, + [SMALL_STATE(1127)] = 24234, + [SMALL_STATE(1128)] = 24242, + [SMALL_STATE(1129)] = 24250, + [SMALL_STATE(1130)] = 24258, + [SMALL_STATE(1131)] = 24266, + [SMALL_STATE(1132)] = 24274, + [SMALL_STATE(1133)] = 24282, + [SMALL_STATE(1134)] = 24290, + [SMALL_STATE(1135)] = 24298, + [SMALL_STATE(1136)] = 24306, + [SMALL_STATE(1137)] = 24314, + [SMALL_STATE(1138)] = 24322, + [SMALL_STATE(1139)] = 24330, + [SMALL_STATE(1140)] = 24338, + [SMALL_STATE(1141)] = 24346, + [SMALL_STATE(1142)] = 24354, + [SMALL_STATE(1143)] = 24362, + [SMALL_STATE(1144)] = 24370, + [SMALL_STATE(1145)] = 24378, + [SMALL_STATE(1146)] = 24386, + [SMALL_STATE(1147)] = 24394, + [SMALL_STATE(1148)] = 24402, + [SMALL_STATE(1149)] = 24410, + [SMALL_STATE(1150)] = 24418, + [SMALL_STATE(1151)] = 24426, + [SMALL_STATE(1152)] = 24434, + [SMALL_STATE(1153)] = 24442, + [SMALL_STATE(1154)] = 24450, + [SMALL_STATE(1155)] = 24458, + [SMALL_STATE(1156)] = 24466, + [SMALL_STATE(1157)] = 24474, + [SMALL_STATE(1158)] = 24482, + [SMALL_STATE(1159)] = 24490, + [SMALL_STATE(1160)] = 24498, + [SMALL_STATE(1161)] = 24506, + [SMALL_STATE(1162)] = 24514, + [SMALL_STATE(1163)] = 24522, + [SMALL_STATE(1164)] = 24530, + [SMALL_STATE(1165)] = 24538, + [SMALL_STATE(1166)] = 24546, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -53768,1419 +54426,1435 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(309), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(55), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(261), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(261), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(260), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(599), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1143), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(958), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(410), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(410), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(54), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(238), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(238), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(266), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(575), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1099), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(975), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(178), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(246), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(962), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(966), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(974), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(219), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(279), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(429), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(244), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(801), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(994), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1104), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(821), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(328), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(321), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(825), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(749), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1098), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1088), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(586), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(584), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(593), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(381), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1029), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(352), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(203), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(267), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(27), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(978), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(980), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(981), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(231), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(288), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(435), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(286), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(847), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(985), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1158), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(864), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(326), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(319), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(838), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(778), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1154), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(352), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1153), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1147), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(595), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(597), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(605), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(390), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1001), [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), + [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1116), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1101), [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 113), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 113), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 111), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 111), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 114), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 114), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 100), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 100), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 131), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 131), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 91), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 91), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 133), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 133), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 134), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 134), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 136), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 136), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 80), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 80), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 145), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 145), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 52), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 52), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 53), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 53), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 159), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 159), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 162), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 162), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 163), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 163), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 183), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 183), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 59), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 59), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 102), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 102), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 103), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 103), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 171), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 171), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 117), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 117), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 170), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 170), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 187), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 187), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 169), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 169), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 186), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 186), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 185), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 185), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 168), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 168), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 190), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 190), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 167), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 167), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 118), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 118), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(276), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1005), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 60), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 60), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 60), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 60), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 188), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 188), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 66), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 66), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 60), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 60), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 189), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 189), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 152), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 152), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 211), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 211), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 151), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 151), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 212), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 212), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 150), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 150), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 213), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 213), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 218), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 218), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 58), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 58), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 59), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 59), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 168), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 168), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 96), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 96), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 86), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 86), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 61), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 61), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 61), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 61), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 61), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 61), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 120), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 120), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 169), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 169), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 119), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 119), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 63), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 63), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 103), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 103), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 151), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 151), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 149), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 149), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 105), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 105), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 57), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 57), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 189), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 189), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 54), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 54), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 136), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 136), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 117), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 117), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 142), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 142), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 138), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 138), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 167), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 167), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 141), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 141), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 84), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 84), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 85), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 85), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 87), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 87), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 88), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 88), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 133), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 133), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 56), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 56), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 165), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 165), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 166), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 166), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 224), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 224), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 62), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 62), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 177), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 177), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 178), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 178), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 179), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 179), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 109), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 109), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 108), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 108), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 191), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 191), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 62), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 62), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 91), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 91), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 192), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 192), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 193), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 193), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 194), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 194), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 195), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 195), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 196), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 196), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 197), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 197), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 217), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 217), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 218), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 218), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 219), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 219), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 90), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 90), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(246), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(993), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 68), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 68), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 172), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 172), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 62), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 62), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 176), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 176), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 153), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 153), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 123), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 123), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 29), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 29), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 29), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 29), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 29), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 29), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 28), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 28), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 175), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 175), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 174), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 174), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 60), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 60), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 124), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 124), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 184), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 184), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 165), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 165), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 210), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 210), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 217), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 217), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(659), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(679), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1143), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(348), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(299), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(821), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(421), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1098), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(348), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1078), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1088), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1087), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(586), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(584), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(593), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(498), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(689), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(576), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(679), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1143), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 190), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 190), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 171), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 171), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 223), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 223), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 216), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 216), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(676), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(694), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1099), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(12), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(352), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(300), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(864), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(398), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1154), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(352), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1164), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1153), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1147), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(595), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(597), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(605), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(520), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1057] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(700), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(585), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(694), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1099), [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(348), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(352), [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(307), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(821), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1098), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(348), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1088), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1087), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(586), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(584), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(593), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(864), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1154), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(352), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1153), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1147), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(595), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(597), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(605), [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1117] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1128), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1123] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(689), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 92), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 92), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 93), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 93), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(576), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1143), + [1117] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1084), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1123] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(700), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 99), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 99), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 98), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 98), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 30), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 30), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(585), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1099), [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(348), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(821), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(348), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1088), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1087), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(586), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(584), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(593), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(193), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 65), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 65), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(283), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(824), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1109), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(824), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(352), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(864), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(352), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1153), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1147), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(595), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(597), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(605), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(179), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 67), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 67), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 52), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 52), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 58), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 58), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(284), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(796), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1122), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(796), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(350), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(821), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(350), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 104), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 104), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 164), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 164), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 66), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 66), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 139), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 139), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 138), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 138), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(502), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 106), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 106), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(502), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 105), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 105), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 77), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 77), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 76), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 76), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 74), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 74), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 94), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 94), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 70), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 70), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 158), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 158), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 95), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 95), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 157), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 157), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 62), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 62), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 63), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 63), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 64), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 64), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 129), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 129), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 128), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 128), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 66), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 66), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 71), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 71), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 96), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(447), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(824), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(447), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 182), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 182), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 219), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 219), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 216), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 216), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 215), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 215), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 214), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 214), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 209), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 209), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 208), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 208), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 206), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 206), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1127), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 69), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 148), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 115), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 144), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 86), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(802), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(717), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(668), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(797), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(793), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(790), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(785), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 73), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 110), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 122), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 122), SHIFT_REPEAT(757), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(276), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1005), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 155), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 154), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(290), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1005), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 125), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 194), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 124), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 123), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 124), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 123), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 196), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 43), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 181), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 121), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 197), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 180), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 120), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 179), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 198), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 194), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 196), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 197), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 198), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 178), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 201), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 177), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 203), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 176), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 175), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 174), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 177), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(824), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 204), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 176), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 175), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 174), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 205), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(550), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(607), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 88), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 37), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(558), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(559), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(241), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 72), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 140), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 108), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 75), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(284), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(298), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 149), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 149), SHIFT_REPEAT(270), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 195), SHIFT_REPEAT(799), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 195), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1139), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 193), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(135), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 141), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 142), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 87), SHIFT_REPEAT(278), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 87), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), SHIFT_REPEAT(551), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 89), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(168), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 199), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 200), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 202), SHIFT_REPEAT(807), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 202), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 192), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 156), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(338), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 126), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1037), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 68), SHIFT_REPEAT(769), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 68), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(524), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(678), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 40), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 140), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 67), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 108), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 73), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(351), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(864), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(351), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(509), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 170), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 170), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 115), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 115), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 39), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 39), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 80), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 80), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 110), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 110), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 68), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 68), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 145), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 145), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(509), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 144), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 144), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 83), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 83), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 111), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 111), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 112), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 112), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 82), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 82), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 101), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 101), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 163), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 163), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 72), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 72), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 65), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 65), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 66), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 66), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 100), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 100), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 134), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 134), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 135), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 135), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 64), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 64), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 164), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 164), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 77), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 77), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 76), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 76), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 75), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 75), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 74), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 74), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 68), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 68), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 44), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 44), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 73), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 73), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 214), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 214), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 102), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(455), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(796), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(455), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 215), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 215), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 212), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 212), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 220), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 220), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 221), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 221), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 222), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 222), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 225), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 225), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 188), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 188), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1093), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 71), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 154), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 150), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 121), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 92), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(789), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(688), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(809), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(810), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(811), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(813), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(759), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 116), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 79), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 128), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 128), SHIFT_REPEAT(772), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(246), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(993), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(257), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(993), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 187), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 186), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 185), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 184), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 183), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 182), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 181), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 180), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 183), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 182), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 181), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 180), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 200), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 202), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 203), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 204), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 200), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 202), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 203), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 204), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 207), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 209), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 210), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 211), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(796), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 161), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 160), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 130), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 129), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 130), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 126), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 127), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 131), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 43), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 129), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 94), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(615), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 37), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(563), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(569), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 81), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 114), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(556), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(287), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 78), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 146), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(250), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(340), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(137), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(776), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 70), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), SHIFT_REPEAT(560), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 155), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 155), SHIFT_REPEAT(282), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1083), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(529), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 40), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 148), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 147), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 95), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 162), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 208), SHIFT_REPEAT(836), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 208), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 206), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 205), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(162), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(695), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 201), SHIFT_REPEAT(801), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 201), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(298), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 199), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 198), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 132), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 93), SHIFT_REPEAT(271), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 93), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1058), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 119), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 75), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 107), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 72), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 42), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 43), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2858] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 116), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 207), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 146), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 113), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 146), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 81), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 78), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 69), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 43), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 42), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 79), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 114), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 125), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 152), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 122), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 213), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2964] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index cbbc7b4ee..2b14ac104 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /* diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 62eb04875..85ba77191 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -441,6 +441,28 @@ class Quack { (identifier) (class_body))) +================================== +annotation in array creation +================================== + +String[] allMyStrings = new @Nullable String[5]; + +--- + + (program + (local_variable_declaration + (array_type + (type_identifier) + (dimensions)) + (variable_declarator + (identifier) + (array_creation_expression + (marker_annotation + (identifier)) + (type_identifier) + (dimensions_expr + (decimal_integer_literal)))))) + ================================== lambda expression ================================== From 65746a4181118eacecd61a13a6c1a683f65a3cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Mah=C3=A9?= Date: Mon, 8 Aug 2022 16:34:01 -0700 Subject: [PATCH 03/23] Update RxJava to 3.1.5 --- script/parse-examples | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/parse-examples b/script/parse-examples index 51a536cf7..e270562d3 100755 --- a/script/parse-examples +++ b/script/parse-examples @@ -27,7 +27,7 @@ function clone_repo { clone_repo elastic elasticsearch 4d62640bf116af7e825d89c7319a39c3f2f325b4 clone_repo google guava v31.1 -clone_repo ReactiveX RxJava 8a6bf14fc9a61f7c1c0016ca217be02ca86211d2 +clone_repo ReactiveX RxJava v3.1.5 known_failures="$(cat script/known-failures.txt)" From dc9024a3217ab7add0bc3fdcc333b1e64a699d87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Mah=C3=A9?= Date: Tue, 9 Aug 2022 15:45:00 -0700 Subject: [PATCH 04/23] Add more repositories to validate parsing and fix a few more cases. This adds the following repositories: * Apache Flink * Apache Log4j2 * Apache Cassandra The grammar has been updated to address the following cases: * Reserved identifiers used as a lambda parameter * Enum declared inside an annotation * Conflict between switch as a statement or an expression when used in the following pattern: ```java switch(foo) { ... } ++bar; ``` --- grammar.js | 7 +- script/known-failures.txt | 3 + script/parse-examples | 3 + src/grammar.json | 20 +- src/node-types.json | 4 + src/parser.c | 63594 ++++++++++++++++++--------------- test/corpus/declarations.txt | 27 + test/corpus/expressions.txt | 52 + 8 files changed, 35284 insertions(+), 28426 deletions(-) diff --git a/grammar.js b/grammar.js index 694c6b4f2..743ac6ee8 100644 --- a/grammar.js +++ b/grammar.js @@ -4,7 +4,6 @@ const PREC = { // https://introcs.cs.princeton.edu/java/11precedence/ COMMENT: 0, // // /* */ ASSIGN: 1, // = += -= *= /= %= &= ^= |= <<= >>= >>>= - SWITCH_EXP: 1, // always prefer to parse switch as expression over statement DECL: 2, ELEMENT_VAL: 2, TERNARY: 3, // ?: @@ -66,6 +65,7 @@ module.exports = grammar({ [$._unannotated_type, $.scoped_type_identifier], [$._unannotated_type, $.generic_type], [$.generic_type, $.primary_expression], + [$.expression, $.statement], // Only conflicts in switch expressions [$.lambda_expression, $.primary_expression], ], @@ -174,7 +174,7 @@ module.exports = grammar({ $.primary_expression, $.unary_expression, $.cast_expression, - prec(PREC.SWITCH_EXP, $.switch_expression), + $.switch_expression, ), cast_expression: $ => prec(PREC.CAST, seq( @@ -232,7 +232,7 @@ module.exports = grammar({ lambda_expression: $ => seq( field('parameters', choice( - $.identifier, $.formal_parameters, $.inferred_parameters + $.identifier, $.formal_parameters, $.inferred_parameters, $._reserved_identifier )), '->', field('body', choice($.expression, $.block)) @@ -920,6 +920,7 @@ module.exports = grammar({ $.constant_declaration, $.class_declaration, $.interface_declaration, + $.enum_declaration, $.annotation_type_declaration )), '}' diff --git a/script/known-failures.txt b/script/known-failures.txt index e69de29bb..505684964 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -0,0 +1,3 @@ +examples/flink/flink-quickstart/flink-quickstart-java/src/main/resources/archetype-resources/src/main/java/DataStreamJob.java +examples/flink/flink-walkthroughs/flink-walkthrough-datastream-java/src/main/resources/archetype-resources/src/main/java/FraudDetectionJob.java +examples/flink/flink-walkthroughs/flink-walkthrough-datastream-java/src/main/resources/archetype-resources/src/main/java/FraudDetector.java \ No newline at end of file diff --git a/script/parse-examples b/script/parse-examples index e270562d3..b714ae3ae 100755 --- a/script/parse-examples +++ b/script/parse-examples @@ -28,6 +28,9 @@ function clone_repo { clone_repo elastic elasticsearch 4d62640bf116af7e825d89c7319a39c3f2f325b4 clone_repo google guava v31.1 clone_repo ReactiveX RxJava v3.1.5 +clone_repo apache flink release-1.15.1 +clone_repo apache logging-log4j2 rel/2.17.2 +clone_repo apache cassandra cassandra-4.0.5 known_failures="$(cat script/known-failures.txt)" diff --git a/src/grammar.json b/src/grammar.json index eb25cbe25..bb48a0bc8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1194,12 +1194,8 @@ "name": "cast_expression" }, { - "type": "PREC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "switch_expression" - } + "type": "SYMBOL", + "name": "switch_expression" } ] }, @@ -2041,6 +2037,10 @@ { "type": "SYMBOL", "name": "inferred_parameters" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" } ] } @@ -5814,6 +5814,10 @@ "type": "SYMBOL", "name": "interface_declaration" }, + { + "type": "SYMBOL", + "name": "enum_declaration" + }, { "type": "SYMBOL", "name": "annotation_type_declaration" @@ -7017,6 +7021,10 @@ "generic_type", "primary_expression" ], + [ + "expression", + "statement" + ], [ "lambda_expression", "primary_expression" diff --git a/src/node-types.json b/src/node-types.json index 0b24883d5..2fc2723f5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -483,6 +483,10 @@ "type": "constant_declaration", "named": true }, + { + "type": "enum_declaration", + "named": true + }, { "type": "interface_declaration", "named": true diff --git a/src/parser.c b/src/parser.c index 8a790c09d..57a90713e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1167 -#define LARGE_STATE_COUNT 299 +#define STATE_COUNT 1251 +#define LARGE_STATE_COUNT 346 #define SYMBOL_COUNT 291 #define ALIAS_COUNT 1 #define TOKEN_COUNT 130 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 226 +#define PRODUCTION_ID_COUNT 227 enum { sym_identifier = 1, @@ -2186,197 +2186,198 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [25] = {.index = 31, .length = 2}, [26] = {.index = 31, .length = 2}, [27] = {.index = 33, .length = 3}, - [28] = {.index = 21, .length = 2}, - [30] = {.index = 36, .length = 2}, - [31] = {.index = 36, .length = 2}, - [32] = {.index = 33, .length = 3}, - [33] = {.index = 38, .length = 2}, - [35] = {.index = 40, .length = 2}, - [36] = {.index = 42, .length = 3}, - [37] = {.index = 45, .length = 2}, + [28] = {.index = 36, .length = 2}, + [29] = {.index = 21, .length = 2}, + [31] = {.index = 38, .length = 2}, + [32] = {.index = 38, .length = 2}, + [33] = {.index = 33, .length = 3}, + [34] = {.index = 36, .length = 2}, + [36] = {.index = 40, .length = 2}, + [37] = {.index = 42, .length = 3}, [38] = {.index = 45, .length = 2}, - [39] = {.index = 47, .length = 2}, - [40] = {.index = 49, .length = 2}, - [42] = {.index = 51, .length = 3}, - [43] = {.index = 54, .length = 1}, - [44] = {.index = 55, .length = 2}, - [45] = {.index = 57, .length = 2}, - [46] = {.index = 59, .length = 3}, - [47] = {.index = 62, .length = 3}, - [48] = {.index = 59, .length = 3}, - [49] = {.index = 62, .length = 3}, - [50] = {.index = 65, .length = 3}, + [39] = {.index = 45, .length = 2}, + [40] = {.index = 47, .length = 2}, + [41] = {.index = 49, .length = 2}, + [43] = {.index = 51, .length = 3}, + [44] = {.index = 54, .length = 1}, + [45] = {.index = 55, .length = 2}, + [46] = {.index = 57, .length = 2}, + [47] = {.index = 59, .length = 3}, + [48] = {.index = 62, .length = 3}, + [49] = {.index = 59, .length = 3}, + [50] = {.index = 62, .length = 3}, [51] = {.index = 65, .length = 3}, - [52] = {.index = 68, .length = 2}, + [52] = {.index = 65, .length = 3}, [53] = {.index = 68, .length = 2}, - [54] = {.index = 70, .length = 3}, - [55] = {.index = 73, .length = 3}, - [56] = {.index = 76, .length = 3}, - [57] = {.index = 79, .length = 3}, - [58] = {.index = 82, .length = 2}, + [54] = {.index = 68, .length = 2}, + [55] = {.index = 70, .length = 3}, + [56] = {.index = 73, .length = 3}, + [57] = {.index = 76, .length = 3}, + [58] = {.index = 79, .length = 3}, [59] = {.index = 82, .length = 2}, - [60] = {.index = 84, .length = 2}, + [60] = {.index = 82, .length = 2}, [61] = {.index = 84, .length = 2}, - [63] = {.index = 86, .length = 2}, - [64] = {.index = 88, .length = 3}, + [62] = {.index = 84, .length = 2}, + [64] = {.index = 86, .length = 2}, [65] = {.index = 88, .length = 3}, - [67] = {.index = 91, .length = 2}, - [68] = {.index = 93, .length = 2}, - [69] = {.index = 95, .length = 1}, - [70] = {.index = 96, .length = 2}, - [71] = {.index = 98, .length = 3}, - [73] = {.index = 101, .length = 3}, - [74] = {.index = 104, .length = 3}, - [75] = {.index = 107, .length = 3}, - [76] = {.index = 104, .length = 3}, - [77] = {.index = 107, .length = 3}, - [79] = {.index = 110, .length = 2}, - [80] = {.index = 112, .length = 4}, - [81] = {.index = 116, .length = 4}, - [82] = {.index = 120, .length = 5}, - [83] = {.index = 125, .length = 6}, - [84] = {.index = 131, .length = 4}, - [85] = {.index = 135, .length = 4}, - [86] = {.index = 139, .length = 4}, - [87] = {.index = 143, .length = 4}, - [88] = {.index = 147, .length = 4}, - [89] = {.index = 151, .length = 4}, - [90] = {.index = 155, .length = 2}, - [91] = {.index = 157, .length = 3}, - [92] = {.index = 160, .length = 1}, - [93] = {.index = 161, .length = 2}, - [94] = {.index = 163, .length = 1}, - [95] = {.index = 164, .length = 2}, - [96] = {.index = 166, .length = 3}, - [97] = {.index = 169, .length = 3}, - [98] = {.index = 172, .length = 2}, + [66] = {.index = 88, .length = 3}, + [68] = {.index = 91, .length = 2}, + [69] = {.index = 93, .length = 2}, + [70] = {.index = 95, .length = 1}, + [71] = {.index = 96, .length = 2}, + [72] = {.index = 98, .length = 3}, + [74] = {.index = 101, .length = 3}, + [75] = {.index = 104, .length = 3}, + [76] = {.index = 107, .length = 3}, + [77] = {.index = 104, .length = 3}, + [78] = {.index = 107, .length = 3}, + [80] = {.index = 110, .length = 2}, + [81] = {.index = 112, .length = 4}, + [82] = {.index = 116, .length = 4}, + [83] = {.index = 120, .length = 5}, + [84] = {.index = 125, .length = 6}, + [85] = {.index = 131, .length = 4}, + [86] = {.index = 135, .length = 4}, + [87] = {.index = 139, .length = 4}, + [88] = {.index = 143, .length = 4}, + [89] = {.index = 147, .length = 4}, + [90] = {.index = 151, .length = 4}, + [91] = {.index = 155, .length = 2}, + [92] = {.index = 157, .length = 3}, + [93] = {.index = 160, .length = 1}, + [94] = {.index = 161, .length = 2}, + [95] = {.index = 163, .length = 1}, + [96] = {.index = 164, .length = 2}, + [97] = {.index = 166, .length = 3}, + [98] = {.index = 169, .length = 3}, [99] = {.index = 172, .length = 2}, - [100] = {.index = 174, .length = 4}, + [100] = {.index = 172, .length = 2}, [101] = {.index = 174, .length = 4}, - [102] = {.index = 178, .length = 3}, - [103] = {.index = 181, .length = 3}, - [104] = {.index = 184, .length = 3}, - [105] = {.index = 187, .length = 3}, - [106] = {.index = 190, .length = 3}, - [107] = {.index = 193, .length = 2}, - [108] = {.index = 195, .length = 2}, + [102] = {.index = 174, .length = 4}, + [103] = {.index = 178, .length = 3}, + [104] = {.index = 181, .length = 3}, + [105] = {.index = 184, .length = 3}, + [106] = {.index = 187, .length = 3}, + [107] = {.index = 190, .length = 3}, + [108] = {.index = 193, .length = 2}, [109] = {.index = 195, .length = 2}, - [110] = {.index = 197, .length = 4}, - [111] = {.index = 201, .length = 5}, - [112] = {.index = 206, .length = 6}, - [113] = {.index = 212, .length = 3}, - [114] = {.index = 215, .length = 5}, - [115] = {.index = 220, .length = 4}, - [116] = {.index = 110, .length = 2}, - [117] = {.index = 224, .length = 5}, - [118] = {.index = 229, .length = 5}, - [119] = {.index = 234, .length = 5}, - [120] = {.index = 239, .length = 5}, - [121] = {.index = 244, .length = 4}, - [122] = {.index = 248, .length = 2}, - [123] = {.index = 250, .length = 1}, - [124] = {.index = 251, .length = 2}, - [125] = {.index = 253, .length = 2}, - [126] = {.index = 255, .length = 1}, + [110] = {.index = 195, .length = 2}, + [111] = {.index = 197, .length = 4}, + [112] = {.index = 201, .length = 5}, + [113] = {.index = 206, .length = 6}, + [114] = {.index = 212, .length = 3}, + [115] = {.index = 215, .length = 5}, + [116] = {.index = 220, .length = 4}, + [117] = {.index = 110, .length = 2}, + [118] = {.index = 224, .length = 5}, + [119] = {.index = 229, .length = 5}, + [120] = {.index = 234, .length = 5}, + [121] = {.index = 239, .length = 5}, + [122] = {.index = 244, .length = 4}, + [123] = {.index = 248, .length = 2}, + [124] = {.index = 250, .length = 1}, + [125] = {.index = 251, .length = 2}, + [126] = {.index = 253, .length = 2}, [127] = {.index = 255, .length = 1}, - [128] = {.index = 256, .length = 2}, - [129] = {.index = 258, .length = 1}, + [128] = {.index = 255, .length = 1}, + [129] = {.index = 256, .length = 2}, [130] = {.index = 258, .length = 1}, - [131] = {.index = 54, .length = 1}, - [132] = {.index = 259, .length = 3}, - [133] = {.index = 262, .length = 4}, - [134] = {.index = 266, .length = 3}, + [131] = {.index = 258, .length = 1}, + [132] = {.index = 54, .length = 1}, + [133] = {.index = 259, .length = 3}, + [134] = {.index = 262, .length = 4}, [135] = {.index = 266, .length = 3}, - [136] = {.index = 269, .length = 4}, - [137] = {.index = 273, .length = 4}, - [138] = {.index = 277, .length = 4}, - [139] = {.index = 281, .length = 4}, - [140] = {.index = 285, .length = 4}, - [141] = {.index = 289, .length = 4}, - [142] = {.index = 293, .length = 3}, - [143] = {.index = 296, .length = 3}, - [144] = {.index = 299, .length = 3}, - [145] = {.index = 302, .length = 4}, - [146] = {.index = 306, .length = 5}, - [147] = {.index = 311, .length = 3}, + [136] = {.index = 266, .length = 3}, + [137] = {.index = 269, .length = 4}, + [138] = {.index = 273, .length = 4}, + [139] = {.index = 277, .length = 4}, + [140] = {.index = 281, .length = 4}, + [141] = {.index = 285, .length = 4}, + [142] = {.index = 289, .length = 4}, + [143] = {.index = 293, .length = 3}, + [144] = {.index = 296, .length = 3}, + [145] = {.index = 299, .length = 3}, + [146] = {.index = 302, .length = 4}, + [147] = {.index = 306, .length = 5}, [148] = {.index = 311, .length = 3}, - [149] = {.index = 314, .length = 6}, - [150] = {.index = 320, .length = 4}, - [151] = {.index = 324, .length = 1}, - [152] = {.index = 325, .length = 2}, - [153] = {.index = 327, .length = 2}, - [154] = {.index = 329, .length = 1}, - [155] = {.index = 330, .length = 2}, - [156] = {.index = 332, .length = 2}, - [157] = {.index = 334, .length = 2}, - [158] = {.index = 336, .length = 3}, - [159] = {.index = 339, .length = 3}, - [160] = {.index = 342, .length = 2}, + [149] = {.index = 311, .length = 3}, + [150] = {.index = 314, .length = 6}, + [151] = {.index = 320, .length = 4}, + [152] = {.index = 324, .length = 1}, + [153] = {.index = 325, .length = 2}, + [154] = {.index = 327, .length = 2}, + [155] = {.index = 329, .length = 1}, + [156] = {.index = 330, .length = 2}, + [157] = {.index = 332, .length = 2}, + [158] = {.index = 334, .length = 2}, + [159] = {.index = 336, .length = 3}, + [160] = {.index = 339, .length = 3}, [161] = {.index = 342, .length = 2}, - [162] = {.index = 344, .length = 3}, - [163] = {.index = 347, .length = 4}, + [162] = {.index = 342, .length = 2}, + [163] = {.index = 344, .length = 3}, [164] = {.index = 347, .length = 4}, - [165] = {.index = 351, .length = 5}, - [166] = {.index = 356, .length = 5}, - [167] = {.index = 361, .length = 5}, - [168] = {.index = 366, .length = 5}, - [169] = {.index = 371, .length = 4}, - [170] = {.index = 375, .length = 3}, - [171] = {.index = 378, .length = 2}, - [172] = {.index = 380, .length = 3}, - [173] = {.index = 383, .length = 3}, - [174] = {.index = 386, .length = 3}, - [175] = {.index = 389, .length = 3}, - [176] = {.index = 392, .length = 3}, - [177] = {.index = 395, .length = 5}, - [178] = {.index = 400, .length = 4}, - [179] = {.index = 404, .length = 4}, - [180] = {.index = 408, .length = 2}, + [165] = {.index = 347, .length = 4}, + [166] = {.index = 351, .length = 5}, + [167] = {.index = 356, .length = 5}, + [168] = {.index = 361, .length = 5}, + [169] = {.index = 366, .length = 5}, + [170] = {.index = 371, .length = 4}, + [171] = {.index = 375, .length = 3}, + [172] = {.index = 378, .length = 2}, + [173] = {.index = 380, .length = 3}, + [174] = {.index = 383, .length = 3}, + [175] = {.index = 386, .length = 3}, + [176] = {.index = 389, .length = 3}, + [177] = {.index = 392, .length = 3}, + [178] = {.index = 395, .length = 5}, + [179] = {.index = 400, .length = 4}, + [180] = {.index = 404, .length = 4}, [181] = {.index = 408, .length = 2}, [182] = {.index = 408, .length = 2}, [183] = {.index = 408, .length = 2}, - [184] = {.index = 410, .length = 1}, + [184] = {.index = 408, .length = 2}, [185] = {.index = 410, .length = 1}, [186] = {.index = 410, .length = 1}, [187] = {.index = 410, .length = 1}, - [188] = {.index = 411, .length = 2}, - [189] = {.index = 413, .length = 6}, - [190] = {.index = 419, .length = 3}, - [191] = {.index = 422, .length = 4}, - [192] = {.index = 426, .length = 4}, - [193] = {.index = 430, .length = 4}, - [194] = {.index = 434, .length = 4}, - [195] = {.index = 438, .length = 4}, - [196] = {.index = 442, .length = 5}, - [197] = {.index = 447, .length = 5}, - [198] = {.index = 452, .length = 1}, + [188] = {.index = 410, .length = 1}, + [189] = {.index = 411, .length = 2}, + [190] = {.index = 413, .length = 6}, + [191] = {.index = 419, .length = 3}, + [192] = {.index = 422, .length = 4}, + [193] = {.index = 426, .length = 4}, + [194] = {.index = 430, .length = 4}, + [195] = {.index = 434, .length = 4}, + [196] = {.index = 438, .length = 4}, + [197] = {.index = 442, .length = 5}, + [198] = {.index = 447, .length = 5}, [199] = {.index = 452, .length = 1}, - [200] = {.index = 453, .length = 3}, - [201] = {.index = 456, .length = 2}, - [202] = {.index = 453, .length = 3}, + [200] = {.index = 452, .length = 1}, + [201] = {.index = 453, .length = 3}, + [202] = {.index = 456, .length = 2}, [203] = {.index = 453, .length = 3}, [204] = {.index = 453, .length = 3}, - [205] = {.index = 458, .length = 1}, + [205] = {.index = 453, .length = 3}, [206] = {.index = 458, .length = 1}, - [207] = {.index = 459, .length = 2}, - [208] = {.index = 461, .length = 2}, - [209] = {.index = 459, .length = 2}, + [207] = {.index = 458, .length = 1}, + [208] = {.index = 459, .length = 2}, + [209] = {.index = 461, .length = 2}, [210] = {.index = 459, .length = 2}, [211] = {.index = 459, .length = 2}, - [212] = {.index = 463, .length = 2}, - [213] = {.index = 465, .length = 1}, - [214] = {.index = 466, .length = 3}, - [215] = {.index = 469, .length = 3}, - [216] = {.index = 472, .length = 3}, - [217] = {.index = 475, .length = 5}, - [218] = {.index = 480, .length = 5}, - [219] = {.index = 485, .length = 5}, - [220] = {.index = 490, .length = 3}, - [221] = {.index = 493, .length = 3}, - [222] = {.index = 496, .length = 4}, - [223] = {.index = 500, .length = 4}, - [224] = {.index = 504, .length = 6}, - [225] = {.index = 510, .length = 4}, + [212] = {.index = 459, .length = 2}, + [213] = {.index = 463, .length = 2}, + [214] = {.index = 465, .length = 1}, + [215] = {.index = 466, .length = 3}, + [216] = {.index = 469, .length = 3}, + [217] = {.index = 472, .length = 3}, + [218] = {.index = 475, .length = 5}, + [219] = {.index = 480, .length = 5}, + [220] = {.index = 485, .length = 5}, + [221] = {.index = 490, .length = 3}, + [222] = {.index = 493, .length = 3}, + [223] = {.index = 496, .length = 4}, + [224] = {.index = 500, .length = 4}, + [225] = {.index = 504, .length = 6}, + [226] = {.index = 510, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2436,11 +2437,11 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_operator, 1}, {field_right, 2}, [36] = - {field_field, 2}, - {field_object, 0}, - [38] = {field_body, 2}, {field_parameters, 0}, + [38] = + {field_field, 2}, + {field_object, 0}, [40] = {field_left, 0}, {field_right, 2}, @@ -3098,141 +3099,144 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_identifier, }, [28] = { - [1] = sym_identifier, + [0] = sym_identifier, }, [29] = { [1] = sym_identifier, }, [30] = { + [1] = sym_identifier, + }, + [31] = { [2] = sym_identifier, }, - [34] = { + [35] = { [0] = alias_sym_type_identifier, [2] = alias_sym_type_identifier, }, - [37] = { + [38] = { [0] = sym_identifier, }, - [41] = { + [42] = { [2] = alias_sym_type_identifier, }, - [48] = { + [49] = { [1] = alias_sym_type_identifier, }, - [49] = { + [50] = { [1] = alias_sym_type_identifier, }, - [51] = { + [52] = { [2] = alias_sym_type_identifier, }, - [53] = { + [54] = { [2] = alias_sym_type_identifier, }, - [58] = { + [59] = { [0] = sym_identifier, }, - [60] = { + [61] = { [2] = sym_identifier, }, - [62] = { + [63] = { [2] = sym_identifier, }, - [64] = { + [65] = { [2] = sym_identifier, }, - [66] = { + [67] = { [0] = alias_sym_type_identifier, [3] = alias_sym_type_identifier, }, - [72] = { + [73] = { [3] = alias_sym_type_identifier, }, - [76] = { - [2] = alias_sym_type_identifier, - }, [77] = { [2] = alias_sym_type_identifier, }, [78] = { + [2] = alias_sym_type_identifier, + }, + [79] = { [1] = alias_sym_type_identifier, }, - [98] = { + [99] = { [4] = sym_identifier, }, - [100] = { + [101] = { [3] = sym_identifier, }, - [108] = { + [109] = { [3] = sym_identifier, }, - [116] = { + [117] = { [0] = sym_identifier, }, - [126] = { + [127] = { [1] = sym_identifier, }, - [129] = { + [130] = { [1] = sym_identifier, }, - [131] = { + [132] = { [1] = sym_identifier, }, - [134] = { + [135] = { [4] = sym_identifier, }, - [147] = { + [148] = { [0] = sym_identifier, }, - [160] = { + [161] = { [2] = sym_identifier, }, - [163] = { + [164] = { [5] = sym_identifier, }, - [180] = { + [181] = { [1] = sym_identifier, [3] = sym_identifier, }, - [181] = { + [182] = { [1] = sym_identifier, }, - [182] = { + [183] = { [3] = sym_identifier, }, - [184] = { + [185] = { [1] = sym_identifier, [3] = sym_identifier, }, - [185] = { + [186] = { [1] = sym_identifier, }, - [186] = { + [187] = { [3] = sym_identifier, }, - [198] = { + [199] = { [1] = sym_identifier, }, - [200] = { + [201] = { [1] = sym_identifier, [3] = sym_identifier, }, - [202] = { + [203] = { [1] = sym_identifier, }, - [203] = { + [204] = { [3] = sym_identifier, }, - [205] = { + [206] = { [1] = sym_identifier, }, - [207] = { + [208] = { [1] = sym_identifier, [3] = sym_identifier, }, - [209] = { + [210] = { [1] = sym_identifier, }, - [210] = { + [211] = { [3] = sym_identifier, }, }; @@ -6819,27 +6823,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 60}, [43] = {.lex_state = 60}, [44] = {.lex_state = 60}, - [45] = {.lex_state = 59}, - [46] = {.lex_state = 59}, + [45] = {.lex_state = 60}, + [46] = {.lex_state = 60}, [47] = {.lex_state = 60}, [48] = {.lex_state = 60}, - [49] = {.lex_state = 59}, + [49] = {.lex_state = 60}, [50] = {.lex_state = 60}, [51] = {.lex_state = 60}, [52] = {.lex_state = 60}, [53] = {.lex_state = 60}, - [54] = {.lex_state = 4}, - [55] = {.lex_state = 4}, - [56] = {.lex_state = 4}, + [54] = {.lex_state = 60}, + [55] = {.lex_state = 60}, + [56] = {.lex_state = 60}, [57] = {.lex_state = 60}, [58] = {.lex_state = 60}, [59] = {.lex_state = 60}, [60] = {.lex_state = 60}, - [61] = {.lex_state = 3}, - [62] = {.lex_state = 3}, - [63] = {.lex_state = 3}, - [64] = {.lex_state = 3}, - [65] = {.lex_state = 3}, + [61] = {.lex_state = 60}, + [62] = {.lex_state = 60}, + [63] = {.lex_state = 60}, + [64] = {.lex_state = 60}, + [65] = {.lex_state = 60}, [66] = {.lex_state = 60}, [67] = {.lex_state = 60}, [68] = {.lex_state = 60}, @@ -6849,28 +6853,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 60}, [73] = {.lex_state = 60}, [74] = {.lex_state = 60}, - [75] = {.lex_state = 60}, - [76] = {.lex_state = 60}, + [75] = {.lex_state = 59}, + [76] = {.lex_state = 59}, [77] = {.lex_state = 60}, [78] = {.lex_state = 60}, - [79] = {.lex_state = 60}, + [79] = {.lex_state = 59}, [80] = {.lex_state = 60}, [81] = {.lex_state = 60}, [82] = {.lex_state = 60}, - [83] = {.lex_state = 3}, - [84] = {.lex_state = 60}, - [85] = {.lex_state = 60}, - [86] = {.lex_state = 60}, - [87] = {.lex_state = 60}, + [83] = {.lex_state = 60}, + [84] = {.lex_state = 4}, + [85] = {.lex_state = 4}, + [86] = {.lex_state = 4}, + [87] = {.lex_state = 4}, [88] = {.lex_state = 60}, [89] = {.lex_state = 60}, [90] = {.lex_state = 60}, [91] = {.lex_state = 60}, - [92] = {.lex_state = 60}, - [93] = {.lex_state = 60}, - [94] = {.lex_state = 60}, - [95] = {.lex_state = 60}, - [96] = {.lex_state = 60}, + [92] = {.lex_state = 3}, + [93] = {.lex_state = 3}, + [94] = {.lex_state = 3}, + [95] = {.lex_state = 3}, + [96] = {.lex_state = 3}, [97] = {.lex_state = 60}, [98] = {.lex_state = 60}, [99] = {.lex_state = 60}, @@ -6878,7 +6882,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 60}, [102] = {.lex_state = 60}, [103] = {.lex_state = 60}, - [104] = {.lex_state = 3}, + [104] = {.lex_state = 60}, [105] = {.lex_state = 60}, [106] = {.lex_state = 60}, [107] = {.lex_state = 60}, @@ -6890,31 +6894,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 60}, [114] = {.lex_state = 60}, [115] = {.lex_state = 60}, - [116] = {.lex_state = 60}, + [116] = {.lex_state = 3}, [117] = {.lex_state = 60}, [118] = {.lex_state = 60}, [119] = {.lex_state = 60}, [120] = {.lex_state = 60}, [121] = {.lex_state = 60}, - [122] = {.lex_state = 3}, + [122] = {.lex_state = 60}, [123] = {.lex_state = 60}, [124] = {.lex_state = 60}, [125] = {.lex_state = 60}, [126] = {.lex_state = 60}, [127] = {.lex_state = 60}, - [128] = {.lex_state = 60}, + [128] = {.lex_state = 3}, [129] = {.lex_state = 60}, [130] = {.lex_state = 60}, [131] = {.lex_state = 60}, [132] = {.lex_state = 60}, [133] = {.lex_state = 60}, [134] = {.lex_state = 60}, - [135] = {.lex_state = 3}, - [136] = {.lex_state = 3}, - [137] = {.lex_state = 3}, - [138] = {.lex_state = 3}, - [139] = {.lex_state = 3}, - [140] = {.lex_state = 3}, + [135] = {.lex_state = 60}, + [136] = {.lex_state = 60}, + [137] = {.lex_state = 60}, + [138] = {.lex_state = 60}, + [139] = {.lex_state = 60}, + [140] = {.lex_state = 60}, [141] = {.lex_state = 60}, [142] = {.lex_state = 60}, [143] = {.lex_state = 60}, @@ -6935,25 +6939,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [158] = {.lex_state = 60}, [159] = {.lex_state = 60}, [160] = {.lex_state = 60}, - [161] = {.lex_state = 60}, - [162] = {.lex_state = 3}, + [161] = {.lex_state = 3}, + [162] = {.lex_state = 60}, [163] = {.lex_state = 60}, [164] = {.lex_state = 60}, [165] = {.lex_state = 60}, - [166] = {.lex_state = 60}, - [167] = {.lex_state = 60}, - [168] = {.lex_state = 60}, - [169] = {.lex_state = 60}, - [170] = {.lex_state = 60}, - [171] = {.lex_state = 60}, - [172] = {.lex_state = 3}, + [166] = {.lex_state = 3}, + [167] = {.lex_state = 3}, + [168] = {.lex_state = 3}, + [169] = {.lex_state = 3}, + [170] = {.lex_state = 3}, + [171] = {.lex_state = 3}, + [172] = {.lex_state = 60}, [173] = {.lex_state = 60}, [174] = {.lex_state = 60}, [175] = {.lex_state = 60}, [176] = {.lex_state = 60}, [177] = {.lex_state = 60}, [178] = {.lex_state = 60}, - [179] = {.lex_state = 3}, + [179] = {.lex_state = 60}, [180] = {.lex_state = 60}, [181] = {.lex_state = 60}, [182] = {.lex_state = 60}, @@ -6974,9 +6978,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [197] = {.lex_state = 60}, [198] = {.lex_state = 60}, [199] = {.lex_state = 60}, - [200] = {.lex_state = 60}, + [200] = {.lex_state = 3}, [201] = {.lex_state = 60}, - [202] = {.lex_state = 3}, + [202] = {.lex_state = 60}, [203] = {.lex_state = 60}, [204] = {.lex_state = 60}, [205] = {.lex_state = 60}, @@ -6992,39 +6996,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [215] = {.lex_state = 60}, [216] = {.lex_state = 60}, [217] = {.lex_state = 60}, - [218] = {.lex_state = 3}, + [218] = {.lex_state = 60}, [219] = {.lex_state = 3}, - [220] = {.lex_state = 3}, - [221] = {.lex_state = 3}, - [222] = {.lex_state = 3}, - [223] = {.lex_state = 3}, - [224] = {.lex_state = 3}, - [225] = {.lex_state = 3}, - [226] = {.lex_state = 3}, - [227] = {.lex_state = 3}, - [228] = {.lex_state = 3}, - [229] = {.lex_state = 3}, - [230] = {.lex_state = 3}, - [231] = {.lex_state = 3}, - [232] = {.lex_state = 3}, - [233] = {.lex_state = 3}, + [220] = {.lex_state = 60}, + [221] = {.lex_state = 60}, + [222] = {.lex_state = 60}, + [223] = {.lex_state = 60}, + [224] = {.lex_state = 60}, + [225] = {.lex_state = 60}, + [226] = {.lex_state = 60}, + [227] = {.lex_state = 60}, + [228] = {.lex_state = 60}, + [229] = {.lex_state = 60}, + [230] = {.lex_state = 60}, + [231] = {.lex_state = 60}, + [232] = {.lex_state = 60}, + [233] = {.lex_state = 60}, [234] = {.lex_state = 3}, - [235] = {.lex_state = 3}, - [236] = {.lex_state = 3}, - [237] = {.lex_state = 3}, - [238] = {.lex_state = 3}, - [239] = {.lex_state = 3}, - [240] = {.lex_state = 3}, - [241] = {.lex_state = 3}, - [242] = {.lex_state = 3}, - [243] = {.lex_state = 3}, - [244] = {.lex_state = 3}, + [235] = {.lex_state = 60}, + [236] = {.lex_state = 60}, + [237] = {.lex_state = 60}, + [238] = {.lex_state = 60}, + [239] = {.lex_state = 60}, + [240] = {.lex_state = 60}, + [241] = {.lex_state = 60}, + [242] = {.lex_state = 60}, + [243] = {.lex_state = 60}, + [244] = {.lex_state = 60}, [245] = {.lex_state = 3}, - [246] = {.lex_state = 3}, + [246] = {.lex_state = 60}, [247] = {.lex_state = 3}, [248] = {.lex_state = 3}, - [249] = {.lex_state = 3}, - [250] = {.lex_state = 3}, + [249] = {.lex_state = 60}, + [250] = {.lex_state = 60}, [251] = {.lex_state = 3}, [252] = {.lex_state = 3}, [253] = {.lex_state = 3}, @@ -7054,7 +7058,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [277] = {.lex_state = 3}, [278] = {.lex_state = 3}, [279] = {.lex_state = 3}, - [280] = {.lex_state = 60}, + [280] = {.lex_state = 3}, [281] = {.lex_state = 3}, [282] = {.lex_state = 3}, [283] = {.lex_state = 3}, @@ -7065,250 +7069,250 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [288] = {.lex_state = 3}, [289] = {.lex_state = 3}, [290] = {.lex_state = 3}, - [291] = {.lex_state = 60}, - [292] = {.lex_state = 60}, - [293] = {.lex_state = 60}, - [294] = {.lex_state = 60}, - [295] = {.lex_state = 4}, - [296] = {.lex_state = 4}, - [297] = {.lex_state = 4}, - [298] = {.lex_state = 4}, - [299] = {.lex_state = 0}, - [300] = {.lex_state = 0}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 0}, - [303] = {.lex_state = 0}, - [304] = {.lex_state = 5}, - [305] = {.lex_state = 0}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 0}, - [308] = {.lex_state = 5}, - [309] = {.lex_state = 5}, - [310] = {.lex_state = 5}, - [311] = {.lex_state = 5}, - [312] = {.lex_state = 5}, - [313] = {.lex_state = 5}, - [314] = {.lex_state = 0}, - [315] = {.lex_state = 5}, - [316] = {.lex_state = 0}, - [317] = {.lex_state = 0}, - [318] = {.lex_state = 5}, - [319] = {.lex_state = 5}, - [320] = {.lex_state = 5}, - [321] = {.lex_state = 5}, - [322] = {.lex_state = 5}, - [323] = {.lex_state = 5}, - [324] = {.lex_state = 5}, - [325] = {.lex_state = 5}, - [326] = {.lex_state = 5}, - [327] = {.lex_state = 6}, - [328] = {.lex_state = 6}, - [329] = {.lex_state = 6}, - [330] = {.lex_state = 6}, - [331] = {.lex_state = 14}, - [332] = {.lex_state = 5}, - [333] = {.lex_state = 14}, - [334] = {.lex_state = 4}, - [335] = {.lex_state = 6}, - [336] = {.lex_state = 6}, - [337] = {.lex_state = 4}, - [338] = {.lex_state = 6}, - [339] = {.lex_state = 3}, - [340] = {.lex_state = 4}, - [341] = {.lex_state = 3}, + [291] = {.lex_state = 3}, + [292] = {.lex_state = 3}, + [293] = {.lex_state = 3}, + [294] = {.lex_state = 3}, + [295] = {.lex_state = 3}, + [296] = {.lex_state = 3}, + [297] = {.lex_state = 3}, + [298] = {.lex_state = 3}, + [299] = {.lex_state = 3}, + [300] = {.lex_state = 3}, + [301] = {.lex_state = 3}, + [302] = {.lex_state = 3}, + [303] = {.lex_state = 3}, + [304] = {.lex_state = 3}, + [305] = {.lex_state = 3}, + [306] = {.lex_state = 3}, + [307] = {.lex_state = 3}, + [308] = {.lex_state = 3}, + [309] = {.lex_state = 3}, + [310] = {.lex_state = 3}, + [311] = {.lex_state = 3}, + [312] = {.lex_state = 3}, + [313] = {.lex_state = 3}, + [314] = {.lex_state = 3}, + [315] = {.lex_state = 3}, + [316] = {.lex_state = 3}, + [317] = {.lex_state = 3}, + [318] = {.lex_state = 3}, + [319] = {.lex_state = 3}, + [320] = {.lex_state = 3}, + [321] = {.lex_state = 3}, + [322] = {.lex_state = 3}, + [323] = {.lex_state = 3}, + [324] = {.lex_state = 3}, + [325] = {.lex_state = 3}, + [326] = {.lex_state = 3}, + [327] = {.lex_state = 60}, + [328] = {.lex_state = 3}, + [329] = {.lex_state = 3}, + [330] = {.lex_state = 3}, + [331] = {.lex_state = 3}, + [332] = {.lex_state = 3}, + [333] = {.lex_state = 3}, + [334] = {.lex_state = 3}, + [335] = {.lex_state = 3}, + [336] = {.lex_state = 3}, + [337] = {.lex_state = 3}, + [338] = {.lex_state = 60}, + [339] = {.lex_state = 60}, + [340] = {.lex_state = 60}, + [341] = {.lex_state = 4}, [342] = {.lex_state = 4}, - [343] = {.lex_state = 3}, - [344] = {.lex_state = 3}, - [345] = {.lex_state = 14}, - [346] = {.lex_state = 14}, - [347] = {.lex_state = 6}, - [348] = {.lex_state = 6}, - [349] = {.lex_state = 6}, - [350] = {.lex_state = 6}, - [351] = {.lex_state = 0}, + [343] = {.lex_state = 60}, + [344] = {.lex_state = 4}, + [345] = {.lex_state = 4}, + [346] = {.lex_state = 0}, + [347] = {.lex_state = 0}, + [348] = {.lex_state = 0}, + [349] = {.lex_state = 0}, + [350] = {.lex_state = 0}, + [351] = {.lex_state = 5}, [352] = {.lex_state = 0}, - [353] = {.lex_state = 6}, - [354] = {.lex_state = 6}, - [355] = {.lex_state = 0}, + [353] = {.lex_state = 0}, + [354] = {.lex_state = 0}, + [355] = {.lex_state = 5}, [356] = {.lex_state = 0}, [357] = {.lex_state = 0}, - [358] = {.lex_state = 6}, - [359] = {.lex_state = 0}, + [358] = {.lex_state = 5}, + [359] = {.lex_state = 5}, [360] = {.lex_state = 0}, - [361] = {.lex_state = 0}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 6}, - [364] = {.lex_state = 6}, - [365] = {.lex_state = 0}, - [366] = {.lex_state = 0}, - [367] = {.lex_state = 6}, - [368] = {.lex_state = 0}, - [369] = {.lex_state = 6}, - [370] = {.lex_state = 0}, - [371] = {.lex_state = 0}, - [372] = {.lex_state = 0}, - [373] = {.lex_state = 0}, - [374] = {.lex_state = 0}, + [361] = {.lex_state = 5}, + [362] = {.lex_state = 5}, + [363] = {.lex_state = 5}, + [364] = {.lex_state = 5}, + [365] = {.lex_state = 5}, + [366] = {.lex_state = 5}, + [367] = {.lex_state = 5}, + [368] = {.lex_state = 5}, + [369] = {.lex_state = 5}, + [370] = {.lex_state = 5}, + [371] = {.lex_state = 5}, + [372] = {.lex_state = 5}, + [373] = {.lex_state = 5}, + [374] = {.lex_state = 5}, [375] = {.lex_state = 6}, - [376] = {.lex_state = 0}, - [377] = {.lex_state = 0}, + [376] = {.lex_state = 6}, + [377] = {.lex_state = 6}, [378] = {.lex_state = 6}, - [379] = {.lex_state = 0}, - [380] = {.lex_state = 0}, - [381] = {.lex_state = 0}, - [382] = {.lex_state = 0}, + [379] = {.lex_state = 14}, + [380] = {.lex_state = 14}, + [381] = {.lex_state = 5}, + [382] = {.lex_state = 4}, [383] = {.lex_state = 6}, [384] = {.lex_state = 6}, - [385] = {.lex_state = 6}, + [385] = {.lex_state = 4}, [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 6}, - [389] = {.lex_state = 6}, - [390] = {.lex_state = 6}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 6}, - [393] = {.lex_state = 6}, - [394] = {.lex_state = 6}, + [387] = {.lex_state = 3}, + [388] = {.lex_state = 3}, + [389] = {.lex_state = 4}, + [390] = {.lex_state = 4}, + [391] = {.lex_state = 14}, + [392] = {.lex_state = 14}, + [393] = {.lex_state = 3}, + [394] = {.lex_state = 3}, [395] = {.lex_state = 6}, - [396] = {.lex_state = 6}, + [396] = {.lex_state = 0}, [397] = {.lex_state = 6}, - [398] = {.lex_state = 0}, - [399] = {.lex_state = 6}, + [398] = {.lex_state = 6}, + [399] = {.lex_state = 0}, [400] = {.lex_state = 6}, - [401] = {.lex_state = 6}, - [402] = {.lex_state = 6}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 0}, [403] = {.lex_state = 6}, [404] = {.lex_state = 6}, - [405] = {.lex_state = 6}, - [406] = {.lex_state = 6}, - [407] = {.lex_state = 6}, - [408] = {.lex_state = 6}, + [405] = {.lex_state = 0}, + [406] = {.lex_state = 0}, + [407] = {.lex_state = 0}, + [408] = {.lex_state = 0}, [409] = {.lex_state = 6}, - [410] = {.lex_state = 6}, - [411] = {.lex_state = 6}, - [412] = {.lex_state = 6}, - [413] = {.lex_state = 6}, - [414] = {.lex_state = 6}, - [415] = {.lex_state = 6}, - [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 6}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 6}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 0}, + [412] = {.lex_state = 0}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 0}, + [415] = {.lex_state = 0}, + [416] = {.lex_state = 0}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 0}, + [419] = {.lex_state = 0}, + [420] = {.lex_state = 0}, [421] = {.lex_state = 6}, [422] = {.lex_state = 6}, [423] = {.lex_state = 6}, - [424] = {.lex_state = 6}, - [425] = {.lex_state = 6}, + [424] = {.lex_state = 0}, + [425] = {.lex_state = 0}, [426] = {.lex_state = 6}, - [427] = {.lex_state = 6}, - [428] = {.lex_state = 0}, - [429] = {.lex_state = 3}, - [430] = {.lex_state = 3}, - [431] = {.lex_state = 0}, - [432] = {.lex_state = 3}, - [433] = {.lex_state = 0}, - [434] = {.lex_state = 3}, - [435] = {.lex_state = 0}, - [436] = {.lex_state = 3}, - [437] = {.lex_state = 3}, - [438] = {.lex_state = 3}, - [439] = {.lex_state = 12}, - [440] = {.lex_state = 12}, - [441] = {.lex_state = 3}, - [442] = {.lex_state = 3}, - [443] = {.lex_state = 3}, - [444] = {.lex_state = 3}, - [445] = {.lex_state = 3}, - [446] = {.lex_state = 3}, - [447] = {.lex_state = 12}, - [448] = {.lex_state = 3}, - [449] = {.lex_state = 3}, - [450] = {.lex_state = 0}, - [451] = {.lex_state = 3}, - [452] = {.lex_state = 3}, + [427] = {.lex_state = 0}, + [428] = {.lex_state = 6}, + [429] = {.lex_state = 6}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 6}, + [432] = {.lex_state = 6}, + [433] = {.lex_state = 6}, + [434] = {.lex_state = 6}, + [435] = {.lex_state = 6}, + [436] = {.lex_state = 6}, + [437] = {.lex_state = 6}, + [438] = {.lex_state = 6}, + [439] = {.lex_state = 6}, + [440] = {.lex_state = 6}, + [441] = {.lex_state = 6}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 6}, + [444] = {.lex_state = 6}, + [445] = {.lex_state = 6}, + [446] = {.lex_state = 6}, + [447] = {.lex_state = 6}, + [448] = {.lex_state = 6}, + [449] = {.lex_state = 6}, + [450] = {.lex_state = 6}, + [451] = {.lex_state = 6}, + [452] = {.lex_state = 6}, [453] = {.lex_state = 6}, - [454] = {.lex_state = 3}, - [455] = {.lex_state = 4}, - [456] = {.lex_state = 3}, - [457] = {.lex_state = 0}, - [458] = {.lex_state = 15}, - [459] = {.lex_state = 0}, - [460] = {.lex_state = 0}, - [461] = {.lex_state = 0}, - [462] = {.lex_state = 0}, - [463] = {.lex_state = 3}, - [464] = {.lex_state = 0}, - [465] = {.lex_state = 3}, - [466] = {.lex_state = 3}, - [467] = {.lex_state = 3}, - [468] = {.lex_state = 3}, - [469] = {.lex_state = 4}, - [470] = {.lex_state = 3}, - [471] = {.lex_state = 0}, - [472] = {.lex_state = 3}, - [473] = {.lex_state = 15}, - [474] = {.lex_state = 3}, - [475] = {.lex_state = 3}, - [476] = {.lex_state = 15}, - [477] = {.lex_state = 15}, - [478] = {.lex_state = 12}, - [479] = {.lex_state = 3}, + [454] = {.lex_state = 6}, + [455] = {.lex_state = 6}, + [456] = {.lex_state = 6}, + [457] = {.lex_state = 6}, + [458] = {.lex_state = 6}, + [459] = {.lex_state = 6}, + [460] = {.lex_state = 6}, + [461] = {.lex_state = 6}, + [462] = {.lex_state = 6}, + [463] = {.lex_state = 6}, + [464] = {.lex_state = 6}, + [465] = {.lex_state = 6}, + [466] = {.lex_state = 6}, + [467] = {.lex_state = 6}, + [468] = {.lex_state = 6}, + [469] = {.lex_state = 6}, + [470] = {.lex_state = 6}, + [471] = {.lex_state = 6}, + [472] = {.lex_state = 6}, + [473] = {.lex_state = 6}, + [474] = {.lex_state = 6}, + [475] = {.lex_state = 6}, + [476] = {.lex_state = 3}, + [477] = {.lex_state = 3}, + [478] = {.lex_state = 3}, + [479] = {.lex_state = 0}, [480] = {.lex_state = 3}, - [481] = {.lex_state = 12}, - [482] = {.lex_state = 6}, - [483] = {.lex_state = 3}, + [481] = {.lex_state = 0}, + [482] = {.lex_state = 0}, + [483] = {.lex_state = 0}, [484] = {.lex_state = 3}, [485] = {.lex_state = 3}, - [486] = {.lex_state = 4}, - [487] = {.lex_state = 3}, - [488] = {.lex_state = 3}, + [486] = {.lex_state = 0}, + [487] = {.lex_state = 0}, + [488] = {.lex_state = 0}, [489] = {.lex_state = 3}, [490] = {.lex_state = 3}, [491] = {.lex_state = 3}, - [492] = {.lex_state = 4}, - [493] = {.lex_state = 4}, + [492] = {.lex_state = 12}, + [493] = {.lex_state = 0}, [494] = {.lex_state = 3}, [495] = {.lex_state = 3}, - [496] = {.lex_state = 3}, - [497] = {.lex_state = 4}, - [498] = {.lex_state = 4}, - [499] = {.lex_state = 3}, - [500] = {.lex_state = 3}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 12}, + [498] = {.lex_state = 0}, + [499] = {.lex_state = 0}, + [500] = {.lex_state = 0}, [501] = {.lex_state = 3}, - [502] = {.lex_state = 3}, + [502] = {.lex_state = 12}, [503] = {.lex_state = 3}, - [504] = {.lex_state = 4}, + [504] = {.lex_state = 3}, [505] = {.lex_state = 3}, - [506] = {.lex_state = 3}, - [507] = {.lex_state = 3}, + [506] = {.lex_state = 4}, + [507] = {.lex_state = 4}, [508] = {.lex_state = 3}, - [509] = {.lex_state = 12}, + [509] = {.lex_state = 3}, [510] = {.lex_state = 3}, [511] = {.lex_state = 3}, [512] = {.lex_state = 3}, [513] = {.lex_state = 3}, [514] = {.lex_state = 3}, - [515] = {.lex_state = 3}, + [515] = {.lex_state = 15}, [516] = {.lex_state = 3}, - [517] = {.lex_state = 4}, - [518] = {.lex_state = 4}, - [519] = {.lex_state = 4}, - [520] = {.lex_state = 12}, - [521] = {.lex_state = 3}, - [522] = {.lex_state = 4}, + [517] = {.lex_state = 3}, + [518] = {.lex_state = 3}, + [519] = {.lex_state = 3}, + [520] = {.lex_state = 3}, + [521] = {.lex_state = 15}, + [522] = {.lex_state = 6}, [523] = {.lex_state = 3}, [524] = {.lex_state = 3}, - [525] = {.lex_state = 4}, - [526] = {.lex_state = 3}, - [527] = {.lex_state = 3}, - [528] = {.lex_state = 4}, - [529] = {.lex_state = 3}, + [525] = {.lex_state = 15}, + [526] = {.lex_state = 15}, + [527] = {.lex_state = 6}, + [528] = {.lex_state = 12}, + [529] = {.lex_state = 12}, [530] = {.lex_state = 3}, - [531] = {.lex_state = 22}, + [531] = {.lex_state = 3}, [532] = {.lex_state = 3}, [533] = {.lex_state = 3}, - [534] = {.lex_state = 4}, + [534] = {.lex_state = 3}, [535] = {.lex_state = 3}, [536] = {.lex_state = 3}, [537] = {.lex_state = 3}, @@ -7318,17 +7322,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [541] = {.lex_state = 3}, [542] = {.lex_state = 3}, [543] = {.lex_state = 3}, - [544] = {.lex_state = 3}, - [545] = {.lex_state = 3}, + [544] = {.lex_state = 4}, + [545] = {.lex_state = 4}, [546] = {.lex_state = 3}, [547] = {.lex_state = 3}, [548] = {.lex_state = 3}, [549] = {.lex_state = 3}, [550] = {.lex_state = 3}, - [551] = {.lex_state = 3}, + [551] = {.lex_state = 4}, [552] = {.lex_state = 3}, [553] = {.lex_state = 3}, - [554] = {.lex_state = 3}, + [554] = {.lex_state = 4}, [555] = {.lex_state = 3}, [556] = {.lex_state = 3}, [557] = {.lex_state = 3}, @@ -7336,68 +7340,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [559] = {.lex_state = 3}, [560] = {.lex_state = 3}, [561] = {.lex_state = 3}, - [562] = {.lex_state = 22}, + [562] = {.lex_state = 3}, [563] = {.lex_state = 3}, [564] = {.lex_state = 3}, - [565] = {.lex_state = 5}, - [566] = {.lex_state = 5}, - [567] = {.lex_state = 12}, - [568] = {.lex_state = 3}, + [565] = {.lex_state = 3}, + [566] = {.lex_state = 4}, + [567] = {.lex_state = 3}, + [568] = {.lex_state = 4}, [569] = {.lex_state = 4}, - [570] = {.lex_state = 12}, - [571] = {.lex_state = 3}, - [572] = {.lex_state = 3}, + [570] = {.lex_state = 3}, + [571] = {.lex_state = 12}, + [572] = {.lex_state = 4}, [573] = {.lex_state = 3}, - [574] = {.lex_state = 5}, + [574] = {.lex_state = 3}, [575] = {.lex_state = 3}, [576] = {.lex_state = 3}, - [577] = {.lex_state = 3}, + [577] = {.lex_state = 4}, [578] = {.lex_state = 3}, [579] = {.lex_state = 3}, - [580] = {.lex_state = 5}, + [580] = {.lex_state = 4}, [581] = {.lex_state = 3}, [582] = {.lex_state = 12}, - [583] = {.lex_state = 22}, - [584] = {.lex_state = 12}, - [585] = {.lex_state = 12}, - [586] = {.lex_state = 12}, - [587] = {.lex_state = 12}, - [588] = {.lex_state = 12}, + [583] = {.lex_state = 3}, + [584] = {.lex_state = 3}, + [585] = {.lex_state = 3}, + [586] = {.lex_state = 3}, + [587] = {.lex_state = 4}, + [588] = {.lex_state = 3}, [589] = {.lex_state = 3}, - [590] = {.lex_state = 3}, - [591] = {.lex_state = 3}, - [592] = {.lex_state = 3}, + [590] = {.lex_state = 22}, + [591] = {.lex_state = 4}, + [592] = {.lex_state = 4}, [593] = {.lex_state = 3}, - [594] = {.lex_state = 22}, - [595] = {.lex_state = 12}, + [594] = {.lex_state = 3}, + [595] = {.lex_state = 3}, [596] = {.lex_state = 3}, - [597] = {.lex_state = 12}, - [598] = {.lex_state = 12}, - [599] = {.lex_state = 12}, + [597] = {.lex_state = 3}, + [598] = {.lex_state = 3}, + [599] = {.lex_state = 3}, [600] = {.lex_state = 3}, [601] = {.lex_state = 3}, - [602] = {.lex_state = 12}, - [603] = {.lex_state = 5}, - [604] = {.lex_state = 12}, - [605] = {.lex_state = 12}, - [606] = {.lex_state = 12}, + [602] = {.lex_state = 3}, + [603] = {.lex_state = 3}, + [604] = {.lex_state = 3}, + [605] = {.lex_state = 3}, + [606] = {.lex_state = 3}, [607] = {.lex_state = 3}, [608] = {.lex_state = 3}, [609] = {.lex_state = 3}, [610] = {.lex_state = 3}, - [611] = {.lex_state = 12}, + [611] = {.lex_state = 3}, [612] = {.lex_state = 3}, - [613] = {.lex_state = 5}, - [614] = {.lex_state = 5}, + [613] = {.lex_state = 3}, + [614] = {.lex_state = 3}, [615] = {.lex_state = 3}, [616] = {.lex_state = 3}, - [617] = {.lex_state = 5}, - [618] = {.lex_state = 5}, + [617] = {.lex_state = 3}, + [618] = {.lex_state = 3}, [619] = {.lex_state = 3}, [620] = {.lex_state = 3}, [621] = {.lex_state = 3}, - [622] = {.lex_state = 5}, - [623] = {.lex_state = 5}, + [622] = {.lex_state = 3}, + [623] = {.lex_state = 22}, [624] = {.lex_state = 3}, [625] = {.lex_state = 3}, [626] = {.lex_state = 3}, @@ -7405,320 +7409,320 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [628] = {.lex_state = 3}, [629] = {.lex_state = 3}, [630] = {.lex_state = 3}, - [631] = {.lex_state = 3}, - [632] = {.lex_state = 3}, - [633] = {.lex_state = 5}, - [634] = {.lex_state = 3}, + [631] = {.lex_state = 12}, + [632] = {.lex_state = 4}, + [633] = {.lex_state = 12}, + [634] = {.lex_state = 5}, [635] = {.lex_state = 5}, [636] = {.lex_state = 3}, [637] = {.lex_state = 3}, [638] = {.lex_state = 3}, [639] = {.lex_state = 3}, - [640] = {.lex_state = 4}, - [641] = {.lex_state = 4}, - [642] = {.lex_state = 4}, + [640] = {.lex_state = 3}, + [641] = {.lex_state = 3}, + [642] = {.lex_state = 3}, [643] = {.lex_state = 3}, [644] = {.lex_state = 5}, - [645] = {.lex_state = 4}, - [646] = {.lex_state = 5}, - [647] = {.lex_state = 5}, - [648] = {.lex_state = 5}, - [649] = {.lex_state = 5}, - [650] = {.lex_state = 3}, - [651] = {.lex_state = 5}, - [652] = {.lex_state = 5}, - [653] = {.lex_state = 4}, - [654] = {.lex_state = 5}, - [655] = {.lex_state = 3}, - [656] = {.lex_state = 4}, - [657] = {.lex_state = 3}, - [658] = {.lex_state = 4}, - [659] = {.lex_state = 3}, - [660] = {.lex_state = 5}, - [661] = {.lex_state = 5}, - [662] = {.lex_state = 4}, - [663] = {.lex_state = 5}, + [645] = {.lex_state = 5}, + [646] = {.lex_state = 3}, + [647] = {.lex_state = 3}, + [648] = {.lex_state = 12}, + [649] = {.lex_state = 12}, + [650] = {.lex_state = 22}, + [651] = {.lex_state = 12}, + [652] = {.lex_state = 12}, + [653] = {.lex_state = 12}, + [654] = {.lex_state = 12}, + [655] = {.lex_state = 22}, + [656] = {.lex_state = 3}, + [657] = {.lex_state = 12}, + [658] = {.lex_state = 3}, + [659] = {.lex_state = 12}, + [660] = {.lex_state = 3}, + [661] = {.lex_state = 3}, + [662] = {.lex_state = 12}, + [663] = {.lex_state = 3}, [664] = {.lex_state = 3}, - [665] = {.lex_state = 5}, - [666] = {.lex_state = 5}, - [667] = {.lex_state = 5}, - [668] = {.lex_state = 3}, - [669] = {.lex_state = 3}, - [670] = {.lex_state = 5}, - [671] = {.lex_state = 3}, + [665] = {.lex_state = 3}, + [666] = {.lex_state = 3}, + [667] = {.lex_state = 12}, + [668] = {.lex_state = 5}, + [669] = {.lex_state = 12}, + [670] = {.lex_state = 12}, + [671] = {.lex_state = 12}, [672] = {.lex_state = 3}, - [673] = {.lex_state = 4}, - [674] = {.lex_state = 4}, + [673] = {.lex_state = 12}, + [674] = {.lex_state = 3}, [675] = {.lex_state = 3}, [676] = {.lex_state = 5}, - [677] = {.lex_state = 5}, + [677] = {.lex_state = 3}, [678] = {.lex_state = 3}, - [679] = {.lex_state = 3}, + [679] = {.lex_state = 12}, [680] = {.lex_state = 5}, - [681] = {.lex_state = 12}, + [681] = {.lex_state = 5}, [682] = {.lex_state = 3}, [683] = {.lex_state = 3}, [684] = {.lex_state = 3}, - [685] = {.lex_state = 3}, + [685] = {.lex_state = 5}, [686] = {.lex_state = 3}, - [687] = {.lex_state = 3}, + [687] = {.lex_state = 5}, [688] = {.lex_state = 3}, [689] = {.lex_state = 3}, [690] = {.lex_state = 3}, - [691] = {.lex_state = 0}, + [691] = {.lex_state = 3}, [692] = {.lex_state = 3}, - [693] = {.lex_state = 0}, - [694] = {.lex_state = 3}, + [693] = {.lex_state = 5}, + [694] = {.lex_state = 5}, [695] = {.lex_state = 3}, [696] = {.lex_state = 3}, - [697] = {.lex_state = 3}, + [697] = {.lex_state = 5}, [698] = {.lex_state = 3}, [699] = {.lex_state = 3}, [700] = {.lex_state = 3}, [701] = {.lex_state = 3}, - [702] = {.lex_state = 4}, - [703] = {.lex_state = 4}, - [704] = {.lex_state = 3}, + [702] = {.lex_state = 3}, + [703] = {.lex_state = 5}, + [704] = {.lex_state = 4}, [705] = {.lex_state = 3}, [706] = {.lex_state = 3}, - [707] = {.lex_state = 3}, - [708] = {.lex_state = 3}, - [709] = {.lex_state = 3}, - [710] = {.lex_state = 3}, - [711] = {.lex_state = 3}, + [707] = {.lex_state = 5}, + [708] = {.lex_state = 4}, + [709] = {.lex_state = 5}, + [710] = {.lex_state = 4}, + [711] = {.lex_state = 5}, [712] = {.lex_state = 3}, [713] = {.lex_state = 3}, - [714] = {.lex_state = 3}, - [715] = {.lex_state = 3}, + [714] = {.lex_state = 4}, + [715] = {.lex_state = 5}, [716] = {.lex_state = 3}, - [717] = {.lex_state = 3}, + [717] = {.lex_state = 5}, [718] = {.lex_state = 3}, [719] = {.lex_state = 3}, - [720] = {.lex_state = 3}, - [721] = {.lex_state = 3}, - [722] = {.lex_state = 3}, + [720] = {.lex_state = 5}, + [721] = {.lex_state = 5}, + [722] = {.lex_state = 4}, [723] = {.lex_state = 3}, [724] = {.lex_state = 3}, - [725] = {.lex_state = 3}, - [726] = {.lex_state = 3}, - [727] = {.lex_state = 3}, - [728] = {.lex_state = 3}, - [729] = {.lex_state = 3}, - [730] = {.lex_state = 3}, - [731] = {.lex_state = 3}, + [725] = {.lex_state = 5}, + [726] = {.lex_state = 4}, + [727] = {.lex_state = 5}, + [728] = {.lex_state = 4}, + [729] = {.lex_state = 5}, + [730] = {.lex_state = 5}, + [731] = {.lex_state = 4}, [732] = {.lex_state = 3}, [733] = {.lex_state = 3}, - [734] = {.lex_state = 3}, - [735] = {.lex_state = 3}, - [736] = {.lex_state = 4}, - [737] = {.lex_state = 3}, + [734] = {.lex_state = 5}, + [735] = {.lex_state = 5}, + [736] = {.lex_state = 3}, + [737] = {.lex_state = 5}, [738] = {.lex_state = 3}, [739] = {.lex_state = 3}, [740] = {.lex_state = 3}, - [741] = {.lex_state = 3}, + [741] = {.lex_state = 5}, [742] = {.lex_state = 3}, - [743] = {.lex_state = 3}, - [744] = {.lex_state = 3}, - [745] = {.lex_state = 3}, - [746] = {.lex_state = 3}, - [747] = {.lex_state = 3}, - [748] = {.lex_state = 4}, + [743] = {.lex_state = 5}, + [744] = {.lex_state = 5}, + [745] = {.lex_state = 4}, + [746] = {.lex_state = 5}, + [747] = {.lex_state = 4}, + [748] = {.lex_state = 3}, [749] = {.lex_state = 3}, [750] = {.lex_state = 3}, [751] = {.lex_state = 3}, [752] = {.lex_state = 3}, - [753] = {.lex_state = 3}, + [753] = {.lex_state = 12}, [754] = {.lex_state = 3}, [755] = {.lex_state = 3}, [756] = {.lex_state = 3}, [757] = {.lex_state = 3}, - [758] = {.lex_state = 4}, + [758] = {.lex_state = 3}, [759] = {.lex_state = 3}, [760] = {.lex_state = 3}, [761] = {.lex_state = 3}, - [762] = {.lex_state = 3}, - [763] = {.lex_state = 4}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 5}, - [766] = {.lex_state = 5}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 3}, + [765] = {.lex_state = 3}, + [766] = {.lex_state = 3}, [767] = {.lex_state = 3}, - [768] = {.lex_state = 12}, - [769] = {.lex_state = 5}, + [768] = {.lex_state = 3}, + [769] = {.lex_state = 4}, [770] = {.lex_state = 3}, [771] = {.lex_state = 3}, [772] = {.lex_state = 3}, - [773] = {.lex_state = 0}, + [773] = {.lex_state = 3}, [774] = {.lex_state = 3}, [775] = {.lex_state = 3}, [776] = {.lex_state = 3}, - [777] = {.lex_state = 0}, + [777] = {.lex_state = 4}, [778] = {.lex_state = 3}, - [779] = {.lex_state = 0}, - [780] = {.lex_state = 0}, + [779] = {.lex_state = 3}, + [780] = {.lex_state = 3}, [781] = {.lex_state = 3}, - [782] = {.lex_state = 5}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 12}, + [782] = {.lex_state = 3}, + [783] = {.lex_state = 3}, + [784] = {.lex_state = 3}, [785] = {.lex_state = 3}, - [786] = {.lex_state = 5}, - [787] = {.lex_state = 5}, + [786] = {.lex_state = 3}, + [787] = {.lex_state = 3}, [788] = {.lex_state = 3}, [789] = {.lex_state = 3}, - [790] = {.lex_state = 0}, + [790] = {.lex_state = 4}, [791] = {.lex_state = 3}, - [792] = {.lex_state = 0}, + [792] = {.lex_state = 3}, [793] = {.lex_state = 3}, [794] = {.lex_state = 3}, [795] = {.lex_state = 3}, [796] = {.lex_state = 3}, [797] = {.lex_state = 3}, [798] = {.lex_state = 3}, - [799] = {.lex_state = 5}, - [800] = {.lex_state = 0}, - [801] = {.lex_state = 3}, + [799] = {.lex_state = 3}, + [800] = {.lex_state = 3}, + [801] = {.lex_state = 4}, [802] = {.lex_state = 3}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, + [803] = {.lex_state = 3}, + [804] = {.lex_state = 3}, [805] = {.lex_state = 3}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 12}, - [808] = {.lex_state = 0}, + [806] = {.lex_state = 3}, + [807] = {.lex_state = 3}, + [808] = {.lex_state = 3}, [809] = {.lex_state = 3}, [810] = {.lex_state = 3}, - [811] = {.lex_state = 3}, + [811] = {.lex_state = 4}, [812] = {.lex_state = 3}, [813] = {.lex_state = 3}, [814] = {.lex_state = 3}, [815] = {.lex_state = 3}, [816] = {.lex_state = 3}, - [817] = {.lex_state = 4}, + [817] = {.lex_state = 3}, [818] = {.lex_state = 3}, [819] = {.lex_state = 3}, [820] = {.lex_state = 3}, [821] = {.lex_state = 3}, [822] = {.lex_state = 3}, [823] = {.lex_state = 3}, - [824] = {.lex_state = 4}, - [825] = {.lex_state = 0}, + [824] = {.lex_state = 3}, + [825] = {.lex_state = 3}, [826] = {.lex_state = 3}, [827] = {.lex_state = 3}, - [828] = {.lex_state = 4}, - [829] = {.lex_state = 3}, + [828] = {.lex_state = 3}, + [829] = {.lex_state = 4}, [830] = {.lex_state = 3}, - [831] = {.lex_state = 0}, - [832] = {.lex_state = 12}, - [833] = {.lex_state = 3}, - [834] = {.lex_state = 3}, - [835] = {.lex_state = 3}, + [831] = {.lex_state = 3}, + [832] = {.lex_state = 3}, + [833] = {.lex_state = 12}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 5}, [836] = {.lex_state = 3}, - [837] = {.lex_state = 0}, + [837] = {.lex_state = 5}, [838] = {.lex_state = 3}, - [839] = {.lex_state = 5}, - [840] = {.lex_state = 5}, - [841] = {.lex_state = 0}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 3}, + [841] = {.lex_state = 3}, [842] = {.lex_state = 5}, - [843] = {.lex_state = 5}, - [844] = {.lex_state = 5}, - [845] = {.lex_state = 5}, - [846] = {.lex_state = 5}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 3}, - [849] = {.lex_state = 0}, + [843] = {.lex_state = 3}, + [844] = {.lex_state = 3}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 3}, + [847] = {.lex_state = 3}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 12}, [850] = {.lex_state = 5}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 3}, - [853] = {.lex_state = 5}, - [854] = {.lex_state = 5}, - [855] = {.lex_state = 5}, + [851] = {.lex_state = 3}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 3}, + [854] = {.lex_state = 0}, + [855] = {.lex_state = 0}, [856] = {.lex_state = 5}, [857] = {.lex_state = 3}, - [858] = {.lex_state = 3}, - [859] = {.lex_state = 3}, + [858] = {.lex_state = 0}, + [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 3}, + [861] = {.lex_state = 0}, [862] = {.lex_state = 3}, [863] = {.lex_state = 3}, - [864] = {.lex_state = 3}, + [864] = {.lex_state = 0}, [865] = {.lex_state = 0}, - [866] = {.lex_state = 3}, - [867] = {.lex_state = 3}, - [868] = {.lex_state = 5}, - [869] = {.lex_state = 5}, - [870] = {.lex_state = 5}, - [871] = {.lex_state = 0}, - [872] = {.lex_state = 4}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 3}, - [877] = {.lex_state = 0}, + [866] = {.lex_state = 0}, + [867] = {.lex_state = 0}, + [868] = {.lex_state = 3}, + [869] = {.lex_state = 3}, + [870] = {.lex_state = 3}, + [871] = {.lex_state = 3}, + [872] = {.lex_state = 3}, + [873] = {.lex_state = 3}, + [874] = {.lex_state = 3}, + [875] = {.lex_state = 3}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 3}, [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 0}, + [879] = {.lex_state = 3}, + [880] = {.lex_state = 3}, + [881] = {.lex_state = 3}, + [882] = {.lex_state = 3}, [883] = {.lex_state = 5}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 4}, - [888] = {.lex_state = 3}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 3}, - [891] = {.lex_state = 3}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 4}, - [896] = {.lex_state = 0}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 3}, - [899] = {.lex_state = 5}, + [884] = {.lex_state = 5}, + [885] = {.lex_state = 5}, + [886] = {.lex_state = 5}, + [887] = {.lex_state = 5}, + [888] = {.lex_state = 5}, + [889] = {.lex_state = 5}, + [890] = {.lex_state = 5}, + [891] = {.lex_state = 5}, + [892] = {.lex_state = 5}, + [893] = {.lex_state = 5}, + [894] = {.lex_state = 5}, + [895] = {.lex_state = 3}, + [896] = {.lex_state = 3}, + [897] = {.lex_state = 4}, + [898] = {.lex_state = 0}, + [899] = {.lex_state = 3}, [900] = {.lex_state = 3}, [901] = {.lex_state = 5}, - [902] = {.lex_state = 5}, - [903] = {.lex_state = 4}, - [904] = {.lex_state = 5}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0}, [905] = {.lex_state = 3}, [906] = {.lex_state = 0}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 3}, - [910] = {.lex_state = 4}, + [907] = {.lex_state = 3}, + [908] = {.lex_state = 3}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 12}, [911] = {.lex_state = 3}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 3}, - [914] = {.lex_state = 4}, - [915] = {.lex_state = 5}, - [916] = {.lex_state = 5}, - [917] = {.lex_state = 0}, + [912] = {.lex_state = 3}, + [913] = {.lex_state = 4}, + [914] = {.lex_state = 3}, + [915] = {.lex_state = 3}, + [916] = {.lex_state = 3}, + [917] = {.lex_state = 3}, [918] = {.lex_state = 3}, - [919] = {.lex_state = 5}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 5}, - [922] = {.lex_state = 4}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 5}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 5}, + [919] = {.lex_state = 3}, + [920] = {.lex_state = 3}, + [921] = {.lex_state = 3}, + [922] = {.lex_state = 3}, + [923] = {.lex_state = 3}, + [924] = {.lex_state = 3}, + [925] = {.lex_state = 3}, + [926] = {.lex_state = 3}, + [927] = {.lex_state = 3}, + [928] = {.lex_state = 3}, + [929] = {.lex_state = 3}, + [930] = {.lex_state = 3}, + [931] = {.lex_state = 0}, [932] = {.lex_state = 0}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 4}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0}, + [933] = {.lex_state = 3}, + [934] = {.lex_state = 3}, + [935] = {.lex_state = 12}, + [936] = {.lex_state = 3}, + [937] = {.lex_state = 4}, + [938] = {.lex_state = 3}, [939] = {.lex_state = 0}, - [940] = {.lex_state = 4}, + [940] = {.lex_state = 0}, [941] = {.lex_state = 0}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, + [944] = {.lex_state = 4}, [945] = {.lex_state = 0}, [946] = {.lex_state = 0}, [947] = {.lex_state = 0}, @@ -7728,9 +7732,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 0}, + [954] = {.lex_state = 5}, [955] = {.lex_state = 0}, - [956] = {.lex_state = 0}, + [956] = {.lex_state = 5}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, [959] = {.lex_state = 0}, @@ -7738,54 +7742,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [961] = {.lex_state = 0}, [962] = {.lex_state = 0}, [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, + [964] = {.lex_state = 4}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 3}, + [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 5}, + [968] = {.lex_state = 0}, [969] = {.lex_state = 5}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 5}, - [972] = {.lex_state = 0}, - [973] = {.lex_state = 0}, + [970] = {.lex_state = 5}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 3}, + [973] = {.lex_state = 5}, [974] = {.lex_state = 0}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 3}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 3}, - [981] = {.lex_state = 3}, + [975] = {.lex_state = 5}, + [976] = {.lex_state = 4}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 4}, + [979] = {.lex_state = 3}, + [980] = {.lex_state = 5}, + [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, - [983] = {.lex_state = 0}, + [983] = {.lex_state = 3}, [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 3}, + [988] = {.lex_state = 5}, + [989] = {.lex_state = 5}, [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, [992] = {.lex_state = 0}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 3}, + [994] = {.lex_state = 3}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 3}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 5}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 3}, + [999] = {.lex_state = 5}, + [1000] = {.lex_state = 5}, + [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 4}, + [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 4}, + [1006] = {.lex_state = 3}, + [1007] = {.lex_state = 3}, + [1008] = {.lex_state = 3}, + [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0}, + [1011] = {.lex_state = 3}, [1012] = {.lex_state = 0}, [1013] = {.lex_state = 4}, [1014] = {.lex_state = 0}, @@ -7793,121 +7797,121 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1016] = {.lex_state = 0}, [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, + [1019] = {.lex_state = 3}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 5}, + [1024] = {.lex_state = 4}, + [1025] = {.lex_state = 4}, + [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 5}, + [1028] = {.lex_state = 4}, + [1029] = {.lex_state = 0}, [1030] = {.lex_state = 5}, - [1031] = {.lex_state = 4}, - [1032] = {.lex_state = 4}, - [1033] = {.lex_state = 5}, - [1034] = {.lex_state = 5}, - [1035] = {.lex_state = 3}, + [1031] = {.lex_state = 3}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 4}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 4}, + [1037] = {.lex_state = 0}, [1038] = {.lex_state = 5}, [1039] = {.lex_state = 5}, - [1040] = {.lex_state = 5}, + [1040] = {.lex_state = 3}, [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 3}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 5}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, + [1042] = {.lex_state = 5}, + [1043] = {.lex_state = 5}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 5}, + [1046] = {.lex_state = 5}, [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 5}, - [1050] = {.lex_state = 5}, - [1051] = {.lex_state = 5}, + [1049] = {.lex_state = 0}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 5}, - [1055] = {.lex_state = 5}, - [1056] = {.lex_state = 0}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 5}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 3}, - [1059] = {.lex_state = 0}, + [1058] = {.lex_state = 5}, + [1059] = {.lex_state = 5}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0}, + [1066] = {.lex_state = 4}, [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, + [1068] = {.lex_state = 4}, + [1069] = {.lex_state = 5}, + [1070] = {.lex_state = 5}, + [1071] = {.lex_state = 5}, + [1072] = {.lex_state = 3}, + [1073] = {.lex_state = 4}, [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 5}, + [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 5}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 3}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 5}, - [1081] = {.lex_state = 4}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 3}, - [1084] = {.lex_state = 0}, + [1081] = {.lex_state = 5}, + [1082] = {.lex_state = 3}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 5}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 3}, + [1086] = {.lex_state = 5}, [1087] = {.lex_state = 0}, [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 3}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 3}, - [1095] = {.lex_state = 3}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 3}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 3}, + [1090] = {.lex_state = 5}, + [1091] = {.lex_state = 4}, + [1092] = {.lex_state = 5}, + [1093] = {.lex_state = 5}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 5}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 5}, + [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, [1102] = {.lex_state = 3}, - [1103] = {.lex_state = 3}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 3}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 3}, + [1105] = {.lex_state = 0}, [1106] = {.lex_state = 3}, - [1107] = {.lex_state = 5}, + [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, + [1109] = {.lex_state = 3}, + [1110] = {.lex_state = 3}, [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 3}, + [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 3}, + [1115] = {.lex_state = 3}, + [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 3}, + [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, + [1126] = {.lex_state = 4}, [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 5}, + [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, + [1130] = {.lex_state = 4}, [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 3}, - [1133] = {.lex_state = 3}, + [1132] = {.lex_state = 4}, + [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, @@ -7915,32 +7919,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0}, + [1141] = {.lex_state = 5}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 3}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, + [1143] = {.lex_state = 5}, + [1144] = {.lex_state = 5}, + [1145] = {.lex_state = 5}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 3}, - [1148] = {.lex_state = 3}, - [1149] = {.lex_state = 3}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 3}, - [1154] = {.lex_state = 3}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0}, + [1159] = {.lex_state = 3}, [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 3}, + [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 3}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 0}, + [1172] = {.lex_state = 3}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 0}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 0}, + [1177] = {.lex_state = 0}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 3}, + [1182] = {.lex_state = 0}, + [1183] = {.lex_state = 3}, + [1184] = {.lex_state = 3}, + [1185] = {.lex_state = 3}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 3}, + [1189] = {.lex_state = 0}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 3}, + [1193] = {.lex_state = 3}, + [1194] = {.lex_state = 3}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 3}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 5}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 3}, + [1208] = {.lex_state = 3}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 3}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 3}, + [1220] = {.lex_state = 3}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 3}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 5}, + [1227] = {.lex_state = 3}, + [1228] = {.lex_state = 3}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 3}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 3}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 3}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 3}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8077,72 +8165,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1141), - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(9), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym_program] = STATE(1216), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(10), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -8217,73 +8305,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_type_arguments] = STATE(995), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(6), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_explicit_constructor_invocation] = STATE(13), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(527), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_type_arguments] = STATE(1109), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(13), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_explicit_constructor_invocation] = STATE(12), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8359,73 +8447,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_switch_label] = STATE(1100), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_switch_label] = STATE(1169), [sym_statement] = STATE(5), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(5), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_switch_block_statement_group_repeat1] = STATE(175), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_switch_block_statement_group_repeat1] = STATE(216), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8501,71 +8589,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [ts_builtin_sym_end] = ACTIONS(97), [sym_identifier] = ACTIONS(99), [sym_decimal_integer_literal] = ACTIONS(102), @@ -8642,71 +8730,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8782,71 +8870,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8921,71 +9009,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9060,71 +9148,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9199,72 +9287,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(4), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(228), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(8), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9289,6 +9376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9338,71 +9426,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(230), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9427,7 +9516,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(230), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9477,71 +9565,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(7), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9616,71 +9704,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(8), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(6), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9755,71 +9843,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(10), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(4), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9844,7 +9932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(234), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9894,70 +9982,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(180), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(214), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10031,71 +10119,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(200), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(215), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10123,7 +10211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -10131,8 +10219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -10168,71 +10256,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(191), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(181), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10260,7 +10348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -10268,8 +10356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -10305,71 +10393,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(151), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(180), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10397,7 +10485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -10405,8 +10493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -10442,71 +10530,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(211), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(176), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10534,7 +10622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -10542,8 +10630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -10579,70 +10667,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(192), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(199), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10716,70 +10804,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(161), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(202), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10853,70 +10941,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(169), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(205), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10990,70 +11078,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(156), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(193), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11127,71 +11215,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(150), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(182), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11219,7 +11307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -11227,8 +11315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -11264,70 +11352,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(142), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(208), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11401,70 +11489,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(163), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(210), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11538,71 +11626,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(164), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(178), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11630,7 +11718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -11638,8 +11726,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -11675,70 +11763,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(1120), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(198), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11812,70 +11900,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(188), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(215), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11949,70 +12037,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(157), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(217), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12086,70 +12174,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(165), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(173), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12223,70 +12311,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(171), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(228), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12360,70 +12448,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(168), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(233), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12497,70 +12585,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(149), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(209), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12634,70 +12722,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(184), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(196), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12771,70 +12859,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(167), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(176), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12908,70 +12996,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(154), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(180), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13045,71 +13133,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(201), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(196), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13137,7 +13225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13145,8 +13233,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -13182,71 +13270,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(215), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(209), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13274,7 +13362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13282,8 +13370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -13319,71 +13407,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(183), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(198), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13411,7 +13499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13419,8 +13507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -13456,70 +13544,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(182), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(185), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13593,70 +13681,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(204), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(194), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13730,71 +13818,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(159), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(189), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13822,7 +13910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13830,8 +13918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -13867,71 +13955,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(166), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(193), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13959,7 +14047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(238), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13967,8 +14055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -14004,70 +14092,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(189), - [sym_block] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_assert_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_yield_statement] = STATE(203), - [sym_synchronized_statement] = STATE(203), - [sym_throw_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_try_with_resources_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_enhanced_for_statement] = STATE(203), - [sym__annotation] = STATE(428), - [sym_marker_annotation] = STATE(428), - [sym_annotation] = STATE(428), - [sym_declaration] = STATE(203), - [sym_module_declaration] = STATE(160), - [sym_package_declaration] = STATE(160), - [sym_import_declaration] = STATE(160), - [sym_enum_declaration] = STATE(160), - [sym_class_declaration] = STATE(160), - [sym_modifiers] = STATE(583), - [sym_annotation_type_declaration] = STATE(160), - [sym_interface_declaration] = STATE(160), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(613), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(203), - [aux_sym_array_creation_expression_repeat1] = STATE(536), - [aux_sym_modifiers_repeat1] = STATE(352), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(199), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [45] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(227), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14140,962 +14365,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [45] = { - [ts_builtin_sym_end] = ACTIONS(236), - [sym_identifier] = ACTIONS(238), - [sym_decimal_integer_literal] = ACTIONS(238), - [sym_hex_integer_literal] = ACTIONS(238), - [sym_octal_integer_literal] = ACTIONS(236), - [sym_binary_integer_literal] = ACTIONS(236), - [sym_decimal_floating_point_literal] = ACTIONS(236), - [sym_hex_floating_point_literal] = ACTIONS(238), - [sym_true] = ACTIONS(238), - [sym_false] = ACTIONS(238), - [sym_character_literal] = ACTIONS(236), - [sym_string_literal] = ACTIONS(238), - [sym_text_block] = ACTIONS(236), - [sym_null_literal] = ACTIONS(238), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_AMP_AMP] = ACTIONS(236), - [anon_sym_PIPE_PIPE] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_STAR] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_GT_GT_GT] = ACTIONS(236), - [anon_sym_instanceof] = ACTIONS(238), - [anon_sym_DASH_GT] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_QMARK] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(238), - [anon_sym_BANG] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(236), - [anon_sym_PLUS_PLUS] = ACTIONS(236), - [anon_sym_DASH_DASH] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(238), - [anon_sym_class] = ACTIONS(238), - [anon_sym_COLON_COLON] = ACTIONS(236), - [anon_sym_switch] = ACTIONS(238), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), - [anon_sym_case] = ACTIONS(238), - [anon_sym_default] = ACTIONS(238), - [anon_sym_SEMI] = ACTIONS(236), - [anon_sym_assert] = ACTIONS(238), - [anon_sym_do] = ACTIONS(238), - [anon_sym_while] = ACTIONS(238), - [anon_sym_break] = ACTIONS(238), - [anon_sym_continue] = ACTIONS(238), - [anon_sym_return] = ACTIONS(238), - [anon_sym_yield] = ACTIONS(238), - [anon_sym_synchronized] = ACTIONS(238), - [anon_sym_throw] = ACTIONS(238), - [anon_sym_try] = ACTIONS(238), - [anon_sym_if] = ACTIONS(238), - [anon_sym_else] = ACTIONS(238), - [anon_sym_for] = ACTIONS(238), - [anon_sym_AT] = ACTIONS(238), - [anon_sym_open] = ACTIONS(238), - [anon_sym_module] = ACTIONS(238), - [anon_sym_static] = ACTIONS(238), - [anon_sym_package] = ACTIONS(238), - [anon_sym_import] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(238), - [anon_sym_public] = ACTIONS(238), - [anon_sym_protected] = ACTIONS(238), - [anon_sym_private] = ACTIONS(238), - [anon_sym_abstract] = ACTIONS(238), - [anon_sym_final] = ACTIONS(238), - [anon_sym_strictfp] = ACTIONS(238), - [anon_sym_native] = ACTIONS(238), - [anon_sym_transient] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_sealed] = ACTIONS(238), - [anon_sym_non_DASHsealed] = ACTIONS(236), - [anon_sym_record] = ACTIONS(238), - [anon_sym_ATinterface] = ACTIONS(236), - [anon_sym_interface] = ACTIONS(238), - [anon_sym_byte] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_int] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_char] = ACTIONS(238), - [anon_sym_float] = ACTIONS(238), - [anon_sym_double] = ACTIONS(238), - [sym_boolean_type] = ACTIONS(238), - [sym_void_type] = ACTIONS(238), - [sym_this] = ACTIONS(238), - [sym_super] = ACTIONS(238), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [46] = { - [ts_builtin_sym_end] = ACTIONS(240), - [sym_identifier] = ACTIONS(242), - [sym_decimal_integer_literal] = ACTIONS(242), - [sym_hex_integer_literal] = ACTIONS(242), - [sym_octal_integer_literal] = ACTIONS(240), - [sym_binary_integer_literal] = ACTIONS(240), - [sym_decimal_floating_point_literal] = ACTIONS(240), - [sym_hex_floating_point_literal] = ACTIONS(242), - [sym_true] = ACTIONS(242), - [sym_false] = ACTIONS(242), - [sym_character_literal] = ACTIONS(240), - [sym_string_literal] = ACTIONS(242), - [sym_text_block] = ACTIONS(240), - [sym_null_literal] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(242), - [anon_sym_STAR] = ACTIONS(240), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(242), - [anon_sym_GT_GT_GT] = ACTIONS(240), - [anon_sym_instanceof] = ACTIONS(242), - [anon_sym_DASH_GT] = ACTIONS(240), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_COLON] = ACTIONS(242), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_PLUS_PLUS] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(242), - [anon_sym_LBRACK] = ACTIONS(240), - [anon_sym_RBRACK] = ACTIONS(240), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_class] = ACTIONS(242), - [anon_sym_COLON_COLON] = ACTIONS(240), - [anon_sym_switch] = ACTIONS(242), - [anon_sym_LBRACE] = ACTIONS(240), - [anon_sym_RBRACE] = ACTIONS(240), - [anon_sym_case] = ACTIONS(242), - [anon_sym_default] = ACTIONS(242), - [anon_sym_SEMI] = ACTIONS(240), - [anon_sym_assert] = ACTIONS(242), - [anon_sym_do] = ACTIONS(242), - [anon_sym_while] = ACTIONS(242), - [anon_sym_break] = ACTIONS(242), - [anon_sym_continue] = ACTIONS(242), - [anon_sym_return] = ACTIONS(242), - [anon_sym_yield] = ACTIONS(242), - [anon_sym_synchronized] = ACTIONS(242), - [anon_sym_throw] = ACTIONS(242), - [anon_sym_try] = ACTIONS(242), - [anon_sym_if] = ACTIONS(242), - [anon_sym_else] = ACTIONS(242), - [anon_sym_for] = ACTIONS(242), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_open] = ACTIONS(242), - [anon_sym_module] = ACTIONS(242), - [anon_sym_static] = ACTIONS(242), - [anon_sym_package] = ACTIONS(242), - [anon_sym_import] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(242), - [anon_sym_public] = ACTIONS(242), - [anon_sym_protected] = ACTIONS(242), - [anon_sym_private] = ACTIONS(242), - [anon_sym_abstract] = ACTIONS(242), - [anon_sym_final] = ACTIONS(242), - [anon_sym_strictfp] = ACTIONS(242), - [anon_sym_native] = ACTIONS(242), - [anon_sym_transient] = ACTIONS(242), - [anon_sym_volatile] = ACTIONS(242), - [anon_sym_sealed] = ACTIONS(242), - [anon_sym_non_DASHsealed] = ACTIONS(240), - [anon_sym_record] = ACTIONS(242), - [anon_sym_ATinterface] = ACTIONS(240), - [anon_sym_interface] = ACTIONS(242), - [anon_sym_byte] = ACTIONS(242), - [anon_sym_short] = ACTIONS(242), - [anon_sym_int] = ACTIONS(242), - [anon_sym_long] = ACTIONS(242), - [anon_sym_char] = ACTIONS(242), - [anon_sym_float] = ACTIONS(242), - [anon_sym_double] = ACTIONS(242), - [sym_boolean_type] = ACTIONS(242), - [sym_void_type] = ACTIONS(242), - [sym_this] = ACTIONS(242), - [sym_super] = ACTIONS(242), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [sym_decimal_integer_literal] = ACTIONS(246), - [sym_hex_integer_literal] = ACTIONS(246), - [sym_octal_integer_literal] = ACTIONS(244), - [sym_binary_integer_literal] = ACTIONS(244), - [sym_decimal_floating_point_literal] = ACTIONS(244), - [sym_hex_floating_point_literal] = ACTIONS(246), - [sym_true] = ACTIONS(246), - [sym_false] = ACTIONS(246), - [sym_character_literal] = ACTIONS(244), - [sym_string_literal] = ACTIONS(246), - [sym_text_block] = ACTIONS(244), - [sym_null_literal] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_AMP] = ACTIONS(246), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(244), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(246), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(244), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_GT_GT_GT] = ACTIONS(244), - [anon_sym_instanceof] = ACTIONS(246), - [anon_sym_DASH_GT] = ACTIONS(244), - [anon_sym_COMMA] = ACTIONS(244), - [anon_sym_QMARK] = ACTIONS(244), - [anon_sym_COLON] = ACTIONS(244), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_new] = ACTIONS(246), - [anon_sym_RBRACK] = ACTIONS(244), - [anon_sym_class] = ACTIONS(246), - [anon_sym_switch] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(246), - [anon_sym_default] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(244), - [anon_sym_assert] = ACTIONS(246), - [anon_sym_do] = ACTIONS(246), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(246), - [anon_sym_continue] = ACTIONS(246), - [anon_sym_return] = ACTIONS(246), - [anon_sym_yield] = ACTIONS(246), - [anon_sym_synchronized] = ACTIONS(246), - [anon_sym_throw] = ACTIONS(246), - [anon_sym_try] = ACTIONS(246), - [anon_sym_if] = ACTIONS(246), - [anon_sym_else] = ACTIONS(246), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(246), - [anon_sym_open] = ACTIONS(246), - [anon_sym_module] = ACTIONS(246), - [anon_sym_static] = ACTIONS(246), - [anon_sym_package] = ACTIONS(246), - [anon_sym_import] = ACTIONS(246), - [anon_sym_enum] = ACTIONS(246), - [anon_sym_public] = ACTIONS(246), - [anon_sym_protected] = ACTIONS(246), - [anon_sym_private] = ACTIONS(246), - [anon_sym_abstract] = ACTIONS(246), - [anon_sym_final] = ACTIONS(246), - [anon_sym_strictfp] = ACTIONS(246), - [anon_sym_native] = ACTIONS(246), - [anon_sym_transient] = ACTIONS(246), - [anon_sym_volatile] = ACTIONS(246), - [anon_sym_sealed] = ACTIONS(246), - [anon_sym_non_DASHsealed] = ACTIONS(244), - [anon_sym_record] = ACTIONS(246), - [anon_sym_ATinterface] = ACTIONS(244), - [anon_sym_interface] = ACTIONS(246), - [anon_sym_byte] = ACTIONS(246), - [anon_sym_short] = ACTIONS(246), - [anon_sym_int] = ACTIONS(246), - [anon_sym_long] = ACTIONS(246), - [anon_sym_char] = ACTIONS(246), - [anon_sym_float] = ACTIONS(246), - [anon_sym_double] = ACTIONS(246), - [sym_boolean_type] = ACTIONS(246), - [sym_void_type] = ACTIONS(246), - [sym_this] = ACTIONS(246), - [sym_super] = ACTIONS(246), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [48] = { - [ts_builtin_sym_end] = ACTIONS(248), - [sym_identifier] = ACTIONS(250), - [sym_decimal_integer_literal] = ACTIONS(250), - [sym_hex_integer_literal] = ACTIONS(250), - [sym_octal_integer_literal] = ACTIONS(248), - [sym_binary_integer_literal] = ACTIONS(248), - [sym_decimal_floating_point_literal] = ACTIONS(248), - [sym_hex_floating_point_literal] = ACTIONS(250), - [sym_true] = ACTIONS(250), - [sym_false] = ACTIONS(250), - [sym_character_literal] = ACTIONS(248), - [sym_string_literal] = ACTIONS(250), - [sym_text_block] = ACTIONS(248), - [sym_null_literal] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_AMP] = ACTIONS(250), - [anon_sym_RPAREN] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(250), - [anon_sym_GT_EQ] = ACTIONS(248), - [anon_sym_LT_EQ] = ACTIONS(248), - [anon_sym_EQ_EQ] = ACTIONS(248), - [anon_sym_BANG_EQ] = ACTIONS(248), - [anon_sym_AMP_AMP] = ACTIONS(248), - [anon_sym_PIPE_PIPE] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_STAR] = ACTIONS(248), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(250), - [anon_sym_CARET] = ACTIONS(248), - [anon_sym_PERCENT] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_GT_GT_GT] = ACTIONS(248), - [anon_sym_instanceof] = ACTIONS(250), - [anon_sym_DASH_GT] = ACTIONS(248), - [anon_sym_COMMA] = ACTIONS(248), - [anon_sym_QMARK] = ACTIONS(248), - [anon_sym_COLON] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(248), - [anon_sym_DASH_DASH] = ACTIONS(248), - [anon_sym_new] = ACTIONS(250), - [anon_sym_RBRACK] = ACTIONS(248), - [anon_sym_class] = ACTIONS(250), - [anon_sym_switch] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(248), - [anon_sym_case] = ACTIONS(250), - [anon_sym_default] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(248), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(250), - [anon_sym_return] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(250), - [anon_sym_synchronized] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_else] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_open] = ACTIONS(250), - [anon_sym_module] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_package] = ACTIONS(250), - [anon_sym_import] = ACTIONS(250), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_final] = ACTIONS(250), - [anon_sym_strictfp] = ACTIONS(250), - [anon_sym_native] = ACTIONS(250), - [anon_sym_transient] = ACTIONS(250), - [anon_sym_volatile] = ACTIONS(250), - [anon_sym_sealed] = ACTIONS(250), - [anon_sym_non_DASHsealed] = ACTIONS(248), - [anon_sym_record] = ACTIONS(250), - [anon_sym_ATinterface] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(250), - [anon_sym_byte] = ACTIONS(250), - [anon_sym_short] = ACTIONS(250), - [anon_sym_int] = ACTIONS(250), - [anon_sym_long] = ACTIONS(250), - [anon_sym_char] = ACTIONS(250), - [anon_sym_float] = ACTIONS(250), - [anon_sym_double] = ACTIONS(250), - [sym_boolean_type] = ACTIONS(250), - [sym_void_type] = ACTIONS(250), - [sym_this] = ACTIONS(250), - [sym_super] = ACTIONS(250), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [49] = { - [sym_identifier] = ACTIONS(252), - [sym_decimal_integer_literal] = ACTIONS(252), - [sym_hex_integer_literal] = ACTIONS(252), - [sym_octal_integer_literal] = ACTIONS(254), - [sym_binary_integer_literal] = ACTIONS(254), - [sym_decimal_floating_point_literal] = ACTIONS(254), - [sym_hex_floating_point_literal] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_character_literal] = ACTIONS(254), - [sym_string_literal] = ACTIONS(252), - [sym_text_block] = ACTIONS(254), - [sym_null_literal] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(254), - [anon_sym_AMP] = ACTIONS(252), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(254), - [anon_sym_LT_EQ] = ACTIONS(254), - [anon_sym_EQ_EQ] = ACTIONS(254), - [anon_sym_BANG_EQ] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(254), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_CARET] = ACTIONS(254), - [anon_sym_PERCENT] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(254), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(254), - [anon_sym_instanceof] = ACTIONS(252), - [anon_sym_DASH_GT] = ACTIONS(254), - [anon_sym_COMMA] = ACTIONS(254), - [anon_sym_QMARK] = ACTIONS(254), - [anon_sym_COLON] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [anon_sym_new] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(254), - [anon_sym_RBRACK] = ACTIONS(254), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_class] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(254), - [anon_sym_switch] = ACTIONS(252), - [anon_sym_LBRACE] = ACTIONS(254), - [anon_sym_RBRACE] = ACTIONS(254), - [anon_sym_default] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(254), - [anon_sym_assert] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_while] = ACTIONS(252), - [anon_sym_break] = ACTIONS(252), - [anon_sym_continue] = ACTIONS(252), - [anon_sym_return] = ACTIONS(252), - [anon_sym_yield] = ACTIONS(252), - [anon_sym_synchronized] = ACTIONS(252), - [anon_sym_throw] = ACTIONS(252), - [anon_sym_try] = ACTIONS(252), - [anon_sym_if] = ACTIONS(252), - [anon_sym_for] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(252), - [anon_sym_open] = ACTIONS(252), - [anon_sym_module] = ACTIONS(252), - [anon_sym_static] = ACTIONS(252), - [anon_sym_package] = ACTIONS(252), - [anon_sym_import] = ACTIONS(252), - [anon_sym_enum] = ACTIONS(252), - [anon_sym_public] = ACTIONS(252), - [anon_sym_protected] = ACTIONS(252), - [anon_sym_private] = ACTIONS(252), - [anon_sym_abstract] = ACTIONS(252), - [anon_sym_final] = ACTIONS(252), - [anon_sym_strictfp] = ACTIONS(252), - [anon_sym_native] = ACTIONS(252), - [anon_sym_transient] = ACTIONS(252), - [anon_sym_volatile] = ACTIONS(252), - [anon_sym_sealed] = ACTIONS(252), - [anon_sym_non_DASHsealed] = ACTIONS(254), - [anon_sym_ATinterface] = ACTIONS(254), - [anon_sym_interface] = ACTIONS(252), - [anon_sym_byte] = ACTIONS(252), - [anon_sym_short] = ACTIONS(252), - [anon_sym_int] = ACTIONS(252), - [anon_sym_long] = ACTIONS(252), - [anon_sym_char] = ACTIONS(252), - [anon_sym_float] = ACTIONS(252), - [anon_sym_double] = ACTIONS(252), - [sym_boolean_type] = ACTIONS(252), - [sym_void_type] = ACTIONS(252), - [sym_this] = ACTIONS(252), - [sym_super] = ACTIONS(252), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_decimal_integer_literal] = ACTIONS(258), - [sym_hex_integer_literal] = ACTIONS(258), - [sym_octal_integer_literal] = ACTIONS(256), - [sym_binary_integer_literal] = ACTIONS(256), - [sym_decimal_floating_point_literal] = ACTIONS(256), - [sym_hex_floating_point_literal] = ACTIONS(258), - [sym_true] = ACTIONS(258), - [sym_false] = ACTIONS(258), - [sym_character_literal] = ACTIONS(256), - [sym_string_literal] = ACTIONS(258), - [sym_text_block] = ACTIONS(256), - [sym_null_literal] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_STAR] = ACTIONS(256), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(256), - [anon_sym_PERCENT] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_GT_GT_GT] = ACTIONS(256), - [anon_sym_instanceof] = ACTIONS(258), - [anon_sym_DASH_GT] = ACTIONS(256), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_QMARK] = ACTIONS(256), - [anon_sym_COLON] = ACTIONS(256), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(256), - [anon_sym_DASH_DASH] = ACTIONS(256), - [anon_sym_new] = ACTIONS(258), - [anon_sym_RBRACK] = ACTIONS(256), - [anon_sym_class] = ACTIONS(258), - [anon_sym_switch] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(256), - [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(258), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_assert] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [anon_sym_break] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(258), - [anon_sym_synchronized] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_open] = ACTIONS(258), - [anon_sym_module] = ACTIONS(258), - [anon_sym_static] = ACTIONS(258), - [anon_sym_package] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_enum] = ACTIONS(258), - [anon_sym_public] = ACTIONS(258), - [anon_sym_protected] = ACTIONS(258), - [anon_sym_private] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_final] = ACTIONS(258), - [anon_sym_strictfp] = ACTIONS(258), - [anon_sym_native] = ACTIONS(258), - [anon_sym_transient] = ACTIONS(258), - [anon_sym_volatile] = ACTIONS(258), - [anon_sym_sealed] = ACTIONS(258), - [anon_sym_non_DASHsealed] = ACTIONS(256), - [anon_sym_ATinterface] = ACTIONS(256), - [anon_sym_interface] = ACTIONS(258), - [anon_sym_byte] = ACTIONS(258), - [anon_sym_short] = ACTIONS(258), - [anon_sym_int] = ACTIONS(258), - [anon_sym_long] = ACTIONS(258), - [anon_sym_char] = ACTIONS(258), - [anon_sym_float] = ACTIONS(258), - [anon_sym_double] = ACTIONS(258), - [sym_boolean_type] = ACTIONS(258), - [sym_void_type] = ACTIONS(258), - [sym_this] = ACTIONS(258), - [sym_super] = ACTIONS(258), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(260), - [sym_identifier] = ACTIONS(262), - [sym_decimal_integer_literal] = ACTIONS(262), - [sym_hex_integer_literal] = ACTIONS(262), - [sym_octal_integer_literal] = ACTIONS(260), - [sym_binary_integer_literal] = ACTIONS(260), - [sym_decimal_floating_point_literal] = ACTIONS(260), - [sym_hex_floating_point_literal] = ACTIONS(262), - [sym_true] = ACTIONS(262), - [sym_false] = ACTIONS(262), - [sym_character_literal] = ACTIONS(260), - [sym_string_literal] = ACTIONS(262), - [sym_text_block] = ACTIONS(260), - [sym_null_literal] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_GT] = ACTIONS(262), - [anon_sym_LT] = ACTIONS(262), - [anon_sym_GT_EQ] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(260), - [anon_sym_EQ_EQ] = ACTIONS(260), - [anon_sym_BANG_EQ] = ACTIONS(260), - [anon_sym_AMP_AMP] = ACTIONS(260), - [anon_sym_PIPE_PIPE] = ACTIONS(260), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(260), - [anon_sym_instanceof] = ACTIONS(262), - [anon_sym_DASH_GT] = ACTIONS(260), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_QMARK] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(262), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_PLUS_PLUS] = ACTIONS(260), - [anon_sym_DASH_DASH] = ACTIONS(260), - [anon_sym_new] = ACTIONS(262), - [anon_sym_RBRACK] = ACTIONS(260), - [anon_sym_class] = ACTIONS(262), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(262), - [anon_sym_SEMI] = ACTIONS(260), - [anon_sym_assert] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [anon_sym_break] = ACTIONS(262), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_yield] = ACTIONS(262), - [anon_sym_synchronized] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_if] = ACTIONS(262), - [anon_sym_else] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_open] = ACTIONS(262), - [anon_sym_module] = ACTIONS(262), - [anon_sym_static] = ACTIONS(262), - [anon_sym_package] = ACTIONS(262), - [anon_sym_import] = ACTIONS(262), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_public] = ACTIONS(262), - [anon_sym_protected] = ACTIONS(262), - [anon_sym_private] = ACTIONS(262), - [anon_sym_abstract] = ACTIONS(262), - [anon_sym_final] = ACTIONS(262), - [anon_sym_strictfp] = ACTIONS(262), - [anon_sym_native] = ACTIONS(262), - [anon_sym_transient] = ACTIONS(262), - [anon_sym_volatile] = ACTIONS(262), - [anon_sym_sealed] = ACTIONS(262), - [anon_sym_non_DASHsealed] = ACTIONS(260), - [anon_sym_ATinterface] = ACTIONS(260), - [anon_sym_interface] = ACTIONS(262), - [anon_sym_byte] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_int] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_char] = ACTIONS(262), - [anon_sym_float] = ACTIONS(262), - [anon_sym_double] = ACTIONS(262), - [sym_boolean_type] = ACTIONS(262), - [sym_void_type] = ACTIONS(262), - [sym_this] = ACTIONS(262), - [sym_super] = ACTIONS(262), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [52] = { - [ts_builtin_sym_end] = ACTIONS(264), - [sym_identifier] = ACTIONS(266), - [sym_decimal_integer_literal] = ACTIONS(266), - [sym_hex_integer_literal] = ACTIONS(266), - [sym_octal_integer_literal] = ACTIONS(264), - [sym_binary_integer_literal] = ACTIONS(264), - [sym_decimal_floating_point_literal] = ACTIONS(264), - [sym_hex_floating_point_literal] = ACTIONS(266), - [sym_true] = ACTIONS(266), - [sym_false] = ACTIONS(266), - [sym_character_literal] = ACTIONS(264), - [sym_string_literal] = ACTIONS(266), - [sym_text_block] = ACTIONS(264), - [sym_null_literal] = ACTIONS(266), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_GT] = ACTIONS(266), - [anon_sym_LT] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(264), - [anon_sym_LT_EQ] = ACTIONS(264), - [anon_sym_EQ_EQ] = ACTIONS(264), - [anon_sym_BANG_EQ] = ACTIONS(264), - [anon_sym_AMP_AMP] = ACTIONS(264), - [anon_sym_PIPE_PIPE] = ACTIONS(264), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(264), - [anon_sym_PERCENT] = ACTIONS(264), - [anon_sym_LT_LT] = ACTIONS(264), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_GT_GT_GT] = ACTIONS(264), - [anon_sym_instanceof] = ACTIONS(266), - [anon_sym_DASH_GT] = ACTIONS(264), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_QMARK] = ACTIONS(264), - [anon_sym_COLON] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(264), - [anon_sym_DASH_DASH] = ACTIONS(264), - [anon_sym_new] = ACTIONS(266), - [anon_sym_RBRACK] = ACTIONS(264), - [anon_sym_class] = ACTIONS(266), - [anon_sym_switch] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(264), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_default] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_assert] = ACTIONS(266), - [anon_sym_do] = ACTIONS(266), - [anon_sym_while] = ACTIONS(266), - [anon_sym_break] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(266), - [anon_sym_return] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(266), - [anon_sym_synchronized] = ACTIONS(266), - [anon_sym_throw] = ACTIONS(266), - [anon_sym_try] = ACTIONS(266), - [anon_sym_if] = ACTIONS(266), - [anon_sym_else] = ACTIONS(266), - [anon_sym_for] = ACTIONS(266), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_open] = ACTIONS(266), - [anon_sym_module] = ACTIONS(266), - [anon_sym_static] = ACTIONS(266), - [anon_sym_package] = ACTIONS(266), - [anon_sym_import] = ACTIONS(266), - [anon_sym_enum] = ACTIONS(266), - [anon_sym_public] = ACTIONS(266), - [anon_sym_protected] = ACTIONS(266), - [anon_sym_private] = ACTIONS(266), - [anon_sym_abstract] = ACTIONS(266), - [anon_sym_final] = ACTIONS(266), - [anon_sym_strictfp] = ACTIONS(266), - [anon_sym_native] = ACTIONS(266), - [anon_sym_transient] = ACTIONS(266), - [anon_sym_volatile] = ACTIONS(266), - [anon_sym_sealed] = ACTIONS(266), - [anon_sym_non_DASHsealed] = ACTIONS(264), - [anon_sym_ATinterface] = ACTIONS(264), - [anon_sym_interface] = ACTIONS(266), - [anon_sym_byte] = ACTIONS(266), - [anon_sym_short] = ACTIONS(266), - [anon_sym_int] = ACTIONS(266), - [anon_sym_long] = ACTIONS(266), - [anon_sym_char] = ACTIONS(266), - [anon_sym_float] = ACTIONS(266), - [anon_sym_double] = ACTIONS(266), - [sym_boolean_type] = ACTIONS(266), - [sym_void_type] = ACTIONS(266), - [sym_this] = ACTIONS(266), - [sym_super] = ACTIONS(266), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_decimal_integer_literal] = ACTIONS(270), - [sym_hex_integer_literal] = ACTIONS(270), - [sym_octal_integer_literal] = ACTIONS(268), - [sym_binary_integer_literal] = ACTIONS(268), - [sym_decimal_floating_point_literal] = ACTIONS(268), - [sym_hex_floating_point_literal] = ACTIONS(270), - [sym_true] = ACTIONS(270), - [sym_false] = ACTIONS(270), - [sym_character_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(270), - [sym_text_block] = ACTIONS(268), - [sym_null_literal] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(274), - [anon_sym_BANG_EQ] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(274), - [anon_sym_PIPE_PIPE] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PIPE] = ACTIONS(272), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_GT_GT_GT] = ACTIONS(274), - [anon_sym_instanceof] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_new] = ACTIONS(270), - [anon_sym_class] = ACTIONS(270), - [anon_sym_switch] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_case] = ACTIONS(270), - [anon_sym_default] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [anon_sym_break] = ACTIONS(270), - [anon_sym_continue] = ACTIONS(270), - [anon_sym_return] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(270), - [anon_sym_synchronized] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_for] = ACTIONS(270), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_open] = ACTIONS(270), - [anon_sym_module] = ACTIONS(270), - [anon_sym_static] = ACTIONS(270), - [anon_sym_package] = ACTIONS(270), - [anon_sym_import] = ACTIONS(270), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_public] = ACTIONS(270), - [anon_sym_protected] = ACTIONS(270), - [anon_sym_private] = ACTIONS(270), - [anon_sym_abstract] = ACTIONS(270), - [anon_sym_final] = ACTIONS(270), - [anon_sym_strictfp] = ACTIONS(270), - [anon_sym_native] = ACTIONS(270), - [anon_sym_transient] = ACTIONS(270), - [anon_sym_volatile] = ACTIONS(270), - [anon_sym_sealed] = ACTIONS(270), - [anon_sym_non_DASHsealed] = ACTIONS(268), - [anon_sym_ATinterface] = ACTIONS(268), - [anon_sym_interface] = ACTIONS(270), - [anon_sym_byte] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_int] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_char] = ACTIONS(270), - [anon_sym_float] = ACTIONS(270), - [anon_sym_double] = ACTIONS(270), - [sym_boolean_type] = ACTIONS(270), - [sym_void_type] = ACTIONS(270), - [sym_this] = ACTIONS(270), - [sym_super] = ACTIONS(270), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(528), - [sym_marker_annotation] = STATE(528), - [sym_annotation] = STATE(528), - [sym_modifiers] = STATE(610), - [sym__type] = STATE(825), - [sym__unannotated_type] = STATE(603), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_formal_parameter] = STATE(906), - [sym_receiver_parameter] = STATE(337), - [sym_spread_parameter] = STATE(906), - [aux_sym_array_creation_expression_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(276), + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(174), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15109,7 +14444,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(278), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15117,80 +14451,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(528), - [sym_marker_annotation] = STATE(528), - [sym_annotation] = STATE(528), - [sym_modifiers] = STATE(610), - [sym__type] = STATE(860), - [sym__unannotated_type] = STATE(603), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_formal_parameter] = STATE(906), - [sym_receiver_parameter] = STATE(337), - [sym_spread_parameter] = STATE(906), - [aux_sym_array_creation_expression_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(276), + [47] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(172), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15204,7 +14581,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(278), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15212,24 +14588,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -15244,46 +14639,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(502), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(528), - [sym_marker_annotation] = STATE(528), - [sym_annotation] = STATE(528), - [sym_modifiers] = STATE(612), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(614), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [sym_local_variable_declaration] = STATE(234), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [aux_sym_modifiers_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(288), + [48] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(189), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15304,25 +14725,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -15337,373 +14776,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym_catch_clause] = STATE(59), - [sym_finally_clause] = STATE(143), - [aux_sym_try_statement_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(292), - [sym_identifier] = ACTIONS(294), - [sym_decimal_integer_literal] = ACTIONS(294), - [sym_hex_integer_literal] = ACTIONS(294), - [sym_octal_integer_literal] = ACTIONS(292), - [sym_binary_integer_literal] = ACTIONS(292), - [sym_decimal_floating_point_literal] = ACTIONS(292), - [sym_hex_floating_point_literal] = ACTIONS(294), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_character_literal] = ACTIONS(292), - [sym_string_literal] = ACTIONS(294), - [sym_text_block] = ACTIONS(292), - [sym_null_literal] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(292), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(292), - [anon_sym_new] = ACTIONS(294), - [anon_sym_class] = ACTIONS(294), - [anon_sym_switch] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(292), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_case] = ACTIONS(294), - [anon_sym_default] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(294), - [anon_sym_do] = ACTIONS(294), - [anon_sym_while] = ACTIONS(294), - [anon_sym_break] = ACTIONS(294), - [anon_sym_continue] = ACTIONS(294), - [anon_sym_return] = ACTIONS(294), - [anon_sym_yield] = ACTIONS(294), - [anon_sym_synchronized] = ACTIONS(294), - [anon_sym_throw] = ACTIONS(294), - [anon_sym_try] = ACTIONS(294), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(294), - [anon_sym_else] = ACTIONS(294), - [anon_sym_for] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(294), - [anon_sym_open] = ACTIONS(294), - [anon_sym_module] = ACTIONS(294), - [anon_sym_static] = ACTIONS(294), - [anon_sym_package] = ACTIONS(294), - [anon_sym_import] = ACTIONS(294), - [anon_sym_enum] = ACTIONS(294), - [anon_sym_public] = ACTIONS(294), - [anon_sym_protected] = ACTIONS(294), - [anon_sym_private] = ACTIONS(294), - [anon_sym_abstract] = ACTIONS(294), - [anon_sym_final] = ACTIONS(294), - [anon_sym_strictfp] = ACTIONS(294), - [anon_sym_native] = ACTIONS(294), - [anon_sym_transient] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_sealed] = ACTIONS(294), - [anon_sym_non_DASHsealed] = ACTIONS(292), - [anon_sym_ATinterface] = ACTIONS(292), - [anon_sym_interface] = ACTIONS(294), - [anon_sym_byte] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_int] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_char] = ACTIONS(294), - [anon_sym_float] = ACTIONS(294), - [anon_sym_double] = ACTIONS(294), - [sym_boolean_type] = ACTIONS(294), - [sym_void_type] = ACTIONS(294), - [sym_this] = ACTIONS(294), - [sym_super] = ACTIONS(294), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [58] = { - [sym_catch_clause] = STATE(60), - [sym_finally_clause] = STATE(146), - [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(300), - [sym_identifier] = ACTIONS(302), - [sym_decimal_integer_literal] = ACTIONS(302), - [sym_hex_integer_literal] = ACTIONS(302), - [sym_octal_integer_literal] = ACTIONS(300), - [sym_binary_integer_literal] = ACTIONS(300), - [sym_decimal_floating_point_literal] = ACTIONS(300), - [sym_hex_floating_point_literal] = ACTIONS(302), - [sym_true] = ACTIONS(302), - [sym_false] = ACTIONS(302), - [sym_character_literal] = ACTIONS(300), - [sym_string_literal] = ACTIONS(302), - [sym_text_block] = ACTIONS(300), - [sym_null_literal] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_PLUS_PLUS] = ACTIONS(300), - [anon_sym_DASH_DASH] = ACTIONS(300), - [anon_sym_new] = ACTIONS(302), - [anon_sym_class] = ACTIONS(302), - [anon_sym_switch] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_assert] = ACTIONS(302), - [anon_sym_do] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_synchronized] = ACTIONS(302), - [anon_sym_throw] = ACTIONS(302), - [anon_sym_try] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_AT] = ACTIONS(302), - [anon_sym_open] = ACTIONS(302), - [anon_sym_module] = ACTIONS(302), - [anon_sym_static] = ACTIONS(302), - [anon_sym_package] = ACTIONS(302), - [anon_sym_import] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_public] = ACTIONS(302), - [anon_sym_protected] = ACTIONS(302), - [anon_sym_private] = ACTIONS(302), - [anon_sym_abstract] = ACTIONS(302), - [anon_sym_final] = ACTIONS(302), - [anon_sym_strictfp] = ACTIONS(302), - [anon_sym_native] = ACTIONS(302), - [anon_sym_transient] = ACTIONS(302), - [anon_sym_volatile] = ACTIONS(302), - [anon_sym_sealed] = ACTIONS(302), - [anon_sym_non_DASHsealed] = ACTIONS(300), - [anon_sym_ATinterface] = ACTIONS(300), - [anon_sym_interface] = ACTIONS(302), - [anon_sym_byte] = ACTIONS(302), - [anon_sym_short] = ACTIONS(302), - [anon_sym_int] = ACTIONS(302), - [anon_sym_long] = ACTIONS(302), - [anon_sym_char] = ACTIONS(302), - [anon_sym_float] = ACTIONS(302), - [anon_sym_double] = ACTIONS(302), - [sym_boolean_type] = ACTIONS(302), - [sym_void_type] = ACTIONS(302), - [sym_this] = ACTIONS(302), - [sym_super] = ACTIONS(302), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [59] = { - [sym_catch_clause] = STATE(60), - [sym_finally_clause] = STATE(158), - [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(304), - [sym_identifier] = ACTIONS(306), - [sym_decimal_integer_literal] = ACTIONS(306), - [sym_hex_integer_literal] = ACTIONS(306), - [sym_octal_integer_literal] = ACTIONS(304), - [sym_binary_integer_literal] = ACTIONS(304), - [sym_decimal_floating_point_literal] = ACTIONS(304), - [sym_hex_floating_point_literal] = ACTIONS(306), - [sym_true] = ACTIONS(306), - [sym_false] = ACTIONS(306), - [sym_character_literal] = ACTIONS(304), - [sym_string_literal] = ACTIONS(306), - [sym_text_block] = ACTIONS(304), - [sym_null_literal] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_new] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(304), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [anon_sym_break] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(306), - [anon_sym_synchronized] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_open] = ACTIONS(306), - [anon_sym_module] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_protected] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_strictfp] = ACTIONS(306), - [anon_sym_native] = ACTIONS(306), - [anon_sym_transient] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym_sealed] = ACTIONS(306), - [anon_sym_non_DASHsealed] = ACTIONS(304), - [anon_sym_ATinterface] = ACTIONS(304), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_byte] = ACTIONS(306), - [anon_sym_short] = ACTIONS(306), - [anon_sym_int] = ACTIONS(306), - [anon_sym_long] = ACTIONS(306), - [anon_sym_char] = ACTIONS(306), - [anon_sym_float] = ACTIONS(306), - [anon_sym_double] = ACTIONS(306), - [sym_boolean_type] = ACTIONS(306), - [sym_void_type] = ACTIONS(306), - [sym_this] = ACTIONS(306), - [sym_super] = ACTIONS(306), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [sym_catch_clause] = STATE(60), - [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(308), - [sym_identifier] = ACTIONS(310), - [sym_decimal_integer_literal] = ACTIONS(310), - [sym_hex_integer_literal] = ACTIONS(310), - [sym_octal_integer_literal] = ACTIONS(308), - [sym_binary_integer_literal] = ACTIONS(308), - [sym_decimal_floating_point_literal] = ACTIONS(308), - [sym_hex_floating_point_literal] = ACTIONS(310), - [sym_true] = ACTIONS(310), - [sym_false] = ACTIONS(310), - [sym_character_literal] = ACTIONS(308), - [sym_string_literal] = ACTIONS(310), - [sym_text_block] = ACTIONS(308), - [sym_null_literal] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_new] = ACTIONS(310), - [anon_sym_class] = ACTIONS(310), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(308), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_case] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_SEMI] = ACTIONS(308), - [anon_sym_assert] = ACTIONS(310), - [anon_sym_do] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(310), - [anon_sym_synchronized] = ACTIONS(310), - [anon_sym_throw] = ACTIONS(310), - [anon_sym_try] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(312), - [anon_sym_finally] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(310), - [anon_sym_open] = ACTIONS(310), - [anon_sym_module] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_package] = ACTIONS(310), - [anon_sym_import] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_public] = ACTIONS(310), - [anon_sym_protected] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_abstract] = ACTIONS(310), - [anon_sym_final] = ACTIONS(310), - [anon_sym_strictfp] = ACTIONS(310), - [anon_sym_native] = ACTIONS(310), - [anon_sym_transient] = ACTIONS(310), - [anon_sym_volatile] = ACTIONS(310), - [anon_sym_sealed] = ACTIONS(310), - [anon_sym_non_DASHsealed] = ACTIONS(308), - [anon_sym_ATinterface] = ACTIONS(308), - [anon_sym_interface] = ACTIONS(310), - [anon_sym_byte] = ACTIONS(310), - [anon_sym_short] = ACTIONS(310), - [anon_sym_int] = ACTIONS(310), - [anon_sym_long] = ACTIONS(310), - [anon_sym_char] = ACTIONS(310), - [anon_sym_float] = ACTIONS(310), - [anon_sym_double] = ACTIONS(310), - [sym_boolean_type] = ACTIONS(310), - [sym_void_type] = ACTIONS(310), - [sym_this] = ACTIONS(310), - [sym_super] = ACTIONS(310), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym_element_value_pair] = STATE(927), - [sym__element_value] = STATE(1156), - [sym_element_value_array_initializer] = STATE(1156), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(315), + [49] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(227), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15717,7 +14855,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15725,11 +14862,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -15744,46 +14913,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym_element_value_pair] = STATE(942), - [sym__element_value] = STATE(1144), - [sym_element_value_array_initializer] = STATE(1144), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(315), + [50] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(220), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15797,7 +14992,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(323), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15805,11 +14999,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -15824,45 +15050,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym__element_value] = STATE(954), - [sym_element_value_array_initializer] = STATE(954), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [51] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(182), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15878,18 +15131,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(325), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -15904,46 +15187,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(898), - [sym_expression_statement] = STATE(898), - [sym_throw_statement] = STATE(898), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [52] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(202), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15964,12 +15273,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -15984,46 +15324,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym_element_value_pair] = STATE(957), - [sym__element_value] = STATE(1151), - [sym_element_value_array_initializer] = STATE(1151), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(315), + [53] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(211), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16037,7 +15403,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(329), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -16045,11 +15410,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -16064,327 +15461,4905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_decimal_integer_literal] = ACTIONS(333), - [sym_hex_integer_literal] = ACTIONS(333), - [sym_octal_integer_literal] = ACTIONS(331), - [sym_binary_integer_literal] = ACTIONS(331), - [sym_decimal_floating_point_literal] = ACTIONS(331), - [sym_hex_floating_point_literal] = ACTIONS(333), - [sym_true] = ACTIONS(333), - [sym_false] = ACTIONS(333), - [sym_character_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(333), - [sym_text_block] = ACTIONS(331), - [sym_null_literal] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_BANG] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(331), - [anon_sym_PLUS_PLUS] = ACTIONS(331), - [anon_sym_DASH_DASH] = ACTIONS(331), - [anon_sym_new] = ACTIONS(333), - [anon_sym_class] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_case] = ACTIONS(333), - [anon_sym_default] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_assert] = ACTIONS(333), - [anon_sym_do] = ACTIONS(333), - [anon_sym_while] = ACTIONS(333), - [anon_sym_break] = ACTIONS(333), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_return] = ACTIONS(333), - [anon_sym_yield] = ACTIONS(333), - [anon_sym_synchronized] = ACTIONS(333), - [anon_sym_throw] = ACTIONS(333), - [anon_sym_try] = ACTIONS(333), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(333), - [anon_sym_for] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [anon_sym_open] = ACTIONS(333), - [anon_sym_module] = ACTIONS(333), - [anon_sym_static] = ACTIONS(333), - [anon_sym_package] = ACTIONS(333), - [anon_sym_import] = ACTIONS(333), - [anon_sym_enum] = ACTIONS(333), - [anon_sym_public] = ACTIONS(333), - [anon_sym_protected] = ACTIONS(333), - [anon_sym_private] = ACTIONS(333), - [anon_sym_abstract] = ACTIONS(333), - [anon_sym_final] = ACTIONS(333), - [anon_sym_strictfp] = ACTIONS(333), - [anon_sym_native] = ACTIONS(333), - [anon_sym_transient] = ACTIONS(333), - [anon_sym_volatile] = ACTIONS(333), - [anon_sym_sealed] = ACTIONS(333), - [anon_sym_non_DASHsealed] = ACTIONS(331), - [anon_sym_record] = ACTIONS(333), - [anon_sym_ATinterface] = ACTIONS(331), - [anon_sym_interface] = ACTIONS(333), - [anon_sym_byte] = ACTIONS(333), - [anon_sym_short] = ACTIONS(333), - [anon_sym_int] = ACTIONS(333), - [anon_sym_long] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_float] = ACTIONS(333), - [anon_sym_double] = ACTIONS(333), - [sym_boolean_type] = ACTIONS(333), - [sym_void_type] = ACTIONS(333), - [sym_this] = ACTIONS(333), - [sym_super] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(335), - [sym_identifier] = ACTIONS(337), - [sym_decimal_integer_literal] = ACTIONS(337), - [sym_hex_integer_literal] = ACTIONS(337), - [sym_octal_integer_literal] = ACTIONS(335), - [sym_binary_integer_literal] = ACTIONS(335), - [sym_decimal_floating_point_literal] = ACTIONS(335), - [sym_hex_floating_point_literal] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_character_literal] = ACTIONS(335), - [sym_string_literal] = ACTIONS(337), - [sym_text_block] = ACTIONS(335), - [sym_null_literal] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_TILDE] = ACTIONS(335), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_new] = ACTIONS(337), - [anon_sym_class] = ACTIONS(337), - [anon_sym_switch] = ACTIONS(337), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(337), - [anon_sym_SEMI] = ACTIONS(335), - [anon_sym_assert] = ACTIONS(337), - [anon_sym_do] = ACTIONS(337), - [anon_sym_while] = ACTIONS(337), - [anon_sym_break] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(337), - [anon_sym_return] = ACTIONS(337), - [anon_sym_yield] = ACTIONS(337), - [anon_sym_synchronized] = ACTIONS(337), - [anon_sym_throw] = ACTIONS(337), - [anon_sym_try] = ACTIONS(337), - [anon_sym_if] = ACTIONS(337), - [anon_sym_else] = ACTIONS(337), - [anon_sym_for] = ACTIONS(337), - [anon_sym_AT] = ACTIONS(337), - [anon_sym_open] = ACTIONS(337), - [anon_sym_module] = ACTIONS(337), - [anon_sym_static] = ACTIONS(337), - [anon_sym_package] = ACTIONS(337), - [anon_sym_import] = ACTIONS(337), - [anon_sym_enum] = ACTIONS(337), - [anon_sym_public] = ACTIONS(337), - [anon_sym_protected] = ACTIONS(337), - [anon_sym_private] = ACTIONS(337), - [anon_sym_abstract] = ACTIONS(337), - [anon_sym_final] = ACTIONS(337), - [anon_sym_strictfp] = ACTIONS(337), - [anon_sym_native] = ACTIONS(337), - [anon_sym_transient] = ACTIONS(337), - [anon_sym_volatile] = ACTIONS(337), - [anon_sym_sealed] = ACTIONS(337), - [anon_sym_non_DASHsealed] = ACTIONS(335), - [anon_sym_record] = ACTIONS(337), - [anon_sym_ATinterface] = ACTIONS(335), - [anon_sym_interface] = ACTIONS(337), - [anon_sym_byte] = ACTIONS(337), - [anon_sym_short] = ACTIONS(337), - [anon_sym_int] = ACTIONS(337), - [anon_sym_long] = ACTIONS(337), - [anon_sym_char] = ACTIONS(337), - [anon_sym_float] = ACTIONS(337), - [anon_sym_double] = ACTIONS(337), - [sym_boolean_type] = ACTIONS(337), - [sym_void_type] = ACTIONS(337), - [sym_this] = ACTIONS(337), - [sym_super] = ACTIONS(337), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(339), - [sym_identifier] = ACTIONS(341), - [sym_decimal_integer_literal] = ACTIONS(341), - [sym_hex_integer_literal] = ACTIONS(341), - [sym_octal_integer_literal] = ACTIONS(339), - [sym_binary_integer_literal] = ACTIONS(339), - [sym_decimal_floating_point_literal] = ACTIONS(339), - [sym_hex_floating_point_literal] = ACTIONS(341), - [sym_true] = ACTIONS(341), - [sym_false] = ACTIONS(341), - [sym_character_literal] = ACTIONS(339), - [sym_string_literal] = ACTIONS(341), - [sym_text_block] = ACTIONS(339), - [sym_null_literal] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_LT] = ACTIONS(339), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_new] = ACTIONS(341), - [anon_sym_class] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(339), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_case] = ACTIONS(341), - [anon_sym_default] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_do] = ACTIONS(341), - [anon_sym_while] = ACTIONS(341), - [anon_sym_break] = ACTIONS(341), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_return] = ACTIONS(341), - [anon_sym_yield] = ACTIONS(341), - [anon_sym_synchronized] = ACTIONS(341), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_try] = ACTIONS(341), - [anon_sym_if] = ACTIONS(341), - [anon_sym_else] = ACTIONS(341), - [anon_sym_for] = ACTIONS(341), - [anon_sym_AT] = ACTIONS(341), - [anon_sym_open] = ACTIONS(341), - [anon_sym_module] = ACTIONS(341), - [anon_sym_static] = ACTIONS(341), - [anon_sym_package] = ACTIONS(341), - [anon_sym_import] = ACTIONS(341), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_public] = ACTIONS(341), - [anon_sym_protected] = ACTIONS(341), - [anon_sym_private] = ACTIONS(341), - [anon_sym_abstract] = ACTIONS(341), - [anon_sym_final] = ACTIONS(341), - [anon_sym_strictfp] = ACTIONS(341), - [anon_sym_native] = ACTIONS(341), - [anon_sym_transient] = ACTIONS(341), - [anon_sym_volatile] = ACTIONS(341), - [anon_sym_sealed] = ACTIONS(341), - [anon_sym_non_DASHsealed] = ACTIONS(339), - [anon_sym_record] = ACTIONS(341), - [anon_sym_ATinterface] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(341), - [anon_sym_byte] = ACTIONS(341), - [anon_sym_short] = ACTIONS(341), - [anon_sym_int] = ACTIONS(341), - [anon_sym_long] = ACTIONS(341), - [anon_sym_char] = ACTIONS(341), - [anon_sym_float] = ACTIONS(341), - [anon_sym_double] = ACTIONS(341), - [sym_boolean_type] = ACTIONS(341), - [sym_void_type] = ACTIONS(341), - [sym_this] = ACTIONS(341), - [sym_super] = ACTIONS(341), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(345), - [sym_decimal_integer_literal] = ACTIONS(345), - [sym_hex_integer_literal] = ACTIONS(345), - [sym_octal_integer_literal] = ACTIONS(343), - [sym_binary_integer_literal] = ACTIONS(343), - [sym_decimal_floating_point_literal] = ACTIONS(343), - [sym_hex_floating_point_literal] = ACTIONS(345), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [sym_character_literal] = ACTIONS(343), - [sym_string_literal] = ACTIONS(345), - [sym_text_block] = ACTIONS(343), - [sym_null_literal] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS_PLUS] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(343), - [anon_sym_new] = ACTIONS(345), - [anon_sym_class] = ACTIONS(345), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_case] = ACTIONS(345), - [anon_sym_default] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_assert] = ACTIONS(345), - [anon_sym_do] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [anon_sym_break] = ACTIONS(345), - [anon_sym_continue] = ACTIONS(345), - [anon_sym_return] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(345), - [anon_sym_synchronized] = ACTIONS(345), - [anon_sym_throw] = ACTIONS(345), - [anon_sym_try] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_else] = ACTIONS(345), - [anon_sym_for] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(345), - [anon_sym_open] = ACTIONS(345), - [anon_sym_module] = ACTIONS(345), - [anon_sym_static] = ACTIONS(345), - [anon_sym_package] = ACTIONS(345), - [anon_sym_import] = ACTIONS(345), - [anon_sym_enum] = ACTIONS(345), - [anon_sym_public] = ACTIONS(345), - [anon_sym_protected] = ACTIONS(345), - [anon_sym_private] = ACTIONS(345), - [anon_sym_abstract] = ACTIONS(345), - [anon_sym_final] = ACTIONS(345), - [anon_sym_strictfp] = ACTIONS(345), - [anon_sym_native] = ACTIONS(345), - [anon_sym_transient] = ACTIONS(345), - [anon_sym_volatile] = ACTIONS(345), - [anon_sym_sealed] = ACTIONS(345), - [anon_sym_non_DASHsealed] = ACTIONS(343), - [anon_sym_record] = ACTIONS(345), - [anon_sym_ATinterface] = ACTIONS(343), - [anon_sym_interface] = ACTIONS(345), - [anon_sym_byte] = ACTIONS(345), - [anon_sym_short] = ACTIONS(345), - [anon_sym_int] = ACTIONS(345), - [anon_sym_long] = ACTIONS(345), - [anon_sym_char] = ACTIONS(345), - [anon_sym_float] = ACTIONS(345), - [anon_sym_double] = ACTIONS(345), - [sym_boolean_type] = ACTIONS(345), - [sym_void_type] = ACTIONS(345), - [sym_this] = ACTIONS(345), - [sym_super] = ACTIONS(345), + [54] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(205), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(347), - [sym_identifier] = ACTIONS(349), - [sym_decimal_integer_literal] = ACTIONS(349), - [sym_hex_integer_literal] = ACTIONS(349), + [55] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(174), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [56] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(212), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [57] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(181), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [58] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(220), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(1106), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(211), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(178), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(239), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [63] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(208), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [64] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(185), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [65] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(210), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(194), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(212), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(214), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(233), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(172), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [71] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(1172), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [72] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(228), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(173), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(552), + [sym_statement] = STATE(217), + [sym_block] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_assert_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_yield_statement] = STATE(197), + [sym_synchronized_statement] = STATE(197), + [sym_throw_statement] = STATE(197), + [sym_try_statement] = STATE(197), + [sym_try_with_resources_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_enhanced_for_statement] = STATE(197), + [sym__annotation] = STATE(481), + [sym_marker_annotation] = STATE(481), + [sym_annotation] = STATE(481), + [sym_declaration] = STATE(197), + [sym_module_declaration] = STATE(213), + [sym_package_declaration] = STATE(213), + [sym_import_declaration] = STATE(213), + [sym_enum_declaration] = STATE(213), + [sym_class_declaration] = STATE(213), + [sym_modifiers] = STATE(655), + [sym_annotation_type_declaration] = STATE(213), + [sym_interface_declaration] = STATE(213), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(676), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(197), + [aux_sym_array_creation_expression_repeat1] = STATE(605), + [aux_sym_modifiers_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(236), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(238), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(240), + [anon_sym_for] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_ATinterface] = ACTIONS(71), + [anon_sym_interface] = ACTIONS(73), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [75] = { + [ts_builtin_sym_end] = ACTIONS(244), + [sym_identifier] = ACTIONS(246), + [sym_decimal_integer_literal] = ACTIONS(246), + [sym_hex_integer_literal] = ACTIONS(246), + [sym_octal_integer_literal] = ACTIONS(244), + [sym_binary_integer_literal] = ACTIONS(244), + [sym_decimal_floating_point_literal] = ACTIONS(244), + [sym_hex_floating_point_literal] = ACTIONS(246), + [sym_true] = ACTIONS(246), + [sym_false] = ACTIONS(246), + [sym_character_literal] = ACTIONS(244), + [sym_string_literal] = ACTIONS(246), + [sym_text_block] = ACTIONS(244), + [sym_null_literal] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(244), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_RPAREN] = ACTIONS(244), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT_EQ] = ACTIONS(244), + [anon_sym_LT_EQ] = ACTIONS(244), + [anon_sym_EQ_EQ] = ACTIONS(244), + [anon_sym_BANG_EQ] = ACTIONS(244), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(244), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(244), + [anon_sym_PERCENT] = ACTIONS(244), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_GT_GT_GT] = ACTIONS(244), + [anon_sym_instanceof] = ACTIONS(246), + [anon_sym_DASH_GT] = ACTIONS(244), + [anon_sym_COMMA] = ACTIONS(244), + [anon_sym_QMARK] = ACTIONS(244), + [anon_sym_COLON] = ACTIONS(246), + [anon_sym_BANG] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(244), + [anon_sym_PLUS_PLUS] = ACTIONS(244), + [anon_sym_DASH_DASH] = ACTIONS(244), + [anon_sym_new] = ACTIONS(246), + [anon_sym_LBRACK] = ACTIONS(244), + [anon_sym_RBRACK] = ACTIONS(244), + [anon_sym_DOT] = ACTIONS(246), + [anon_sym_class] = ACTIONS(246), + [anon_sym_COLON_COLON] = ACTIONS(244), + [anon_sym_switch] = ACTIONS(246), + [anon_sym_LBRACE] = ACTIONS(244), + [anon_sym_RBRACE] = ACTIONS(244), + [anon_sym_case] = ACTIONS(246), + [anon_sym_default] = ACTIONS(246), + [anon_sym_SEMI] = ACTIONS(244), + [anon_sym_assert] = ACTIONS(246), + [anon_sym_do] = ACTIONS(246), + [anon_sym_while] = ACTIONS(246), + [anon_sym_break] = ACTIONS(246), + [anon_sym_continue] = ACTIONS(246), + [anon_sym_return] = ACTIONS(246), + [anon_sym_yield] = ACTIONS(246), + [anon_sym_synchronized] = ACTIONS(246), + [anon_sym_throw] = ACTIONS(246), + [anon_sym_try] = ACTIONS(246), + [anon_sym_if] = ACTIONS(246), + [anon_sym_else] = ACTIONS(246), + [anon_sym_for] = ACTIONS(246), + [anon_sym_AT] = ACTIONS(246), + [anon_sym_open] = ACTIONS(246), + [anon_sym_module] = ACTIONS(246), + [anon_sym_static] = ACTIONS(246), + [anon_sym_package] = ACTIONS(246), + [anon_sym_import] = ACTIONS(246), + [anon_sym_enum] = ACTIONS(246), + [anon_sym_public] = ACTIONS(246), + [anon_sym_protected] = ACTIONS(246), + [anon_sym_private] = ACTIONS(246), + [anon_sym_abstract] = ACTIONS(246), + [anon_sym_final] = ACTIONS(246), + [anon_sym_strictfp] = ACTIONS(246), + [anon_sym_native] = ACTIONS(246), + [anon_sym_transient] = ACTIONS(246), + [anon_sym_volatile] = ACTIONS(246), + [anon_sym_sealed] = ACTIONS(246), + [anon_sym_non_DASHsealed] = ACTIONS(244), + [anon_sym_record] = ACTIONS(246), + [anon_sym_ATinterface] = ACTIONS(244), + [anon_sym_interface] = ACTIONS(246), + [anon_sym_byte] = ACTIONS(246), + [anon_sym_short] = ACTIONS(246), + [anon_sym_int] = ACTIONS(246), + [anon_sym_long] = ACTIONS(246), + [anon_sym_char] = ACTIONS(246), + [anon_sym_float] = ACTIONS(246), + [anon_sym_double] = ACTIONS(246), + [sym_boolean_type] = ACTIONS(246), + [sym_void_type] = ACTIONS(246), + [sym_this] = ACTIONS(246), + [sym_super] = ACTIONS(246), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(248), + [sym_identifier] = ACTIONS(250), + [sym_decimal_integer_literal] = ACTIONS(250), + [sym_hex_integer_literal] = ACTIONS(250), + [sym_octal_integer_literal] = ACTIONS(248), + [sym_binary_integer_literal] = ACTIONS(248), + [sym_decimal_floating_point_literal] = ACTIONS(248), + [sym_hex_floating_point_literal] = ACTIONS(250), + [sym_true] = ACTIONS(250), + [sym_false] = ACTIONS(250), + [sym_character_literal] = ACTIONS(248), + [sym_string_literal] = ACTIONS(250), + [sym_text_block] = ACTIONS(248), + [sym_null_literal] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(248), + [anon_sym_BANG_EQ] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_GT_GT_GT] = ACTIONS(248), + [anon_sym_instanceof] = ACTIONS(250), + [anon_sym_DASH_GT] = ACTIONS(248), + [anon_sym_COMMA] = ACTIONS(248), + [anon_sym_QMARK] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(248), + [anon_sym_PLUS_PLUS] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(248), + [anon_sym_new] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(248), + [anon_sym_RBRACK] = ACTIONS(248), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_class] = ACTIONS(250), + [anon_sym_COLON_COLON] = ACTIONS(248), + [anon_sym_switch] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(248), + [anon_sym_RBRACE] = ACTIONS(248), + [anon_sym_case] = ACTIONS(250), + [anon_sym_default] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(248), + [anon_sym_assert] = ACTIONS(250), + [anon_sym_do] = ACTIONS(250), + [anon_sym_while] = ACTIONS(250), + [anon_sym_break] = ACTIONS(250), + [anon_sym_continue] = ACTIONS(250), + [anon_sym_return] = ACTIONS(250), + [anon_sym_yield] = ACTIONS(250), + [anon_sym_synchronized] = ACTIONS(250), + [anon_sym_throw] = ACTIONS(250), + [anon_sym_try] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_else] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_AT] = ACTIONS(250), + [anon_sym_open] = ACTIONS(250), + [anon_sym_module] = ACTIONS(250), + [anon_sym_static] = ACTIONS(250), + [anon_sym_package] = ACTIONS(250), + [anon_sym_import] = ACTIONS(250), + [anon_sym_enum] = ACTIONS(250), + [anon_sym_public] = ACTIONS(250), + [anon_sym_protected] = ACTIONS(250), + [anon_sym_private] = ACTIONS(250), + [anon_sym_abstract] = ACTIONS(250), + [anon_sym_final] = ACTIONS(250), + [anon_sym_strictfp] = ACTIONS(250), + [anon_sym_native] = ACTIONS(250), + [anon_sym_transient] = ACTIONS(250), + [anon_sym_volatile] = ACTIONS(250), + [anon_sym_sealed] = ACTIONS(250), + [anon_sym_non_DASHsealed] = ACTIONS(248), + [anon_sym_record] = ACTIONS(250), + [anon_sym_ATinterface] = ACTIONS(248), + [anon_sym_interface] = ACTIONS(250), + [anon_sym_byte] = ACTIONS(250), + [anon_sym_short] = ACTIONS(250), + [anon_sym_int] = ACTIONS(250), + [anon_sym_long] = ACTIONS(250), + [anon_sym_char] = ACTIONS(250), + [anon_sym_float] = ACTIONS(250), + [anon_sym_double] = ACTIONS(250), + [sym_boolean_type] = ACTIONS(250), + [sym_void_type] = ACTIONS(250), + [sym_this] = ACTIONS(250), + [sym_super] = ACTIONS(250), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(252), + [sym_identifier] = ACTIONS(254), + [sym_decimal_integer_literal] = ACTIONS(254), + [sym_hex_integer_literal] = ACTIONS(254), + [sym_octal_integer_literal] = ACTIONS(252), + [sym_binary_integer_literal] = ACTIONS(252), + [sym_decimal_floating_point_literal] = ACTIONS(252), + [sym_hex_floating_point_literal] = ACTIONS(254), + [sym_true] = ACTIONS(254), + [sym_false] = ACTIONS(254), + [sym_character_literal] = ACTIONS(252), + [sym_string_literal] = ACTIONS(254), + [sym_text_block] = ACTIONS(252), + [sym_null_literal] = ACTIONS(254), + [anon_sym_LPAREN] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(254), + [anon_sym_RPAREN] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(254), + [anon_sym_LT] = ACTIONS(254), + [anon_sym_GT_EQ] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_BANG_EQ] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_PLUS] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(254), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_SLASH] = ACTIONS(254), + [anon_sym_PIPE] = ACTIONS(254), + [anon_sym_CARET] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(254), + [anon_sym_GT_GT_GT] = ACTIONS(252), + [anon_sym_instanceof] = ACTIONS(254), + [anon_sym_DASH_GT] = ACTIONS(252), + [anon_sym_COMMA] = ACTIONS(252), + [anon_sym_QMARK] = ACTIONS(252), + [anon_sym_COLON] = ACTIONS(252), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(252), + [anon_sym_PLUS_PLUS] = ACTIONS(252), + [anon_sym_DASH_DASH] = ACTIONS(252), + [anon_sym_new] = ACTIONS(254), + [anon_sym_RBRACK] = ACTIONS(252), + [anon_sym_class] = ACTIONS(254), + [anon_sym_switch] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_default] = ACTIONS(254), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_assert] = ACTIONS(254), + [anon_sym_do] = ACTIONS(254), + [anon_sym_while] = ACTIONS(254), + [anon_sym_break] = ACTIONS(254), + [anon_sym_continue] = ACTIONS(254), + [anon_sym_return] = ACTIONS(254), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_synchronized] = ACTIONS(254), + [anon_sym_throw] = ACTIONS(254), + [anon_sym_try] = ACTIONS(254), + [anon_sym_if] = ACTIONS(254), + [anon_sym_else] = ACTIONS(254), + [anon_sym_for] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(254), + [anon_sym_open] = ACTIONS(254), + [anon_sym_module] = ACTIONS(254), + [anon_sym_static] = ACTIONS(254), + [anon_sym_package] = ACTIONS(254), + [anon_sym_import] = ACTIONS(254), + [anon_sym_enum] = ACTIONS(254), + [anon_sym_public] = ACTIONS(254), + [anon_sym_protected] = ACTIONS(254), + [anon_sym_private] = ACTIONS(254), + [anon_sym_abstract] = ACTIONS(254), + [anon_sym_final] = ACTIONS(254), + [anon_sym_strictfp] = ACTIONS(254), + [anon_sym_native] = ACTIONS(254), + [anon_sym_transient] = ACTIONS(254), + [anon_sym_volatile] = ACTIONS(254), + [anon_sym_sealed] = ACTIONS(254), + [anon_sym_non_DASHsealed] = ACTIONS(252), + [anon_sym_record] = ACTIONS(254), + [anon_sym_ATinterface] = ACTIONS(252), + [anon_sym_interface] = ACTIONS(254), + [anon_sym_byte] = ACTIONS(254), + [anon_sym_short] = ACTIONS(254), + [anon_sym_int] = ACTIONS(254), + [anon_sym_long] = ACTIONS(254), + [anon_sym_char] = ACTIONS(254), + [anon_sym_float] = ACTIONS(254), + [anon_sym_double] = ACTIONS(254), + [sym_boolean_type] = ACTIONS(254), + [sym_void_type] = ACTIONS(254), + [sym_this] = ACTIONS(254), + [sym_super] = ACTIONS(254), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [78] = { + [ts_builtin_sym_end] = ACTIONS(256), + [sym_identifier] = ACTIONS(258), + [sym_decimal_integer_literal] = ACTIONS(258), + [sym_hex_integer_literal] = ACTIONS(258), + [sym_octal_integer_literal] = ACTIONS(256), + [sym_binary_integer_literal] = ACTIONS(256), + [sym_decimal_floating_point_literal] = ACTIONS(256), + [sym_hex_floating_point_literal] = ACTIONS(258), + [sym_true] = ACTIONS(258), + [sym_false] = ACTIONS(258), + [sym_character_literal] = ACTIONS(256), + [sym_string_literal] = ACTIONS(258), + [sym_text_block] = ACTIONS(256), + [sym_null_literal] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(256), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(256), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(256), + [anon_sym_LT_EQ] = ACTIONS(256), + [anon_sym_EQ_EQ] = ACTIONS(256), + [anon_sym_BANG_EQ] = ACTIONS(256), + [anon_sym_AMP_AMP] = ACTIONS(256), + [anon_sym_PIPE_PIPE] = ACTIONS(256), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_STAR] = ACTIONS(256), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(256), + [anon_sym_PERCENT] = ACTIONS(256), + [anon_sym_LT_LT] = ACTIONS(256), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_GT_GT_GT] = ACTIONS(256), + [anon_sym_instanceof] = ACTIONS(258), + [anon_sym_DASH_GT] = ACTIONS(256), + [anon_sym_COMMA] = ACTIONS(256), + [anon_sym_QMARK] = ACTIONS(256), + [anon_sym_COLON] = ACTIONS(256), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(256), + [anon_sym_DASH_DASH] = ACTIONS(256), + [anon_sym_new] = ACTIONS(258), + [anon_sym_RBRACK] = ACTIONS(256), + [anon_sym_class] = ACTIONS(258), + [anon_sym_switch] = ACTIONS(258), + [anon_sym_LBRACE] = ACTIONS(256), + [anon_sym_RBRACE] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_default] = ACTIONS(258), + [anon_sym_SEMI] = ACTIONS(256), + [anon_sym_assert] = ACTIONS(258), + [anon_sym_do] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_synchronized] = ACTIONS(258), + [anon_sym_throw] = ACTIONS(258), + [anon_sym_try] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(258), + [anon_sym_open] = ACTIONS(258), + [anon_sym_module] = ACTIONS(258), + [anon_sym_static] = ACTIONS(258), + [anon_sym_package] = ACTIONS(258), + [anon_sym_import] = ACTIONS(258), + [anon_sym_enum] = ACTIONS(258), + [anon_sym_public] = ACTIONS(258), + [anon_sym_protected] = ACTIONS(258), + [anon_sym_private] = ACTIONS(258), + [anon_sym_abstract] = ACTIONS(258), + [anon_sym_final] = ACTIONS(258), + [anon_sym_strictfp] = ACTIONS(258), + [anon_sym_native] = ACTIONS(258), + [anon_sym_transient] = ACTIONS(258), + [anon_sym_volatile] = ACTIONS(258), + [anon_sym_sealed] = ACTIONS(258), + [anon_sym_non_DASHsealed] = ACTIONS(256), + [anon_sym_record] = ACTIONS(258), + [anon_sym_ATinterface] = ACTIONS(256), + [anon_sym_interface] = ACTIONS(258), + [anon_sym_byte] = ACTIONS(258), + [anon_sym_short] = ACTIONS(258), + [anon_sym_int] = ACTIONS(258), + [anon_sym_long] = ACTIONS(258), + [anon_sym_char] = ACTIONS(258), + [anon_sym_float] = ACTIONS(258), + [anon_sym_double] = ACTIONS(258), + [sym_boolean_type] = ACTIONS(258), + [sym_void_type] = ACTIONS(258), + [sym_this] = ACTIONS(258), + [sym_super] = ACTIONS(258), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [79] = { + [sym_identifier] = ACTIONS(260), + [sym_decimal_integer_literal] = ACTIONS(260), + [sym_hex_integer_literal] = ACTIONS(260), + [sym_octal_integer_literal] = ACTIONS(262), + [sym_binary_integer_literal] = ACTIONS(262), + [sym_decimal_floating_point_literal] = ACTIONS(262), + [sym_hex_floating_point_literal] = ACTIONS(260), + [sym_true] = ACTIONS(260), + [sym_false] = ACTIONS(260), + [sym_character_literal] = ACTIONS(262), + [sym_string_literal] = ACTIONS(260), + [sym_text_block] = ACTIONS(262), + [sym_null_literal] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_AMP_AMP] = ACTIONS(262), + [anon_sym_PIPE_PIPE] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_GT_GT_GT] = ACTIONS(262), + [anon_sym_instanceof] = ACTIONS(260), + [anon_sym_DASH_GT] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_QMARK] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(260), + [anon_sym_BANG] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_PLUS_PLUS] = ACTIONS(262), + [anon_sym_DASH_DASH] = ACTIONS(262), + [anon_sym_new] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_RBRACK] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_class] = ACTIONS(260), + [anon_sym_COLON_COLON] = ACTIONS(262), + [anon_sym_switch] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_default] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_assert] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [anon_sym_break] = ACTIONS(260), + [anon_sym_continue] = ACTIONS(260), + [anon_sym_return] = ACTIONS(260), + [anon_sym_yield] = ACTIONS(260), + [anon_sym_synchronized] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_if] = ACTIONS(260), + [anon_sym_for] = ACTIONS(260), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_open] = ACTIONS(260), + [anon_sym_module] = ACTIONS(260), + [anon_sym_static] = ACTIONS(260), + [anon_sym_package] = ACTIONS(260), + [anon_sym_import] = ACTIONS(260), + [anon_sym_enum] = ACTIONS(260), + [anon_sym_public] = ACTIONS(260), + [anon_sym_protected] = ACTIONS(260), + [anon_sym_private] = ACTIONS(260), + [anon_sym_abstract] = ACTIONS(260), + [anon_sym_final] = ACTIONS(260), + [anon_sym_strictfp] = ACTIONS(260), + [anon_sym_native] = ACTIONS(260), + [anon_sym_transient] = ACTIONS(260), + [anon_sym_volatile] = ACTIONS(260), + [anon_sym_sealed] = ACTIONS(260), + [anon_sym_non_DASHsealed] = ACTIONS(262), + [anon_sym_ATinterface] = ACTIONS(262), + [anon_sym_interface] = ACTIONS(260), + [anon_sym_byte] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_int] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_char] = ACTIONS(260), + [anon_sym_float] = ACTIONS(260), + [anon_sym_double] = ACTIONS(260), + [sym_boolean_type] = ACTIONS(260), + [sym_void_type] = ACTIONS(260), + [sym_this] = ACTIONS(260), + [sym_super] = ACTIONS(260), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [80] = { + [ts_builtin_sym_end] = ACTIONS(264), + [sym_identifier] = ACTIONS(266), + [sym_decimal_integer_literal] = ACTIONS(266), + [sym_hex_integer_literal] = ACTIONS(266), + [sym_octal_integer_literal] = ACTIONS(264), + [sym_binary_integer_literal] = ACTIONS(264), + [sym_decimal_floating_point_literal] = ACTIONS(264), + [sym_hex_floating_point_literal] = ACTIONS(266), + [sym_true] = ACTIONS(266), + [sym_false] = ACTIONS(266), + [sym_character_literal] = ACTIONS(264), + [sym_string_literal] = ACTIONS(266), + [sym_text_block] = ACTIONS(264), + [sym_null_literal] = ACTIONS(266), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_RPAREN] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT_EQ] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(264), + [anon_sym_EQ_EQ] = ACTIONS(264), + [anon_sym_BANG_EQ] = ACTIONS(264), + [anon_sym_AMP_AMP] = ACTIONS(264), + [anon_sym_PIPE_PIPE] = ACTIONS(264), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(266), + [anon_sym_PIPE] = ACTIONS(266), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(266), + [anon_sym_GT_GT_GT] = ACTIONS(264), + [anon_sym_instanceof] = ACTIONS(266), + [anon_sym_DASH_GT] = ACTIONS(264), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_QMARK] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(266), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_PLUS_PLUS] = ACTIONS(264), + [anon_sym_DASH_DASH] = ACTIONS(264), + [anon_sym_new] = ACTIONS(266), + [anon_sym_RBRACK] = ACTIONS(264), + [anon_sym_class] = ACTIONS(266), + [anon_sym_switch] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(264), + [anon_sym_RBRACE] = ACTIONS(264), + [anon_sym_case] = ACTIONS(266), + [anon_sym_default] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(264), + [anon_sym_assert] = ACTIONS(266), + [anon_sym_do] = ACTIONS(266), + [anon_sym_while] = ACTIONS(266), + [anon_sym_break] = ACTIONS(266), + [anon_sym_continue] = ACTIONS(266), + [anon_sym_return] = ACTIONS(266), + [anon_sym_yield] = ACTIONS(266), + [anon_sym_synchronized] = ACTIONS(266), + [anon_sym_throw] = ACTIONS(266), + [anon_sym_try] = ACTIONS(266), + [anon_sym_if] = ACTIONS(266), + [anon_sym_else] = ACTIONS(266), + [anon_sym_for] = ACTIONS(266), + [anon_sym_AT] = ACTIONS(266), + [anon_sym_open] = ACTIONS(266), + [anon_sym_module] = ACTIONS(266), + [anon_sym_static] = ACTIONS(266), + [anon_sym_package] = ACTIONS(266), + [anon_sym_import] = ACTIONS(266), + [anon_sym_enum] = ACTIONS(266), + [anon_sym_public] = ACTIONS(266), + [anon_sym_protected] = ACTIONS(266), + [anon_sym_private] = ACTIONS(266), + [anon_sym_abstract] = ACTIONS(266), + [anon_sym_final] = ACTIONS(266), + [anon_sym_strictfp] = ACTIONS(266), + [anon_sym_native] = ACTIONS(266), + [anon_sym_transient] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_sealed] = ACTIONS(266), + [anon_sym_non_DASHsealed] = ACTIONS(264), + [anon_sym_ATinterface] = ACTIONS(264), + [anon_sym_interface] = ACTIONS(266), + [anon_sym_byte] = ACTIONS(266), + [anon_sym_short] = ACTIONS(266), + [anon_sym_int] = ACTIONS(266), + [anon_sym_long] = ACTIONS(266), + [anon_sym_char] = ACTIONS(266), + [anon_sym_float] = ACTIONS(266), + [anon_sym_double] = ACTIONS(266), + [sym_boolean_type] = ACTIONS(266), + [sym_void_type] = ACTIONS(266), + [sym_this] = ACTIONS(266), + [sym_super] = ACTIONS(266), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [81] = { + [ts_builtin_sym_end] = ACTIONS(268), + [sym_identifier] = ACTIONS(270), + [sym_decimal_integer_literal] = ACTIONS(270), + [sym_hex_integer_literal] = ACTIONS(270), + [sym_octal_integer_literal] = ACTIONS(268), + [sym_binary_integer_literal] = ACTIONS(268), + [sym_decimal_floating_point_literal] = ACTIONS(268), + [sym_hex_floating_point_literal] = ACTIONS(270), + [sym_true] = ACTIONS(270), + [sym_false] = ACTIONS(270), + [sym_character_literal] = ACTIONS(268), + [sym_string_literal] = ACTIONS(270), + [sym_text_block] = ACTIONS(268), + [sym_null_literal] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(270), + [anon_sym_RPAREN] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_AMP_AMP] = ACTIONS(268), + [anon_sym_PIPE_PIPE] = ACTIONS(268), + [anon_sym_PLUS] = ACTIONS(270), + [anon_sym_DASH] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(268), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(270), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_GT_GT] = ACTIONS(270), + [anon_sym_GT_GT_GT] = ACTIONS(268), + [anon_sym_instanceof] = ACTIONS(270), + [anon_sym_DASH_GT] = ACTIONS(268), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_QMARK] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(268), + [anon_sym_BANG] = ACTIONS(270), + [anon_sym_TILDE] = ACTIONS(268), + [anon_sym_PLUS_PLUS] = ACTIONS(268), + [anon_sym_DASH_DASH] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_RBRACK] = ACTIONS(268), + [anon_sym_class] = ACTIONS(270), + [anon_sym_switch] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_RBRACE] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_default] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_assert] = ACTIONS(270), + [anon_sym_do] = ACTIONS(270), + [anon_sym_while] = ACTIONS(270), + [anon_sym_break] = ACTIONS(270), + [anon_sym_continue] = ACTIONS(270), + [anon_sym_return] = ACTIONS(270), + [anon_sym_yield] = ACTIONS(270), + [anon_sym_synchronized] = ACTIONS(270), + [anon_sym_throw] = ACTIONS(270), + [anon_sym_try] = ACTIONS(270), + [anon_sym_if] = ACTIONS(270), + [anon_sym_else] = ACTIONS(270), + [anon_sym_for] = ACTIONS(270), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_open] = ACTIONS(270), + [anon_sym_module] = ACTIONS(270), + [anon_sym_static] = ACTIONS(270), + [anon_sym_package] = ACTIONS(270), + [anon_sym_import] = ACTIONS(270), + [anon_sym_enum] = ACTIONS(270), + [anon_sym_public] = ACTIONS(270), + [anon_sym_protected] = ACTIONS(270), + [anon_sym_private] = ACTIONS(270), + [anon_sym_abstract] = ACTIONS(270), + [anon_sym_final] = ACTIONS(270), + [anon_sym_strictfp] = ACTIONS(270), + [anon_sym_native] = ACTIONS(270), + [anon_sym_transient] = ACTIONS(270), + [anon_sym_volatile] = ACTIONS(270), + [anon_sym_sealed] = ACTIONS(270), + [anon_sym_non_DASHsealed] = ACTIONS(268), + [anon_sym_ATinterface] = ACTIONS(268), + [anon_sym_interface] = ACTIONS(270), + [anon_sym_byte] = ACTIONS(270), + [anon_sym_short] = ACTIONS(270), + [anon_sym_int] = ACTIONS(270), + [anon_sym_long] = ACTIONS(270), + [anon_sym_char] = ACTIONS(270), + [anon_sym_float] = ACTIONS(270), + [anon_sym_double] = ACTIONS(270), + [sym_boolean_type] = ACTIONS(270), + [sym_void_type] = ACTIONS(270), + [sym_this] = ACTIONS(270), + [sym_super] = ACTIONS(270), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(272), + [sym_identifier] = ACTIONS(274), + [sym_decimal_integer_literal] = ACTIONS(274), + [sym_hex_integer_literal] = ACTIONS(274), + [sym_octal_integer_literal] = ACTIONS(272), + [sym_binary_integer_literal] = ACTIONS(272), + [sym_decimal_floating_point_literal] = ACTIONS(272), + [sym_hex_floating_point_literal] = ACTIONS(274), + [sym_true] = ACTIONS(274), + [sym_false] = ACTIONS(274), + [sym_character_literal] = ACTIONS(272), + [sym_string_literal] = ACTIONS(274), + [sym_text_block] = ACTIONS(272), + [sym_null_literal] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_AMP_AMP] = ACTIONS(272), + [anon_sym_PIPE_PIPE] = ACTIONS(272), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_GT_GT_GT] = ACTIONS(272), + [anon_sym_instanceof] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_QMARK] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(272), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [anon_sym_new] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_class] = ACTIONS(274), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_case] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_assert] = ACTIONS(274), + [anon_sym_do] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_yield] = ACTIONS(274), + [anon_sym_synchronized] = ACTIONS(274), + [anon_sym_throw] = ACTIONS(274), + [anon_sym_try] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_else] = ACTIONS(274), + [anon_sym_for] = ACTIONS(274), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_open] = ACTIONS(274), + [anon_sym_module] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_package] = ACTIONS(274), + [anon_sym_import] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_public] = ACTIONS(274), + [anon_sym_protected] = ACTIONS(274), + [anon_sym_private] = ACTIONS(274), + [anon_sym_abstract] = ACTIONS(274), + [anon_sym_final] = ACTIONS(274), + [anon_sym_strictfp] = ACTIONS(274), + [anon_sym_native] = ACTIONS(274), + [anon_sym_transient] = ACTIONS(274), + [anon_sym_volatile] = ACTIONS(274), + [anon_sym_sealed] = ACTIONS(274), + [anon_sym_non_DASHsealed] = ACTIONS(272), + [anon_sym_ATinterface] = ACTIONS(272), + [anon_sym_interface] = ACTIONS(274), + [anon_sym_byte] = ACTIONS(274), + [anon_sym_short] = ACTIONS(274), + [anon_sym_int] = ACTIONS(274), + [anon_sym_long] = ACTIONS(274), + [anon_sym_char] = ACTIONS(274), + [anon_sym_float] = ACTIONS(274), + [anon_sym_double] = ACTIONS(274), + [sym_boolean_type] = ACTIONS(274), + [sym_void_type] = ACTIONS(274), + [sym_this] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [ts_builtin_sym_end] = ACTIONS(276), + [sym_identifier] = ACTIONS(278), + [sym_decimal_integer_literal] = ACTIONS(278), + [sym_hex_integer_literal] = ACTIONS(278), + [sym_octal_integer_literal] = ACTIONS(276), + [sym_binary_integer_literal] = ACTIONS(276), + [sym_decimal_floating_point_literal] = ACTIONS(276), + [sym_hex_floating_point_literal] = ACTIONS(278), + [sym_true] = ACTIONS(278), + [sym_false] = ACTIONS(278), + [sym_character_literal] = ACTIONS(276), + [sym_string_literal] = ACTIONS(278), + [sym_text_block] = ACTIONS(276), + [sym_null_literal] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(280), + [anon_sym_GT] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(280), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(280), + [anon_sym_PIPE] = ACTIONS(280), + [anon_sym_CARET] = ACTIONS(282), + [anon_sym_PERCENT] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(280), + [anon_sym_GT_GT_GT] = ACTIONS(282), + [anon_sym_instanceof] = ACTIONS(280), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_new] = ACTIONS(278), + [anon_sym_class] = ACTIONS(278), + [anon_sym_switch] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(276), + [anon_sym_RBRACE] = ACTIONS(276), + [anon_sym_case] = ACTIONS(278), + [anon_sym_default] = ACTIONS(278), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(278), + [anon_sym_do] = ACTIONS(278), + [anon_sym_while] = ACTIONS(278), + [anon_sym_break] = ACTIONS(278), + [anon_sym_continue] = ACTIONS(278), + [anon_sym_return] = ACTIONS(278), + [anon_sym_yield] = ACTIONS(278), + [anon_sym_synchronized] = ACTIONS(278), + [anon_sym_throw] = ACTIONS(278), + [anon_sym_try] = ACTIONS(278), + [anon_sym_if] = ACTIONS(278), + [anon_sym_else] = ACTIONS(278), + [anon_sym_for] = ACTIONS(278), + [anon_sym_AT] = ACTIONS(278), + [anon_sym_open] = ACTIONS(278), + [anon_sym_module] = ACTIONS(278), + [anon_sym_static] = ACTIONS(278), + [anon_sym_package] = ACTIONS(278), + [anon_sym_import] = ACTIONS(278), + [anon_sym_enum] = ACTIONS(278), + [anon_sym_public] = ACTIONS(278), + [anon_sym_protected] = ACTIONS(278), + [anon_sym_private] = ACTIONS(278), + [anon_sym_abstract] = ACTIONS(278), + [anon_sym_final] = ACTIONS(278), + [anon_sym_strictfp] = ACTIONS(278), + [anon_sym_native] = ACTIONS(278), + [anon_sym_transient] = ACTIONS(278), + [anon_sym_volatile] = ACTIONS(278), + [anon_sym_sealed] = ACTIONS(278), + [anon_sym_non_DASHsealed] = ACTIONS(276), + [anon_sym_ATinterface] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(278), + [anon_sym_byte] = ACTIONS(278), + [anon_sym_short] = ACTIONS(278), + [anon_sym_int] = ACTIONS(278), + [anon_sym_long] = ACTIONS(278), + [anon_sym_char] = ACTIONS(278), + [anon_sym_float] = ACTIONS(278), + [anon_sym_double] = ACTIONS(278), + [sym_boolean_type] = ACTIONS(278), + [sym_void_type] = ACTIONS(278), + [sym_this] = ACTIONS(278), + [sym_super] = ACTIONS(278), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(601), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(674), + [sym__type] = STATE(865), + [sym__unannotated_type] = STATE(668), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_formal_parameter] = STATE(987), + [sym_receiver_parameter] = STATE(385), + [sym_spread_parameter] = STATE(987), + [aux_sym_array_creation_expression_repeat1] = STATE(642), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(290), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_default] = ACTIONS(294), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(601), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(674), + [sym__type] = STATE(898), + [sym__unannotated_type] = STATE(668), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_formal_parameter] = STATE(987), + [sym_receiver_parameter] = STATE(385), + [sym_spread_parameter] = STATE(987), + [aux_sym_array_creation_expression_repeat1] = STATE(642), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(290), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_default] = ACTIONS(294), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [86] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(550), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(683), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(681), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(278), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_default] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [87] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(536), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(682), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(680), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [sym_local_variable_declaration] = STATE(258), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_default] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(306), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [88] = { + [sym_catch_clause] = STATE(91), + [sym_finally_clause] = STATE(232), + [aux_sym_try_statement_repeat1] = STATE(91), + [ts_builtin_sym_end] = ACTIONS(308), + [sym_identifier] = ACTIONS(310), + [sym_decimal_integer_literal] = ACTIONS(310), + [sym_hex_integer_literal] = ACTIONS(310), + [sym_octal_integer_literal] = ACTIONS(308), + [sym_binary_integer_literal] = ACTIONS(308), + [sym_decimal_floating_point_literal] = ACTIONS(308), + [sym_hex_floating_point_literal] = ACTIONS(310), + [sym_true] = ACTIONS(310), + [sym_false] = ACTIONS(310), + [sym_character_literal] = ACTIONS(308), + [sym_string_literal] = ACTIONS(310), + [sym_text_block] = ACTIONS(308), + [sym_null_literal] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(308), + [anon_sym_DASH_DASH] = ACTIONS(308), + [anon_sym_new] = ACTIONS(310), + [anon_sym_class] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(308), + [anon_sym_RBRACE] = ACTIONS(308), + [anon_sym_case] = ACTIONS(310), + [anon_sym_default] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(308), + [anon_sym_assert] = ACTIONS(310), + [anon_sym_do] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_return] = ACTIONS(310), + [anon_sym_yield] = ACTIONS(310), + [anon_sym_synchronized] = ACTIONS(310), + [anon_sym_throw] = ACTIONS(310), + [anon_sym_try] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_finally] = ACTIONS(314), + [anon_sym_if] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(310), + [anon_sym_open] = ACTIONS(310), + [anon_sym_module] = ACTIONS(310), + [anon_sym_static] = ACTIONS(310), + [anon_sym_package] = ACTIONS(310), + [anon_sym_import] = ACTIONS(310), + [anon_sym_enum] = ACTIONS(310), + [anon_sym_public] = ACTIONS(310), + [anon_sym_protected] = ACTIONS(310), + [anon_sym_private] = ACTIONS(310), + [anon_sym_abstract] = ACTIONS(310), + [anon_sym_final] = ACTIONS(310), + [anon_sym_strictfp] = ACTIONS(310), + [anon_sym_native] = ACTIONS(310), + [anon_sym_transient] = ACTIONS(310), + [anon_sym_volatile] = ACTIONS(310), + [anon_sym_sealed] = ACTIONS(310), + [anon_sym_non_DASHsealed] = ACTIONS(308), + [anon_sym_ATinterface] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(310), + [anon_sym_byte] = ACTIONS(310), + [anon_sym_short] = ACTIONS(310), + [anon_sym_int] = ACTIONS(310), + [anon_sym_long] = ACTIONS(310), + [anon_sym_char] = ACTIONS(310), + [anon_sym_float] = ACTIONS(310), + [anon_sym_double] = ACTIONS(310), + [sym_boolean_type] = ACTIONS(310), + [sym_void_type] = ACTIONS(310), + [sym_this] = ACTIONS(310), + [sym_super] = ACTIONS(310), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [89] = { + [sym_catch_clause] = STATE(90), + [sym_finally_clause] = STATE(235), + [aux_sym_try_statement_repeat1] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(316), + [sym_identifier] = ACTIONS(318), + [sym_decimal_integer_literal] = ACTIONS(318), + [sym_hex_integer_literal] = ACTIONS(318), + [sym_octal_integer_literal] = ACTIONS(316), + [sym_binary_integer_literal] = ACTIONS(316), + [sym_decimal_floating_point_literal] = ACTIONS(316), + [sym_hex_floating_point_literal] = ACTIONS(318), + [sym_true] = ACTIONS(318), + [sym_false] = ACTIONS(318), + [sym_character_literal] = ACTIONS(316), + [sym_string_literal] = ACTIONS(318), + [sym_text_block] = ACTIONS(316), + [sym_null_literal] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(316), + [anon_sym_TILDE] = ACTIONS(316), + [anon_sym_PLUS_PLUS] = ACTIONS(316), + [anon_sym_DASH_DASH] = ACTIONS(316), + [anon_sym_new] = ACTIONS(318), + [anon_sym_class] = ACTIONS(318), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_case] = ACTIONS(318), + [anon_sym_default] = ACTIONS(318), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_assert] = ACTIONS(318), + [anon_sym_do] = ACTIONS(318), + [anon_sym_while] = ACTIONS(318), + [anon_sym_break] = ACTIONS(318), + [anon_sym_continue] = ACTIONS(318), + [anon_sym_return] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(318), + [anon_sym_synchronized] = ACTIONS(318), + [anon_sym_throw] = ACTIONS(318), + [anon_sym_try] = ACTIONS(318), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_finally] = ACTIONS(314), + [anon_sym_if] = ACTIONS(318), + [anon_sym_else] = ACTIONS(318), + [anon_sym_for] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(318), + [anon_sym_open] = ACTIONS(318), + [anon_sym_module] = ACTIONS(318), + [anon_sym_static] = ACTIONS(318), + [anon_sym_package] = ACTIONS(318), + [anon_sym_import] = ACTIONS(318), + [anon_sym_enum] = ACTIONS(318), + [anon_sym_public] = ACTIONS(318), + [anon_sym_protected] = ACTIONS(318), + [anon_sym_private] = ACTIONS(318), + [anon_sym_abstract] = ACTIONS(318), + [anon_sym_final] = ACTIONS(318), + [anon_sym_strictfp] = ACTIONS(318), + [anon_sym_native] = ACTIONS(318), + [anon_sym_transient] = ACTIONS(318), + [anon_sym_volatile] = ACTIONS(318), + [anon_sym_sealed] = ACTIONS(318), + [anon_sym_non_DASHsealed] = ACTIONS(316), + [anon_sym_ATinterface] = ACTIONS(316), + [anon_sym_interface] = ACTIONS(318), + [anon_sym_byte] = ACTIONS(318), + [anon_sym_short] = ACTIONS(318), + [anon_sym_int] = ACTIONS(318), + [anon_sym_long] = ACTIONS(318), + [anon_sym_char] = ACTIONS(318), + [anon_sym_float] = ACTIONS(318), + [anon_sym_double] = ACTIONS(318), + [sym_boolean_type] = ACTIONS(318), + [sym_void_type] = ACTIONS(318), + [sym_this] = ACTIONS(318), + [sym_super] = ACTIONS(318), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [90] = { + [sym_catch_clause] = STATE(91), + [sym_finally_clause] = STATE(183), + [aux_sym_try_statement_repeat1] = STATE(91), + [ts_builtin_sym_end] = ACTIONS(320), + [sym_identifier] = ACTIONS(322), + [sym_decimal_integer_literal] = ACTIONS(322), + [sym_hex_integer_literal] = ACTIONS(322), + [sym_octal_integer_literal] = ACTIONS(320), + [sym_binary_integer_literal] = ACTIONS(320), + [sym_decimal_floating_point_literal] = ACTIONS(320), + [sym_hex_floating_point_literal] = ACTIONS(322), + [sym_true] = ACTIONS(322), + [sym_false] = ACTIONS(322), + [sym_character_literal] = ACTIONS(320), + [sym_string_literal] = ACTIONS(322), + [sym_text_block] = ACTIONS(320), + [sym_null_literal] = ACTIONS(322), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(320), + [anon_sym_new] = ACTIONS(322), + [anon_sym_class] = ACTIONS(322), + [anon_sym_switch] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_case] = ACTIONS(322), + [anon_sym_default] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_assert] = ACTIONS(322), + [anon_sym_do] = ACTIONS(322), + [anon_sym_while] = ACTIONS(322), + [anon_sym_break] = ACTIONS(322), + [anon_sym_continue] = ACTIONS(322), + [anon_sym_return] = ACTIONS(322), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_synchronized] = ACTIONS(322), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_try] = ACTIONS(322), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_finally] = ACTIONS(314), + [anon_sym_if] = ACTIONS(322), + [anon_sym_else] = ACTIONS(322), + [anon_sym_for] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(322), + [anon_sym_open] = ACTIONS(322), + [anon_sym_module] = ACTIONS(322), + [anon_sym_static] = ACTIONS(322), + [anon_sym_package] = ACTIONS(322), + [anon_sym_import] = ACTIONS(322), + [anon_sym_enum] = ACTIONS(322), + [anon_sym_public] = ACTIONS(322), + [anon_sym_protected] = ACTIONS(322), + [anon_sym_private] = ACTIONS(322), + [anon_sym_abstract] = ACTIONS(322), + [anon_sym_final] = ACTIONS(322), + [anon_sym_strictfp] = ACTIONS(322), + [anon_sym_native] = ACTIONS(322), + [anon_sym_transient] = ACTIONS(322), + [anon_sym_volatile] = ACTIONS(322), + [anon_sym_sealed] = ACTIONS(322), + [anon_sym_non_DASHsealed] = ACTIONS(320), + [anon_sym_ATinterface] = ACTIONS(320), + [anon_sym_interface] = ACTIONS(322), + [anon_sym_byte] = ACTIONS(322), + [anon_sym_short] = ACTIONS(322), + [anon_sym_int] = ACTIONS(322), + [anon_sym_long] = ACTIONS(322), + [anon_sym_char] = ACTIONS(322), + [anon_sym_float] = ACTIONS(322), + [anon_sym_double] = ACTIONS(322), + [sym_boolean_type] = ACTIONS(322), + [sym_void_type] = ACTIONS(322), + [sym_this] = ACTIONS(322), + [sym_super] = ACTIONS(322), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [91] = { + [sym_catch_clause] = STATE(91), + [aux_sym_try_statement_repeat1] = STATE(91), + [ts_builtin_sym_end] = ACTIONS(324), + [sym_identifier] = ACTIONS(326), + [sym_decimal_integer_literal] = ACTIONS(326), + [sym_hex_integer_literal] = ACTIONS(326), + [sym_octal_integer_literal] = ACTIONS(324), + [sym_binary_integer_literal] = ACTIONS(324), + [sym_decimal_floating_point_literal] = ACTIONS(324), + [sym_hex_floating_point_literal] = ACTIONS(326), + [sym_true] = ACTIONS(326), + [sym_false] = ACTIONS(326), + [sym_character_literal] = ACTIONS(324), + [sym_string_literal] = ACTIONS(326), + [sym_text_block] = ACTIONS(324), + [sym_null_literal] = ACTIONS(326), + [anon_sym_LPAREN] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_BANG] = ACTIONS(324), + [anon_sym_TILDE] = ACTIONS(324), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_new] = ACTIONS(326), + [anon_sym_class] = ACTIONS(326), + [anon_sym_switch] = ACTIONS(326), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_case] = ACTIONS(326), + [anon_sym_default] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_assert] = ACTIONS(326), + [anon_sym_do] = ACTIONS(326), + [anon_sym_while] = ACTIONS(326), + [anon_sym_break] = ACTIONS(326), + [anon_sym_continue] = ACTIONS(326), + [anon_sym_return] = ACTIONS(326), + [anon_sym_yield] = ACTIONS(326), + [anon_sym_synchronized] = ACTIONS(326), + [anon_sym_throw] = ACTIONS(326), + [anon_sym_try] = ACTIONS(326), + [anon_sym_catch] = ACTIONS(328), + [anon_sym_finally] = ACTIONS(326), + [anon_sym_if] = ACTIONS(326), + [anon_sym_else] = ACTIONS(326), + [anon_sym_for] = ACTIONS(326), + [anon_sym_AT] = ACTIONS(326), + [anon_sym_open] = ACTIONS(326), + [anon_sym_module] = ACTIONS(326), + [anon_sym_static] = ACTIONS(326), + [anon_sym_package] = ACTIONS(326), + [anon_sym_import] = ACTIONS(326), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_public] = ACTIONS(326), + [anon_sym_protected] = ACTIONS(326), + [anon_sym_private] = ACTIONS(326), + [anon_sym_abstract] = ACTIONS(326), + [anon_sym_final] = ACTIONS(326), + [anon_sym_strictfp] = ACTIONS(326), + [anon_sym_native] = ACTIONS(326), + [anon_sym_transient] = ACTIONS(326), + [anon_sym_volatile] = ACTIONS(326), + [anon_sym_sealed] = ACTIONS(326), + [anon_sym_non_DASHsealed] = ACTIONS(324), + [anon_sym_ATinterface] = ACTIONS(324), + [anon_sym_interface] = ACTIONS(326), + [anon_sym_byte] = ACTIONS(326), + [anon_sym_short] = ACTIONS(326), + [anon_sym_int] = ACTIONS(326), + [anon_sym_long] = ACTIONS(326), + [anon_sym_char] = ACTIONS(326), + [anon_sym_float] = ACTIONS(326), + [anon_sym_double] = ACTIONS(326), + [sym_boolean_type] = ACTIONS(326), + [sym_void_type] = ACTIONS(326), + [sym_this] = ACTIONS(326), + [sym_super] = ACTIONS(326), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [92] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym__element_value] = STATE(992), + [sym_element_value_array_initializer] = STATE(992), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym_block] = STATE(1019), + [sym_expression_statement] = STATE(1019), + [sym_throw_statement] = STATE(1019), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [94] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym_element_value_pair] = STATE(962), + [sym__element_value] = STATE(1175), + [sym_element_value_array_initializer] = STATE(1175), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(339), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(341), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [95] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym_element_value_pair] = STATE(943), + [sym__element_value] = STATE(1186), + [sym_element_value_array_initializer] = STATE(1186), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(339), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [96] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym_element_value_pair] = STATE(941), + [sym__element_value] = STATE(1191), + [sym_element_value_array_initializer] = STATE(1191), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(339), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [97] = { + [ts_builtin_sym_end] = ACTIONS(347), + [sym_identifier] = ACTIONS(349), + [sym_decimal_integer_literal] = ACTIONS(349), + [sym_hex_integer_literal] = ACTIONS(349), [sym_octal_integer_literal] = ACTIONS(347), [sym_binary_integer_literal] = ACTIONS(347), [sym_decimal_floating_point_literal] = ACTIONS(347), @@ -16459,7 +20434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [71] = { + [98] = { [ts_builtin_sym_end] = ACTIONS(351), [sym_identifier] = ACTIONS(353), [sym_decimal_integer_literal] = ACTIONS(353), @@ -16538,7 +20513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [72] = { + [99] = { [ts_builtin_sym_end] = ACTIONS(355), [sym_identifier] = ACTIONS(357), [sym_decimal_integer_literal] = ACTIONS(357), @@ -16617,7 +20592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [73] = { + [100] = { [ts_builtin_sym_end] = ACTIONS(359), [sym_identifier] = ACTIONS(361), [sym_decimal_integer_literal] = ACTIONS(361), @@ -16696,7 +20671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [74] = { + [101] = { [ts_builtin_sym_end] = ACTIONS(363), [sym_identifier] = ACTIONS(365), [sym_decimal_integer_literal] = ACTIONS(365), @@ -16775,7 +20750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [75] = { + [102] = { [ts_builtin_sym_end] = ACTIONS(367), [sym_identifier] = ACTIONS(369), [sym_decimal_integer_literal] = ACTIONS(369), @@ -16854,7 +20829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [76] = { + [103] = { [ts_builtin_sym_end] = ACTIONS(371), [sym_identifier] = ACTIONS(373), [sym_decimal_integer_literal] = ACTIONS(373), @@ -16933,7 +20908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [77] = { + [104] = { [ts_builtin_sym_end] = ACTIONS(375), [sym_identifier] = ACTIONS(377), [sym_decimal_integer_literal] = ACTIONS(377), @@ -17012,86 +20987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(248), - [sym_identifier] = ACTIONS(250), - [sym_decimal_integer_literal] = ACTIONS(250), - [sym_hex_integer_literal] = ACTIONS(250), - [sym_octal_integer_literal] = ACTIONS(248), - [sym_binary_integer_literal] = ACTIONS(248), - [sym_decimal_floating_point_literal] = ACTIONS(248), - [sym_hex_floating_point_literal] = ACTIONS(250), - [sym_true] = ACTIONS(250), - [sym_false] = ACTIONS(250), - [sym_character_literal] = ACTIONS(248), - [sym_string_literal] = ACTIONS(250), - [sym_text_block] = ACTIONS(248), - [sym_null_literal] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(248), - [anon_sym_DASH_DASH] = ACTIONS(248), - [anon_sym_new] = ACTIONS(250), - [anon_sym_class] = ACTIONS(250), - [anon_sym_switch] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(248), - [anon_sym_case] = ACTIONS(250), - [anon_sym_default] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(248), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(250), - [anon_sym_return] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(250), - [anon_sym_synchronized] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_catch] = ACTIONS(250), - [anon_sym_finally] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_else] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_open] = ACTIONS(250), - [anon_sym_module] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_package] = ACTIONS(250), - [anon_sym_import] = ACTIONS(250), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_final] = ACTIONS(250), - [anon_sym_strictfp] = ACTIONS(250), - [anon_sym_native] = ACTIONS(250), - [anon_sym_transient] = ACTIONS(250), - [anon_sym_volatile] = ACTIONS(250), - [anon_sym_sealed] = ACTIONS(250), - [anon_sym_non_DASHsealed] = ACTIONS(248), - [anon_sym_ATinterface] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(250), - [anon_sym_byte] = ACTIONS(250), - [anon_sym_short] = ACTIONS(250), - [anon_sym_int] = ACTIONS(250), - [anon_sym_long] = ACTIONS(250), - [anon_sym_char] = ACTIONS(250), - [anon_sym_float] = ACTIONS(250), - [anon_sym_double] = ACTIONS(250), - [sym_boolean_type] = ACTIONS(250), - [sym_void_type] = ACTIONS(250), - [sym_this] = ACTIONS(250), - [sym_super] = ACTIONS(250), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { + [105] = { [ts_builtin_sym_end] = ACTIONS(379), [sym_identifier] = ACTIONS(381), [sym_decimal_integer_literal] = ACTIONS(381), @@ -17170,7 +21066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [80] = { + [106] = { [ts_builtin_sym_end] = ACTIONS(383), [sym_identifier] = ACTIONS(385), [sym_decimal_integer_literal] = ACTIONS(385), @@ -17249,7 +21145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [81] = { + [107] = { [ts_builtin_sym_end] = ACTIONS(387), [sym_identifier] = ACTIONS(389), [sym_decimal_integer_literal] = ACTIONS(389), @@ -17328,7 +21224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [82] = { + [108] = { [ts_builtin_sym_end] = ACTIONS(391), [sym_identifier] = ACTIONS(393), [sym_decimal_integer_literal] = ACTIONS(393), @@ -17407,44 +21303,598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym_array_initializer] = STATE(892), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [109] = { + [ts_builtin_sym_end] = ACTIONS(395), + [sym_identifier] = ACTIONS(397), + [sym_decimal_integer_literal] = ACTIONS(397), + [sym_hex_integer_literal] = ACTIONS(397), + [sym_octal_integer_literal] = ACTIONS(395), + [sym_binary_integer_literal] = ACTIONS(395), + [sym_decimal_floating_point_literal] = ACTIONS(395), + [sym_hex_floating_point_literal] = ACTIONS(397), + [sym_true] = ACTIONS(397), + [sym_false] = ACTIONS(397), + [sym_character_literal] = ACTIONS(395), + [sym_string_literal] = ACTIONS(397), + [sym_text_block] = ACTIONS(395), + [sym_null_literal] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_class] = ACTIONS(397), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_case] = ACTIONS(397), + [anon_sym_default] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(397), + [anon_sym_do] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_synchronized] = ACTIONS(397), + [anon_sym_throw] = ACTIONS(397), + [anon_sym_try] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_open] = ACTIONS(397), + [anon_sym_module] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_package] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(397), + [anon_sym_public] = ACTIONS(397), + [anon_sym_protected] = ACTIONS(397), + [anon_sym_private] = ACTIONS(397), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_final] = ACTIONS(397), + [anon_sym_strictfp] = ACTIONS(397), + [anon_sym_native] = ACTIONS(397), + [anon_sym_transient] = ACTIONS(397), + [anon_sym_volatile] = ACTIONS(397), + [anon_sym_sealed] = ACTIONS(397), + [anon_sym_non_DASHsealed] = ACTIONS(395), + [anon_sym_record] = ACTIONS(397), + [anon_sym_ATinterface] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_byte] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_double] = ACTIONS(397), + [sym_boolean_type] = ACTIONS(397), + [sym_void_type] = ACTIONS(397), + [sym_this] = ACTIONS(397), + [sym_super] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [110] = { + [ts_builtin_sym_end] = ACTIONS(252), + [sym_identifier] = ACTIONS(254), + [sym_decimal_integer_literal] = ACTIONS(254), + [sym_hex_integer_literal] = ACTIONS(254), + [sym_octal_integer_literal] = ACTIONS(252), + [sym_binary_integer_literal] = ACTIONS(252), + [sym_decimal_floating_point_literal] = ACTIONS(252), + [sym_hex_floating_point_literal] = ACTIONS(254), + [sym_true] = ACTIONS(254), + [sym_false] = ACTIONS(254), + [sym_character_literal] = ACTIONS(252), + [sym_string_literal] = ACTIONS(254), + [sym_text_block] = ACTIONS(252), + [sym_null_literal] = ACTIONS(254), + [anon_sym_LPAREN] = ACTIONS(252), + [anon_sym_PLUS] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(254), + [anon_sym_BANG] = ACTIONS(252), + [anon_sym_TILDE] = ACTIONS(252), + [anon_sym_PLUS_PLUS] = ACTIONS(252), + [anon_sym_DASH_DASH] = ACTIONS(252), + [anon_sym_new] = ACTIONS(254), + [anon_sym_class] = ACTIONS(254), + [anon_sym_switch] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_default] = ACTIONS(254), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_assert] = ACTIONS(254), + [anon_sym_do] = ACTIONS(254), + [anon_sym_while] = ACTIONS(254), + [anon_sym_break] = ACTIONS(254), + [anon_sym_continue] = ACTIONS(254), + [anon_sym_return] = ACTIONS(254), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_synchronized] = ACTIONS(254), + [anon_sym_throw] = ACTIONS(254), + [anon_sym_try] = ACTIONS(254), + [anon_sym_catch] = ACTIONS(254), + [anon_sym_finally] = ACTIONS(254), + [anon_sym_if] = ACTIONS(254), + [anon_sym_else] = ACTIONS(254), + [anon_sym_for] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(254), + [anon_sym_open] = ACTIONS(254), + [anon_sym_module] = ACTIONS(254), + [anon_sym_static] = ACTIONS(254), + [anon_sym_package] = ACTIONS(254), + [anon_sym_import] = ACTIONS(254), + [anon_sym_enum] = ACTIONS(254), + [anon_sym_public] = ACTIONS(254), + [anon_sym_protected] = ACTIONS(254), + [anon_sym_private] = ACTIONS(254), + [anon_sym_abstract] = ACTIONS(254), + [anon_sym_final] = ACTIONS(254), + [anon_sym_strictfp] = ACTIONS(254), + [anon_sym_native] = ACTIONS(254), + [anon_sym_transient] = ACTIONS(254), + [anon_sym_volatile] = ACTIONS(254), + [anon_sym_sealed] = ACTIONS(254), + [anon_sym_non_DASHsealed] = ACTIONS(252), + [anon_sym_ATinterface] = ACTIONS(252), + [anon_sym_interface] = ACTIONS(254), + [anon_sym_byte] = ACTIONS(254), + [anon_sym_short] = ACTIONS(254), + [anon_sym_int] = ACTIONS(254), + [anon_sym_long] = ACTIONS(254), + [anon_sym_char] = ACTIONS(254), + [anon_sym_float] = ACTIONS(254), + [anon_sym_double] = ACTIONS(254), + [sym_boolean_type] = ACTIONS(254), + [sym_void_type] = ACTIONS(254), + [sym_this] = ACTIONS(254), + [sym_super] = ACTIONS(254), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [111] = { + [ts_builtin_sym_end] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym_decimal_integer_literal] = ACTIONS(401), + [sym_hex_integer_literal] = ACTIONS(401), + [sym_octal_integer_literal] = ACTIONS(399), + [sym_binary_integer_literal] = ACTIONS(399), + [sym_decimal_floating_point_literal] = ACTIONS(399), + [sym_hex_floating_point_literal] = ACTIONS(401), + [sym_true] = ACTIONS(401), + [sym_false] = ACTIONS(401), + [sym_character_literal] = ACTIONS(399), + [sym_string_literal] = ACTIONS(401), + [sym_text_block] = ACTIONS(399), + [sym_null_literal] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_new] = ACTIONS(401), + [anon_sym_class] = ACTIONS(401), + [anon_sym_switch] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_case] = ACTIONS(401), + [anon_sym_default] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_assert] = ACTIONS(401), + [anon_sym_do] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_return] = ACTIONS(401), + [anon_sym_yield] = ACTIONS(401), + [anon_sym_synchronized] = ACTIONS(401), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_try] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_open] = ACTIONS(401), + [anon_sym_module] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_package] = ACTIONS(401), + [anon_sym_import] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(401), + [anon_sym_public] = ACTIONS(401), + [anon_sym_protected] = ACTIONS(401), + [anon_sym_private] = ACTIONS(401), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_final] = ACTIONS(401), + [anon_sym_strictfp] = ACTIONS(401), + [anon_sym_native] = ACTIONS(401), + [anon_sym_transient] = ACTIONS(401), + [anon_sym_volatile] = ACTIONS(401), + [anon_sym_sealed] = ACTIONS(401), + [anon_sym_non_DASHsealed] = ACTIONS(399), + [anon_sym_record] = ACTIONS(401), + [anon_sym_ATinterface] = ACTIONS(399), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_byte] = ACTIONS(401), + [anon_sym_short] = ACTIONS(401), + [anon_sym_int] = ACTIONS(401), + [anon_sym_long] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_float] = ACTIONS(401), + [anon_sym_double] = ACTIONS(401), + [sym_boolean_type] = ACTIONS(401), + [sym_void_type] = ACTIONS(401), + [sym_this] = ACTIONS(401), + [sym_super] = ACTIONS(401), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [112] = { + [ts_builtin_sym_end] = ACTIONS(403), + [sym_identifier] = ACTIONS(405), + [sym_decimal_integer_literal] = ACTIONS(405), + [sym_hex_integer_literal] = ACTIONS(405), + [sym_octal_integer_literal] = ACTIONS(403), + [sym_binary_integer_literal] = ACTIONS(403), + [sym_decimal_floating_point_literal] = ACTIONS(403), + [sym_hex_floating_point_literal] = ACTIONS(405), + [sym_true] = ACTIONS(405), + [sym_false] = ACTIONS(405), + [sym_character_literal] = ACTIONS(403), + [sym_string_literal] = ACTIONS(405), + [sym_text_block] = ACTIONS(403), + [sym_null_literal] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_new] = ACTIONS(405), + [anon_sym_class] = ACTIONS(405), + [anon_sym_switch] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_case] = ACTIONS(405), + [anon_sym_default] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_assert] = ACTIONS(405), + [anon_sym_do] = ACTIONS(405), + [anon_sym_while] = ACTIONS(405), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_return] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(405), + [anon_sym_synchronized] = ACTIONS(405), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_try] = ACTIONS(405), + [anon_sym_if] = ACTIONS(405), + [anon_sym_else] = ACTIONS(405), + [anon_sym_for] = ACTIONS(405), + [anon_sym_AT] = ACTIONS(405), + [anon_sym_open] = ACTIONS(405), + [anon_sym_module] = ACTIONS(405), + [anon_sym_static] = ACTIONS(405), + [anon_sym_package] = ACTIONS(405), + [anon_sym_import] = ACTIONS(405), + [anon_sym_enum] = ACTIONS(405), + [anon_sym_public] = ACTIONS(405), + [anon_sym_protected] = ACTIONS(405), + [anon_sym_private] = ACTIONS(405), + [anon_sym_abstract] = ACTIONS(405), + [anon_sym_final] = ACTIONS(405), + [anon_sym_strictfp] = ACTIONS(405), + [anon_sym_native] = ACTIONS(405), + [anon_sym_transient] = ACTIONS(405), + [anon_sym_volatile] = ACTIONS(405), + [anon_sym_sealed] = ACTIONS(405), + [anon_sym_non_DASHsealed] = ACTIONS(403), + [anon_sym_record] = ACTIONS(405), + [anon_sym_ATinterface] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(405), + [anon_sym_byte] = ACTIONS(405), + [anon_sym_short] = ACTIONS(405), + [anon_sym_int] = ACTIONS(405), + [anon_sym_long] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_float] = ACTIONS(405), + [anon_sym_double] = ACTIONS(405), + [sym_boolean_type] = ACTIONS(405), + [sym_void_type] = ACTIONS(405), + [sym_this] = ACTIONS(405), + [sym_super] = ACTIONS(405), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [113] = { + [ts_builtin_sym_end] = ACTIONS(407), + [sym_identifier] = ACTIONS(409), + [sym_decimal_integer_literal] = ACTIONS(409), + [sym_hex_integer_literal] = ACTIONS(409), + [sym_octal_integer_literal] = ACTIONS(407), + [sym_binary_integer_literal] = ACTIONS(407), + [sym_decimal_floating_point_literal] = ACTIONS(407), + [sym_hex_floating_point_literal] = ACTIONS(409), + [sym_true] = ACTIONS(409), + [sym_false] = ACTIONS(409), + [sym_character_literal] = ACTIONS(407), + [sym_string_literal] = ACTIONS(409), + [sym_text_block] = ACTIONS(407), + [sym_null_literal] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_TILDE] = ACTIONS(407), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_new] = ACTIONS(409), + [anon_sym_class] = ACTIONS(409), + [anon_sym_switch] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_case] = ACTIONS(409), + [anon_sym_default] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_do] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_synchronized] = ACTIONS(409), + [anon_sym_throw] = ACTIONS(409), + [anon_sym_try] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_else] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_open] = ACTIONS(409), + [anon_sym_module] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_package] = ACTIONS(409), + [anon_sym_import] = ACTIONS(409), + [anon_sym_enum] = ACTIONS(409), + [anon_sym_public] = ACTIONS(409), + [anon_sym_protected] = ACTIONS(409), + [anon_sym_private] = ACTIONS(409), + [anon_sym_abstract] = ACTIONS(409), + [anon_sym_final] = ACTIONS(409), + [anon_sym_strictfp] = ACTIONS(409), + [anon_sym_native] = ACTIONS(409), + [anon_sym_transient] = ACTIONS(409), + [anon_sym_volatile] = ACTIONS(409), + [anon_sym_sealed] = ACTIONS(409), + [anon_sym_non_DASHsealed] = ACTIONS(407), + [anon_sym_record] = ACTIONS(409), + [anon_sym_ATinterface] = ACTIONS(407), + [anon_sym_interface] = ACTIONS(409), + [anon_sym_byte] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_int] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_float] = ACTIONS(409), + [anon_sym_double] = ACTIONS(409), + [sym_boolean_type] = ACTIONS(409), + [sym_void_type] = ACTIONS(409), + [sym_this] = ACTIONS(409), + [sym_super] = ACTIONS(409), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [114] = { + [ts_builtin_sym_end] = ACTIONS(411), + [sym_identifier] = ACTIONS(413), + [sym_decimal_integer_literal] = ACTIONS(413), + [sym_hex_integer_literal] = ACTIONS(413), + [sym_octal_integer_literal] = ACTIONS(411), + [sym_binary_integer_literal] = ACTIONS(411), + [sym_decimal_floating_point_literal] = ACTIONS(411), + [sym_hex_floating_point_literal] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_character_literal] = ACTIONS(411), + [sym_string_literal] = ACTIONS(413), + [sym_text_block] = ACTIONS(411), + [sym_null_literal] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_TILDE] = ACTIONS(411), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_class] = ACTIONS(413), + [anon_sym_switch] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_case] = ACTIONS(413), + [anon_sym_default] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_do] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_yield] = ACTIONS(413), + [anon_sym_synchronized] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_try] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_else] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_AT] = ACTIONS(413), + [anon_sym_open] = ACTIONS(413), + [anon_sym_module] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_package] = ACTIONS(413), + [anon_sym_import] = ACTIONS(413), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_public] = ACTIONS(413), + [anon_sym_protected] = ACTIONS(413), + [anon_sym_private] = ACTIONS(413), + [anon_sym_abstract] = ACTIONS(413), + [anon_sym_final] = ACTIONS(413), + [anon_sym_strictfp] = ACTIONS(413), + [anon_sym_native] = ACTIONS(413), + [anon_sym_transient] = ACTIONS(413), + [anon_sym_volatile] = ACTIONS(413), + [anon_sym_sealed] = ACTIONS(413), + [anon_sym_non_DASHsealed] = ACTIONS(411), + [anon_sym_record] = ACTIONS(413), + [anon_sym_ATinterface] = ACTIONS(411), + [anon_sym_interface] = ACTIONS(413), + [anon_sym_byte] = ACTIONS(413), + [anon_sym_short] = ACTIONS(413), + [anon_sym_int] = ACTIONS(413), + [anon_sym_long] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_float] = ACTIONS(413), + [anon_sym_double] = ACTIONS(413), + [sym_boolean_type] = ACTIONS(413), + [sym_void_type] = ACTIONS(413), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [115] = { + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(417), + [sym_decimal_integer_literal] = ACTIONS(417), + [sym_hex_integer_literal] = ACTIONS(417), + [sym_octal_integer_literal] = ACTIONS(415), + [sym_binary_integer_literal] = ACTIONS(415), + [sym_decimal_floating_point_literal] = ACTIONS(415), + [sym_hex_floating_point_literal] = ACTIONS(417), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), + [sym_character_literal] = ACTIONS(415), + [sym_string_literal] = ACTIONS(417), + [sym_text_block] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_new] = ACTIONS(417), + [anon_sym_class] = ACTIONS(417), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_case] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_assert] = ACTIONS(417), + [anon_sym_do] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_yield] = ACTIONS(417), + [anon_sym_synchronized] = ACTIONS(417), + [anon_sym_throw] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(417), + [anon_sym_open] = ACTIONS(417), + [anon_sym_module] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_package] = ACTIONS(417), + [anon_sym_import] = ACTIONS(417), + [anon_sym_enum] = ACTIONS(417), + [anon_sym_public] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_final] = ACTIONS(417), + [anon_sym_strictfp] = ACTIONS(417), + [anon_sym_native] = ACTIONS(417), + [anon_sym_transient] = ACTIONS(417), + [anon_sym_volatile] = ACTIONS(417), + [anon_sym_sealed] = ACTIONS(417), + [anon_sym_non_DASHsealed] = ACTIONS(415), + [anon_sym_record] = ACTIONS(417), + [anon_sym_ATinterface] = ACTIONS(415), + [anon_sym_interface] = ACTIONS(417), + [anon_sym_byte] = ACTIONS(417), + [anon_sym_short] = ACTIONS(417), + [anon_sym_int] = ACTIONS(417), + [anon_sym_long] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_float] = ACTIONS(417), + [anon_sym_double] = ACTIONS(417), + [sym_boolean_type] = ACTIONS(417), + [sym_void_type] = ACTIONS(417), + [sym_this] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [116] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym__element_value] = STATE(1152), + [sym_element_value_array_initializer] = STATE(1152), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17460,18 +21910,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -17486,402 +21935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(401), - [sym_identifier] = ACTIONS(403), - [sym_decimal_integer_literal] = ACTIONS(403), - [sym_hex_integer_literal] = ACTIONS(403), - [sym_octal_integer_literal] = ACTIONS(401), - [sym_binary_integer_literal] = ACTIONS(401), - [sym_decimal_floating_point_literal] = ACTIONS(401), - [sym_hex_floating_point_literal] = ACTIONS(403), - [sym_true] = ACTIONS(403), - [sym_false] = ACTIONS(403), - [sym_character_literal] = ACTIONS(401), - [sym_string_literal] = ACTIONS(403), - [sym_text_block] = ACTIONS(401), - [sym_null_literal] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_TILDE] = ACTIONS(401), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_new] = ACTIONS(403), - [anon_sym_class] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_case] = ACTIONS(403), - [anon_sym_default] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(403), - [anon_sym_do] = ACTIONS(403), - [anon_sym_while] = ACTIONS(403), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_return] = ACTIONS(403), - [anon_sym_yield] = ACTIONS(403), - [anon_sym_synchronized] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(403), - [anon_sym_try] = ACTIONS(403), - [anon_sym_if] = ACTIONS(403), - [anon_sym_else] = ACTIONS(403), - [anon_sym_for] = ACTIONS(403), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_open] = ACTIONS(403), - [anon_sym_module] = ACTIONS(403), - [anon_sym_static] = ACTIONS(403), - [anon_sym_package] = ACTIONS(403), - [anon_sym_import] = ACTIONS(403), - [anon_sym_enum] = ACTIONS(403), - [anon_sym_public] = ACTIONS(403), - [anon_sym_protected] = ACTIONS(403), - [anon_sym_private] = ACTIONS(403), - [anon_sym_abstract] = ACTIONS(403), - [anon_sym_final] = ACTIONS(403), - [anon_sym_strictfp] = ACTIONS(403), - [anon_sym_native] = ACTIONS(403), - [anon_sym_transient] = ACTIONS(403), - [anon_sym_volatile] = ACTIONS(403), - [anon_sym_sealed] = ACTIONS(403), - [anon_sym_non_DASHsealed] = ACTIONS(401), - [anon_sym_record] = ACTIONS(403), - [anon_sym_ATinterface] = ACTIONS(401), - [anon_sym_interface] = ACTIONS(403), - [anon_sym_byte] = ACTIONS(403), - [anon_sym_short] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_long] = ACTIONS(403), - [anon_sym_char] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_double] = ACTIONS(403), - [sym_boolean_type] = ACTIONS(403), - [sym_void_type] = ACTIONS(403), - [sym_this] = ACTIONS(403), - [sym_super] = ACTIONS(403), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(405), - [sym_identifier] = ACTIONS(407), - [sym_decimal_integer_literal] = ACTIONS(407), - [sym_hex_integer_literal] = ACTIONS(407), - [sym_octal_integer_literal] = ACTIONS(405), - [sym_binary_integer_literal] = ACTIONS(405), - [sym_decimal_floating_point_literal] = ACTIONS(405), - [sym_hex_floating_point_literal] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [sym_character_literal] = ACTIONS(405), - [sym_string_literal] = ACTIONS(407), - [sym_text_block] = ACTIONS(405), - [sym_null_literal] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(405), - [anon_sym_TILDE] = ACTIONS(405), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [anon_sym_new] = ACTIONS(407), - [anon_sym_class] = ACTIONS(407), - [anon_sym_switch] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(405), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(405), - [anon_sym_assert] = ACTIONS(407), - [anon_sym_do] = ACTIONS(407), - [anon_sym_while] = ACTIONS(407), - [anon_sym_break] = ACTIONS(407), - [anon_sym_continue] = ACTIONS(407), - [anon_sym_return] = ACTIONS(407), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_synchronized] = ACTIONS(407), - [anon_sym_throw] = ACTIONS(407), - [anon_sym_try] = ACTIONS(407), - [anon_sym_if] = ACTIONS(407), - [anon_sym_else] = ACTIONS(407), - [anon_sym_for] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_open] = ACTIONS(407), - [anon_sym_module] = ACTIONS(407), - [anon_sym_static] = ACTIONS(407), - [anon_sym_package] = ACTIONS(407), - [anon_sym_import] = ACTIONS(407), - [anon_sym_enum] = ACTIONS(407), - [anon_sym_public] = ACTIONS(407), - [anon_sym_protected] = ACTIONS(407), - [anon_sym_private] = ACTIONS(407), - [anon_sym_abstract] = ACTIONS(407), - [anon_sym_final] = ACTIONS(407), - [anon_sym_strictfp] = ACTIONS(407), - [anon_sym_native] = ACTIONS(407), - [anon_sym_transient] = ACTIONS(407), - [anon_sym_volatile] = ACTIONS(407), - [anon_sym_sealed] = ACTIONS(407), - [anon_sym_non_DASHsealed] = ACTIONS(405), - [anon_sym_record] = ACTIONS(407), - [anon_sym_ATinterface] = ACTIONS(405), - [anon_sym_interface] = ACTIONS(407), - [anon_sym_byte] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [anon_sym_int] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_char] = ACTIONS(407), - [anon_sym_float] = ACTIONS(407), - [anon_sym_double] = ACTIONS(407), - [sym_boolean_type] = ACTIONS(407), - [sym_void_type] = ACTIONS(407), - [sym_this] = ACTIONS(407), - [sym_super] = ACTIONS(407), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym_decimal_integer_literal] = ACTIONS(411), - [sym_hex_integer_literal] = ACTIONS(411), - [sym_octal_integer_literal] = ACTIONS(409), - [sym_binary_integer_literal] = ACTIONS(409), - [sym_decimal_floating_point_literal] = ACTIONS(409), - [sym_hex_floating_point_literal] = ACTIONS(411), - [sym_true] = ACTIONS(411), - [sym_false] = ACTIONS(411), - [sym_character_literal] = ACTIONS(409), - [sym_string_literal] = ACTIONS(411), - [sym_text_block] = ACTIONS(409), - [sym_null_literal] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(409), - [anon_sym_PLUS_PLUS] = ACTIONS(409), - [anon_sym_DASH_DASH] = ACTIONS(409), - [anon_sym_new] = ACTIONS(411), - [anon_sym_class] = ACTIONS(411), - [anon_sym_switch] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_case] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_assert] = ACTIONS(411), - [anon_sym_do] = ACTIONS(411), - [anon_sym_while] = ACTIONS(411), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_return] = ACTIONS(411), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_synchronized] = ACTIONS(411), - [anon_sym_throw] = ACTIONS(411), - [anon_sym_try] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_else] = ACTIONS(411), - [anon_sym_for] = ACTIONS(411), - [anon_sym_AT] = ACTIONS(411), - [anon_sym_open] = ACTIONS(411), - [anon_sym_module] = ACTIONS(411), - [anon_sym_static] = ACTIONS(411), - [anon_sym_package] = ACTIONS(411), - [anon_sym_import] = ACTIONS(411), - [anon_sym_enum] = ACTIONS(411), - [anon_sym_public] = ACTIONS(411), - [anon_sym_protected] = ACTIONS(411), - [anon_sym_private] = ACTIONS(411), - [anon_sym_abstract] = ACTIONS(411), - [anon_sym_final] = ACTIONS(411), - [anon_sym_strictfp] = ACTIONS(411), - [anon_sym_native] = ACTIONS(411), - [anon_sym_transient] = ACTIONS(411), - [anon_sym_volatile] = ACTIONS(411), - [anon_sym_sealed] = ACTIONS(411), - [anon_sym_non_DASHsealed] = ACTIONS(409), - [anon_sym_record] = ACTIONS(411), - [anon_sym_ATinterface] = ACTIONS(409), - [anon_sym_interface] = ACTIONS(411), - [anon_sym_byte] = ACTIONS(411), - [anon_sym_short] = ACTIONS(411), - [anon_sym_int] = ACTIONS(411), - [anon_sym_long] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_float] = ACTIONS(411), - [anon_sym_double] = ACTIONS(411), - [sym_boolean_type] = ACTIONS(411), - [sym_void_type] = ACTIONS(411), - [sym_this] = ACTIONS(411), - [sym_super] = ACTIONS(411), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [ts_builtin_sym_end] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), - [sym_decimal_integer_literal] = ACTIONS(415), - [sym_hex_integer_literal] = ACTIONS(415), - [sym_octal_integer_literal] = ACTIONS(413), - [sym_binary_integer_literal] = ACTIONS(413), - [sym_decimal_floating_point_literal] = ACTIONS(413), - [sym_hex_floating_point_literal] = ACTIONS(415), - [sym_true] = ACTIONS(415), - [sym_false] = ACTIONS(415), - [sym_character_literal] = ACTIONS(413), - [sym_string_literal] = ACTIONS(415), - [sym_text_block] = ACTIONS(413), - [sym_null_literal] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_TILDE] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(413), - [anon_sym_new] = ACTIONS(415), - [anon_sym_class] = ACTIONS(415), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_case] = ACTIONS(415), - [anon_sym_default] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_assert] = ACTIONS(415), - [anon_sym_do] = ACTIONS(415), - [anon_sym_while] = ACTIONS(415), - [anon_sym_break] = ACTIONS(415), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_return] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(415), - [anon_sym_synchronized] = ACTIONS(415), - [anon_sym_throw] = ACTIONS(415), - [anon_sym_try] = ACTIONS(415), - [anon_sym_if] = ACTIONS(415), - [anon_sym_else] = ACTIONS(415), - [anon_sym_for] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_open] = ACTIONS(415), - [anon_sym_module] = ACTIONS(415), - [anon_sym_static] = ACTIONS(415), - [anon_sym_package] = ACTIONS(415), - [anon_sym_import] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(415), - [anon_sym_public] = ACTIONS(415), - [anon_sym_protected] = ACTIONS(415), - [anon_sym_private] = ACTIONS(415), - [anon_sym_abstract] = ACTIONS(415), - [anon_sym_final] = ACTIONS(415), - [anon_sym_strictfp] = ACTIONS(415), - [anon_sym_native] = ACTIONS(415), - [anon_sym_transient] = ACTIONS(415), - [anon_sym_volatile] = ACTIONS(415), - [anon_sym_sealed] = ACTIONS(415), - [anon_sym_non_DASHsealed] = ACTIONS(413), - [anon_sym_record] = ACTIONS(415), - [anon_sym_ATinterface] = ACTIONS(413), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_byte] = ACTIONS(415), - [anon_sym_short] = ACTIONS(415), - [anon_sym_int] = ACTIONS(415), - [anon_sym_long] = ACTIONS(415), - [anon_sym_char] = ACTIONS(415), - [anon_sym_float] = ACTIONS(415), - [anon_sym_double] = ACTIONS(415), - [sym_boolean_type] = ACTIONS(415), - [sym_void_type] = ACTIONS(415), - [sym_this] = ACTIONS(415), - [sym_super] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [88] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [sym_decimal_integer_literal] = ACTIONS(419), - [sym_hex_integer_literal] = ACTIONS(419), - [sym_octal_integer_literal] = ACTIONS(417), - [sym_binary_integer_literal] = ACTIONS(417), - [sym_decimal_floating_point_literal] = ACTIONS(417), - [sym_hex_floating_point_literal] = ACTIONS(419), - [sym_true] = ACTIONS(419), - [sym_false] = ACTIONS(419), - [sym_character_literal] = ACTIONS(417), - [sym_string_literal] = ACTIONS(419), - [sym_text_block] = ACTIONS(417), - [sym_null_literal] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_class] = ACTIONS(419), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_case] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_assert] = ACTIONS(419), - [anon_sym_do] = ACTIONS(419), - [anon_sym_while] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_yield] = ACTIONS(419), - [anon_sym_synchronized] = ACTIONS(419), - [anon_sym_throw] = ACTIONS(419), - [anon_sym_try] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_else] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_AT] = ACTIONS(419), - [anon_sym_open] = ACTIONS(419), - [anon_sym_module] = ACTIONS(419), - [anon_sym_static] = ACTIONS(419), - [anon_sym_package] = ACTIONS(419), - [anon_sym_import] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(419), - [anon_sym_public] = ACTIONS(419), - [anon_sym_protected] = ACTIONS(419), - [anon_sym_private] = ACTIONS(419), - [anon_sym_abstract] = ACTIONS(419), - [anon_sym_final] = ACTIONS(419), - [anon_sym_strictfp] = ACTIONS(419), - [anon_sym_native] = ACTIONS(419), - [anon_sym_transient] = ACTIONS(419), - [anon_sym_volatile] = ACTIONS(419), - [anon_sym_sealed] = ACTIONS(419), - [anon_sym_non_DASHsealed] = ACTIONS(417), - [anon_sym_record] = ACTIONS(419), - [anon_sym_ATinterface] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_byte] = ACTIONS(419), - [anon_sym_short] = ACTIONS(419), - [anon_sym_int] = ACTIONS(419), - [anon_sym_long] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_float] = ACTIONS(419), - [anon_sym_double] = ACTIONS(419), - [sym_boolean_type] = ACTIONS(419), - [sym_void_type] = ACTIONS(419), - [sym_this] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [89] = { + [117] = { [ts_builtin_sym_end] = ACTIONS(421), [sym_identifier] = ACTIONS(423), [sym_decimal_integer_literal] = ACTIONS(423), @@ -17897,6 +21951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(421), [sym_null_literal] = ACTIONS(423), [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), [anon_sym_PLUS] = ACTIONS(423), [anon_sym_DASH] = ACTIONS(423), [anon_sym_BANG] = ACTIONS(421), @@ -17921,8 +21976,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(423), [anon_sym_throw] = ACTIONS(423), [anon_sym_try] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_finally] = ACTIONS(423), [anon_sym_if] = ACTIONS(423), [anon_sym_else] = ACTIONS(423), [anon_sym_for] = ACTIONS(423), @@ -17944,6 +21997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(423), [anon_sym_sealed] = ACTIONS(423), [anon_sym_non_DASHsealed] = ACTIONS(421), + [anon_sym_record] = ACTIONS(423), [anon_sym_ATinterface] = ACTIONS(421), [anon_sym_interface] = ACTIONS(423), [anon_sym_byte] = ACTIONS(423), @@ -17960,7 +22014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [90] = { + [118] = { [ts_builtin_sym_end] = ACTIONS(425), [sym_identifier] = ACTIONS(427), [sym_decimal_integer_literal] = ACTIONS(427), @@ -18039,7 +22093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [91] = { + [119] = { [ts_builtin_sym_end] = ACTIONS(429), [sym_identifier] = ACTIONS(431), [sym_decimal_integer_literal] = ACTIONS(431), @@ -18118,7 +22172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [92] = { + [120] = { [ts_builtin_sym_end] = ACTIONS(433), [sym_identifier] = ACTIONS(435), [sym_decimal_integer_literal] = ACTIONS(435), @@ -18197,7 +22251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [93] = { + [121] = { [ts_builtin_sym_end] = ACTIONS(437), [sym_identifier] = ACTIONS(439), [sym_decimal_integer_literal] = ACTIONS(439), @@ -18276,7 +22330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [94] = { + [122] = { [ts_builtin_sym_end] = ACTIONS(441), [sym_identifier] = ACTIONS(443), [sym_decimal_integer_literal] = ACTIONS(443), @@ -18355,7 +22409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [95] = { + [123] = { [ts_builtin_sym_end] = ACTIONS(445), [sym_identifier] = ACTIONS(447), [sym_decimal_integer_literal] = ACTIONS(447), @@ -18434,7 +22488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [96] = { + [124] = { [ts_builtin_sym_end] = ACTIONS(449), [sym_identifier] = ACTIONS(451), [sym_decimal_integer_literal] = ACTIONS(451), @@ -18513,7 +22567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [97] = { + [125] = { [ts_builtin_sym_end] = ACTIONS(453), [sym_identifier] = ACTIONS(455), [sym_decimal_integer_literal] = ACTIONS(455), @@ -18592,7 +22646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [98] = { + [126] = { [ts_builtin_sym_end] = ACTIONS(457), [sym_identifier] = ACTIONS(459), [sym_decimal_integer_literal] = ACTIONS(459), @@ -18671,7 +22725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [99] = { + [127] = { [ts_builtin_sym_end] = ACTIONS(461), [sym_identifier] = ACTIONS(463), [sym_decimal_integer_literal] = ACTIONS(463), @@ -18750,361 +22804,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [ts_builtin_sym_end] = ACTIONS(465), - [sym_identifier] = ACTIONS(467), - [sym_decimal_integer_literal] = ACTIONS(467), - [sym_hex_integer_literal] = ACTIONS(467), - [sym_octal_integer_literal] = ACTIONS(465), - [sym_binary_integer_literal] = ACTIONS(465), - [sym_decimal_floating_point_literal] = ACTIONS(465), - [sym_hex_floating_point_literal] = ACTIONS(467), - [sym_true] = ACTIONS(467), - [sym_false] = ACTIONS(467), - [sym_character_literal] = ACTIONS(465), - [sym_string_literal] = ACTIONS(467), - [sym_text_block] = ACTIONS(465), - [sym_null_literal] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_new] = ACTIONS(467), - [anon_sym_class] = ACTIONS(467), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_case] = ACTIONS(467), - [anon_sym_default] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(467), - [anon_sym_do] = ACTIONS(467), - [anon_sym_while] = ACTIONS(467), - [anon_sym_break] = ACTIONS(467), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_return] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(467), - [anon_sym_synchronized] = ACTIONS(467), - [anon_sym_throw] = ACTIONS(467), - [anon_sym_try] = ACTIONS(467), - [anon_sym_if] = ACTIONS(467), - [anon_sym_else] = ACTIONS(467), - [anon_sym_for] = ACTIONS(467), - [anon_sym_AT] = ACTIONS(467), - [anon_sym_open] = ACTIONS(467), - [anon_sym_module] = ACTIONS(467), - [anon_sym_static] = ACTIONS(467), - [anon_sym_package] = ACTIONS(467), - [anon_sym_import] = ACTIONS(467), - [anon_sym_enum] = ACTIONS(467), - [anon_sym_public] = ACTIONS(467), - [anon_sym_protected] = ACTIONS(467), - [anon_sym_private] = ACTIONS(467), - [anon_sym_abstract] = ACTIONS(467), - [anon_sym_final] = ACTIONS(467), - [anon_sym_strictfp] = ACTIONS(467), - [anon_sym_native] = ACTIONS(467), - [anon_sym_transient] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(467), - [anon_sym_sealed] = ACTIONS(467), - [anon_sym_non_DASHsealed] = ACTIONS(465), - [anon_sym_record] = ACTIONS(467), - [anon_sym_ATinterface] = ACTIONS(465), - [anon_sym_interface] = ACTIONS(467), - [anon_sym_byte] = ACTIONS(467), - [anon_sym_short] = ACTIONS(467), - [anon_sym_int] = ACTIONS(467), - [anon_sym_long] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_float] = ACTIONS(467), - [anon_sym_double] = ACTIONS(467), - [sym_boolean_type] = ACTIONS(467), - [sym_void_type] = ACTIONS(467), - [sym_this] = ACTIONS(467), - [sym_super] = ACTIONS(467), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [101] = { - [ts_builtin_sym_end] = ACTIONS(469), - [sym_identifier] = ACTIONS(471), - [sym_decimal_integer_literal] = ACTIONS(471), - [sym_hex_integer_literal] = ACTIONS(471), - [sym_octal_integer_literal] = ACTIONS(469), - [sym_binary_integer_literal] = ACTIONS(469), - [sym_decimal_floating_point_literal] = ACTIONS(469), - [sym_hex_floating_point_literal] = ACTIONS(471), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_character_literal] = ACTIONS(469), - [sym_string_literal] = ACTIONS(471), - [sym_text_block] = ACTIONS(469), - [sym_null_literal] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_PLUS] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_TILDE] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(469), - [anon_sym_DASH_DASH] = ACTIONS(469), - [anon_sym_new] = ACTIONS(471), - [anon_sym_class] = ACTIONS(471), - [anon_sym_switch] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_case] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_assert] = ACTIONS(471), - [anon_sym_do] = ACTIONS(471), - [anon_sym_while] = ACTIONS(471), - [anon_sym_break] = ACTIONS(471), - [anon_sym_continue] = ACTIONS(471), - [anon_sym_return] = ACTIONS(471), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_synchronized] = ACTIONS(471), - [anon_sym_throw] = ACTIONS(471), - [anon_sym_try] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(471), - [anon_sym_for] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(471), - [anon_sym_open] = ACTIONS(471), - [anon_sym_module] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_import] = ACTIONS(471), - [anon_sym_enum] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_protected] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_strictfp] = ACTIONS(471), - [anon_sym_native] = ACTIONS(471), - [anon_sym_transient] = ACTIONS(471), - [anon_sym_volatile] = ACTIONS(471), - [anon_sym_sealed] = ACTIONS(471), - [anon_sym_non_DASHsealed] = ACTIONS(469), - [anon_sym_record] = ACTIONS(471), - [anon_sym_ATinterface] = ACTIONS(469), - [anon_sym_interface] = ACTIONS(471), - [anon_sym_byte] = ACTIONS(471), - [anon_sym_short] = ACTIONS(471), - [anon_sym_int] = ACTIONS(471), - [anon_sym_long] = ACTIONS(471), - [anon_sym_char] = ACTIONS(471), - [anon_sym_float] = ACTIONS(471), - [anon_sym_double] = ACTIONS(471), - [sym_boolean_type] = ACTIONS(471), - [sym_void_type] = ACTIONS(471), - [sym_this] = ACTIONS(471), - [sym_super] = ACTIONS(471), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [102] = { - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [sym_decimal_integer_literal] = ACTIONS(246), - [sym_hex_integer_literal] = ACTIONS(246), - [sym_octal_integer_literal] = ACTIONS(244), - [sym_binary_integer_literal] = ACTIONS(244), - [sym_decimal_floating_point_literal] = ACTIONS(244), - [sym_hex_floating_point_literal] = ACTIONS(246), - [sym_true] = ACTIONS(246), - [sym_false] = ACTIONS(246), - [sym_character_literal] = ACTIONS(244), - [sym_string_literal] = ACTIONS(246), - [sym_text_block] = ACTIONS(244), - [sym_null_literal] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_new] = ACTIONS(246), - [anon_sym_class] = ACTIONS(246), - [anon_sym_switch] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(246), - [anon_sym_default] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(244), - [anon_sym_assert] = ACTIONS(246), - [anon_sym_do] = ACTIONS(246), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(246), - [anon_sym_continue] = ACTIONS(246), - [anon_sym_return] = ACTIONS(246), - [anon_sym_yield] = ACTIONS(246), - [anon_sym_synchronized] = ACTIONS(246), - [anon_sym_throw] = ACTIONS(246), - [anon_sym_try] = ACTIONS(246), - [anon_sym_catch] = ACTIONS(246), - [anon_sym_finally] = ACTIONS(246), - [anon_sym_if] = ACTIONS(246), - [anon_sym_else] = ACTIONS(246), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(246), - [anon_sym_open] = ACTIONS(246), - [anon_sym_module] = ACTIONS(246), - [anon_sym_static] = ACTIONS(246), - [anon_sym_package] = ACTIONS(246), - [anon_sym_import] = ACTIONS(246), - [anon_sym_enum] = ACTIONS(246), - [anon_sym_public] = ACTIONS(246), - [anon_sym_protected] = ACTIONS(246), - [anon_sym_private] = ACTIONS(246), - [anon_sym_abstract] = ACTIONS(246), - [anon_sym_final] = ACTIONS(246), - [anon_sym_strictfp] = ACTIONS(246), - [anon_sym_native] = ACTIONS(246), - [anon_sym_transient] = ACTIONS(246), - [anon_sym_volatile] = ACTIONS(246), - [anon_sym_sealed] = ACTIONS(246), - [anon_sym_non_DASHsealed] = ACTIONS(244), - [anon_sym_ATinterface] = ACTIONS(244), - [anon_sym_interface] = ACTIONS(246), - [anon_sym_byte] = ACTIONS(246), - [anon_sym_short] = ACTIONS(246), - [anon_sym_int] = ACTIONS(246), - [anon_sym_long] = ACTIONS(246), - [anon_sym_char] = ACTIONS(246), - [anon_sym_float] = ACTIONS(246), - [anon_sym_double] = ACTIONS(246), - [sym_boolean_type] = ACTIONS(246), - [sym_void_type] = ACTIONS(246), - [sym_this] = ACTIONS(246), - [sym_super] = ACTIONS(246), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [103] = { - [ts_builtin_sym_end] = ACTIONS(473), - [sym_identifier] = ACTIONS(475), - [sym_decimal_integer_literal] = ACTIONS(475), - [sym_hex_integer_literal] = ACTIONS(475), - [sym_octal_integer_literal] = ACTIONS(473), - [sym_binary_integer_literal] = ACTIONS(473), - [sym_decimal_floating_point_literal] = ACTIONS(473), - [sym_hex_floating_point_literal] = ACTIONS(475), - [sym_true] = ACTIONS(475), - [sym_false] = ACTIONS(475), - [sym_character_literal] = ACTIONS(473), - [sym_string_literal] = ACTIONS(475), - [sym_text_block] = ACTIONS(473), - [sym_null_literal] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_TILDE] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_new] = ACTIONS(475), - [anon_sym_class] = ACTIONS(475), - [anon_sym_switch] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(473), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_case] = ACTIONS(475), - [anon_sym_default] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_assert] = ACTIONS(475), - [anon_sym_do] = ACTIONS(475), - [anon_sym_while] = ACTIONS(475), - [anon_sym_break] = ACTIONS(475), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_return] = ACTIONS(475), - [anon_sym_yield] = ACTIONS(475), - [anon_sym_synchronized] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(475), - [anon_sym_try] = ACTIONS(475), - [anon_sym_if] = ACTIONS(475), - [anon_sym_else] = ACTIONS(475), - [anon_sym_for] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_open] = ACTIONS(475), - [anon_sym_module] = ACTIONS(475), - [anon_sym_static] = ACTIONS(475), - [anon_sym_package] = ACTIONS(475), - [anon_sym_import] = ACTIONS(475), - [anon_sym_enum] = ACTIONS(475), - [anon_sym_public] = ACTIONS(475), - [anon_sym_protected] = ACTIONS(475), - [anon_sym_private] = ACTIONS(475), - [anon_sym_abstract] = ACTIONS(475), - [anon_sym_final] = ACTIONS(475), - [anon_sym_strictfp] = ACTIONS(475), - [anon_sym_native] = ACTIONS(475), - [anon_sym_transient] = ACTIONS(475), - [anon_sym_volatile] = ACTIONS(475), - [anon_sym_sealed] = ACTIONS(475), - [anon_sym_non_DASHsealed] = ACTIONS(473), - [anon_sym_record] = ACTIONS(475), - [anon_sym_ATinterface] = ACTIONS(473), - [anon_sym_interface] = ACTIONS(475), - [anon_sym_byte] = ACTIONS(475), - [anon_sym_short] = ACTIONS(475), - [anon_sym_int] = ACTIONS(475), - [anon_sym_long] = ACTIONS(475), - [anon_sym_char] = ACTIONS(475), - [anon_sym_float] = ACTIONS(475), - [anon_sym_double] = ACTIONS(475), - [sym_boolean_type] = ACTIONS(475), - [sym_void_type] = ACTIONS(475), - [sym_this] = ACTIONS(475), - [sym_super] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [104] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym__element_value] = STATE(1011), - [sym_element_value_array_initializer] = STATE(1011), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [128] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym__element_value] = STATE(1152), + [sym_element_value_array_initializer] = STATE(1152), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19126,11 +22864,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -19145,7 +22883,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [105] = { + [129] = { + [ts_builtin_sym_end] = ACTIONS(467), + [sym_identifier] = ACTIONS(469), + [sym_decimal_integer_literal] = ACTIONS(469), + [sym_hex_integer_literal] = ACTIONS(469), + [sym_octal_integer_literal] = ACTIONS(467), + [sym_binary_integer_literal] = ACTIONS(467), + [sym_decimal_floating_point_literal] = ACTIONS(467), + [sym_hex_floating_point_literal] = ACTIONS(469), + [sym_true] = ACTIONS(469), + [sym_false] = ACTIONS(469), + [sym_character_literal] = ACTIONS(467), + [sym_string_literal] = ACTIONS(469), + [sym_text_block] = ACTIONS(467), + [sym_null_literal] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(467), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym_new] = ACTIONS(469), + [anon_sym_class] = ACTIONS(469), + [anon_sym_switch] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_case] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(467), + [anon_sym_assert] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_synchronized] = ACTIONS(469), + [anon_sym_throw] = ACTIONS(469), + [anon_sym_try] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_else] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_AT] = ACTIONS(469), + [anon_sym_open] = ACTIONS(469), + [anon_sym_module] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_package] = ACTIONS(469), + [anon_sym_import] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_public] = ACTIONS(469), + [anon_sym_protected] = ACTIONS(469), + [anon_sym_private] = ACTIONS(469), + [anon_sym_abstract] = ACTIONS(469), + [anon_sym_final] = ACTIONS(469), + [anon_sym_strictfp] = ACTIONS(469), + [anon_sym_native] = ACTIONS(469), + [anon_sym_transient] = ACTIONS(469), + [anon_sym_volatile] = ACTIONS(469), + [anon_sym_sealed] = ACTIONS(469), + [anon_sym_non_DASHsealed] = ACTIONS(467), + [anon_sym_record] = ACTIONS(469), + [anon_sym_ATinterface] = ACTIONS(467), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_byte] = ACTIONS(469), + [anon_sym_short] = ACTIONS(469), + [anon_sym_int] = ACTIONS(469), + [anon_sym_long] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_float] = ACTIONS(469), + [anon_sym_double] = ACTIONS(469), + [sym_boolean_type] = ACTIONS(469), + [sym_void_type] = ACTIONS(469), + [sym_this] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [130] = { + [ts_builtin_sym_end] = ACTIONS(471), + [sym_identifier] = ACTIONS(473), + [sym_decimal_integer_literal] = ACTIONS(473), + [sym_hex_integer_literal] = ACTIONS(473), + [sym_octal_integer_literal] = ACTIONS(471), + [sym_binary_integer_literal] = ACTIONS(471), + [sym_decimal_floating_point_literal] = ACTIONS(471), + [sym_hex_floating_point_literal] = ACTIONS(473), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_character_literal] = ACTIONS(471), + [sym_string_literal] = ACTIONS(473), + [sym_text_block] = ACTIONS(471), + [sym_null_literal] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_new] = ACTIONS(473), + [anon_sym_class] = ACTIONS(473), + [anon_sym_switch] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_case] = ACTIONS(473), + [anon_sym_default] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_assert] = ACTIONS(473), + [anon_sym_do] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_throw] = ACTIONS(473), + [anon_sym_try] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_else] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_open] = ACTIONS(473), + [anon_sym_module] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_package] = ACTIONS(473), + [anon_sym_import] = ACTIONS(473), + [anon_sym_enum] = ACTIONS(473), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = ACTIONS(473), + [anon_sym_final] = ACTIONS(473), + [anon_sym_strictfp] = ACTIONS(473), + [anon_sym_native] = ACTIONS(473), + [anon_sym_transient] = ACTIONS(473), + [anon_sym_volatile] = ACTIONS(473), + [anon_sym_sealed] = ACTIONS(473), + [anon_sym_non_DASHsealed] = ACTIONS(471), + [anon_sym_record] = ACTIONS(473), + [anon_sym_ATinterface] = ACTIONS(471), + [anon_sym_interface] = ACTIONS(473), + [anon_sym_byte] = ACTIONS(473), + [anon_sym_short] = ACTIONS(473), + [anon_sym_int] = ACTIONS(473), + [anon_sym_long] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_float] = ACTIONS(473), + [anon_sym_double] = ACTIONS(473), + [sym_boolean_type] = ACTIONS(473), + [sym_void_type] = ACTIONS(473), + [sym_this] = ACTIONS(473), + [sym_super] = ACTIONS(473), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [ts_builtin_sym_end] = ACTIONS(475), + [sym_identifier] = ACTIONS(477), + [sym_decimal_integer_literal] = ACTIONS(477), + [sym_hex_integer_literal] = ACTIONS(477), + [sym_octal_integer_literal] = ACTIONS(475), + [sym_binary_integer_literal] = ACTIONS(475), + [sym_decimal_floating_point_literal] = ACTIONS(475), + [sym_hex_floating_point_literal] = ACTIONS(477), + [sym_true] = ACTIONS(477), + [sym_false] = ACTIONS(477), + [sym_character_literal] = ACTIONS(475), + [sym_string_literal] = ACTIONS(477), + [sym_text_block] = ACTIONS(475), + [sym_null_literal] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_new] = ACTIONS(477), + [anon_sym_class] = ACTIONS(477), + [anon_sym_switch] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_case] = ACTIONS(477), + [anon_sym_default] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_assert] = ACTIONS(477), + [anon_sym_do] = ACTIONS(477), + [anon_sym_while] = ACTIONS(477), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_yield] = ACTIONS(477), + [anon_sym_synchronized] = ACTIONS(477), + [anon_sym_throw] = ACTIONS(477), + [anon_sym_try] = ACTIONS(477), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(477), + [anon_sym_for] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(477), + [anon_sym_open] = ACTIONS(477), + [anon_sym_module] = ACTIONS(477), + [anon_sym_static] = ACTIONS(477), + [anon_sym_package] = ACTIONS(477), + [anon_sym_import] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(477), + [anon_sym_public] = ACTIONS(477), + [anon_sym_protected] = ACTIONS(477), + [anon_sym_private] = ACTIONS(477), + [anon_sym_abstract] = ACTIONS(477), + [anon_sym_final] = ACTIONS(477), + [anon_sym_strictfp] = ACTIONS(477), + [anon_sym_native] = ACTIONS(477), + [anon_sym_transient] = ACTIONS(477), + [anon_sym_volatile] = ACTIONS(477), + [anon_sym_sealed] = ACTIONS(477), + [anon_sym_non_DASHsealed] = ACTIONS(475), + [anon_sym_record] = ACTIONS(477), + [anon_sym_ATinterface] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_byte] = ACTIONS(477), + [anon_sym_short] = ACTIONS(477), + [anon_sym_int] = ACTIONS(477), + [anon_sym_long] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_float] = ACTIONS(477), + [anon_sym_double] = ACTIONS(477), + [sym_boolean_type] = ACTIONS(477), + [sym_void_type] = ACTIONS(477), + [sym_this] = ACTIONS(477), + [sym_super] = ACTIONS(477), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { [ts_builtin_sym_end] = ACTIONS(479), [sym_identifier] = ACTIONS(481), [sym_decimal_integer_literal] = ACTIONS(481), @@ -19224,7 +23199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [106] = { + [133] = { [ts_builtin_sym_end] = ACTIONS(483), [sym_identifier] = ACTIONS(485), [sym_decimal_integer_literal] = ACTIONS(485), @@ -19303,7 +23278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [107] = { + [134] = { [ts_builtin_sym_end] = ACTIONS(487), [sym_identifier] = ACTIONS(489), [sym_decimal_integer_literal] = ACTIONS(489), @@ -19382,7 +23357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [108] = { + [135] = { [ts_builtin_sym_end] = ACTIONS(491), [sym_identifier] = ACTIONS(493), [sym_decimal_integer_literal] = ACTIONS(493), @@ -19461,7 +23436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [109] = { + [136] = { [ts_builtin_sym_end] = ACTIONS(495), [sym_identifier] = ACTIONS(497), [sym_decimal_integer_literal] = ACTIONS(497), @@ -19540,7 +23515,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [110] = { + [137] = { + [ts_builtin_sym_end] = ACTIONS(256), + [sym_identifier] = ACTIONS(258), + [sym_decimal_integer_literal] = ACTIONS(258), + [sym_hex_integer_literal] = ACTIONS(258), + [sym_octal_integer_literal] = ACTIONS(256), + [sym_binary_integer_literal] = ACTIONS(256), + [sym_decimal_floating_point_literal] = ACTIONS(256), + [sym_hex_floating_point_literal] = ACTIONS(258), + [sym_true] = ACTIONS(258), + [sym_false] = ACTIONS(258), + [sym_character_literal] = ACTIONS(256), + [sym_string_literal] = ACTIONS(258), + [sym_text_block] = ACTIONS(256), + [sym_null_literal] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(256), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(256), + [anon_sym_TILDE] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(256), + [anon_sym_DASH_DASH] = ACTIONS(256), + [anon_sym_new] = ACTIONS(258), + [anon_sym_class] = ACTIONS(258), + [anon_sym_switch] = ACTIONS(258), + [anon_sym_LBRACE] = ACTIONS(256), + [anon_sym_RBRACE] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_default] = ACTIONS(258), + [anon_sym_SEMI] = ACTIONS(256), + [anon_sym_assert] = ACTIONS(258), + [anon_sym_do] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_synchronized] = ACTIONS(258), + [anon_sym_throw] = ACTIONS(258), + [anon_sym_try] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_finally] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(258), + [anon_sym_open] = ACTIONS(258), + [anon_sym_module] = ACTIONS(258), + [anon_sym_static] = ACTIONS(258), + [anon_sym_package] = ACTIONS(258), + [anon_sym_import] = ACTIONS(258), + [anon_sym_enum] = ACTIONS(258), + [anon_sym_public] = ACTIONS(258), + [anon_sym_protected] = ACTIONS(258), + [anon_sym_private] = ACTIONS(258), + [anon_sym_abstract] = ACTIONS(258), + [anon_sym_final] = ACTIONS(258), + [anon_sym_strictfp] = ACTIONS(258), + [anon_sym_native] = ACTIONS(258), + [anon_sym_transient] = ACTIONS(258), + [anon_sym_volatile] = ACTIONS(258), + [anon_sym_sealed] = ACTIONS(258), + [anon_sym_non_DASHsealed] = ACTIONS(256), + [anon_sym_ATinterface] = ACTIONS(256), + [anon_sym_interface] = ACTIONS(258), + [anon_sym_byte] = ACTIONS(258), + [anon_sym_short] = ACTIONS(258), + [anon_sym_int] = ACTIONS(258), + [anon_sym_long] = ACTIONS(258), + [anon_sym_char] = ACTIONS(258), + [anon_sym_float] = ACTIONS(258), + [anon_sym_double] = ACTIONS(258), + [sym_boolean_type] = ACTIONS(258), + [sym_void_type] = ACTIONS(258), + [sym_this] = ACTIONS(258), + [sym_super] = ACTIONS(258), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { [ts_builtin_sym_end] = ACTIONS(499), [sym_identifier] = ACTIONS(501), [sym_decimal_integer_literal] = ACTIONS(501), @@ -19619,7 +23673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [111] = { + [139] = { [ts_builtin_sym_end] = ACTIONS(503), [sym_identifier] = ACTIONS(505), [sym_decimal_integer_literal] = ACTIONS(505), @@ -19698,7 +23752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [112] = { + [140] = { [ts_builtin_sym_end] = ACTIONS(507), [sym_identifier] = ACTIONS(509), [sym_decimal_integer_literal] = ACTIONS(509), @@ -19777,7 +23831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [113] = { + [141] = { [ts_builtin_sym_end] = ACTIONS(511), [sym_identifier] = ACTIONS(513), [sym_decimal_integer_literal] = ACTIONS(513), @@ -19856,7 +23910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [114] = { + [142] = { [ts_builtin_sym_end] = ACTIONS(515), [sym_identifier] = ACTIONS(517), [sym_decimal_integer_literal] = ACTIONS(517), @@ -19935,7 +23989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [115] = { + [143] = { [ts_builtin_sym_end] = ACTIONS(519), [sym_identifier] = ACTIONS(521), [sym_decimal_integer_literal] = ACTIONS(521), @@ -20014,7 +24068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [116] = { + [144] = { [ts_builtin_sym_end] = ACTIONS(523), [sym_identifier] = ACTIONS(525), [sym_decimal_integer_literal] = ACTIONS(525), @@ -20093,7 +24147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [117] = { + [145] = { [ts_builtin_sym_end] = ACTIONS(527), [sym_identifier] = ACTIONS(529), [sym_decimal_integer_literal] = ACTIONS(529), @@ -20172,7 +24226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [118] = { + [146] = { [ts_builtin_sym_end] = ACTIONS(531), [sym_identifier] = ACTIONS(533), [sym_decimal_integer_literal] = ACTIONS(533), @@ -20251,7 +24305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [119] = { + [147] = { [ts_builtin_sym_end] = ACTIONS(535), [sym_identifier] = ACTIONS(537), [sym_decimal_integer_literal] = ACTIONS(537), @@ -20330,7 +24384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [120] = { + [148] = { [ts_builtin_sym_end] = ACTIONS(539), [sym_identifier] = ACTIONS(541), [sym_decimal_integer_literal] = ACTIONS(541), @@ -20409,7 +24463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [121] = { + [149] = { [ts_builtin_sym_end] = ACTIONS(543), [sym_identifier] = ACTIONS(545), [sym_decimal_integer_literal] = ACTIONS(545), @@ -20488,45 +24542,1309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym__element_value] = STATE(1011), - [sym_element_value_array_initializer] = STATE(1011), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [150] = { + [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(547), + [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), + [sym_string_literal] = ACTIONS(549), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [151] = { + [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(551), + [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), + [sym_string_literal] = ACTIONS(553), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [152] = { + [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(555), + [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), + [sym_string_literal] = ACTIONS(557), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [153] = { + [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(559), + [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), + [sym_string_literal] = ACTIONS(561), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [154] = { + [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(563), + [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), + [sym_string_literal] = ACTIONS(565), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [155] = { + [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(567), + [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), + [sym_string_literal] = ACTIONS(569), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [156] = { + [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(571), + [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), + [sym_string_literal] = ACTIONS(573), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [157] = { + [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(575), + [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), + [sym_string_literal] = ACTIONS(577), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [158] = { + [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(579), + [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), + [sym_string_literal] = ACTIONS(581), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [159] = { + [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(583), + [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), + [sym_string_literal] = ACTIONS(585), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [160] = { + [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(587), + [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), + [sym_string_literal] = ACTIONS(589), + [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + }, + [161] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(563), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym_array_initializer] = STATE(1032), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [ts_builtin_sym_end] = ACTIONS(597), + [sym_identifier] = ACTIONS(599), + [sym_decimal_integer_literal] = ACTIONS(599), + [sym_hex_integer_literal] = ACTIONS(599), + [sym_octal_integer_literal] = ACTIONS(597), + [sym_binary_integer_literal] = ACTIONS(597), + [sym_decimal_floating_point_literal] = ACTIONS(597), + [sym_hex_floating_point_literal] = ACTIONS(599), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [sym_character_literal] = ACTIONS(597), + [sym_string_literal] = ACTIONS(599), + [sym_text_block] = ACTIONS(597), + [sym_null_literal] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_new] = ACTIONS(599), + [anon_sym_class] = ACTIONS(599), + [anon_sym_switch] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_assert] = ACTIONS(599), + [anon_sym_do] = ACTIONS(599), + [anon_sym_while] = ACTIONS(599), + [anon_sym_break] = ACTIONS(599), + [anon_sym_continue] = ACTIONS(599), + [anon_sym_return] = ACTIONS(599), + [anon_sym_yield] = ACTIONS(599), + [anon_sym_synchronized] = ACTIONS(599), + [anon_sym_throw] = ACTIONS(599), + [anon_sym_try] = ACTIONS(599), + [anon_sym_if] = ACTIONS(599), + [anon_sym_else] = ACTIONS(599), + [anon_sym_for] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_open] = ACTIONS(599), + [anon_sym_module] = ACTIONS(599), + [anon_sym_static] = ACTIONS(599), + [anon_sym_package] = ACTIONS(599), + [anon_sym_import] = ACTIONS(599), + [anon_sym_enum] = ACTIONS(599), + [anon_sym_public] = ACTIONS(599), + [anon_sym_protected] = ACTIONS(599), + [anon_sym_private] = ACTIONS(599), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_final] = ACTIONS(599), + [anon_sym_strictfp] = ACTIONS(599), + [anon_sym_native] = ACTIONS(599), + [anon_sym_transient] = ACTIONS(599), + [anon_sym_volatile] = ACTIONS(599), + [anon_sym_sealed] = ACTIONS(599), + [anon_sym_non_DASHsealed] = ACTIONS(597), + [anon_sym_record] = ACTIONS(599), + [anon_sym_ATinterface] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(599), + [anon_sym_byte] = ACTIONS(599), + [anon_sym_short] = ACTIONS(599), + [anon_sym_int] = ACTIONS(599), + [anon_sym_long] = ACTIONS(599), + [anon_sym_char] = ACTIONS(599), + [anon_sym_float] = ACTIONS(599), + [anon_sym_double] = ACTIONS(599), + [sym_boolean_type] = ACTIONS(599), + [sym_void_type] = ACTIONS(599), + [sym_this] = ACTIONS(599), + [sym_super] = ACTIONS(599), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [ts_builtin_sym_end] = ACTIONS(601), + [sym_identifier] = ACTIONS(603), + [sym_decimal_integer_literal] = ACTIONS(603), + [sym_hex_integer_literal] = ACTIONS(603), + [sym_octal_integer_literal] = ACTIONS(601), + [sym_binary_integer_literal] = ACTIONS(601), + [sym_decimal_floating_point_literal] = ACTIONS(601), + [sym_hex_floating_point_literal] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_character_literal] = ACTIONS(601), + [sym_string_literal] = ACTIONS(603), + [sym_text_block] = ACTIONS(601), + [sym_null_literal] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_new] = ACTIONS(603), + [anon_sym_class] = ACTIONS(603), + [anon_sym_switch] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_case] = ACTIONS(603), + [anon_sym_default] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_assert] = ACTIONS(603), + [anon_sym_do] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_break] = ACTIONS(603), + [anon_sym_continue] = ACTIONS(603), + [anon_sym_return] = ACTIONS(603), + [anon_sym_yield] = ACTIONS(603), + [anon_sym_synchronized] = ACTIONS(603), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_try] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_else] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_open] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_static] = ACTIONS(603), + [anon_sym_package] = ACTIONS(603), + [anon_sym_import] = ACTIONS(603), + [anon_sym_enum] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_abstract] = ACTIONS(603), + [anon_sym_final] = ACTIONS(603), + [anon_sym_strictfp] = ACTIONS(603), + [anon_sym_native] = ACTIONS(603), + [anon_sym_transient] = ACTIONS(603), + [anon_sym_volatile] = ACTIONS(603), + [anon_sym_sealed] = ACTIONS(603), + [anon_sym_non_DASHsealed] = ACTIONS(601), + [anon_sym_record] = ACTIONS(603), + [anon_sym_ATinterface] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(603), + [anon_sym_byte] = ACTIONS(603), + [anon_sym_short] = ACTIONS(603), + [anon_sym_int] = ACTIONS(603), + [anon_sym_long] = ACTIONS(603), + [anon_sym_char] = ACTIONS(603), + [anon_sym_float] = ACTIONS(603), + [anon_sym_double] = ACTIONS(603), + [sym_boolean_type] = ACTIONS(603), + [sym_void_type] = ACTIONS(603), + [sym_this] = ACTIONS(603), + [sym_super] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [ts_builtin_sym_end] = ACTIONS(605), + [sym_identifier] = ACTIONS(607), + [sym_decimal_integer_literal] = ACTIONS(607), + [sym_hex_integer_literal] = ACTIONS(607), + [sym_octal_integer_literal] = ACTIONS(605), + [sym_binary_integer_literal] = ACTIONS(605), + [sym_decimal_floating_point_literal] = ACTIONS(605), + [sym_hex_floating_point_literal] = ACTIONS(607), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_character_literal] = ACTIONS(605), + [sym_string_literal] = ACTIONS(607), + [sym_text_block] = ACTIONS(605), + [sym_null_literal] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_new] = ACTIONS(607), + [anon_sym_class] = ACTIONS(607), + [anon_sym_switch] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_case] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_assert] = ACTIONS(607), + [anon_sym_do] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(607), + [anon_sym_synchronized] = ACTIONS(607), + [anon_sym_throw] = ACTIONS(607), + [anon_sym_try] = ACTIONS(607), + [anon_sym_catch] = ACTIONS(607), + [anon_sym_finally] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_else] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_open] = ACTIONS(607), + [anon_sym_module] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_package] = ACTIONS(607), + [anon_sym_import] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_public] = ACTIONS(607), + [anon_sym_protected] = ACTIONS(607), + [anon_sym_private] = ACTIONS(607), + [anon_sym_abstract] = ACTIONS(607), + [anon_sym_final] = ACTIONS(607), + [anon_sym_strictfp] = ACTIONS(607), + [anon_sym_native] = ACTIONS(607), + [anon_sym_transient] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(607), + [anon_sym_sealed] = ACTIONS(607), + [anon_sym_non_DASHsealed] = ACTIONS(605), + [anon_sym_ATinterface] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(607), + [anon_sym_byte] = ACTIONS(607), + [anon_sym_short] = ACTIONS(607), + [anon_sym_int] = ACTIONS(607), + [anon_sym_long] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_float] = ACTIONS(607), + [anon_sym_double] = ACTIONS(607), + [sym_boolean_type] = ACTIONS(607), + [sym_void_type] = ACTIONS(607), + [sym_this] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [165] = { + [ts_builtin_sym_end] = ACTIONS(609), + [sym_identifier] = ACTIONS(611), + [sym_decimal_integer_literal] = ACTIONS(611), + [sym_hex_integer_literal] = ACTIONS(611), + [sym_octal_integer_literal] = ACTIONS(609), + [sym_binary_integer_literal] = ACTIONS(609), + [sym_decimal_floating_point_literal] = ACTIONS(609), + [sym_hex_floating_point_literal] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_character_literal] = ACTIONS(609), + [sym_string_literal] = ACTIONS(611), + [sym_text_block] = ACTIONS(609), + [sym_null_literal] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(609), + [anon_sym_new] = ACTIONS(611), + [anon_sym_class] = ACTIONS(611), + [anon_sym_switch] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_case] = ACTIONS(611), + [anon_sym_default] = ACTIONS(611), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_assert] = ACTIONS(611), + [anon_sym_do] = ACTIONS(611), + [anon_sym_while] = ACTIONS(611), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_return] = ACTIONS(611), + [anon_sym_yield] = ACTIONS(611), + [anon_sym_synchronized] = ACTIONS(611), + [anon_sym_throw] = ACTIONS(611), + [anon_sym_try] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_else] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(611), + [anon_sym_open] = ACTIONS(611), + [anon_sym_module] = ACTIONS(611), + [anon_sym_static] = ACTIONS(611), + [anon_sym_package] = ACTIONS(611), + [anon_sym_import] = ACTIONS(611), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_public] = ACTIONS(611), + [anon_sym_protected] = ACTIONS(611), + [anon_sym_private] = ACTIONS(611), + [anon_sym_abstract] = ACTIONS(611), + [anon_sym_final] = ACTIONS(611), + [anon_sym_strictfp] = ACTIONS(611), + [anon_sym_native] = ACTIONS(611), + [anon_sym_transient] = ACTIONS(611), + [anon_sym_volatile] = ACTIONS(611), + [anon_sym_sealed] = ACTIONS(611), + [anon_sym_non_DASHsealed] = ACTIONS(609), + [anon_sym_record] = ACTIONS(611), + [anon_sym_ATinterface] = ACTIONS(609), + [anon_sym_interface] = ACTIONS(611), + [anon_sym_byte] = ACTIONS(611), + [anon_sym_short] = ACTIONS(611), + [anon_sym_int] = ACTIONS(611), + [anon_sym_long] = ACTIONS(611), + [anon_sym_char] = ACTIONS(611), + [anon_sym_float] = ACTIONS(611), + [anon_sym_double] = ACTIONS(611), + [sym_boolean_type] = ACTIONS(611), + [sym_void_type] = ACTIONS(611), + [sym_this] = ACTIONS(611), + [sym_super] = ACTIONS(611), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [166] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym__element_value] = STATE(1152), + [sym_element_value_array_initializer] = STATE(1152), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -20548,11 +25866,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(547), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -20567,3077 +25884,4053 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [sym_decimal_integer_literal] = ACTIONS(551), - [sym_hex_integer_literal] = ACTIONS(551), - [sym_octal_integer_literal] = ACTIONS(549), - [sym_binary_integer_literal] = ACTIONS(549), - [sym_decimal_floating_point_literal] = ACTIONS(549), - [sym_hex_floating_point_literal] = ACTIONS(551), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_character_literal] = ACTIONS(549), - [sym_string_literal] = ACTIONS(551), - [sym_text_block] = ACTIONS(549), - [sym_null_literal] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_new] = ACTIONS(551), - [anon_sym_class] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_case] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_assert] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_synchronized] = ACTIONS(551), - [anon_sym_throw] = ACTIONS(551), - [anon_sym_try] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_open] = ACTIONS(551), - [anon_sym_module] = ACTIONS(551), - [anon_sym_static] = ACTIONS(551), - [anon_sym_package] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_public] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_abstract] = ACTIONS(551), - [anon_sym_final] = ACTIONS(551), - [anon_sym_strictfp] = ACTIONS(551), - [anon_sym_native] = ACTIONS(551), - [anon_sym_transient] = ACTIONS(551), - [anon_sym_volatile] = ACTIONS(551), - [anon_sym_sealed] = ACTIONS(551), - [anon_sym_non_DASHsealed] = ACTIONS(549), - [anon_sym_record] = ACTIONS(551), - [anon_sym_ATinterface] = ACTIONS(549), - [anon_sym_interface] = ACTIONS(551), - [anon_sym_byte] = ACTIONS(551), - [anon_sym_short] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_long] = ACTIONS(551), - [anon_sym_char] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_double] = ACTIONS(551), - [sym_boolean_type] = ACTIONS(551), - [sym_void_type] = ACTIONS(551), - [sym_this] = ACTIONS(551), - [sym_super] = ACTIONS(551), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(553), - [sym_identifier] = ACTIONS(555), - [sym_decimal_integer_literal] = ACTIONS(555), - [sym_hex_integer_literal] = ACTIONS(555), - [sym_octal_integer_literal] = ACTIONS(553), - [sym_binary_integer_literal] = ACTIONS(553), - [sym_decimal_floating_point_literal] = ACTIONS(553), - [sym_hex_floating_point_literal] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_character_literal] = ACTIONS(553), - [sym_string_literal] = ACTIONS(555), - [sym_text_block] = ACTIONS(553), - [sym_null_literal] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_new] = ACTIONS(555), - [anon_sym_class] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_case] = ACTIONS(555), - [anon_sym_default] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(553), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_do] = ACTIONS(555), - [anon_sym_while] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_synchronized] = ACTIONS(555), - [anon_sym_throw] = ACTIONS(555), - [anon_sym_try] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_open] = ACTIONS(555), - [anon_sym_module] = ACTIONS(555), - [anon_sym_static] = ACTIONS(555), - [anon_sym_package] = ACTIONS(555), - [anon_sym_import] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_public] = ACTIONS(555), - [anon_sym_protected] = ACTIONS(555), - [anon_sym_private] = ACTIONS(555), - [anon_sym_abstract] = ACTIONS(555), - [anon_sym_final] = ACTIONS(555), - [anon_sym_strictfp] = ACTIONS(555), - [anon_sym_native] = ACTIONS(555), - [anon_sym_transient] = ACTIONS(555), - [anon_sym_volatile] = ACTIONS(555), - [anon_sym_sealed] = ACTIONS(555), - [anon_sym_non_DASHsealed] = ACTIONS(553), - [anon_sym_record] = ACTIONS(555), - [anon_sym_ATinterface] = ACTIONS(553), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_byte] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [anon_sym_int] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_char] = ACTIONS(555), - [anon_sym_float] = ACTIONS(555), - [anon_sym_double] = ACTIONS(555), - [sym_boolean_type] = ACTIONS(555), - [sym_void_type] = ACTIONS(555), - [sym_this] = ACTIONS(555), - [sym_super] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(557), - [sym_identifier] = ACTIONS(559), - [sym_decimal_integer_literal] = ACTIONS(559), - [sym_hex_integer_literal] = ACTIONS(559), - [sym_octal_integer_literal] = ACTIONS(557), - [sym_binary_integer_literal] = ACTIONS(557), - [sym_decimal_floating_point_literal] = ACTIONS(557), - [sym_hex_floating_point_literal] = ACTIONS(559), - [sym_true] = ACTIONS(559), - [sym_false] = ACTIONS(559), - [sym_character_literal] = ACTIONS(557), - [sym_string_literal] = ACTIONS(559), - [sym_text_block] = ACTIONS(557), - [sym_null_literal] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_new] = ACTIONS(559), - [anon_sym_class] = ACTIONS(559), - [anon_sym_switch] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_assert] = ACTIONS(559), - [anon_sym_do] = ACTIONS(559), - [anon_sym_while] = ACTIONS(559), - [anon_sym_break] = ACTIONS(559), - [anon_sym_continue] = ACTIONS(559), - [anon_sym_return] = ACTIONS(559), - [anon_sym_yield] = ACTIONS(559), - [anon_sym_synchronized] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(559), - [anon_sym_try] = ACTIONS(559), - [anon_sym_if] = ACTIONS(559), - [anon_sym_else] = ACTIONS(559), - [anon_sym_for] = ACTIONS(559), - [anon_sym_AT] = ACTIONS(559), - [anon_sym_open] = ACTIONS(559), - [anon_sym_module] = ACTIONS(559), - [anon_sym_static] = ACTIONS(559), - [anon_sym_package] = ACTIONS(559), - [anon_sym_import] = ACTIONS(559), - [anon_sym_enum] = ACTIONS(559), - [anon_sym_public] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_abstract] = ACTIONS(559), - [anon_sym_final] = ACTIONS(559), - [anon_sym_strictfp] = ACTIONS(559), - [anon_sym_native] = ACTIONS(559), - [anon_sym_transient] = ACTIONS(559), - [anon_sym_volatile] = ACTIONS(559), - [anon_sym_sealed] = ACTIONS(559), - [anon_sym_non_DASHsealed] = ACTIONS(557), - [anon_sym_record] = ACTIONS(559), - [anon_sym_ATinterface] = ACTIONS(557), - [anon_sym_interface] = ACTIONS(559), - [anon_sym_byte] = ACTIONS(559), - [anon_sym_short] = ACTIONS(559), - [anon_sym_int] = ACTIONS(559), - [anon_sym_long] = ACTIONS(559), - [anon_sym_char] = ACTIONS(559), - [anon_sym_float] = ACTIONS(559), - [anon_sym_double] = ACTIONS(559), - [sym_boolean_type] = ACTIONS(559), - [sym_void_type] = ACTIONS(559), - [sym_this] = ACTIONS(559), - [sym_super] = ACTIONS(559), + [167] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym__element_value] = STATE(1240), + [sym_element_value_array_initializer] = STATE(1240), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [sym_decimal_integer_literal] = ACTIONS(563), - [sym_hex_integer_literal] = ACTIONS(563), - [sym_octal_integer_literal] = ACTIONS(561), - [sym_binary_integer_literal] = ACTIONS(561), - [sym_decimal_floating_point_literal] = ACTIONS(561), - [sym_hex_floating_point_literal] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_character_literal] = ACTIONS(561), - [sym_string_literal] = ACTIONS(563), - [sym_text_block] = ACTIONS(561), - [sym_null_literal] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_class] = ACTIONS(563), - [anon_sym_switch] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_case] = ACTIONS(563), - [anon_sym_default] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_assert] = ACTIONS(563), - [anon_sym_do] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_synchronized] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(563), - [anon_sym_try] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym_open] = ACTIONS(563), - [anon_sym_module] = ACTIONS(563), - [anon_sym_static] = ACTIONS(563), - [anon_sym_package] = ACTIONS(563), - [anon_sym_import] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(563), - [anon_sym_public] = ACTIONS(563), - [anon_sym_protected] = ACTIONS(563), - [anon_sym_private] = ACTIONS(563), - [anon_sym_abstract] = ACTIONS(563), - [anon_sym_final] = ACTIONS(563), - [anon_sym_strictfp] = ACTIONS(563), - [anon_sym_native] = ACTIONS(563), - [anon_sym_transient] = ACTIONS(563), - [anon_sym_volatile] = ACTIONS(563), - [anon_sym_sealed] = ACTIONS(563), - [anon_sym_non_DASHsealed] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_ATinterface] = ACTIONS(561), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_byte] = ACTIONS(563), - [anon_sym_short] = ACTIONS(563), - [anon_sym_int] = ACTIONS(563), - [anon_sym_long] = ACTIONS(563), - [anon_sym_char] = ACTIONS(563), - [anon_sym_float] = ACTIONS(563), - [anon_sym_double] = ACTIONS(563), - [sym_boolean_type] = ACTIONS(563), - [sym_void_type] = ACTIONS(563), - [sym_this] = ACTIONS(563), - [sym_super] = ACTIONS(563), + [168] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(588), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym__element_value] = STATE(1055), + [sym_element_value_array_initializer] = STATE(1055), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [sym_true] = ACTIONS(567), - [sym_false] = ACTIONS(567), - [sym_character_literal] = ACTIONS(565), - [sym_string_literal] = ACTIONS(567), - [sym_text_block] = ACTIONS(565), - [sym_null_literal] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [anon_sym_new] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_case] = ACTIONS(567), - [anon_sym_default] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_synchronized] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_else] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym_open] = ACTIONS(567), - [anon_sym_module] = ACTIONS(567), - [anon_sym_static] = ACTIONS(567), - [anon_sym_package] = ACTIONS(567), - [anon_sym_import] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_public] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_strictfp] = ACTIONS(567), - [anon_sym_native] = ACTIONS(567), - [anon_sym_transient] = ACTIONS(567), - [anon_sym_volatile] = ACTIONS(567), - [anon_sym_sealed] = ACTIONS(567), - [anon_sym_non_DASHsealed] = ACTIONS(565), - [anon_sym_record] = ACTIONS(567), - [anon_sym_ATinterface] = ACTIONS(565), - [anon_sym_interface] = ACTIONS(567), - [anon_sym_byte] = ACTIONS(567), - [anon_sym_short] = ACTIONS(567), - [anon_sym_int] = ACTIONS(567), - [anon_sym_long] = ACTIONS(567), - [anon_sym_char] = ACTIONS(567), - [anon_sym_float] = ACTIONS(567), - [anon_sym_double] = ACTIONS(567), - [sym_boolean_type] = ACTIONS(567), - [sym_void_type] = ACTIONS(567), - [sym_this] = ACTIONS(567), - [sym_super] = ACTIONS(567), + [169] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(686), + [sym_marker_annotation] = STATE(686), + [sym_annotation] = STATE(686), + [sym__element_value] = STATE(1055), + [sym_element_value_array_initializer] = STATE(1055), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_character_literal] = ACTIONS(569), - [sym_string_literal] = ACTIONS(571), - [sym_text_block] = ACTIONS(569), - [sym_null_literal] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(569), - [anon_sym_DASH_DASH] = ACTIONS(569), - [anon_sym_new] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(571), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_synchronized] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_else] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_open] = ACTIONS(571), - [anon_sym_module] = ACTIONS(571), - [anon_sym_static] = ACTIONS(571), - [anon_sym_package] = ACTIONS(571), - [anon_sym_import] = ACTIONS(571), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_public] = ACTIONS(571), - [anon_sym_protected] = ACTIONS(571), - [anon_sym_private] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_strictfp] = ACTIONS(571), - [anon_sym_native] = ACTIONS(571), - [anon_sym_transient] = ACTIONS(571), - [anon_sym_volatile] = ACTIONS(571), - [anon_sym_sealed] = ACTIONS(571), - [anon_sym_non_DASHsealed] = ACTIONS(569), - [anon_sym_record] = ACTIONS(571), - [anon_sym_ATinterface] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(571), - [anon_sym_byte] = ACTIONS(571), - [anon_sym_short] = ACTIONS(571), - [anon_sym_int] = ACTIONS(571), - [anon_sym_long] = ACTIONS(571), - [anon_sym_char] = ACTIONS(571), - [anon_sym_float] = ACTIONS(571), - [anon_sym_double] = ACTIONS(571), - [sym_boolean_type] = ACTIONS(571), - [sym_void_type] = ACTIONS(571), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(571), + [170] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(594), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym_array_initializer] = STATE(1157), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [sym_true] = ACTIONS(575), - [sym_false] = ACTIONS(575), - [sym_character_literal] = ACTIONS(573), - [sym_string_literal] = ACTIONS(575), - [sym_text_block] = ACTIONS(573), - [sym_null_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(573), - [anon_sym_new] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_case] = ACTIONS(575), - [anon_sym_default] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_synchronized] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_else] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(575), - [anon_sym_open] = ACTIONS(575), - [anon_sym_module] = ACTIONS(575), - [anon_sym_static] = ACTIONS(575), - [anon_sym_package] = ACTIONS(575), - [anon_sym_import] = ACTIONS(575), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_public] = ACTIONS(575), - [anon_sym_protected] = ACTIONS(575), - [anon_sym_private] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_strictfp] = ACTIONS(575), - [anon_sym_native] = ACTIONS(575), - [anon_sym_transient] = ACTIONS(575), - [anon_sym_volatile] = ACTIONS(575), - [anon_sym_sealed] = ACTIONS(575), - [anon_sym_non_DASHsealed] = ACTIONS(573), - [anon_sym_record] = ACTIONS(575), - [anon_sym_ATinterface] = ACTIONS(573), - [anon_sym_interface] = ACTIONS(575), - [anon_sym_byte] = ACTIONS(575), - [anon_sym_short] = ACTIONS(575), - [anon_sym_int] = ACTIONS(575), - [anon_sym_long] = ACTIONS(575), - [anon_sym_char] = ACTIONS(575), - [anon_sym_float] = ACTIONS(575), - [anon_sym_double] = ACTIONS(575), - [sym_boolean_type] = ACTIONS(575), - [sym_void_type] = ACTIONS(575), - [sym_this] = ACTIONS(575), - [sym_super] = ACTIONS(575), + [171] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(594), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym_array_initializer] = STATE(1157), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(577), - [sym_identifier] = ACTIONS(579), - [sym_decimal_integer_literal] = ACTIONS(579), - [sym_hex_integer_literal] = ACTIONS(579), - [sym_octal_integer_literal] = ACTIONS(577), - [sym_binary_integer_literal] = ACTIONS(577), - [sym_decimal_floating_point_literal] = ACTIONS(577), - [sym_hex_floating_point_literal] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_character_literal] = ACTIONS(577), - [sym_string_literal] = ACTIONS(579), - [sym_text_block] = ACTIONS(577), - [sym_null_literal] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_PLUS_PLUS] = ACTIONS(577), - [anon_sym_DASH_DASH] = ACTIONS(577), - [anon_sym_new] = ACTIONS(579), - [anon_sym_class] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(577), - [anon_sym_case] = ACTIONS(579), - [anon_sym_default] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(577), - [anon_sym_assert] = ACTIONS(579), - [anon_sym_do] = ACTIONS(579), - [anon_sym_while] = ACTIONS(579), - [anon_sym_break] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(579), - [anon_sym_return] = ACTIONS(579), - [anon_sym_yield] = ACTIONS(579), - [anon_sym_synchronized] = ACTIONS(579), - [anon_sym_throw] = ACTIONS(579), - [anon_sym_try] = ACTIONS(579), - [anon_sym_if] = ACTIONS(579), - [anon_sym_else] = ACTIONS(579), - [anon_sym_for] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_open] = ACTIONS(579), - [anon_sym_module] = ACTIONS(579), - [anon_sym_static] = ACTIONS(579), - [anon_sym_package] = ACTIONS(579), - [anon_sym_import] = ACTIONS(579), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_public] = ACTIONS(579), - [anon_sym_protected] = ACTIONS(579), - [anon_sym_private] = ACTIONS(579), - [anon_sym_abstract] = ACTIONS(579), - [anon_sym_final] = ACTIONS(579), - [anon_sym_strictfp] = ACTIONS(579), - [anon_sym_native] = ACTIONS(579), - [anon_sym_transient] = ACTIONS(579), - [anon_sym_volatile] = ACTIONS(579), - [anon_sym_sealed] = ACTIONS(579), - [anon_sym_non_DASHsealed] = ACTIONS(577), - [anon_sym_record] = ACTIONS(579), - [anon_sym_ATinterface] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(579), - [anon_sym_byte] = ACTIONS(579), - [anon_sym_short] = ACTIONS(579), - [anon_sym_int] = ACTIONS(579), - [anon_sym_long] = ACTIONS(579), - [anon_sym_char] = ACTIONS(579), - [anon_sym_float] = ACTIONS(579), - [anon_sym_double] = ACTIONS(579), - [sym_boolean_type] = ACTIONS(579), - [sym_void_type] = ACTIONS(579), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), + [172] = { + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [sym_decimal_integer_literal] = ACTIONS(619), + [sym_hex_integer_literal] = ACTIONS(619), + [sym_octal_integer_literal] = ACTIONS(617), + [sym_binary_integer_literal] = ACTIONS(617), + [sym_decimal_floating_point_literal] = ACTIONS(617), + [sym_hex_floating_point_literal] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_character_literal] = ACTIONS(617), + [sym_string_literal] = ACTIONS(619), + [sym_text_block] = ACTIONS(617), + [sym_null_literal] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_new] = ACTIONS(619), + [anon_sym_class] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_case] = ACTIONS(619), + [anon_sym_default] = ACTIONS(619), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_do] = ACTIONS(619), + [anon_sym_while] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_synchronized] = ACTIONS(619), + [anon_sym_throw] = ACTIONS(619), + [anon_sym_try] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_else] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_open] = ACTIONS(619), + [anon_sym_module] = ACTIONS(619), + [anon_sym_static] = ACTIONS(619), + [anon_sym_package] = ACTIONS(619), + [anon_sym_import] = ACTIONS(619), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_public] = ACTIONS(619), + [anon_sym_protected] = ACTIONS(619), + [anon_sym_private] = ACTIONS(619), + [anon_sym_abstract] = ACTIONS(619), + [anon_sym_final] = ACTIONS(619), + [anon_sym_strictfp] = ACTIONS(619), + [anon_sym_native] = ACTIONS(619), + [anon_sym_transient] = ACTIONS(619), + [anon_sym_volatile] = ACTIONS(619), + [anon_sym_sealed] = ACTIONS(619), + [anon_sym_non_DASHsealed] = ACTIONS(617), + [anon_sym_ATinterface] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(619), + [anon_sym_byte] = ACTIONS(619), + [anon_sym_short] = ACTIONS(619), + [anon_sym_int] = ACTIONS(619), + [anon_sym_long] = ACTIONS(619), + [anon_sym_char] = ACTIONS(619), + [anon_sym_float] = ACTIONS(619), + [anon_sym_double] = ACTIONS(619), + [sym_boolean_type] = ACTIONS(619), + [sym_void_type] = ACTIONS(619), + [sym_this] = ACTIONS(619), + [sym_super] = ACTIONS(619), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [sym_decimal_integer_literal] = ACTIONS(583), - [sym_hex_integer_literal] = ACTIONS(583), - [sym_octal_integer_literal] = ACTIONS(581), - [sym_binary_integer_literal] = ACTIONS(581), - [sym_decimal_floating_point_literal] = ACTIONS(581), - [sym_hex_floating_point_literal] = ACTIONS(583), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), - [sym_character_literal] = ACTIONS(581), - [sym_string_literal] = ACTIONS(583), - [sym_text_block] = ACTIONS(581), - [sym_null_literal] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_BANG] = ACTIONS(581), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_new] = ACTIONS(583), - [anon_sym_class] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(583), - [anon_sym_do] = ACTIONS(583), - [anon_sym_while] = ACTIONS(583), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_yield] = ACTIONS(583), - [anon_sym_synchronized] = ACTIONS(583), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_try] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_else] = ACTIONS(583), - [anon_sym_for] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(583), - [anon_sym_open] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_static] = ACTIONS(583), - [anon_sym_package] = ACTIONS(583), - [anon_sym_import] = ACTIONS(583), - [anon_sym_enum] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_abstract] = ACTIONS(583), - [anon_sym_final] = ACTIONS(583), - [anon_sym_strictfp] = ACTIONS(583), - [anon_sym_native] = ACTIONS(583), - [anon_sym_transient] = ACTIONS(583), - [anon_sym_volatile] = ACTIONS(583), - [anon_sym_sealed] = ACTIONS(583), - [anon_sym_non_DASHsealed] = ACTIONS(581), - [anon_sym_record] = ACTIONS(583), - [anon_sym_ATinterface] = ACTIONS(581), - [anon_sym_interface] = ACTIONS(583), - [anon_sym_byte] = ACTIONS(583), - [anon_sym_short] = ACTIONS(583), - [anon_sym_int] = ACTIONS(583), - [anon_sym_long] = ACTIONS(583), - [anon_sym_char] = ACTIONS(583), - [anon_sym_float] = ACTIONS(583), - [anon_sym_double] = ACTIONS(583), - [sym_boolean_type] = ACTIONS(583), - [sym_void_type] = ACTIONS(583), - [sym_this] = ACTIONS(583), - [sym_super] = ACTIONS(583), + [173] = { + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [sym_decimal_integer_literal] = ACTIONS(623), + [sym_hex_integer_literal] = ACTIONS(623), + [sym_octal_integer_literal] = ACTIONS(621), + [sym_binary_integer_literal] = ACTIONS(621), + [sym_decimal_floating_point_literal] = ACTIONS(621), + [sym_hex_floating_point_literal] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_character_literal] = ACTIONS(621), + [sym_string_literal] = ACTIONS(623), + [sym_text_block] = ACTIONS(621), + [sym_null_literal] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_new] = ACTIONS(623), + [anon_sym_class] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_case] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_assert] = ACTIONS(623), + [anon_sym_do] = ACTIONS(623), + [anon_sym_while] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_synchronized] = ACTIONS(623), + [anon_sym_throw] = ACTIONS(623), + [anon_sym_try] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_else] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_open] = ACTIONS(623), + [anon_sym_module] = ACTIONS(623), + [anon_sym_static] = ACTIONS(623), + [anon_sym_package] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_public] = ACTIONS(623), + [anon_sym_protected] = ACTIONS(623), + [anon_sym_private] = ACTIONS(623), + [anon_sym_abstract] = ACTIONS(623), + [anon_sym_final] = ACTIONS(623), + [anon_sym_strictfp] = ACTIONS(623), + [anon_sym_native] = ACTIONS(623), + [anon_sym_transient] = ACTIONS(623), + [anon_sym_volatile] = ACTIONS(623), + [anon_sym_sealed] = ACTIONS(623), + [anon_sym_non_DASHsealed] = ACTIONS(621), + [anon_sym_ATinterface] = ACTIONS(621), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_byte] = ACTIONS(623), + [anon_sym_short] = ACTIONS(623), + [anon_sym_int] = ACTIONS(623), + [anon_sym_long] = ACTIONS(623), + [anon_sym_char] = ACTIONS(623), + [anon_sym_float] = ACTIONS(623), + [anon_sym_double] = ACTIONS(623), + [sym_boolean_type] = ACTIONS(623), + [sym_void_type] = ACTIONS(623), + [sym_this] = ACTIONS(623), + [sym_super] = ACTIONS(623), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(587), - [sym_decimal_integer_literal] = ACTIONS(587), - [sym_hex_integer_literal] = ACTIONS(587), - [sym_octal_integer_literal] = ACTIONS(585), - [sym_binary_integer_literal] = ACTIONS(585), - [sym_decimal_floating_point_literal] = ACTIONS(585), - [sym_hex_floating_point_literal] = ACTIONS(587), - [sym_true] = ACTIONS(587), - [sym_false] = ACTIONS(587), - [sym_character_literal] = ACTIONS(585), - [sym_string_literal] = ACTIONS(587), - [sym_text_block] = ACTIONS(585), - [sym_null_literal] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_new] = ACTIONS(587), - [anon_sym_class] = ACTIONS(587), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_case] = ACTIONS(587), - [anon_sym_default] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_assert] = ACTIONS(587), - [anon_sym_do] = ACTIONS(587), - [anon_sym_while] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_return] = ACTIONS(587), - [anon_sym_yield] = ACTIONS(587), - [anon_sym_synchronized] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(587), - [anon_sym_try] = ACTIONS(587), - [anon_sym_if] = ACTIONS(587), - [anon_sym_else] = ACTIONS(587), - [anon_sym_for] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_open] = ACTIONS(587), - [anon_sym_module] = ACTIONS(587), - [anon_sym_static] = ACTIONS(587), - [anon_sym_package] = ACTIONS(587), - [anon_sym_import] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(587), - [anon_sym_public] = ACTIONS(587), - [anon_sym_protected] = ACTIONS(587), - [anon_sym_private] = ACTIONS(587), - [anon_sym_abstract] = ACTIONS(587), - [anon_sym_final] = ACTIONS(587), - [anon_sym_strictfp] = ACTIONS(587), - [anon_sym_native] = ACTIONS(587), - [anon_sym_transient] = ACTIONS(587), - [anon_sym_volatile] = ACTIONS(587), - [anon_sym_sealed] = ACTIONS(587), - [anon_sym_non_DASHsealed] = ACTIONS(585), - [anon_sym_record] = ACTIONS(587), - [anon_sym_ATinterface] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(587), - [anon_sym_byte] = ACTIONS(587), - [anon_sym_short] = ACTIONS(587), - [anon_sym_int] = ACTIONS(587), - [anon_sym_long] = ACTIONS(587), - [anon_sym_char] = ACTIONS(587), - [anon_sym_float] = ACTIONS(587), - [anon_sym_double] = ACTIONS(587), - [sym_boolean_type] = ACTIONS(587), - [sym_void_type] = ACTIONS(587), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(587), + [174] = { + [ts_builtin_sym_end] = ACTIONS(625), + [sym_identifier] = ACTIONS(627), + [sym_decimal_integer_literal] = ACTIONS(627), + [sym_hex_integer_literal] = ACTIONS(627), + [sym_octal_integer_literal] = ACTIONS(625), + [sym_binary_integer_literal] = ACTIONS(625), + [sym_decimal_floating_point_literal] = ACTIONS(625), + [sym_hex_floating_point_literal] = ACTIONS(627), + [sym_true] = ACTIONS(627), + [sym_false] = ACTIONS(627), + [sym_character_literal] = ACTIONS(625), + [sym_string_literal] = ACTIONS(627), + [sym_text_block] = ACTIONS(625), + [sym_null_literal] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_TILDE] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_new] = ACTIONS(627), + [anon_sym_class] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_case] = ACTIONS(627), + [anon_sym_default] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_do] = ACTIONS(627), + [anon_sym_while] = ACTIONS(627), + [anon_sym_break] = ACTIONS(627), + [anon_sym_continue] = ACTIONS(627), + [anon_sym_return] = ACTIONS(627), + [anon_sym_yield] = ACTIONS(627), + [anon_sym_synchronized] = ACTIONS(627), + [anon_sym_throw] = ACTIONS(627), + [anon_sym_try] = ACTIONS(627), + [anon_sym_if] = ACTIONS(627), + [anon_sym_else] = ACTIONS(627), + [anon_sym_for] = ACTIONS(627), + [anon_sym_AT] = ACTIONS(627), + [anon_sym_open] = ACTIONS(627), + [anon_sym_module] = ACTIONS(627), + [anon_sym_static] = ACTIONS(627), + [anon_sym_package] = ACTIONS(627), + [anon_sym_import] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(627), + [anon_sym_public] = ACTIONS(627), + [anon_sym_protected] = ACTIONS(627), + [anon_sym_private] = ACTIONS(627), + [anon_sym_abstract] = ACTIONS(627), + [anon_sym_final] = ACTIONS(627), + [anon_sym_strictfp] = ACTIONS(627), + [anon_sym_native] = ACTIONS(627), + [anon_sym_transient] = ACTIONS(627), + [anon_sym_volatile] = ACTIONS(627), + [anon_sym_sealed] = ACTIONS(627), + [anon_sym_non_DASHsealed] = ACTIONS(625), + [anon_sym_ATinterface] = ACTIONS(625), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_byte] = ACTIONS(627), + [anon_sym_short] = ACTIONS(627), + [anon_sym_int] = ACTIONS(627), + [anon_sym_long] = ACTIONS(627), + [anon_sym_char] = ACTIONS(627), + [anon_sym_float] = ACTIONS(627), + [anon_sym_double] = ACTIONS(627), + [sym_boolean_type] = ACTIONS(627), + [sym_void_type] = ACTIONS(627), + [sym_this] = ACTIONS(627), + [sym_super] = ACTIONS(627), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [ts_builtin_sym_end] = ACTIONS(589), - [sym_identifier] = ACTIONS(591), - [sym_decimal_integer_literal] = ACTIONS(591), - [sym_hex_integer_literal] = ACTIONS(591), - [sym_octal_integer_literal] = ACTIONS(589), - [sym_binary_integer_literal] = ACTIONS(589), - [sym_decimal_floating_point_literal] = ACTIONS(589), - [sym_hex_floating_point_literal] = ACTIONS(591), - [sym_true] = ACTIONS(591), - [sym_false] = ACTIONS(591), - [sym_character_literal] = ACTIONS(589), - [sym_string_literal] = ACTIONS(591), - [sym_text_block] = ACTIONS(589), - [sym_null_literal] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_new] = ACTIONS(591), - [anon_sym_class] = ACTIONS(591), - [anon_sym_switch] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_case] = ACTIONS(591), - [anon_sym_default] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_assert] = ACTIONS(591), - [anon_sym_do] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(591), - [anon_sym_synchronized] = ACTIONS(591), - [anon_sym_throw] = ACTIONS(591), - [anon_sym_try] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_open] = ACTIONS(591), - [anon_sym_module] = ACTIONS(591), - [anon_sym_static] = ACTIONS(591), - [anon_sym_package] = ACTIONS(591), - [anon_sym_import] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_public] = ACTIONS(591), - [anon_sym_protected] = ACTIONS(591), - [anon_sym_private] = ACTIONS(591), - [anon_sym_abstract] = ACTIONS(591), - [anon_sym_final] = ACTIONS(591), - [anon_sym_strictfp] = ACTIONS(591), - [anon_sym_native] = ACTIONS(591), - [anon_sym_transient] = ACTIONS(591), - [anon_sym_volatile] = ACTIONS(591), - [anon_sym_sealed] = ACTIONS(591), - [anon_sym_non_DASHsealed] = ACTIONS(589), - [anon_sym_record] = ACTIONS(591), - [anon_sym_ATinterface] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(591), - [anon_sym_byte] = ACTIONS(591), - [anon_sym_short] = ACTIONS(591), - [anon_sym_int] = ACTIONS(591), - [anon_sym_long] = ACTIONS(591), - [anon_sym_char] = ACTIONS(591), - [anon_sym_float] = ACTIONS(591), - [anon_sym_double] = ACTIONS(591), - [sym_boolean_type] = ACTIONS(591), - [sym_void_type] = ACTIONS(591), - [sym_this] = ACTIONS(591), - [sym_super] = ACTIONS(591), + [175] = { + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(631), + [sym_decimal_integer_literal] = ACTIONS(631), + [sym_hex_integer_literal] = ACTIONS(631), + [sym_octal_integer_literal] = ACTIONS(629), + [sym_binary_integer_literal] = ACTIONS(629), + [sym_decimal_floating_point_literal] = ACTIONS(629), + [sym_hex_floating_point_literal] = ACTIONS(631), + [sym_true] = ACTIONS(631), + [sym_false] = ACTIONS(631), + [sym_character_literal] = ACTIONS(629), + [sym_string_literal] = ACTIONS(631), + [sym_text_block] = ACTIONS(629), + [sym_null_literal] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(629), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_class] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_assert] = ACTIONS(631), + [anon_sym_do] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_synchronized] = ACTIONS(631), + [anon_sym_throw] = ACTIONS(631), + [anon_sym_try] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_else] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_open] = ACTIONS(631), + [anon_sym_module] = ACTIONS(631), + [anon_sym_static] = ACTIONS(631), + [anon_sym_package] = ACTIONS(631), + [anon_sym_import] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_public] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(631), + [anon_sym_final] = ACTIONS(631), + [anon_sym_strictfp] = ACTIONS(631), + [anon_sym_native] = ACTIONS(631), + [anon_sym_transient] = ACTIONS(631), + [anon_sym_volatile] = ACTIONS(631), + [anon_sym_sealed] = ACTIONS(631), + [anon_sym_non_DASHsealed] = ACTIONS(629), + [anon_sym_ATinterface] = ACTIONS(629), + [anon_sym_interface] = ACTIONS(631), + [anon_sym_byte] = ACTIONS(631), + [anon_sym_short] = ACTIONS(631), + [anon_sym_int] = ACTIONS(631), + [anon_sym_long] = ACTIONS(631), + [anon_sym_char] = ACTIONS(631), + [anon_sym_float] = ACTIONS(631), + [anon_sym_double] = ACTIONS(631), + [sym_boolean_type] = ACTIONS(631), + [sym_void_type] = ACTIONS(631), + [sym_this] = ACTIONS(631), + [sym_super] = ACTIONS(631), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [ts_builtin_sym_end] = ACTIONS(593), - [sym_identifier] = ACTIONS(595), - [sym_decimal_integer_literal] = ACTIONS(595), - [sym_hex_integer_literal] = ACTIONS(595), - [sym_octal_integer_literal] = ACTIONS(593), - [sym_binary_integer_literal] = ACTIONS(593), - [sym_decimal_floating_point_literal] = ACTIONS(593), - [sym_hex_floating_point_literal] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_character_literal] = ACTIONS(593), - [sym_string_literal] = ACTIONS(595), - [sym_text_block] = ACTIONS(593), - [sym_null_literal] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_new] = ACTIONS(595), - [anon_sym_class] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_case] = ACTIONS(595), - [anon_sym_default] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_assert] = ACTIONS(595), - [anon_sym_do] = ACTIONS(595), - [anon_sym_while] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_yield] = ACTIONS(595), - [anon_sym_synchronized] = ACTIONS(595), - [anon_sym_throw] = ACTIONS(595), - [anon_sym_try] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_open] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_static] = ACTIONS(595), - [anon_sym_package] = ACTIONS(595), - [anon_sym_import] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(595), - [anon_sym_final] = ACTIONS(595), - [anon_sym_strictfp] = ACTIONS(595), - [anon_sym_native] = ACTIONS(595), - [anon_sym_transient] = ACTIONS(595), - [anon_sym_volatile] = ACTIONS(595), - [anon_sym_sealed] = ACTIONS(595), - [anon_sym_non_DASHsealed] = ACTIONS(593), - [anon_sym_record] = ACTIONS(595), - [anon_sym_ATinterface] = ACTIONS(593), - [anon_sym_interface] = ACTIONS(595), - [anon_sym_byte] = ACTIONS(595), - [anon_sym_short] = ACTIONS(595), - [anon_sym_int] = ACTIONS(595), - [anon_sym_long] = ACTIONS(595), - [anon_sym_char] = ACTIONS(595), - [anon_sym_float] = ACTIONS(595), - [anon_sym_double] = ACTIONS(595), - [sym_boolean_type] = ACTIONS(595), - [sym_void_type] = ACTIONS(595), - [sym_this] = ACTIONS(595), - [sym_super] = ACTIONS(595), + [176] = { + [ts_builtin_sym_end] = ACTIONS(633), + [sym_identifier] = ACTIONS(635), + [sym_decimal_integer_literal] = ACTIONS(635), + [sym_hex_integer_literal] = ACTIONS(635), + [sym_octal_integer_literal] = ACTIONS(633), + [sym_binary_integer_literal] = ACTIONS(633), + [sym_decimal_floating_point_literal] = ACTIONS(633), + [sym_hex_floating_point_literal] = ACTIONS(635), + [sym_true] = ACTIONS(635), + [sym_false] = ACTIONS(635), + [sym_character_literal] = ACTIONS(633), + [sym_string_literal] = ACTIONS(635), + [sym_text_block] = ACTIONS(633), + [sym_null_literal] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_PLUS_PLUS] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(633), + [anon_sym_new] = ACTIONS(635), + [anon_sym_class] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_case] = ACTIONS(635), + [anon_sym_default] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(633), + [anon_sym_assert] = ACTIONS(635), + [anon_sym_do] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_break] = ACTIONS(635), + [anon_sym_continue] = ACTIONS(635), + [anon_sym_return] = ACTIONS(635), + [anon_sym_yield] = ACTIONS(635), + [anon_sym_synchronized] = ACTIONS(635), + [anon_sym_throw] = ACTIONS(635), + [anon_sym_try] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_else] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym_open] = ACTIONS(635), + [anon_sym_module] = ACTIONS(635), + [anon_sym_static] = ACTIONS(635), + [anon_sym_package] = ACTIONS(635), + [anon_sym_import] = ACTIONS(635), + [anon_sym_enum] = ACTIONS(635), + [anon_sym_public] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_abstract] = ACTIONS(635), + [anon_sym_final] = ACTIONS(635), + [anon_sym_strictfp] = ACTIONS(635), + [anon_sym_native] = ACTIONS(635), + [anon_sym_transient] = ACTIONS(635), + [anon_sym_volatile] = ACTIONS(635), + [anon_sym_sealed] = ACTIONS(635), + [anon_sym_non_DASHsealed] = ACTIONS(633), + [anon_sym_ATinterface] = ACTIONS(633), + [anon_sym_interface] = ACTIONS(635), + [anon_sym_byte] = ACTIONS(635), + [anon_sym_short] = ACTIONS(635), + [anon_sym_int] = ACTIONS(635), + [anon_sym_long] = ACTIONS(635), + [anon_sym_char] = ACTIONS(635), + [anon_sym_float] = ACTIONS(635), + [anon_sym_double] = ACTIONS(635), + [sym_boolean_type] = ACTIONS(635), + [sym_void_type] = ACTIONS(635), + [sym_this] = ACTIONS(635), + [sym_super] = ACTIONS(635), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(527), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym__element_value] = STATE(1066), - [sym_element_value_array_initializer] = STATE(1066), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [177] = { + [ts_builtin_sym_end] = ACTIONS(637), + [sym_identifier] = ACTIONS(639), + [sym_decimal_integer_literal] = ACTIONS(639), + [sym_hex_integer_literal] = ACTIONS(639), + [sym_octal_integer_literal] = ACTIONS(637), + [sym_binary_integer_literal] = ACTIONS(637), + [sym_decimal_floating_point_literal] = ACTIONS(637), + [sym_hex_floating_point_literal] = ACTIONS(639), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_character_literal] = ACTIONS(637), + [sym_string_literal] = ACTIONS(639), + [sym_text_block] = ACTIONS(637), + [sym_null_literal] = ACTIONS(639), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_new] = ACTIONS(639), + [anon_sym_class] = ACTIONS(639), + [anon_sym_switch] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_assert] = ACTIONS(639), + [anon_sym_do] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_break] = ACTIONS(639), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_return] = ACTIONS(639), + [anon_sym_yield] = ACTIONS(639), + [anon_sym_synchronized] = ACTIONS(639), + [anon_sym_throw] = ACTIONS(639), + [anon_sym_try] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_else] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(639), + [anon_sym_open] = ACTIONS(639), + [anon_sym_module] = ACTIONS(639), + [anon_sym_static] = ACTIONS(639), + [anon_sym_package] = ACTIONS(639), + [anon_sym_import] = ACTIONS(639), + [anon_sym_enum] = ACTIONS(639), + [anon_sym_public] = ACTIONS(639), + [anon_sym_protected] = ACTIONS(639), + [anon_sym_private] = ACTIONS(639), + [anon_sym_abstract] = ACTIONS(639), + [anon_sym_final] = ACTIONS(639), + [anon_sym_strictfp] = ACTIONS(639), + [anon_sym_native] = ACTIONS(639), + [anon_sym_transient] = ACTIONS(639), + [anon_sym_volatile] = ACTIONS(639), + [anon_sym_sealed] = ACTIONS(639), + [anon_sym_non_DASHsealed] = ACTIONS(637), + [anon_sym_ATinterface] = ACTIONS(637), + [anon_sym_interface] = ACTIONS(639), + [anon_sym_byte] = ACTIONS(639), + [anon_sym_short] = ACTIONS(639), + [anon_sym_int] = ACTIONS(639), + [anon_sym_long] = ACTIONS(639), + [anon_sym_char] = ACTIONS(639), + [anon_sym_float] = ACTIONS(639), + [anon_sym_double] = ACTIONS(639), + [sym_boolean_type] = ACTIONS(639), + [sym_void_type] = ACTIONS(639), + [sym_this] = ACTIONS(639), + [sym_super] = ACTIONS(639), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym_array_initializer] = STATE(1052), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [178] = { + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [sym_decimal_integer_literal] = ACTIONS(643), + [sym_hex_integer_literal] = ACTIONS(643), + [sym_octal_integer_literal] = ACTIONS(641), + [sym_binary_integer_literal] = ACTIONS(641), + [sym_decimal_floating_point_literal] = ACTIONS(641), + [sym_hex_floating_point_literal] = ACTIONS(643), + [sym_true] = ACTIONS(643), + [sym_false] = ACTIONS(643), + [sym_character_literal] = ACTIONS(641), + [sym_string_literal] = ACTIONS(643), + [sym_text_block] = ACTIONS(641), + [sym_null_literal] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_new] = ACTIONS(643), + [anon_sym_class] = ACTIONS(643), + [anon_sym_switch] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_case] = ACTIONS(643), + [anon_sym_default] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_assert] = ACTIONS(643), + [anon_sym_do] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_return] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_synchronized] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(643), + [anon_sym_try] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_else] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(643), + [anon_sym_open] = ACTIONS(643), + [anon_sym_module] = ACTIONS(643), + [anon_sym_static] = ACTIONS(643), + [anon_sym_package] = ACTIONS(643), + [anon_sym_import] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_public] = ACTIONS(643), + [anon_sym_protected] = ACTIONS(643), + [anon_sym_private] = ACTIONS(643), + [anon_sym_abstract] = ACTIONS(643), + [anon_sym_final] = ACTIONS(643), + [anon_sym_strictfp] = ACTIONS(643), + [anon_sym_native] = ACTIONS(643), + [anon_sym_transient] = ACTIONS(643), + [anon_sym_volatile] = ACTIONS(643), + [anon_sym_sealed] = ACTIONS(643), + [anon_sym_non_DASHsealed] = ACTIONS(641), + [anon_sym_ATinterface] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_byte] = ACTIONS(643), + [anon_sym_short] = ACTIONS(643), + [anon_sym_int] = ACTIONS(643), + [anon_sym_long] = ACTIONS(643), + [anon_sym_char] = ACTIONS(643), + [anon_sym_float] = ACTIONS(643), + [anon_sym_double] = ACTIONS(643), + [sym_boolean_type] = ACTIONS(643), + [sym_void_type] = ACTIONS(643), + [sym_this] = ACTIONS(643), + [sym_super] = ACTIONS(643), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym__element_value] = STATE(1011), - [sym_element_value_array_initializer] = STATE(1011), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [179] = { + [ts_builtin_sym_end] = ACTIONS(645), + [sym_identifier] = ACTIONS(647), + [sym_decimal_integer_literal] = ACTIONS(647), + [sym_hex_integer_literal] = ACTIONS(647), + [sym_octal_integer_literal] = ACTIONS(645), + [sym_binary_integer_literal] = ACTIONS(645), + [sym_decimal_floating_point_literal] = ACTIONS(645), + [sym_hex_floating_point_literal] = ACTIONS(647), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), + [sym_character_literal] = ACTIONS(645), + [sym_string_literal] = ACTIONS(647), + [sym_text_block] = ACTIONS(645), + [sym_null_literal] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_TILDE] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_new] = ACTIONS(647), + [anon_sym_class] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_RBRACE] = ACTIONS(645), + [anon_sym_case] = ACTIONS(647), + [anon_sym_default] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_do] = ACTIONS(647), + [anon_sym_while] = ACTIONS(647), + [anon_sym_break] = ACTIONS(647), + [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(647), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_synchronized] = ACTIONS(647), + [anon_sym_throw] = ACTIONS(647), + [anon_sym_try] = ACTIONS(647), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(647), + [anon_sym_for] = ACTIONS(647), + [anon_sym_AT] = ACTIONS(647), + [anon_sym_open] = ACTIONS(647), + [anon_sym_module] = ACTIONS(647), + [anon_sym_static] = ACTIONS(647), + [anon_sym_package] = ACTIONS(647), + [anon_sym_import] = ACTIONS(647), + [anon_sym_enum] = ACTIONS(647), + [anon_sym_public] = ACTIONS(647), + [anon_sym_protected] = ACTIONS(647), + [anon_sym_private] = ACTIONS(647), + [anon_sym_abstract] = ACTIONS(647), + [anon_sym_final] = ACTIONS(647), + [anon_sym_strictfp] = ACTIONS(647), + [anon_sym_native] = ACTIONS(647), + [anon_sym_transient] = ACTIONS(647), + [anon_sym_volatile] = ACTIONS(647), + [anon_sym_sealed] = ACTIONS(647), + [anon_sym_non_DASHsealed] = ACTIONS(645), + [anon_sym_ATinterface] = ACTIONS(645), + [anon_sym_interface] = ACTIONS(647), + [anon_sym_byte] = ACTIONS(647), + [anon_sym_short] = ACTIONS(647), + [anon_sym_int] = ACTIONS(647), + [anon_sym_long] = ACTIONS(647), + [anon_sym_char] = ACTIONS(647), + [anon_sym_float] = ACTIONS(647), + [anon_sym_double] = ACTIONS(647), + [sym_boolean_type] = ACTIONS(647), + [sym_void_type] = ACTIONS(647), + [sym_this] = ACTIONS(647), + [sym_super] = ACTIONS(647), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), - }, - [138] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym_array_initializer] = STATE(1052), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + }, + [180] = { + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [sym_decimal_integer_literal] = ACTIONS(651), + [sym_hex_integer_literal] = ACTIONS(651), + [sym_octal_integer_literal] = ACTIONS(649), + [sym_binary_integer_literal] = ACTIONS(649), + [sym_decimal_floating_point_literal] = ACTIONS(649), + [sym_hex_floating_point_literal] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_character_literal] = ACTIONS(649), + [sym_string_literal] = ACTIONS(651), + [sym_text_block] = ACTIONS(649), + [sym_null_literal] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_new] = ACTIONS(651), + [anon_sym_class] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_assert] = ACTIONS(651), + [anon_sym_do] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_return] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(651), + [anon_sym_synchronized] = ACTIONS(651), + [anon_sym_throw] = ACTIONS(651), + [anon_sym_try] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_else] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(651), + [anon_sym_open] = ACTIONS(651), + [anon_sym_module] = ACTIONS(651), + [anon_sym_static] = ACTIONS(651), + [anon_sym_package] = ACTIONS(651), + [anon_sym_import] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(651), + [anon_sym_public] = ACTIONS(651), + [anon_sym_protected] = ACTIONS(651), + [anon_sym_private] = ACTIONS(651), + [anon_sym_abstract] = ACTIONS(651), + [anon_sym_final] = ACTIONS(651), + [anon_sym_strictfp] = ACTIONS(651), + [anon_sym_native] = ACTIONS(651), + [anon_sym_transient] = ACTIONS(651), + [anon_sym_volatile] = ACTIONS(651), + [anon_sym_sealed] = ACTIONS(651), + [anon_sym_non_DASHsealed] = ACTIONS(649), + [anon_sym_ATinterface] = ACTIONS(649), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_byte] = ACTIONS(651), + [anon_sym_short] = ACTIONS(651), + [anon_sym_int] = ACTIONS(651), + [anon_sym_long] = ACTIONS(651), + [anon_sym_char] = ACTIONS(651), + [anon_sym_float] = ACTIONS(651), + [anon_sym_double] = ACTIONS(651), + [sym_boolean_type] = ACTIONS(651), + [sym_void_type] = ACTIONS(651), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(651), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym__element_value] = STATE(1134), - [sym_element_value_array_initializer] = STATE(1134), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [181] = { + [ts_builtin_sym_end] = ACTIONS(653), + [sym_identifier] = ACTIONS(655), + [sym_decimal_integer_literal] = ACTIONS(655), + [sym_hex_integer_literal] = ACTIONS(655), + [sym_octal_integer_literal] = ACTIONS(653), + [sym_binary_integer_literal] = ACTIONS(653), + [sym_decimal_floating_point_literal] = ACTIONS(653), + [sym_hex_floating_point_literal] = ACTIONS(655), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_character_literal] = ACTIONS(653), + [sym_string_literal] = ACTIONS(655), + [sym_text_block] = ACTIONS(653), + [sym_null_literal] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(653), + [anon_sym_new] = ACTIONS(655), + [anon_sym_class] = ACTIONS(655), + [anon_sym_switch] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(653), + [anon_sym_case] = ACTIONS(655), + [anon_sym_default] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_assert] = ACTIONS(655), + [anon_sym_do] = ACTIONS(655), + [anon_sym_while] = ACTIONS(655), + [anon_sym_break] = ACTIONS(655), + [anon_sym_continue] = ACTIONS(655), + [anon_sym_return] = ACTIONS(655), + [anon_sym_yield] = ACTIONS(655), + [anon_sym_synchronized] = ACTIONS(655), + [anon_sym_throw] = ACTIONS(655), + [anon_sym_try] = ACTIONS(655), + [anon_sym_if] = ACTIONS(655), + [anon_sym_else] = ACTIONS(655), + [anon_sym_for] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(655), + [anon_sym_open] = ACTIONS(655), + [anon_sym_module] = ACTIONS(655), + [anon_sym_static] = ACTIONS(655), + [anon_sym_package] = ACTIONS(655), + [anon_sym_import] = ACTIONS(655), + [anon_sym_enum] = ACTIONS(655), + [anon_sym_public] = ACTIONS(655), + [anon_sym_protected] = ACTIONS(655), + [anon_sym_private] = ACTIONS(655), + [anon_sym_abstract] = ACTIONS(655), + [anon_sym_final] = ACTIONS(655), + [anon_sym_strictfp] = ACTIONS(655), + [anon_sym_native] = ACTIONS(655), + [anon_sym_transient] = ACTIONS(655), + [anon_sym_volatile] = ACTIONS(655), + [anon_sym_sealed] = ACTIONS(655), + [anon_sym_non_DASHsealed] = ACTIONS(653), + [anon_sym_ATinterface] = ACTIONS(653), + [anon_sym_interface] = ACTIONS(655), + [anon_sym_byte] = ACTIONS(655), + [anon_sym_short] = ACTIONS(655), + [anon_sym_int] = ACTIONS(655), + [anon_sym_long] = ACTIONS(655), + [anon_sym_char] = ACTIONS(655), + [anon_sym_float] = ACTIONS(655), + [anon_sym_double] = ACTIONS(655), + [sym_boolean_type] = ACTIONS(655), + [sym_void_type] = ACTIONS(655), + [sym_this] = ACTIONS(655), + [sym_super] = ACTIONS(655), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(625), - [sym_marker_annotation] = STATE(625), - [sym_annotation] = STATE(625), - [sym__element_value] = STATE(1066), - [sym_element_value_array_initializer] = STATE(1066), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [182] = { + [ts_builtin_sym_end] = ACTIONS(657), + [sym_identifier] = ACTIONS(659), + [sym_decimal_integer_literal] = ACTIONS(659), + [sym_hex_integer_literal] = ACTIONS(659), + [sym_octal_integer_literal] = ACTIONS(657), + [sym_binary_integer_literal] = ACTIONS(657), + [sym_decimal_floating_point_literal] = ACTIONS(657), + [sym_hex_floating_point_literal] = ACTIONS(659), + [sym_true] = ACTIONS(659), + [sym_false] = ACTIONS(659), + [sym_character_literal] = ACTIONS(657), + [sym_string_literal] = ACTIONS(659), + [sym_text_block] = ACTIONS(657), + [sym_null_literal] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(657), + [anon_sym_DASH_DASH] = ACTIONS(657), + [anon_sym_new] = ACTIONS(659), + [anon_sym_class] = ACTIONS(659), + [anon_sym_switch] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(657), + [anon_sym_RBRACE] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_default] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_assert] = ACTIONS(659), + [anon_sym_do] = ACTIONS(659), + [anon_sym_while] = ACTIONS(659), + [anon_sym_break] = ACTIONS(659), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_return] = ACTIONS(659), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_synchronized] = ACTIONS(659), + [anon_sym_throw] = ACTIONS(659), + [anon_sym_try] = ACTIONS(659), + [anon_sym_if] = ACTIONS(659), + [anon_sym_else] = ACTIONS(659), + [anon_sym_for] = ACTIONS(659), + [anon_sym_AT] = ACTIONS(659), + [anon_sym_open] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_static] = ACTIONS(659), + [anon_sym_package] = ACTIONS(659), + [anon_sym_import] = ACTIONS(659), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(659), + [anon_sym_final] = ACTIONS(659), + [anon_sym_strictfp] = ACTIONS(659), + [anon_sym_native] = ACTIONS(659), + [anon_sym_transient] = ACTIONS(659), + [anon_sym_volatile] = ACTIONS(659), + [anon_sym_sealed] = ACTIONS(659), + [anon_sym_non_DASHsealed] = ACTIONS(657), + [anon_sym_ATinterface] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(659), + [anon_sym_byte] = ACTIONS(659), + [anon_sym_short] = ACTIONS(659), + [anon_sym_int] = ACTIONS(659), + [anon_sym_long] = ACTIONS(659), + [anon_sym_char] = ACTIONS(659), + [anon_sym_float] = ACTIONS(659), + [anon_sym_double] = ACTIONS(659), + [sym_boolean_type] = ACTIONS(659), + [sym_void_type] = ACTIONS(659), + [sym_this] = ACTIONS(659), + [sym_super] = ACTIONS(659), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(601), - [sym_identifier] = ACTIONS(603), - [sym_decimal_integer_literal] = ACTIONS(603), - [sym_hex_integer_literal] = ACTIONS(603), - [sym_octal_integer_literal] = ACTIONS(601), - [sym_binary_integer_literal] = ACTIONS(601), - [sym_decimal_floating_point_literal] = ACTIONS(601), - [sym_hex_floating_point_literal] = ACTIONS(603), - [sym_true] = ACTIONS(603), - [sym_false] = ACTIONS(603), - [sym_character_literal] = ACTIONS(601), - [sym_string_literal] = ACTIONS(603), - [sym_text_block] = ACTIONS(601), - [sym_null_literal] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_new] = ACTIONS(603), - [anon_sym_class] = ACTIONS(603), - [anon_sym_switch] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_case] = ACTIONS(603), - [anon_sym_default] = ACTIONS(603), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_assert] = ACTIONS(603), - [anon_sym_do] = ACTIONS(603), - [anon_sym_while] = ACTIONS(603), - [anon_sym_break] = ACTIONS(603), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_return] = ACTIONS(603), - [anon_sym_yield] = ACTIONS(603), - [anon_sym_synchronized] = ACTIONS(603), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_try] = ACTIONS(603), - [anon_sym_if] = ACTIONS(603), - [anon_sym_else] = ACTIONS(603), - [anon_sym_for] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_open] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_static] = ACTIONS(603), - [anon_sym_package] = ACTIONS(603), - [anon_sym_import] = ACTIONS(603), - [anon_sym_enum] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_abstract] = ACTIONS(603), - [anon_sym_final] = ACTIONS(603), - [anon_sym_strictfp] = ACTIONS(603), - [anon_sym_native] = ACTIONS(603), - [anon_sym_transient] = ACTIONS(603), - [anon_sym_volatile] = ACTIONS(603), - [anon_sym_sealed] = ACTIONS(603), - [anon_sym_non_DASHsealed] = ACTIONS(601), - [anon_sym_ATinterface] = ACTIONS(601), - [anon_sym_interface] = ACTIONS(603), - [anon_sym_byte] = ACTIONS(603), - [anon_sym_short] = ACTIONS(603), - [anon_sym_int] = ACTIONS(603), - [anon_sym_long] = ACTIONS(603), - [anon_sym_char] = ACTIONS(603), - [anon_sym_float] = ACTIONS(603), - [anon_sym_double] = ACTIONS(603), - [sym_boolean_type] = ACTIONS(603), - [sym_void_type] = ACTIONS(603), - [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(603), + [183] = { + [ts_builtin_sym_end] = ACTIONS(661), + [sym_identifier] = ACTIONS(663), + [sym_decimal_integer_literal] = ACTIONS(663), + [sym_hex_integer_literal] = ACTIONS(663), + [sym_octal_integer_literal] = ACTIONS(661), + [sym_binary_integer_literal] = ACTIONS(661), + [sym_decimal_floating_point_literal] = ACTIONS(661), + [sym_hex_floating_point_literal] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_character_literal] = ACTIONS(661), + [sym_string_literal] = ACTIONS(663), + [sym_text_block] = ACTIONS(661), + [sym_null_literal] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_class] = ACTIONS(663), + [anon_sym_switch] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(661), + [anon_sym_case] = ACTIONS(663), + [anon_sym_default] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(661), + [anon_sym_assert] = ACTIONS(663), + [anon_sym_do] = ACTIONS(663), + [anon_sym_while] = ACTIONS(663), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_return] = ACTIONS(663), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_synchronized] = ACTIONS(663), + [anon_sym_throw] = ACTIONS(663), + [anon_sym_try] = ACTIONS(663), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(663), + [anon_sym_for] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_open] = ACTIONS(663), + [anon_sym_module] = ACTIONS(663), + [anon_sym_static] = ACTIONS(663), + [anon_sym_package] = ACTIONS(663), + [anon_sym_import] = ACTIONS(663), + [anon_sym_enum] = ACTIONS(663), + [anon_sym_public] = ACTIONS(663), + [anon_sym_protected] = ACTIONS(663), + [anon_sym_private] = ACTIONS(663), + [anon_sym_abstract] = ACTIONS(663), + [anon_sym_final] = ACTIONS(663), + [anon_sym_strictfp] = ACTIONS(663), + [anon_sym_native] = ACTIONS(663), + [anon_sym_transient] = ACTIONS(663), + [anon_sym_volatile] = ACTIONS(663), + [anon_sym_sealed] = ACTIONS(663), + [anon_sym_non_DASHsealed] = ACTIONS(661), + [anon_sym_ATinterface] = ACTIONS(661), + [anon_sym_interface] = ACTIONS(663), + [anon_sym_byte] = ACTIONS(663), + [anon_sym_short] = ACTIONS(663), + [anon_sym_int] = ACTIONS(663), + [anon_sym_long] = ACTIONS(663), + [anon_sym_char] = ACTIONS(663), + [anon_sym_float] = ACTIONS(663), + [anon_sym_double] = ACTIONS(663), + [sym_boolean_type] = ACTIONS(663), + [sym_void_type] = ACTIONS(663), + [sym_this] = ACTIONS(663), + [sym_super] = ACTIONS(663), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(605), - [sym_identifier] = ACTIONS(607), - [sym_decimal_integer_literal] = ACTIONS(607), - [sym_hex_integer_literal] = ACTIONS(607), - [sym_octal_integer_literal] = ACTIONS(605), - [sym_binary_integer_literal] = ACTIONS(605), - [sym_decimal_floating_point_literal] = ACTIONS(605), - [sym_hex_floating_point_literal] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_character_literal] = ACTIONS(605), - [sym_string_literal] = ACTIONS(607), - [sym_text_block] = ACTIONS(605), - [sym_null_literal] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_new] = ACTIONS(607), - [anon_sym_class] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_case] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_assert] = ACTIONS(607), - [anon_sym_do] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_synchronized] = ACTIONS(607), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_try] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_else] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_open] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_package] = ACTIONS(607), - [anon_sym_import] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_abstract] = ACTIONS(607), - [anon_sym_final] = ACTIONS(607), - [anon_sym_strictfp] = ACTIONS(607), - [anon_sym_native] = ACTIONS(607), - [anon_sym_transient] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(607), - [anon_sym_sealed] = ACTIONS(607), - [anon_sym_non_DASHsealed] = ACTIONS(605), - [anon_sym_ATinterface] = ACTIONS(605), - [anon_sym_interface] = ACTIONS(607), - [anon_sym_byte] = ACTIONS(607), - [anon_sym_short] = ACTIONS(607), - [anon_sym_int] = ACTIONS(607), - [anon_sym_long] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_float] = ACTIONS(607), - [anon_sym_double] = ACTIONS(607), - [sym_boolean_type] = ACTIONS(607), - [sym_void_type] = ACTIONS(607), - [sym_this] = ACTIONS(607), - [sym_super] = ACTIONS(607), + [184] = { + [ts_builtin_sym_end] = ACTIONS(665), + [sym_identifier] = ACTIONS(667), + [sym_decimal_integer_literal] = ACTIONS(667), + [sym_hex_integer_literal] = ACTIONS(667), + [sym_octal_integer_literal] = ACTIONS(665), + [sym_binary_integer_literal] = ACTIONS(665), + [sym_decimal_floating_point_literal] = ACTIONS(665), + [sym_hex_floating_point_literal] = ACTIONS(667), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_character_literal] = ACTIONS(665), + [sym_string_literal] = ACTIONS(667), + [sym_text_block] = ACTIONS(665), + [sym_null_literal] = ACTIONS(667), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_new] = ACTIONS(667), + [anon_sym_class] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(665), + [anon_sym_case] = ACTIONS(667), + [anon_sym_default] = ACTIONS(667), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_assert] = ACTIONS(667), + [anon_sym_do] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_break] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(667), + [anon_sym_return] = ACTIONS(667), + [anon_sym_yield] = ACTIONS(667), + [anon_sym_synchronized] = ACTIONS(667), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_try] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_else] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(667), + [anon_sym_open] = ACTIONS(667), + [anon_sym_module] = ACTIONS(667), + [anon_sym_static] = ACTIONS(667), + [anon_sym_package] = ACTIONS(667), + [anon_sym_import] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_public] = ACTIONS(667), + [anon_sym_protected] = ACTIONS(667), + [anon_sym_private] = ACTIONS(667), + [anon_sym_abstract] = ACTIONS(667), + [anon_sym_final] = ACTIONS(667), + [anon_sym_strictfp] = ACTIONS(667), + [anon_sym_native] = ACTIONS(667), + [anon_sym_transient] = ACTIONS(667), + [anon_sym_volatile] = ACTIONS(667), + [anon_sym_sealed] = ACTIONS(667), + [anon_sym_non_DASHsealed] = ACTIONS(665), + [anon_sym_ATinterface] = ACTIONS(665), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_byte] = ACTIONS(667), + [anon_sym_short] = ACTIONS(667), + [anon_sym_int] = ACTIONS(667), + [anon_sym_long] = ACTIONS(667), + [anon_sym_char] = ACTIONS(667), + [anon_sym_float] = ACTIONS(667), + [anon_sym_double] = ACTIONS(667), + [sym_boolean_type] = ACTIONS(667), + [sym_void_type] = ACTIONS(667), + [sym_this] = ACTIONS(667), + [sym_super] = ACTIONS(667), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(304), - [sym_identifier] = ACTIONS(306), - [sym_decimal_integer_literal] = ACTIONS(306), - [sym_hex_integer_literal] = ACTIONS(306), - [sym_octal_integer_literal] = ACTIONS(304), - [sym_binary_integer_literal] = ACTIONS(304), - [sym_decimal_floating_point_literal] = ACTIONS(304), - [sym_hex_floating_point_literal] = ACTIONS(306), - [sym_true] = ACTIONS(306), - [sym_false] = ACTIONS(306), - [sym_character_literal] = ACTIONS(304), - [sym_string_literal] = ACTIONS(306), - [sym_text_block] = ACTIONS(304), - [sym_null_literal] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_new] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(304), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [anon_sym_break] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(306), - [anon_sym_synchronized] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_open] = ACTIONS(306), - [anon_sym_module] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_protected] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_strictfp] = ACTIONS(306), - [anon_sym_native] = ACTIONS(306), - [anon_sym_transient] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym_sealed] = ACTIONS(306), - [anon_sym_non_DASHsealed] = ACTIONS(304), - [anon_sym_ATinterface] = ACTIONS(304), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_byte] = ACTIONS(306), - [anon_sym_short] = ACTIONS(306), - [anon_sym_int] = ACTIONS(306), - [anon_sym_long] = ACTIONS(306), - [anon_sym_char] = ACTIONS(306), - [anon_sym_float] = ACTIONS(306), - [anon_sym_double] = ACTIONS(306), - [sym_boolean_type] = ACTIONS(306), - [sym_void_type] = ACTIONS(306), - [sym_this] = ACTIONS(306), - [sym_super] = ACTIONS(306), + [185] = { + [ts_builtin_sym_end] = ACTIONS(669), + [sym_identifier] = ACTIONS(671), + [sym_decimal_integer_literal] = ACTIONS(671), + [sym_hex_integer_literal] = ACTIONS(671), + [sym_octal_integer_literal] = ACTIONS(669), + [sym_binary_integer_literal] = ACTIONS(669), + [sym_decimal_floating_point_literal] = ACTIONS(669), + [sym_hex_floating_point_literal] = ACTIONS(671), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_character_literal] = ACTIONS(669), + [sym_string_literal] = ACTIONS(671), + [sym_text_block] = ACTIONS(669), + [sym_null_literal] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(669), + [anon_sym_TILDE] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(669), + [anon_sym_new] = ACTIONS(671), + [anon_sym_class] = ACTIONS(671), + [anon_sym_switch] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_case] = ACTIONS(671), + [anon_sym_default] = ACTIONS(671), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_assert] = ACTIONS(671), + [anon_sym_do] = ACTIONS(671), + [anon_sym_while] = ACTIONS(671), + [anon_sym_break] = ACTIONS(671), + [anon_sym_continue] = ACTIONS(671), + [anon_sym_return] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(671), + [anon_sym_synchronized] = ACTIONS(671), + [anon_sym_throw] = ACTIONS(671), + [anon_sym_try] = ACTIONS(671), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(671), + [anon_sym_for] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_open] = ACTIONS(671), + [anon_sym_module] = ACTIONS(671), + [anon_sym_static] = ACTIONS(671), + [anon_sym_package] = ACTIONS(671), + [anon_sym_import] = ACTIONS(671), + [anon_sym_enum] = ACTIONS(671), + [anon_sym_public] = ACTIONS(671), + [anon_sym_protected] = ACTIONS(671), + [anon_sym_private] = ACTIONS(671), + [anon_sym_abstract] = ACTIONS(671), + [anon_sym_final] = ACTIONS(671), + [anon_sym_strictfp] = ACTIONS(671), + [anon_sym_native] = ACTIONS(671), + [anon_sym_transient] = ACTIONS(671), + [anon_sym_volatile] = ACTIONS(671), + [anon_sym_sealed] = ACTIONS(671), + [anon_sym_non_DASHsealed] = ACTIONS(669), + [anon_sym_ATinterface] = ACTIONS(669), + [anon_sym_interface] = ACTIONS(671), + [anon_sym_byte] = ACTIONS(671), + [anon_sym_short] = ACTIONS(671), + [anon_sym_int] = ACTIONS(671), + [anon_sym_long] = ACTIONS(671), + [anon_sym_char] = ACTIONS(671), + [anon_sym_float] = ACTIONS(671), + [anon_sym_double] = ACTIONS(671), + [sym_boolean_type] = ACTIONS(671), + [sym_void_type] = ACTIONS(671), + [sym_this] = ACTIONS(671), + [sym_super] = ACTIONS(671), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(609), - [sym_identifier] = ACTIONS(611), - [sym_decimal_integer_literal] = ACTIONS(611), - [sym_hex_integer_literal] = ACTIONS(611), - [sym_octal_integer_literal] = ACTIONS(609), - [sym_binary_integer_literal] = ACTIONS(609), - [sym_decimal_floating_point_literal] = ACTIONS(609), - [sym_hex_floating_point_literal] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_character_literal] = ACTIONS(609), - [sym_string_literal] = ACTIONS(611), - [sym_text_block] = ACTIONS(609), - [sym_null_literal] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_PLUS_PLUS] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(609), - [anon_sym_new] = ACTIONS(611), - [anon_sym_class] = ACTIONS(611), - [anon_sym_switch] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_case] = ACTIONS(611), - [anon_sym_default] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_assert] = ACTIONS(611), - [anon_sym_do] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_return] = ACTIONS(611), - [anon_sym_yield] = ACTIONS(611), - [anon_sym_synchronized] = ACTIONS(611), - [anon_sym_throw] = ACTIONS(611), - [anon_sym_try] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_else] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(611), - [anon_sym_open] = ACTIONS(611), - [anon_sym_module] = ACTIONS(611), - [anon_sym_static] = ACTIONS(611), - [anon_sym_package] = ACTIONS(611), - [anon_sym_import] = ACTIONS(611), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_public] = ACTIONS(611), - [anon_sym_protected] = ACTIONS(611), - [anon_sym_private] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(611), - [anon_sym_final] = ACTIONS(611), - [anon_sym_strictfp] = ACTIONS(611), - [anon_sym_native] = ACTIONS(611), - [anon_sym_transient] = ACTIONS(611), - [anon_sym_volatile] = ACTIONS(611), - [anon_sym_sealed] = ACTIONS(611), - [anon_sym_non_DASHsealed] = ACTIONS(609), - [anon_sym_ATinterface] = ACTIONS(609), - [anon_sym_interface] = ACTIONS(611), - [anon_sym_byte] = ACTIONS(611), - [anon_sym_short] = ACTIONS(611), - [anon_sym_int] = ACTIONS(611), - [anon_sym_long] = ACTIONS(611), - [anon_sym_char] = ACTIONS(611), - [anon_sym_float] = ACTIONS(611), - [anon_sym_double] = ACTIONS(611), - [sym_boolean_type] = ACTIONS(611), - [sym_void_type] = ACTIONS(611), - [sym_this] = ACTIONS(611), - [sym_super] = ACTIONS(611), + [186] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_identifier] = ACTIONS(675), + [sym_decimal_integer_literal] = ACTIONS(675), + [sym_hex_integer_literal] = ACTIONS(675), + [sym_octal_integer_literal] = ACTIONS(673), + [sym_binary_integer_literal] = ACTIONS(673), + [sym_decimal_floating_point_literal] = ACTIONS(673), + [sym_hex_floating_point_literal] = ACTIONS(675), + [sym_true] = ACTIONS(675), + [sym_false] = ACTIONS(675), + [sym_character_literal] = ACTIONS(673), + [sym_string_literal] = ACTIONS(675), + [sym_text_block] = ACTIONS(673), + [sym_null_literal] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_TILDE] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_new] = ACTIONS(675), + [anon_sym_class] = ACTIONS(675), + [anon_sym_switch] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_case] = ACTIONS(675), + [anon_sym_default] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_do] = ACTIONS(675), + [anon_sym_while] = ACTIONS(675), + [anon_sym_break] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(675), + [anon_sym_return] = ACTIONS(675), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_synchronized] = ACTIONS(675), + [anon_sym_throw] = ACTIONS(675), + [anon_sym_try] = ACTIONS(675), + [anon_sym_if] = ACTIONS(675), + [anon_sym_else] = ACTIONS(675), + [anon_sym_for] = ACTIONS(675), + [anon_sym_AT] = ACTIONS(675), + [anon_sym_open] = ACTIONS(675), + [anon_sym_module] = ACTIONS(675), + [anon_sym_static] = ACTIONS(675), + [anon_sym_package] = ACTIONS(675), + [anon_sym_import] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_public] = ACTIONS(675), + [anon_sym_protected] = ACTIONS(675), + [anon_sym_private] = ACTIONS(675), + [anon_sym_abstract] = ACTIONS(675), + [anon_sym_final] = ACTIONS(675), + [anon_sym_strictfp] = ACTIONS(675), + [anon_sym_native] = ACTIONS(675), + [anon_sym_transient] = ACTIONS(675), + [anon_sym_volatile] = ACTIONS(675), + [anon_sym_sealed] = ACTIONS(675), + [anon_sym_non_DASHsealed] = ACTIONS(673), + [anon_sym_ATinterface] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_byte] = ACTIONS(675), + [anon_sym_short] = ACTIONS(675), + [anon_sym_int] = ACTIONS(675), + [anon_sym_long] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_float] = ACTIONS(675), + [anon_sym_double] = ACTIONS(675), + [sym_boolean_type] = ACTIONS(675), + [sym_void_type] = ACTIONS(675), + [sym_this] = ACTIONS(675), + [sym_super] = ACTIONS(675), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [sym_decimal_integer_literal] = ACTIONS(615), - [sym_hex_integer_literal] = ACTIONS(615), - [sym_octal_integer_literal] = ACTIONS(613), - [sym_binary_integer_literal] = ACTIONS(613), - [sym_decimal_floating_point_literal] = ACTIONS(613), - [sym_hex_floating_point_literal] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_character_literal] = ACTIONS(613), - [sym_string_literal] = ACTIONS(615), - [sym_text_block] = ACTIONS(613), - [sym_null_literal] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_new] = ACTIONS(615), - [anon_sym_class] = ACTIONS(615), - [anon_sym_switch] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_case] = ACTIONS(615), - [anon_sym_default] = ACTIONS(615), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_do] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_synchronized] = ACTIONS(615), - [anon_sym_throw] = ACTIONS(615), - [anon_sym_try] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_else] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_open] = ACTIONS(615), - [anon_sym_module] = ACTIONS(615), - [anon_sym_static] = ACTIONS(615), - [anon_sym_package] = ACTIONS(615), - [anon_sym_import] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_public] = ACTIONS(615), - [anon_sym_protected] = ACTIONS(615), - [anon_sym_private] = ACTIONS(615), - [anon_sym_abstract] = ACTIONS(615), - [anon_sym_final] = ACTIONS(615), - [anon_sym_strictfp] = ACTIONS(615), - [anon_sym_native] = ACTIONS(615), - [anon_sym_transient] = ACTIONS(615), - [anon_sym_volatile] = ACTIONS(615), - [anon_sym_sealed] = ACTIONS(615), - [anon_sym_non_DASHsealed] = ACTIONS(613), - [anon_sym_ATinterface] = ACTIONS(613), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_byte] = ACTIONS(615), - [anon_sym_short] = ACTIONS(615), - [anon_sym_int] = ACTIONS(615), - [anon_sym_long] = ACTIONS(615), - [anon_sym_char] = ACTIONS(615), - [anon_sym_float] = ACTIONS(615), - [anon_sym_double] = ACTIONS(615), - [sym_boolean_type] = ACTIONS(615), - [sym_void_type] = ACTIONS(615), - [sym_this] = ACTIONS(615), - [sym_super] = ACTIONS(615), + [187] = { + [ts_builtin_sym_end] = ACTIONS(677), + [sym_identifier] = ACTIONS(679), + [sym_decimal_integer_literal] = ACTIONS(679), + [sym_hex_integer_literal] = ACTIONS(679), + [sym_octal_integer_literal] = ACTIONS(677), + [sym_binary_integer_literal] = ACTIONS(677), + [sym_decimal_floating_point_literal] = ACTIONS(677), + [sym_hex_floating_point_literal] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [sym_character_literal] = ACTIONS(677), + [sym_string_literal] = ACTIONS(679), + [sym_text_block] = ACTIONS(677), + [sym_null_literal] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(677), + [anon_sym_DASH_DASH] = ACTIONS(677), + [anon_sym_new] = ACTIONS(679), + [anon_sym_class] = ACTIONS(679), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(677), + [anon_sym_case] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(677), + [anon_sym_assert] = ACTIONS(679), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_yield] = ACTIONS(679), + [anon_sym_synchronized] = ACTIONS(679), + [anon_sym_throw] = ACTIONS(679), + [anon_sym_try] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_else] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_open] = ACTIONS(679), + [anon_sym_module] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_package] = ACTIONS(679), + [anon_sym_import] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_public] = ACTIONS(679), + [anon_sym_protected] = ACTIONS(679), + [anon_sym_private] = ACTIONS(679), + [anon_sym_abstract] = ACTIONS(679), + [anon_sym_final] = ACTIONS(679), + [anon_sym_strictfp] = ACTIONS(679), + [anon_sym_native] = ACTIONS(679), + [anon_sym_transient] = ACTIONS(679), + [anon_sym_volatile] = ACTIONS(679), + [anon_sym_sealed] = ACTIONS(679), + [anon_sym_non_DASHsealed] = ACTIONS(677), + [anon_sym_ATinterface] = ACTIONS(677), + [anon_sym_interface] = ACTIONS(679), + [anon_sym_byte] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [sym_boolean_type] = ACTIONS(679), + [sym_void_type] = ACTIONS(679), + [sym_this] = ACTIONS(679), + [sym_super] = ACTIONS(679), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_decimal_integer_literal] = ACTIONS(619), - [sym_hex_integer_literal] = ACTIONS(619), - [sym_octal_integer_literal] = ACTIONS(617), - [sym_binary_integer_literal] = ACTIONS(617), - [sym_decimal_floating_point_literal] = ACTIONS(617), - [sym_hex_floating_point_literal] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_character_literal] = ACTIONS(617), - [sym_string_literal] = ACTIONS(619), - [sym_text_block] = ACTIONS(617), - [sym_null_literal] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_new] = ACTIONS(619), - [anon_sym_class] = ACTIONS(619), - [anon_sym_switch] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_case] = ACTIONS(619), - [anon_sym_default] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_do] = ACTIONS(619), - [anon_sym_while] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_synchronized] = ACTIONS(619), - [anon_sym_throw] = ACTIONS(619), - [anon_sym_try] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_else] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_open] = ACTIONS(619), - [anon_sym_module] = ACTIONS(619), - [anon_sym_static] = ACTIONS(619), - [anon_sym_package] = ACTIONS(619), - [anon_sym_import] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_public] = ACTIONS(619), - [anon_sym_protected] = ACTIONS(619), - [anon_sym_private] = ACTIONS(619), - [anon_sym_abstract] = ACTIONS(619), - [anon_sym_final] = ACTIONS(619), - [anon_sym_strictfp] = ACTIONS(619), - [anon_sym_native] = ACTIONS(619), - [anon_sym_transient] = ACTIONS(619), - [anon_sym_volatile] = ACTIONS(619), - [anon_sym_sealed] = ACTIONS(619), - [anon_sym_non_DASHsealed] = ACTIONS(617), - [anon_sym_ATinterface] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_byte] = ACTIONS(619), - [anon_sym_short] = ACTIONS(619), - [anon_sym_int] = ACTIONS(619), - [anon_sym_long] = ACTIONS(619), - [anon_sym_char] = ACTIONS(619), - [anon_sym_float] = ACTIONS(619), - [anon_sym_double] = ACTIONS(619), - [sym_boolean_type] = ACTIONS(619), - [sym_void_type] = ACTIONS(619), - [sym_this] = ACTIONS(619), - [sym_super] = ACTIONS(619), + [188] = { + [ts_builtin_sym_end] = ACTIONS(681), + [sym_identifier] = ACTIONS(683), + [sym_decimal_integer_literal] = ACTIONS(683), + [sym_hex_integer_literal] = ACTIONS(683), + [sym_octal_integer_literal] = ACTIONS(681), + [sym_binary_integer_literal] = ACTIONS(681), + [sym_decimal_floating_point_literal] = ACTIONS(681), + [sym_hex_floating_point_literal] = ACTIONS(683), + [sym_true] = ACTIONS(683), + [sym_false] = ACTIONS(683), + [sym_character_literal] = ACTIONS(681), + [sym_string_literal] = ACTIONS(683), + [sym_text_block] = ACTIONS(681), + [sym_null_literal] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_new] = ACTIONS(683), + [anon_sym_class] = ACTIONS(683), + [anon_sym_switch] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_assert] = ACTIONS(683), + [anon_sym_do] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_yield] = ACTIONS(683), + [anon_sym_synchronized] = ACTIONS(683), + [anon_sym_throw] = ACTIONS(683), + [anon_sym_try] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_else] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_open] = ACTIONS(683), + [anon_sym_module] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_package] = ACTIONS(683), + [anon_sym_import] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_public] = ACTIONS(683), + [anon_sym_protected] = ACTIONS(683), + [anon_sym_private] = ACTIONS(683), + [anon_sym_abstract] = ACTIONS(683), + [anon_sym_final] = ACTIONS(683), + [anon_sym_strictfp] = ACTIONS(683), + [anon_sym_native] = ACTIONS(683), + [anon_sym_transient] = ACTIONS(683), + [anon_sym_volatile] = ACTIONS(683), + [anon_sym_sealed] = ACTIONS(683), + [anon_sym_non_DASHsealed] = ACTIONS(681), + [anon_sym_ATinterface] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(683), + [anon_sym_byte] = ACTIONS(683), + [anon_sym_short] = ACTIONS(683), + [anon_sym_int] = ACTIONS(683), + [anon_sym_long] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_float] = ACTIONS(683), + [anon_sym_double] = ACTIONS(683), + [sym_boolean_type] = ACTIONS(683), + [sym_void_type] = ACTIONS(683), + [sym_this] = ACTIONS(683), + [sym_super] = ACTIONS(683), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [sym_decimal_integer_literal] = ACTIONS(623), - [sym_hex_integer_literal] = ACTIONS(623), - [sym_octal_integer_literal] = ACTIONS(621), - [sym_binary_integer_literal] = ACTIONS(621), - [sym_decimal_floating_point_literal] = ACTIONS(621), - [sym_hex_floating_point_literal] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_character_literal] = ACTIONS(621), - [sym_string_literal] = ACTIONS(623), - [sym_text_block] = ACTIONS(621), - [sym_null_literal] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_new] = ACTIONS(623), - [anon_sym_class] = ACTIONS(623), - [anon_sym_switch] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_case] = ACTIONS(623), - [anon_sym_default] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_do] = ACTIONS(623), - [anon_sym_while] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_synchronized] = ACTIONS(623), - [anon_sym_throw] = ACTIONS(623), - [anon_sym_try] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_else] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(623), - [anon_sym_open] = ACTIONS(623), - [anon_sym_module] = ACTIONS(623), - [anon_sym_static] = ACTIONS(623), - [anon_sym_package] = ACTIONS(623), - [anon_sym_import] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_public] = ACTIONS(623), - [anon_sym_protected] = ACTIONS(623), - [anon_sym_private] = ACTIONS(623), - [anon_sym_abstract] = ACTIONS(623), - [anon_sym_final] = ACTIONS(623), - [anon_sym_strictfp] = ACTIONS(623), - [anon_sym_native] = ACTIONS(623), - [anon_sym_transient] = ACTIONS(623), - [anon_sym_volatile] = ACTIONS(623), - [anon_sym_sealed] = ACTIONS(623), - [anon_sym_non_DASHsealed] = ACTIONS(621), - [anon_sym_ATinterface] = ACTIONS(621), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_byte] = ACTIONS(623), - [anon_sym_short] = ACTIONS(623), - [anon_sym_int] = ACTIONS(623), - [anon_sym_long] = ACTIONS(623), - [anon_sym_char] = ACTIONS(623), - [anon_sym_float] = ACTIONS(623), - [anon_sym_double] = ACTIONS(623), - [sym_boolean_type] = ACTIONS(623), - [sym_void_type] = ACTIONS(623), - [sym_this] = ACTIONS(623), - [sym_super] = ACTIONS(623), + [189] = { + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(687), + [sym_decimal_integer_literal] = ACTIONS(687), + [sym_hex_integer_literal] = ACTIONS(687), + [sym_octal_integer_literal] = ACTIONS(685), + [sym_binary_integer_literal] = ACTIONS(685), + [sym_decimal_floating_point_literal] = ACTIONS(685), + [sym_hex_floating_point_literal] = ACTIONS(687), + [sym_true] = ACTIONS(687), + [sym_false] = ACTIONS(687), + [sym_character_literal] = ACTIONS(685), + [sym_string_literal] = ACTIONS(687), + [sym_text_block] = ACTIONS(685), + [sym_null_literal] = ACTIONS(687), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_new] = ACTIONS(687), + [anon_sym_class] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(685), + [anon_sym_case] = ACTIONS(687), + [anon_sym_default] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_assert] = ACTIONS(687), + [anon_sym_do] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_break] = ACTIONS(687), + [anon_sym_continue] = ACTIONS(687), + [anon_sym_return] = ACTIONS(687), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_synchronized] = ACTIONS(687), + [anon_sym_throw] = ACTIONS(687), + [anon_sym_try] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_else] = ACTIONS(687), + [anon_sym_for] = ACTIONS(687), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_open] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_static] = ACTIONS(687), + [anon_sym_package] = ACTIONS(687), + [anon_sym_import] = ACTIONS(687), + [anon_sym_enum] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_abstract] = ACTIONS(687), + [anon_sym_final] = ACTIONS(687), + [anon_sym_strictfp] = ACTIONS(687), + [anon_sym_native] = ACTIONS(687), + [anon_sym_transient] = ACTIONS(687), + [anon_sym_volatile] = ACTIONS(687), + [anon_sym_sealed] = ACTIONS(687), + [anon_sym_non_DASHsealed] = ACTIONS(685), + [anon_sym_ATinterface] = ACTIONS(685), + [anon_sym_interface] = ACTIONS(687), + [anon_sym_byte] = ACTIONS(687), + [anon_sym_short] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_long] = ACTIONS(687), + [anon_sym_char] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_double] = ACTIONS(687), + [sym_boolean_type] = ACTIONS(687), + [sym_void_type] = ACTIONS(687), + [sym_this] = ACTIONS(687), + [sym_super] = ACTIONS(687), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(627), - [sym_decimal_integer_literal] = ACTIONS(627), - [sym_hex_integer_literal] = ACTIONS(627), - [sym_octal_integer_literal] = ACTIONS(625), - [sym_binary_integer_literal] = ACTIONS(625), - [sym_decimal_floating_point_literal] = ACTIONS(625), - [sym_hex_floating_point_literal] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_character_literal] = ACTIONS(625), - [sym_string_literal] = ACTIONS(627), - [sym_text_block] = ACTIONS(625), - [sym_null_literal] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_new] = ACTIONS(627), - [anon_sym_class] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_do] = ACTIONS(627), - [anon_sym_while] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_yield] = ACTIONS(627), - [anon_sym_synchronized] = ACTIONS(627), - [anon_sym_throw] = ACTIONS(627), - [anon_sym_try] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_else] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_AT] = ACTIONS(627), - [anon_sym_open] = ACTIONS(627), - [anon_sym_module] = ACTIONS(627), - [anon_sym_static] = ACTIONS(627), - [anon_sym_package] = ACTIONS(627), - [anon_sym_import] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_public] = ACTIONS(627), - [anon_sym_protected] = ACTIONS(627), - [anon_sym_private] = ACTIONS(627), - [anon_sym_abstract] = ACTIONS(627), - [anon_sym_final] = ACTIONS(627), - [anon_sym_strictfp] = ACTIONS(627), - [anon_sym_native] = ACTIONS(627), - [anon_sym_transient] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(627), - [anon_sym_sealed] = ACTIONS(627), - [anon_sym_non_DASHsealed] = ACTIONS(625), - [anon_sym_ATinterface] = ACTIONS(625), - [anon_sym_interface] = ACTIONS(627), - [anon_sym_byte] = ACTIONS(627), - [anon_sym_short] = ACTIONS(627), - [anon_sym_int] = ACTIONS(627), - [anon_sym_long] = ACTIONS(627), - [anon_sym_char] = ACTIONS(627), - [anon_sym_float] = ACTIONS(627), - [anon_sym_double] = ACTIONS(627), - [sym_boolean_type] = ACTIONS(627), - [sym_void_type] = ACTIONS(627), - [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(627), + [190] = { + [ts_builtin_sym_end] = ACTIONS(689), + [sym_identifier] = ACTIONS(691), + [sym_decimal_integer_literal] = ACTIONS(691), + [sym_hex_integer_literal] = ACTIONS(691), + [sym_octal_integer_literal] = ACTIONS(689), + [sym_binary_integer_literal] = ACTIONS(689), + [sym_decimal_floating_point_literal] = ACTIONS(689), + [sym_hex_floating_point_literal] = ACTIONS(691), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_character_literal] = ACTIONS(689), + [sym_string_literal] = ACTIONS(691), + [sym_text_block] = ACTIONS(689), + [sym_null_literal] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_new] = ACTIONS(691), + [anon_sym_class] = ACTIONS(691), + [anon_sym_switch] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_case] = ACTIONS(691), + [anon_sym_default] = ACTIONS(691), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_assert] = ACTIONS(691), + [anon_sym_do] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_break] = ACTIONS(691), + [anon_sym_continue] = ACTIONS(691), + [anon_sym_return] = ACTIONS(691), + [anon_sym_yield] = ACTIONS(691), + [anon_sym_synchronized] = ACTIONS(691), + [anon_sym_throw] = ACTIONS(691), + [anon_sym_try] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_else] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_AT] = ACTIONS(691), + [anon_sym_open] = ACTIONS(691), + [anon_sym_module] = ACTIONS(691), + [anon_sym_static] = ACTIONS(691), + [anon_sym_package] = ACTIONS(691), + [anon_sym_import] = ACTIONS(691), + [anon_sym_enum] = ACTIONS(691), + [anon_sym_public] = ACTIONS(691), + [anon_sym_protected] = ACTIONS(691), + [anon_sym_private] = ACTIONS(691), + [anon_sym_abstract] = ACTIONS(691), + [anon_sym_final] = ACTIONS(691), + [anon_sym_strictfp] = ACTIONS(691), + [anon_sym_native] = ACTIONS(691), + [anon_sym_transient] = ACTIONS(691), + [anon_sym_volatile] = ACTIONS(691), + [anon_sym_sealed] = ACTIONS(691), + [anon_sym_non_DASHsealed] = ACTIONS(689), + [anon_sym_ATinterface] = ACTIONS(689), + [anon_sym_interface] = ACTIONS(691), + [anon_sym_byte] = ACTIONS(691), + [anon_sym_short] = ACTIONS(691), + [anon_sym_int] = ACTIONS(691), + [anon_sym_long] = ACTIONS(691), + [anon_sym_char] = ACTIONS(691), + [anon_sym_float] = ACTIONS(691), + [anon_sym_double] = ACTIONS(691), + [sym_boolean_type] = ACTIONS(691), + [sym_void_type] = ACTIONS(691), + [sym_this] = ACTIONS(691), + [sym_super] = ACTIONS(691), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [sym_decimal_integer_literal] = ACTIONS(631), - [sym_hex_integer_literal] = ACTIONS(631), - [sym_octal_integer_literal] = ACTIONS(629), - [sym_binary_integer_literal] = ACTIONS(629), - [sym_decimal_floating_point_literal] = ACTIONS(629), - [sym_hex_floating_point_literal] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_character_literal] = ACTIONS(629), - [sym_string_literal] = ACTIONS(631), - [sym_text_block] = ACTIONS(629), - [sym_null_literal] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_PLUS_PLUS] = ACTIONS(629), - [anon_sym_DASH_DASH] = ACTIONS(629), - [anon_sym_new] = ACTIONS(631), - [anon_sym_class] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_assert] = ACTIONS(631), - [anon_sym_do] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(631), - [anon_sym_return] = ACTIONS(631), - [anon_sym_yield] = ACTIONS(631), - [anon_sym_synchronized] = ACTIONS(631), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_try] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_else] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_open] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_static] = ACTIONS(631), - [anon_sym_package] = ACTIONS(631), - [anon_sym_import] = ACTIONS(631), - [anon_sym_enum] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_abstract] = ACTIONS(631), - [anon_sym_final] = ACTIONS(631), - [anon_sym_strictfp] = ACTIONS(631), - [anon_sym_native] = ACTIONS(631), - [anon_sym_transient] = ACTIONS(631), - [anon_sym_volatile] = ACTIONS(631), - [anon_sym_sealed] = ACTIONS(631), - [anon_sym_non_DASHsealed] = ACTIONS(629), - [anon_sym_ATinterface] = ACTIONS(629), - [anon_sym_interface] = ACTIONS(631), - [anon_sym_byte] = ACTIONS(631), - [anon_sym_short] = ACTIONS(631), - [anon_sym_int] = ACTIONS(631), - [anon_sym_long] = ACTIONS(631), - [anon_sym_char] = ACTIONS(631), - [anon_sym_float] = ACTIONS(631), - [anon_sym_double] = ACTIONS(631), - [sym_boolean_type] = ACTIONS(631), - [sym_void_type] = ACTIONS(631), - [sym_this] = ACTIONS(631), - [sym_super] = ACTIONS(631), + [191] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_identifier] = ACTIONS(695), + [sym_decimal_integer_literal] = ACTIONS(695), + [sym_hex_integer_literal] = ACTIONS(695), + [sym_octal_integer_literal] = ACTIONS(693), + [sym_binary_integer_literal] = ACTIONS(693), + [sym_decimal_floating_point_literal] = ACTIONS(693), + [sym_hex_floating_point_literal] = ACTIONS(695), + [sym_true] = ACTIONS(695), + [sym_false] = ACTIONS(695), + [sym_character_literal] = ACTIONS(693), + [sym_string_literal] = ACTIONS(695), + [sym_text_block] = ACTIONS(693), + [sym_null_literal] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_PLUS_PLUS] = ACTIONS(693), + [anon_sym_DASH_DASH] = ACTIONS(693), + [anon_sym_new] = ACTIONS(695), + [anon_sym_class] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_case] = ACTIONS(695), + [anon_sym_default] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym_assert] = ACTIONS(695), + [anon_sym_do] = ACTIONS(695), + [anon_sym_while] = ACTIONS(695), + [anon_sym_break] = ACTIONS(695), + [anon_sym_continue] = ACTIONS(695), + [anon_sym_return] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(695), + [anon_sym_synchronized] = ACTIONS(695), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(695), + [anon_sym_if] = ACTIONS(695), + [anon_sym_else] = ACTIONS(695), + [anon_sym_for] = ACTIONS(695), + [anon_sym_AT] = ACTIONS(695), + [anon_sym_open] = ACTIONS(695), + [anon_sym_module] = ACTIONS(695), + [anon_sym_static] = ACTIONS(695), + [anon_sym_package] = ACTIONS(695), + [anon_sym_import] = ACTIONS(695), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_public] = ACTIONS(695), + [anon_sym_protected] = ACTIONS(695), + [anon_sym_private] = ACTIONS(695), + [anon_sym_abstract] = ACTIONS(695), + [anon_sym_final] = ACTIONS(695), + [anon_sym_strictfp] = ACTIONS(695), + [anon_sym_native] = ACTIONS(695), + [anon_sym_transient] = ACTIONS(695), + [anon_sym_volatile] = ACTIONS(695), + [anon_sym_sealed] = ACTIONS(695), + [anon_sym_non_DASHsealed] = ACTIONS(693), + [anon_sym_ATinterface] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(695), + [anon_sym_byte] = ACTIONS(695), + [anon_sym_short] = ACTIONS(695), + [anon_sym_int] = ACTIONS(695), + [anon_sym_long] = ACTIONS(695), + [anon_sym_char] = ACTIONS(695), + [anon_sym_float] = ACTIONS(695), + [anon_sym_double] = ACTIONS(695), + [sym_boolean_type] = ACTIONS(695), + [sym_void_type] = ACTIONS(695), + [sym_this] = ACTIONS(695), + [sym_super] = ACTIONS(695), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [192] = { + [ts_builtin_sym_end] = ACTIONS(697), + [sym_identifier] = ACTIONS(699), + [sym_decimal_integer_literal] = ACTIONS(699), + [sym_hex_integer_literal] = ACTIONS(699), + [sym_octal_integer_literal] = ACTIONS(697), + [sym_binary_integer_literal] = ACTIONS(697), + [sym_decimal_floating_point_literal] = ACTIONS(697), + [sym_hex_floating_point_literal] = ACTIONS(699), + [sym_true] = ACTIONS(699), + [sym_false] = ACTIONS(699), + [sym_character_literal] = ACTIONS(697), + [sym_string_literal] = ACTIONS(699), + [sym_text_block] = ACTIONS(697), + [sym_null_literal] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(697), + [anon_sym_TILDE] = ACTIONS(697), + [anon_sym_PLUS_PLUS] = ACTIONS(697), + [anon_sym_DASH_DASH] = ACTIONS(697), + [anon_sym_new] = ACTIONS(699), + [anon_sym_class] = ACTIONS(699), + [anon_sym_switch] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_case] = ACTIONS(699), + [anon_sym_default] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_assert] = ACTIONS(699), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(699), + [anon_sym_break] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(699), + [anon_sym_return] = ACTIONS(699), + [anon_sym_yield] = ACTIONS(699), + [anon_sym_synchronized] = ACTIONS(699), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_try] = ACTIONS(699), + [anon_sym_if] = ACTIONS(699), + [anon_sym_else] = ACTIONS(699), + [anon_sym_for] = ACTIONS(699), + [anon_sym_AT] = ACTIONS(699), + [anon_sym_open] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), + [anon_sym_static] = ACTIONS(699), + [anon_sym_package] = ACTIONS(699), + [anon_sym_import] = ACTIONS(699), + [anon_sym_enum] = ACTIONS(699), + [anon_sym_public] = ACTIONS(699), + [anon_sym_protected] = ACTIONS(699), + [anon_sym_private] = ACTIONS(699), + [anon_sym_abstract] = ACTIONS(699), + [anon_sym_final] = ACTIONS(699), + [anon_sym_strictfp] = ACTIONS(699), + [anon_sym_native] = ACTIONS(699), + [anon_sym_transient] = ACTIONS(699), + [anon_sym_volatile] = ACTIONS(699), + [anon_sym_sealed] = ACTIONS(699), + [anon_sym_non_DASHsealed] = ACTIONS(697), + [anon_sym_ATinterface] = ACTIONS(697), + [anon_sym_interface] = ACTIONS(699), + [anon_sym_byte] = ACTIONS(699), + [anon_sym_short] = ACTIONS(699), + [anon_sym_int] = ACTIONS(699), + [anon_sym_long] = ACTIONS(699), + [anon_sym_char] = ACTIONS(699), + [anon_sym_float] = ACTIONS(699), + [anon_sym_double] = ACTIONS(699), + [sym_boolean_type] = ACTIONS(699), + [sym_void_type] = ACTIONS(699), + [sym_this] = ACTIONS(699), + [sym_super] = ACTIONS(699), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [sym_decimal_integer_literal] = ACTIONS(635), - [sym_hex_integer_literal] = ACTIONS(635), - [sym_octal_integer_literal] = ACTIONS(633), - [sym_binary_integer_literal] = ACTIONS(633), - [sym_decimal_floating_point_literal] = ACTIONS(633), - [sym_hex_floating_point_literal] = ACTIONS(635), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_character_literal] = ACTIONS(633), - [sym_string_literal] = ACTIONS(635), - [sym_text_block] = ACTIONS(633), - [sym_null_literal] = ACTIONS(635), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_PLUS_PLUS] = ACTIONS(633), - [anon_sym_DASH_DASH] = ACTIONS(633), - [anon_sym_new] = ACTIONS(635), - [anon_sym_class] = ACTIONS(635), - [anon_sym_switch] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_case] = ACTIONS(635), - [anon_sym_default] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(633), - [anon_sym_assert] = ACTIONS(635), - [anon_sym_do] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_break] = ACTIONS(635), - [anon_sym_continue] = ACTIONS(635), - [anon_sym_return] = ACTIONS(635), - [anon_sym_yield] = ACTIONS(635), - [anon_sym_synchronized] = ACTIONS(635), - [anon_sym_throw] = ACTIONS(635), - [anon_sym_try] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_else] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_AT] = ACTIONS(635), - [anon_sym_open] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_static] = ACTIONS(635), - [anon_sym_package] = ACTIONS(635), - [anon_sym_import] = ACTIONS(635), - [anon_sym_enum] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_abstract] = ACTIONS(635), - [anon_sym_final] = ACTIONS(635), - [anon_sym_strictfp] = ACTIONS(635), - [anon_sym_native] = ACTIONS(635), - [anon_sym_transient] = ACTIONS(635), - [anon_sym_volatile] = ACTIONS(635), - [anon_sym_sealed] = ACTIONS(635), - [anon_sym_non_DASHsealed] = ACTIONS(633), - [anon_sym_ATinterface] = ACTIONS(633), - [anon_sym_interface] = ACTIONS(635), - [anon_sym_byte] = ACTIONS(635), - [anon_sym_short] = ACTIONS(635), - [anon_sym_int] = ACTIONS(635), - [anon_sym_long] = ACTIONS(635), - [anon_sym_char] = ACTIONS(635), - [anon_sym_float] = ACTIONS(635), - [anon_sym_double] = ACTIONS(635), - [sym_boolean_type] = ACTIONS(635), - [sym_void_type] = ACTIONS(635), - [sym_this] = ACTIONS(635), - [sym_super] = ACTIONS(635), + [193] = { + [ts_builtin_sym_end] = ACTIONS(701), + [sym_identifier] = ACTIONS(703), + [sym_decimal_integer_literal] = ACTIONS(703), + [sym_hex_integer_literal] = ACTIONS(703), + [sym_octal_integer_literal] = ACTIONS(701), + [sym_binary_integer_literal] = ACTIONS(701), + [sym_decimal_floating_point_literal] = ACTIONS(701), + [sym_hex_floating_point_literal] = ACTIONS(703), + [sym_true] = ACTIONS(703), + [sym_false] = ACTIONS(703), + [sym_character_literal] = ACTIONS(701), + [sym_string_literal] = ACTIONS(703), + [sym_text_block] = ACTIONS(701), + [sym_null_literal] = ACTIONS(703), + [anon_sym_LPAREN] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(701), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_new] = ACTIONS(703), + [anon_sym_class] = ACTIONS(703), + [anon_sym_switch] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(701), + [anon_sym_case] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_do] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_yield] = ACTIONS(703), + [anon_sym_synchronized] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_try] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_else] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [anon_sym_open] = ACTIONS(703), + [anon_sym_module] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_package] = ACTIONS(703), + [anon_sym_import] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_public] = ACTIONS(703), + [anon_sym_protected] = ACTIONS(703), + [anon_sym_private] = ACTIONS(703), + [anon_sym_abstract] = ACTIONS(703), + [anon_sym_final] = ACTIONS(703), + [anon_sym_strictfp] = ACTIONS(703), + [anon_sym_native] = ACTIONS(703), + [anon_sym_transient] = ACTIONS(703), + [anon_sym_volatile] = ACTIONS(703), + [anon_sym_sealed] = ACTIONS(703), + [anon_sym_non_DASHsealed] = ACTIONS(701), + [anon_sym_ATinterface] = ACTIONS(701), + [anon_sym_interface] = ACTIONS(703), + [anon_sym_byte] = ACTIONS(703), + [anon_sym_short] = ACTIONS(703), + [anon_sym_int] = ACTIONS(703), + [anon_sym_long] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_float] = ACTIONS(703), + [anon_sym_double] = ACTIONS(703), + [sym_boolean_type] = ACTIONS(703), + [sym_void_type] = ACTIONS(703), + [sym_this] = ACTIONS(703), + [sym_super] = ACTIONS(703), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [sym_true] = ACTIONS(639), - [sym_false] = ACTIONS(639), - [sym_character_literal] = ACTIONS(637), - [sym_string_literal] = ACTIONS(639), - [sym_text_block] = ACTIONS(637), - [sym_null_literal] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_new] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_case] = ACTIONS(639), - [anon_sym_default] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_synchronized] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_open] = ACTIONS(639), - [anon_sym_module] = ACTIONS(639), - [anon_sym_static] = ACTIONS(639), - [anon_sym_package] = ACTIONS(639), - [anon_sym_import] = ACTIONS(639), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_public] = ACTIONS(639), - [anon_sym_protected] = ACTIONS(639), - [anon_sym_private] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_strictfp] = ACTIONS(639), - [anon_sym_native] = ACTIONS(639), - [anon_sym_transient] = ACTIONS(639), - [anon_sym_volatile] = ACTIONS(639), - [anon_sym_sealed] = ACTIONS(639), - [anon_sym_non_DASHsealed] = ACTIONS(637), - [anon_sym_ATinterface] = ACTIONS(637), - [anon_sym_interface] = ACTIONS(639), - [anon_sym_byte] = ACTIONS(639), - [anon_sym_short] = ACTIONS(639), - [anon_sym_int] = ACTIONS(639), - [anon_sym_long] = ACTIONS(639), - [anon_sym_char] = ACTIONS(639), - [anon_sym_float] = ACTIONS(639), - [anon_sym_double] = ACTIONS(639), - [sym_boolean_type] = ACTIONS(639), - [sym_void_type] = ACTIONS(639), - [sym_this] = ACTIONS(639), - [sym_super] = ACTIONS(639), + [194] = { + [ts_builtin_sym_end] = ACTIONS(705), + [sym_identifier] = ACTIONS(707), + [sym_decimal_integer_literal] = ACTIONS(707), + [sym_hex_integer_literal] = ACTIONS(707), + [sym_octal_integer_literal] = ACTIONS(705), + [sym_binary_integer_literal] = ACTIONS(705), + [sym_decimal_floating_point_literal] = ACTIONS(705), + [sym_hex_floating_point_literal] = ACTIONS(707), + [sym_true] = ACTIONS(707), + [sym_false] = ACTIONS(707), + [sym_character_literal] = ACTIONS(705), + [sym_string_literal] = ACTIONS(707), + [sym_text_block] = ACTIONS(705), + [sym_null_literal] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_new] = ACTIONS(707), + [anon_sym_class] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_case] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_assert] = ACTIONS(707), + [anon_sym_do] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_synchronized] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(707), + [anon_sym_try] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_else] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_AT] = ACTIONS(707), + [anon_sym_open] = ACTIONS(707), + [anon_sym_module] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_package] = ACTIONS(707), + [anon_sym_import] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_public] = ACTIONS(707), + [anon_sym_protected] = ACTIONS(707), + [anon_sym_private] = ACTIONS(707), + [anon_sym_abstract] = ACTIONS(707), + [anon_sym_final] = ACTIONS(707), + [anon_sym_strictfp] = ACTIONS(707), + [anon_sym_native] = ACTIONS(707), + [anon_sym_transient] = ACTIONS(707), + [anon_sym_volatile] = ACTIONS(707), + [anon_sym_sealed] = ACTIONS(707), + [anon_sym_non_DASHsealed] = ACTIONS(705), + [anon_sym_ATinterface] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_byte] = ACTIONS(707), + [anon_sym_short] = ACTIONS(707), + [anon_sym_int] = ACTIONS(707), + [anon_sym_long] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [anon_sym_float] = ACTIONS(707), + [anon_sym_double] = ACTIONS(707), + [sym_boolean_type] = ACTIONS(707), + [sym_void_type] = ACTIONS(707), + [sym_this] = ACTIONS(707), + [sym_super] = ACTIONS(707), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [sym_decimal_integer_literal] = ACTIONS(643), - [sym_hex_integer_literal] = ACTIONS(643), - [sym_octal_integer_literal] = ACTIONS(641), - [sym_binary_integer_literal] = ACTIONS(641), - [sym_decimal_floating_point_literal] = ACTIONS(641), - [sym_hex_floating_point_literal] = ACTIONS(643), - [sym_true] = ACTIONS(643), - [sym_false] = ACTIONS(643), - [sym_character_literal] = ACTIONS(641), - [sym_string_literal] = ACTIONS(643), - [sym_text_block] = ACTIONS(641), - [sym_null_literal] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_new] = ACTIONS(643), - [anon_sym_class] = ACTIONS(643), - [anon_sym_switch] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_case] = ACTIONS(643), - [anon_sym_default] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_assert] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_synchronized] = ACTIONS(643), - [anon_sym_throw] = ACTIONS(643), - [anon_sym_try] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_AT] = ACTIONS(643), - [anon_sym_open] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_package] = ACTIONS(643), - [anon_sym_import] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_abstract] = ACTIONS(643), - [anon_sym_final] = ACTIONS(643), - [anon_sym_strictfp] = ACTIONS(643), - [anon_sym_native] = ACTIONS(643), - [anon_sym_transient] = ACTIONS(643), - [anon_sym_volatile] = ACTIONS(643), - [anon_sym_sealed] = ACTIONS(643), - [anon_sym_non_DASHsealed] = ACTIONS(641), - [anon_sym_ATinterface] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(643), - [anon_sym_byte] = ACTIONS(643), - [anon_sym_short] = ACTIONS(643), - [anon_sym_int] = ACTIONS(643), - [anon_sym_long] = ACTIONS(643), - [anon_sym_char] = ACTIONS(643), - [anon_sym_float] = ACTIONS(643), - [anon_sym_double] = ACTIONS(643), - [sym_boolean_type] = ACTIONS(643), - [sym_void_type] = ACTIONS(643), - [sym_this] = ACTIONS(643), - [sym_super] = ACTIONS(643), + [195] = { + [ts_builtin_sym_end] = ACTIONS(709), + [sym_identifier] = ACTIONS(711), + [sym_decimal_integer_literal] = ACTIONS(711), + [sym_hex_integer_literal] = ACTIONS(711), + [sym_octal_integer_literal] = ACTIONS(709), + [sym_binary_integer_literal] = ACTIONS(709), + [sym_decimal_floating_point_literal] = ACTIONS(709), + [sym_hex_floating_point_literal] = ACTIONS(711), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_character_literal] = ACTIONS(709), + [sym_string_literal] = ACTIONS(711), + [sym_text_block] = ACTIONS(709), + [sym_null_literal] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_new] = ACTIONS(711), + [anon_sym_class] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_case] = ACTIONS(711), + [anon_sym_default] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(709), + [anon_sym_assert] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_break] = ACTIONS(711), + [anon_sym_continue] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_yield] = ACTIONS(711), + [anon_sym_synchronized] = ACTIONS(711), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_else] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_open] = ACTIONS(711), + [anon_sym_module] = ACTIONS(711), + [anon_sym_static] = ACTIONS(711), + [anon_sym_package] = ACTIONS(711), + [anon_sym_import] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(711), + [anon_sym_public] = ACTIONS(711), + [anon_sym_protected] = ACTIONS(711), + [anon_sym_private] = ACTIONS(711), + [anon_sym_abstract] = ACTIONS(711), + [anon_sym_final] = ACTIONS(711), + [anon_sym_strictfp] = ACTIONS(711), + [anon_sym_native] = ACTIONS(711), + [anon_sym_transient] = ACTIONS(711), + [anon_sym_volatile] = ACTIONS(711), + [anon_sym_sealed] = ACTIONS(711), + [anon_sym_non_DASHsealed] = ACTIONS(709), + [anon_sym_ATinterface] = ACTIONS(709), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_byte] = ACTIONS(711), + [anon_sym_short] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_long] = ACTIONS(711), + [anon_sym_char] = ACTIONS(711), + [anon_sym_float] = ACTIONS(711), + [anon_sym_double] = ACTIONS(711), + [sym_boolean_type] = ACTIONS(711), + [sym_void_type] = ACTIONS(711), + [sym_this] = ACTIONS(711), + [sym_super] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [196] = { + [ts_builtin_sym_end] = ACTIONS(713), + [sym_identifier] = ACTIONS(715), + [sym_decimal_integer_literal] = ACTIONS(715), + [sym_hex_integer_literal] = ACTIONS(715), + [sym_octal_integer_literal] = ACTIONS(713), + [sym_binary_integer_literal] = ACTIONS(713), + [sym_decimal_floating_point_literal] = ACTIONS(713), + [sym_hex_floating_point_literal] = ACTIONS(715), + [sym_true] = ACTIONS(715), + [sym_false] = ACTIONS(715), + [sym_character_literal] = ACTIONS(713), + [sym_string_literal] = ACTIONS(715), + [sym_text_block] = ACTIONS(713), + [sym_null_literal] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_new] = ACTIONS(715), + [anon_sym_class] = ACTIONS(715), + [anon_sym_switch] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_case] = ACTIONS(715), + [anon_sym_default] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_assert] = ACTIONS(715), + [anon_sym_do] = ACTIONS(715), + [anon_sym_while] = ACTIONS(715), + [anon_sym_break] = ACTIONS(715), + [anon_sym_continue] = ACTIONS(715), + [anon_sym_return] = ACTIONS(715), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_synchronized] = ACTIONS(715), + [anon_sym_throw] = ACTIONS(715), + [anon_sym_try] = ACTIONS(715), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(715), + [anon_sym_for] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(715), + [anon_sym_open] = ACTIONS(715), + [anon_sym_module] = ACTIONS(715), + [anon_sym_static] = ACTIONS(715), + [anon_sym_package] = ACTIONS(715), + [anon_sym_import] = ACTIONS(715), + [anon_sym_enum] = ACTIONS(715), + [anon_sym_public] = ACTIONS(715), + [anon_sym_protected] = ACTIONS(715), + [anon_sym_private] = ACTIONS(715), + [anon_sym_abstract] = ACTIONS(715), + [anon_sym_final] = ACTIONS(715), + [anon_sym_strictfp] = ACTIONS(715), + [anon_sym_native] = ACTIONS(715), + [anon_sym_transient] = ACTIONS(715), + [anon_sym_volatile] = ACTIONS(715), + [anon_sym_sealed] = ACTIONS(715), + [anon_sym_non_DASHsealed] = ACTIONS(713), + [anon_sym_ATinterface] = ACTIONS(713), + [anon_sym_interface] = ACTIONS(715), + [anon_sym_byte] = ACTIONS(715), + [anon_sym_short] = ACTIONS(715), + [anon_sym_int] = ACTIONS(715), + [anon_sym_long] = ACTIONS(715), + [anon_sym_char] = ACTIONS(715), + [anon_sym_float] = ACTIONS(715), + [anon_sym_double] = ACTIONS(715), + [sym_boolean_type] = ACTIONS(715), + [sym_void_type] = ACTIONS(715), + [sym_this] = ACTIONS(715), + [sym_super] = ACTIONS(715), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(645), - [sym_identifier] = ACTIONS(647), - [sym_decimal_integer_literal] = ACTIONS(647), - [sym_hex_integer_literal] = ACTIONS(647), - [sym_octal_integer_literal] = ACTIONS(645), - [sym_binary_integer_literal] = ACTIONS(645), - [sym_decimal_floating_point_literal] = ACTIONS(645), - [sym_hex_floating_point_literal] = ACTIONS(647), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_character_literal] = ACTIONS(645), - [sym_string_literal] = ACTIONS(647), - [sym_text_block] = ACTIONS(645), - [sym_null_literal] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(645), - [anon_sym_DASH_DASH] = ACTIONS(645), - [anon_sym_new] = ACTIONS(647), - [anon_sym_class] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(647), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_case] = ACTIONS(647), - [anon_sym_default] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_assert] = ACTIONS(647), - [anon_sym_do] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_break] = ACTIONS(647), - [anon_sym_continue] = ACTIONS(647), - [anon_sym_return] = ACTIONS(647), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_synchronized] = ACTIONS(647), - [anon_sym_throw] = ACTIONS(647), - [anon_sym_try] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_open] = ACTIONS(647), - [anon_sym_module] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_package] = ACTIONS(647), - [anon_sym_import] = ACTIONS(647), - [anon_sym_enum] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_final] = ACTIONS(647), - [anon_sym_strictfp] = ACTIONS(647), - [anon_sym_native] = ACTIONS(647), - [anon_sym_transient] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_non_DASHsealed] = ACTIONS(645), - [anon_sym_ATinterface] = ACTIONS(645), - [anon_sym_interface] = ACTIONS(647), - [anon_sym_byte] = ACTIONS(647), - [anon_sym_short] = ACTIONS(647), - [anon_sym_int] = ACTIONS(647), - [anon_sym_long] = ACTIONS(647), - [anon_sym_char] = ACTIONS(647), - [anon_sym_float] = ACTIONS(647), - [anon_sym_double] = ACTIONS(647), - [sym_boolean_type] = ACTIONS(647), - [sym_void_type] = ACTIONS(647), - [sym_this] = ACTIONS(647), - [sym_super] = ACTIONS(647), + [197] = { + [ts_builtin_sym_end] = ACTIONS(276), + [sym_identifier] = ACTIONS(278), + [sym_decimal_integer_literal] = ACTIONS(278), + [sym_hex_integer_literal] = ACTIONS(278), + [sym_octal_integer_literal] = ACTIONS(276), + [sym_binary_integer_literal] = ACTIONS(276), + [sym_decimal_floating_point_literal] = ACTIONS(276), + [sym_hex_floating_point_literal] = ACTIONS(278), + [sym_true] = ACTIONS(278), + [sym_false] = ACTIONS(278), + [sym_character_literal] = ACTIONS(276), + [sym_string_literal] = ACTIONS(278), + [sym_text_block] = ACTIONS(276), + [sym_null_literal] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_PLUS_PLUS] = ACTIONS(276), + [anon_sym_DASH_DASH] = ACTIONS(276), + [anon_sym_new] = ACTIONS(278), + [anon_sym_class] = ACTIONS(278), + [anon_sym_switch] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(276), + [anon_sym_RBRACE] = ACTIONS(276), + [anon_sym_case] = ACTIONS(278), + [anon_sym_default] = ACTIONS(278), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_assert] = ACTIONS(278), + [anon_sym_do] = ACTIONS(278), + [anon_sym_while] = ACTIONS(278), + [anon_sym_break] = ACTIONS(278), + [anon_sym_continue] = ACTIONS(278), + [anon_sym_return] = ACTIONS(278), + [anon_sym_yield] = ACTIONS(278), + [anon_sym_synchronized] = ACTIONS(278), + [anon_sym_throw] = ACTIONS(278), + [anon_sym_try] = ACTIONS(278), + [anon_sym_if] = ACTIONS(278), + [anon_sym_else] = ACTIONS(278), + [anon_sym_for] = ACTIONS(278), + [anon_sym_AT] = ACTIONS(278), + [anon_sym_open] = ACTIONS(278), + [anon_sym_module] = ACTIONS(278), + [anon_sym_static] = ACTIONS(278), + [anon_sym_package] = ACTIONS(278), + [anon_sym_import] = ACTIONS(278), + [anon_sym_enum] = ACTIONS(278), + [anon_sym_public] = ACTIONS(278), + [anon_sym_protected] = ACTIONS(278), + [anon_sym_private] = ACTIONS(278), + [anon_sym_abstract] = ACTIONS(278), + [anon_sym_final] = ACTIONS(278), + [anon_sym_strictfp] = ACTIONS(278), + [anon_sym_native] = ACTIONS(278), + [anon_sym_transient] = ACTIONS(278), + [anon_sym_volatile] = ACTIONS(278), + [anon_sym_sealed] = ACTIONS(278), + [anon_sym_non_DASHsealed] = ACTIONS(276), + [anon_sym_ATinterface] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(278), + [anon_sym_byte] = ACTIONS(278), + [anon_sym_short] = ACTIONS(278), + [anon_sym_int] = ACTIONS(278), + [anon_sym_long] = ACTIONS(278), + [anon_sym_char] = ACTIONS(278), + [anon_sym_float] = ACTIONS(278), + [anon_sym_double] = ACTIONS(278), + [sym_boolean_type] = ACTIONS(278), + [sym_void_type] = ACTIONS(278), + [sym_this] = ACTIONS(278), + [sym_super] = ACTIONS(278), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(651), - [sym_decimal_integer_literal] = ACTIONS(651), - [sym_hex_integer_literal] = ACTIONS(651), - [sym_octal_integer_literal] = ACTIONS(649), - [sym_binary_integer_literal] = ACTIONS(649), - [sym_decimal_floating_point_literal] = ACTIONS(649), - [sym_hex_floating_point_literal] = ACTIONS(651), - [sym_true] = ACTIONS(651), - [sym_false] = ACTIONS(651), - [sym_character_literal] = ACTIONS(649), - [sym_string_literal] = ACTIONS(651), - [sym_text_block] = ACTIONS(649), - [sym_null_literal] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_PLUS] = ACTIONS(651), - [anon_sym_DASH] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_new] = ACTIONS(651), - [anon_sym_class] = ACTIONS(651), - [anon_sym_switch] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(649), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(651), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_assert] = ACTIONS(651), - [anon_sym_do] = ACTIONS(651), - [anon_sym_while] = ACTIONS(651), - [anon_sym_break] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(651), - [anon_sym_return] = ACTIONS(651), - [anon_sym_yield] = ACTIONS(651), - [anon_sym_synchronized] = ACTIONS(651), - [anon_sym_throw] = ACTIONS(651), - [anon_sym_try] = ACTIONS(651), - [anon_sym_if] = ACTIONS(651), - [anon_sym_else] = ACTIONS(651), - [anon_sym_for] = ACTIONS(651), - [anon_sym_AT] = ACTIONS(651), - [anon_sym_open] = ACTIONS(651), - [anon_sym_module] = ACTIONS(651), - [anon_sym_static] = ACTIONS(651), - [anon_sym_package] = ACTIONS(651), - [anon_sym_import] = ACTIONS(651), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_public] = ACTIONS(651), - [anon_sym_protected] = ACTIONS(651), - [anon_sym_private] = ACTIONS(651), - [anon_sym_abstract] = ACTIONS(651), - [anon_sym_final] = ACTIONS(651), - [anon_sym_strictfp] = ACTIONS(651), - [anon_sym_native] = ACTIONS(651), - [anon_sym_transient] = ACTIONS(651), - [anon_sym_volatile] = ACTIONS(651), - [anon_sym_sealed] = ACTIONS(651), - [anon_sym_non_DASHsealed] = ACTIONS(649), - [anon_sym_ATinterface] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(651), - [anon_sym_byte] = ACTIONS(651), - [anon_sym_short] = ACTIONS(651), - [anon_sym_int] = ACTIONS(651), - [anon_sym_long] = ACTIONS(651), - [anon_sym_char] = ACTIONS(651), - [anon_sym_float] = ACTIONS(651), - [anon_sym_double] = ACTIONS(651), - [sym_boolean_type] = ACTIONS(651), - [sym_void_type] = ACTIONS(651), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(651), + [198] = { + [ts_builtin_sym_end] = ACTIONS(717), + [sym_identifier] = ACTIONS(719), + [sym_decimal_integer_literal] = ACTIONS(719), + [sym_hex_integer_literal] = ACTIONS(719), + [sym_octal_integer_literal] = ACTIONS(717), + [sym_binary_integer_literal] = ACTIONS(717), + [sym_decimal_floating_point_literal] = ACTIONS(717), + [sym_hex_floating_point_literal] = ACTIONS(719), + [sym_true] = ACTIONS(719), + [sym_false] = ACTIONS(719), + [sym_character_literal] = ACTIONS(717), + [sym_string_literal] = ACTIONS(719), + [sym_text_block] = ACTIONS(717), + [sym_null_literal] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_new] = ACTIONS(719), + [anon_sym_class] = ACTIONS(719), + [anon_sym_switch] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_case] = ACTIONS(719), + [anon_sym_default] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_assert] = ACTIONS(719), + [anon_sym_do] = ACTIONS(719), + [anon_sym_while] = ACTIONS(719), + [anon_sym_break] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(719), + [anon_sym_return] = ACTIONS(719), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_synchronized] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(719), + [anon_sym_try] = ACTIONS(719), + [anon_sym_if] = ACTIONS(719), + [anon_sym_else] = ACTIONS(719), + [anon_sym_for] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_open] = ACTIONS(719), + [anon_sym_module] = ACTIONS(719), + [anon_sym_static] = ACTIONS(719), + [anon_sym_package] = ACTIONS(719), + [anon_sym_import] = ACTIONS(719), + [anon_sym_enum] = ACTIONS(719), + [anon_sym_public] = ACTIONS(719), + [anon_sym_protected] = ACTIONS(719), + [anon_sym_private] = ACTIONS(719), + [anon_sym_abstract] = ACTIONS(719), + [anon_sym_final] = ACTIONS(719), + [anon_sym_strictfp] = ACTIONS(719), + [anon_sym_native] = ACTIONS(719), + [anon_sym_transient] = ACTIONS(719), + [anon_sym_volatile] = ACTIONS(719), + [anon_sym_sealed] = ACTIONS(719), + [anon_sym_non_DASHsealed] = ACTIONS(717), + [anon_sym_ATinterface] = ACTIONS(717), + [anon_sym_interface] = ACTIONS(719), + [anon_sym_byte] = ACTIONS(719), + [anon_sym_short] = ACTIONS(719), + [anon_sym_int] = ACTIONS(719), + [anon_sym_long] = ACTIONS(719), + [anon_sym_char] = ACTIONS(719), + [anon_sym_float] = ACTIONS(719), + [anon_sym_double] = ACTIONS(719), + [sym_boolean_type] = ACTIONS(719), + [sym_void_type] = ACTIONS(719), + [sym_this] = ACTIONS(719), + [sym_super] = ACTIONS(719), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(653), - [sym_identifier] = ACTIONS(655), - [sym_decimal_integer_literal] = ACTIONS(655), - [sym_hex_integer_literal] = ACTIONS(655), - [sym_octal_integer_literal] = ACTIONS(653), - [sym_binary_integer_literal] = ACTIONS(653), - [sym_decimal_floating_point_literal] = ACTIONS(653), - [sym_hex_floating_point_literal] = ACTIONS(655), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_character_literal] = ACTIONS(653), - [sym_string_literal] = ACTIONS(655), - [sym_text_block] = ACTIONS(653), - [sym_null_literal] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_new] = ACTIONS(655), - [anon_sym_class] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(653), - [anon_sym_case] = ACTIONS(655), - [anon_sym_default] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_assert] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_yield] = ACTIONS(655), - [anon_sym_synchronized] = ACTIONS(655), - [anon_sym_throw] = ACTIONS(655), - [anon_sym_try] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_open] = ACTIONS(655), - [anon_sym_module] = ACTIONS(655), - [anon_sym_static] = ACTIONS(655), - [anon_sym_package] = ACTIONS(655), - [anon_sym_import] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_public] = ACTIONS(655), - [anon_sym_protected] = ACTIONS(655), - [anon_sym_private] = ACTIONS(655), - [anon_sym_abstract] = ACTIONS(655), - [anon_sym_final] = ACTIONS(655), - [anon_sym_strictfp] = ACTIONS(655), - [anon_sym_native] = ACTIONS(655), - [anon_sym_transient] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym_sealed] = ACTIONS(655), - [anon_sym_non_DASHsealed] = ACTIONS(653), - [anon_sym_ATinterface] = ACTIONS(653), - [anon_sym_interface] = ACTIONS(655), - [anon_sym_byte] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [anon_sym_int] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_char] = ACTIONS(655), - [anon_sym_float] = ACTIONS(655), - [anon_sym_double] = ACTIONS(655), - [sym_boolean_type] = ACTIONS(655), - [sym_void_type] = ACTIONS(655), - [sym_this] = ACTIONS(655), - [sym_super] = ACTIONS(655), + [199] = { + [ts_builtin_sym_end] = ACTIONS(721), + [sym_identifier] = ACTIONS(723), + [sym_decimal_integer_literal] = ACTIONS(723), + [sym_hex_integer_literal] = ACTIONS(723), + [sym_octal_integer_literal] = ACTIONS(721), + [sym_binary_integer_literal] = ACTIONS(721), + [sym_decimal_floating_point_literal] = ACTIONS(721), + [sym_hex_floating_point_literal] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_character_literal] = ACTIONS(721), + [sym_string_literal] = ACTIONS(723), + [sym_text_block] = ACTIONS(721), + [sym_null_literal] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(721), + [anon_sym_DASH_DASH] = ACTIONS(721), + [anon_sym_new] = ACTIONS(723), + [anon_sym_class] = ACTIONS(723), + [anon_sym_switch] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_assert] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_synchronized] = ACTIONS(723), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_else] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_AT] = ACTIONS(723), + [anon_sym_open] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_static] = ACTIONS(723), + [anon_sym_package] = ACTIONS(723), + [anon_sym_import] = ACTIONS(723), + [anon_sym_enum] = ACTIONS(723), + [anon_sym_public] = ACTIONS(723), + [anon_sym_protected] = ACTIONS(723), + [anon_sym_private] = ACTIONS(723), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_final] = ACTIONS(723), + [anon_sym_strictfp] = ACTIONS(723), + [anon_sym_native] = ACTIONS(723), + [anon_sym_transient] = ACTIONS(723), + [anon_sym_volatile] = ACTIONS(723), + [anon_sym_sealed] = ACTIONS(723), + [anon_sym_non_DASHsealed] = ACTIONS(721), + [anon_sym_ATinterface] = ACTIONS(721), + [anon_sym_interface] = ACTIONS(723), + [anon_sym_byte] = ACTIONS(723), + [anon_sym_short] = ACTIONS(723), + [anon_sym_int] = ACTIONS(723), + [anon_sym_long] = ACTIONS(723), + [anon_sym_char] = ACTIONS(723), + [anon_sym_float] = ACTIONS(723), + [anon_sym_double] = ACTIONS(723), + [sym_boolean_type] = ACTIONS(723), + [sym_void_type] = ACTIONS(723), + [sym_this] = ACTIONS(723), + [sym_super] = ACTIONS(723), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(657), - [sym_identifier] = ACTIONS(659), - [sym_decimal_integer_literal] = ACTIONS(659), - [sym_hex_integer_literal] = ACTIONS(659), - [sym_octal_integer_literal] = ACTIONS(657), - [sym_binary_integer_literal] = ACTIONS(657), - [sym_decimal_floating_point_literal] = ACTIONS(657), - [sym_hex_floating_point_literal] = ACTIONS(659), - [sym_true] = ACTIONS(659), - [sym_false] = ACTIONS(659), - [sym_character_literal] = ACTIONS(657), - [sym_string_literal] = ACTIONS(659), - [sym_text_block] = ACTIONS(657), - [sym_null_literal] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_PLUS_PLUS] = ACTIONS(657), - [anon_sym_DASH_DASH] = ACTIONS(657), - [anon_sym_new] = ACTIONS(659), - [anon_sym_class] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(657), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(659), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(659), - [anon_sym_do] = ACTIONS(659), - [anon_sym_while] = ACTIONS(659), - [anon_sym_break] = ACTIONS(659), - [anon_sym_continue] = ACTIONS(659), - [anon_sym_return] = ACTIONS(659), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_synchronized] = ACTIONS(659), - [anon_sym_throw] = ACTIONS(659), - [anon_sym_try] = ACTIONS(659), - [anon_sym_if] = ACTIONS(659), - [anon_sym_else] = ACTIONS(659), - [anon_sym_for] = ACTIONS(659), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_open] = ACTIONS(659), - [anon_sym_module] = ACTIONS(659), - [anon_sym_static] = ACTIONS(659), - [anon_sym_package] = ACTIONS(659), - [anon_sym_import] = ACTIONS(659), - [anon_sym_enum] = ACTIONS(659), - [anon_sym_public] = ACTIONS(659), - [anon_sym_protected] = ACTIONS(659), - [anon_sym_private] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(659), - [anon_sym_final] = ACTIONS(659), - [anon_sym_strictfp] = ACTIONS(659), - [anon_sym_native] = ACTIONS(659), - [anon_sym_transient] = ACTIONS(659), - [anon_sym_volatile] = ACTIONS(659), - [anon_sym_sealed] = ACTIONS(659), - [anon_sym_non_DASHsealed] = ACTIONS(657), - [anon_sym_ATinterface] = ACTIONS(657), - [anon_sym_interface] = ACTIONS(659), - [anon_sym_byte] = ACTIONS(659), - [anon_sym_short] = ACTIONS(659), - [anon_sym_int] = ACTIONS(659), - [anon_sym_long] = ACTIONS(659), - [anon_sym_char] = ACTIONS(659), - [anon_sym_float] = ACTIONS(659), - [anon_sym_double] = ACTIONS(659), - [sym_boolean_type] = ACTIONS(659), - [sym_void_type] = ACTIONS(659), - [sym_this] = ACTIONS(659), - [sym_super] = ACTIONS(659), + [200] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(594), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym_array_initializer] = STATE(1157), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [201] = { + [ts_builtin_sym_end] = ACTIONS(725), + [sym_identifier] = ACTIONS(727), + [sym_decimal_integer_literal] = ACTIONS(727), + [sym_hex_integer_literal] = ACTIONS(727), + [sym_octal_integer_literal] = ACTIONS(725), + [sym_binary_integer_literal] = ACTIONS(725), + [sym_decimal_floating_point_literal] = ACTIONS(725), + [sym_hex_floating_point_literal] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_character_literal] = ACTIONS(725), + [sym_string_literal] = ACTIONS(727), + [sym_text_block] = ACTIONS(725), + [sym_null_literal] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_new] = ACTIONS(727), + [anon_sym_class] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_case] = ACTIONS(727), + [anon_sym_default] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_assert] = ACTIONS(727), + [anon_sym_do] = ACTIONS(727), + [anon_sym_while] = ACTIONS(727), + [anon_sym_break] = ACTIONS(727), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_return] = ACTIONS(727), + [anon_sym_yield] = ACTIONS(727), + [anon_sym_synchronized] = ACTIONS(727), + [anon_sym_throw] = ACTIONS(727), + [anon_sym_try] = ACTIONS(727), + [anon_sym_if] = ACTIONS(727), + [anon_sym_else] = ACTIONS(727), + [anon_sym_for] = ACTIONS(727), + [anon_sym_AT] = ACTIONS(727), + [anon_sym_open] = ACTIONS(727), + [anon_sym_module] = ACTIONS(727), + [anon_sym_static] = ACTIONS(727), + [anon_sym_package] = ACTIONS(727), + [anon_sym_import] = ACTIONS(727), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_public] = ACTIONS(727), + [anon_sym_protected] = ACTIONS(727), + [anon_sym_private] = ACTIONS(727), + [anon_sym_abstract] = ACTIONS(727), + [anon_sym_final] = ACTIONS(727), + [anon_sym_strictfp] = ACTIONS(727), + [anon_sym_native] = ACTIONS(727), + [anon_sym_transient] = ACTIONS(727), + [anon_sym_volatile] = ACTIONS(727), + [anon_sym_sealed] = ACTIONS(727), + [anon_sym_non_DASHsealed] = ACTIONS(725), + [anon_sym_ATinterface] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(727), + [anon_sym_byte] = ACTIONS(727), + [anon_sym_short] = ACTIONS(727), + [anon_sym_int] = ACTIONS(727), + [anon_sym_long] = ACTIONS(727), + [anon_sym_char] = ACTIONS(727), + [anon_sym_float] = ACTIONS(727), + [anon_sym_double] = ACTIONS(727), + [sym_boolean_type] = ACTIONS(727), + [sym_void_type] = ACTIONS(727), + [sym_this] = ACTIONS(727), + [sym_super] = ACTIONS(727), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [ts_builtin_sym_end] = ACTIONS(661), - [sym_identifier] = ACTIONS(663), - [sym_decimal_integer_literal] = ACTIONS(663), - [sym_hex_integer_literal] = ACTIONS(663), - [sym_octal_integer_literal] = ACTIONS(661), - [sym_binary_integer_literal] = ACTIONS(661), - [sym_decimal_floating_point_literal] = ACTIONS(661), - [sym_hex_floating_point_literal] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_character_literal] = ACTIONS(661), - [sym_string_literal] = ACTIONS(663), - [sym_text_block] = ACTIONS(661), - [sym_null_literal] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_new] = ACTIONS(663), - [anon_sym_class] = ACTIONS(663), - [anon_sym_switch] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_RBRACE] = ACTIONS(661), - [anon_sym_case] = ACTIONS(663), - [anon_sym_default] = ACTIONS(663), - [anon_sym_SEMI] = ACTIONS(661), - [anon_sym_assert] = ACTIONS(663), - [anon_sym_do] = ACTIONS(663), - [anon_sym_while] = ACTIONS(663), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(663), - [anon_sym_return] = ACTIONS(663), - [anon_sym_yield] = ACTIONS(663), - [anon_sym_synchronized] = ACTIONS(663), - [anon_sym_throw] = ACTIONS(663), - [anon_sym_try] = ACTIONS(663), - [anon_sym_if] = ACTIONS(663), - [anon_sym_else] = ACTIONS(663), - [anon_sym_for] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_open] = ACTIONS(663), - [anon_sym_module] = ACTIONS(663), - [anon_sym_static] = ACTIONS(663), - [anon_sym_package] = ACTIONS(663), - [anon_sym_import] = ACTIONS(663), - [anon_sym_enum] = ACTIONS(663), - [anon_sym_public] = ACTIONS(663), - [anon_sym_protected] = ACTIONS(663), - [anon_sym_private] = ACTIONS(663), - [anon_sym_abstract] = ACTIONS(663), - [anon_sym_final] = ACTIONS(663), - [anon_sym_strictfp] = ACTIONS(663), - [anon_sym_native] = ACTIONS(663), - [anon_sym_transient] = ACTIONS(663), - [anon_sym_volatile] = ACTIONS(663), - [anon_sym_sealed] = ACTIONS(663), - [anon_sym_non_DASHsealed] = ACTIONS(661), - [anon_sym_ATinterface] = ACTIONS(661), - [anon_sym_interface] = ACTIONS(663), - [anon_sym_byte] = ACTIONS(663), - [anon_sym_short] = ACTIONS(663), - [anon_sym_int] = ACTIONS(663), - [anon_sym_long] = ACTIONS(663), - [anon_sym_char] = ACTIONS(663), - [anon_sym_float] = ACTIONS(663), - [anon_sym_double] = ACTIONS(663), - [sym_boolean_type] = ACTIONS(663), - [sym_void_type] = ACTIONS(663), - [sym_this] = ACTIONS(663), - [sym_super] = ACTIONS(663), + [202] = { + [ts_builtin_sym_end] = ACTIONS(729), + [sym_identifier] = ACTIONS(731), + [sym_decimal_integer_literal] = ACTIONS(731), + [sym_hex_integer_literal] = ACTIONS(731), + [sym_octal_integer_literal] = ACTIONS(729), + [sym_binary_integer_literal] = ACTIONS(729), + [sym_decimal_floating_point_literal] = ACTIONS(729), + [sym_hex_floating_point_literal] = ACTIONS(731), + [sym_true] = ACTIONS(731), + [sym_false] = ACTIONS(731), + [sym_character_literal] = ACTIONS(729), + [sym_string_literal] = ACTIONS(731), + [sym_text_block] = ACTIONS(729), + [sym_null_literal] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(731), + [anon_sym_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_new] = ACTIONS(731), + [anon_sym_class] = ACTIONS(731), + [anon_sym_switch] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_case] = ACTIONS(731), + [anon_sym_default] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_assert] = ACTIONS(731), + [anon_sym_do] = ACTIONS(731), + [anon_sym_while] = ACTIONS(731), + [anon_sym_break] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(731), + [anon_sym_return] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(731), + [anon_sym_synchronized] = ACTIONS(731), + [anon_sym_throw] = ACTIONS(731), + [anon_sym_try] = ACTIONS(731), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(731), + [anon_sym_for] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(731), + [anon_sym_open] = ACTIONS(731), + [anon_sym_module] = ACTIONS(731), + [anon_sym_static] = ACTIONS(731), + [anon_sym_package] = ACTIONS(731), + [anon_sym_import] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(731), + [anon_sym_public] = ACTIONS(731), + [anon_sym_protected] = ACTIONS(731), + [anon_sym_private] = ACTIONS(731), + [anon_sym_abstract] = ACTIONS(731), + [anon_sym_final] = ACTIONS(731), + [anon_sym_strictfp] = ACTIONS(731), + [anon_sym_native] = ACTIONS(731), + [anon_sym_transient] = ACTIONS(731), + [anon_sym_volatile] = ACTIONS(731), + [anon_sym_sealed] = ACTIONS(731), + [anon_sym_non_DASHsealed] = ACTIONS(729), + [anon_sym_ATinterface] = ACTIONS(729), + [anon_sym_interface] = ACTIONS(731), + [anon_sym_byte] = ACTIONS(731), + [anon_sym_short] = ACTIONS(731), + [anon_sym_int] = ACTIONS(731), + [anon_sym_long] = ACTIONS(731), + [anon_sym_char] = ACTIONS(731), + [anon_sym_float] = ACTIONS(731), + [anon_sym_double] = ACTIONS(731), + [sym_boolean_type] = ACTIONS(731), + [sym_void_type] = ACTIONS(731), + [sym_this] = ACTIONS(731), + [sym_super] = ACTIONS(731), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(665), - [sym_identifier] = ACTIONS(667), - [sym_decimal_integer_literal] = ACTIONS(667), - [sym_hex_integer_literal] = ACTIONS(667), - [sym_octal_integer_literal] = ACTIONS(665), - [sym_binary_integer_literal] = ACTIONS(665), - [sym_decimal_floating_point_literal] = ACTIONS(665), - [sym_hex_floating_point_literal] = ACTIONS(667), - [sym_true] = ACTIONS(667), - [sym_false] = ACTIONS(667), - [sym_character_literal] = ACTIONS(665), - [sym_string_literal] = ACTIONS(667), - [sym_text_block] = ACTIONS(665), - [sym_null_literal] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(665), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_new] = ACTIONS(667), - [anon_sym_class] = ACTIONS(667), - [anon_sym_switch] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(665), - [anon_sym_case] = ACTIONS(667), - [anon_sym_default] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(667), - [anon_sym_do] = ACTIONS(667), - [anon_sym_while] = ACTIONS(667), - [anon_sym_break] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_return] = ACTIONS(667), - [anon_sym_yield] = ACTIONS(667), - [anon_sym_synchronized] = ACTIONS(667), - [anon_sym_throw] = ACTIONS(667), - [anon_sym_try] = ACTIONS(667), - [anon_sym_if] = ACTIONS(667), - [anon_sym_else] = ACTIONS(667), - [anon_sym_for] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_open] = ACTIONS(667), - [anon_sym_module] = ACTIONS(667), - [anon_sym_static] = ACTIONS(667), - [anon_sym_package] = ACTIONS(667), - [anon_sym_import] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(667), - [anon_sym_public] = ACTIONS(667), - [anon_sym_protected] = ACTIONS(667), - [anon_sym_private] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(667), - [anon_sym_final] = ACTIONS(667), - [anon_sym_strictfp] = ACTIONS(667), - [anon_sym_native] = ACTIONS(667), - [anon_sym_transient] = ACTIONS(667), - [anon_sym_volatile] = ACTIONS(667), - [anon_sym_sealed] = ACTIONS(667), - [anon_sym_non_DASHsealed] = ACTIONS(665), - [anon_sym_ATinterface] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_byte] = ACTIONS(667), - [anon_sym_short] = ACTIONS(667), - [anon_sym_int] = ACTIONS(667), - [anon_sym_long] = ACTIONS(667), - [anon_sym_char] = ACTIONS(667), - [anon_sym_float] = ACTIONS(667), - [anon_sym_double] = ACTIONS(667), - [sym_boolean_type] = ACTIONS(667), - [sym_void_type] = ACTIONS(667), - [sym_this] = ACTIONS(667), - [sym_super] = ACTIONS(667), + [203] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(735), + [sym_decimal_integer_literal] = ACTIONS(735), + [sym_hex_integer_literal] = ACTIONS(735), + [sym_octal_integer_literal] = ACTIONS(733), + [sym_binary_integer_literal] = ACTIONS(733), + [sym_decimal_floating_point_literal] = ACTIONS(733), + [sym_hex_floating_point_literal] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_character_literal] = ACTIONS(733), + [sym_string_literal] = ACTIONS(735), + [sym_text_block] = ACTIONS(733), + [sym_null_literal] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(733), + [anon_sym_DASH_DASH] = ACTIONS(733), + [anon_sym_new] = ACTIONS(735), + [anon_sym_class] = ACTIONS(735), + [anon_sym_switch] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_case] = ACTIONS(735), + [anon_sym_default] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(735), + [anon_sym_do] = ACTIONS(735), + [anon_sym_while] = ACTIONS(735), + [anon_sym_break] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(735), + [anon_sym_return] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(735), + [anon_sym_synchronized] = ACTIONS(735), + [anon_sym_throw] = ACTIONS(735), + [anon_sym_try] = ACTIONS(735), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(735), + [anon_sym_for] = ACTIONS(735), + [anon_sym_AT] = ACTIONS(735), + [anon_sym_open] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_static] = ACTIONS(735), + [anon_sym_package] = ACTIONS(735), + [anon_sym_import] = ACTIONS(735), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_abstract] = ACTIONS(735), + [anon_sym_final] = ACTIONS(735), + [anon_sym_strictfp] = ACTIONS(735), + [anon_sym_native] = ACTIONS(735), + [anon_sym_transient] = ACTIONS(735), + [anon_sym_volatile] = ACTIONS(735), + [anon_sym_sealed] = ACTIONS(735), + [anon_sym_non_DASHsealed] = ACTIONS(733), + [anon_sym_ATinterface] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(735), + [anon_sym_byte] = ACTIONS(735), + [anon_sym_short] = ACTIONS(735), + [anon_sym_int] = ACTIONS(735), + [anon_sym_long] = ACTIONS(735), + [anon_sym_char] = ACTIONS(735), + [anon_sym_float] = ACTIONS(735), + [anon_sym_double] = ACTIONS(735), + [sym_boolean_type] = ACTIONS(735), + [sym_void_type] = ACTIONS(735), + [sym_this] = ACTIONS(735), + [sym_super] = ACTIONS(735), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(669), - [sym_identifier] = ACTIONS(671), - [sym_decimal_integer_literal] = ACTIONS(671), - [sym_hex_integer_literal] = ACTIONS(671), - [sym_octal_integer_literal] = ACTIONS(669), - [sym_binary_integer_literal] = ACTIONS(669), - [sym_decimal_floating_point_literal] = ACTIONS(669), - [sym_hex_floating_point_literal] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [sym_character_literal] = ACTIONS(669), - [sym_string_literal] = ACTIONS(671), - [sym_text_block] = ACTIONS(669), - [sym_null_literal] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(669), - [anon_sym_PLUS_PLUS] = ACTIONS(669), - [anon_sym_DASH_DASH] = ACTIONS(669), - [anon_sym_new] = ACTIONS(671), - [anon_sym_class] = ACTIONS(671), - [anon_sym_switch] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(669), - [anon_sym_case] = ACTIONS(671), - [anon_sym_default] = ACTIONS(671), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_assert] = ACTIONS(671), - [anon_sym_do] = ACTIONS(671), - [anon_sym_while] = ACTIONS(671), - [anon_sym_break] = ACTIONS(671), - [anon_sym_continue] = ACTIONS(671), - [anon_sym_return] = ACTIONS(671), - [anon_sym_yield] = ACTIONS(671), - [anon_sym_synchronized] = ACTIONS(671), - [anon_sym_throw] = ACTIONS(671), - [anon_sym_try] = ACTIONS(671), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(671), - [anon_sym_for] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_open] = ACTIONS(671), - [anon_sym_module] = ACTIONS(671), - [anon_sym_static] = ACTIONS(671), - [anon_sym_package] = ACTIONS(671), - [anon_sym_import] = ACTIONS(671), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_public] = ACTIONS(671), - [anon_sym_protected] = ACTIONS(671), - [anon_sym_private] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(671), - [anon_sym_final] = ACTIONS(671), - [anon_sym_strictfp] = ACTIONS(671), - [anon_sym_native] = ACTIONS(671), - [anon_sym_transient] = ACTIONS(671), - [anon_sym_volatile] = ACTIONS(671), - [anon_sym_sealed] = ACTIONS(671), - [anon_sym_non_DASHsealed] = ACTIONS(669), - [anon_sym_ATinterface] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(671), - [anon_sym_byte] = ACTIONS(671), - [anon_sym_short] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_long] = ACTIONS(671), - [anon_sym_char] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [sym_boolean_type] = ACTIONS(671), - [sym_void_type] = ACTIONS(671), - [sym_this] = ACTIONS(671), - [sym_super] = ACTIONS(671), + [204] = { + [ts_builtin_sym_end] = ACTIONS(737), + [sym_identifier] = ACTIONS(739), + [sym_decimal_integer_literal] = ACTIONS(739), + [sym_hex_integer_literal] = ACTIONS(739), + [sym_octal_integer_literal] = ACTIONS(737), + [sym_binary_integer_literal] = ACTIONS(737), + [sym_decimal_floating_point_literal] = ACTIONS(737), + [sym_hex_floating_point_literal] = ACTIONS(739), + [sym_true] = ACTIONS(739), + [sym_false] = ACTIONS(739), + [sym_character_literal] = ACTIONS(737), + [sym_string_literal] = ACTIONS(739), + [sym_text_block] = ACTIONS(737), + [sym_null_literal] = ACTIONS(739), + [anon_sym_LPAREN] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_TILDE] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_new] = ACTIONS(739), + [anon_sym_class] = ACTIONS(739), + [anon_sym_switch] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_assert] = ACTIONS(739), + [anon_sym_do] = ACTIONS(739), + [anon_sym_while] = ACTIONS(739), + [anon_sym_break] = ACTIONS(739), + [anon_sym_continue] = ACTIONS(739), + [anon_sym_return] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(739), + [anon_sym_synchronized] = ACTIONS(739), + [anon_sym_throw] = ACTIONS(739), + [anon_sym_try] = ACTIONS(739), + [anon_sym_if] = ACTIONS(739), + [anon_sym_else] = ACTIONS(739), + [anon_sym_for] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(739), + [anon_sym_open] = ACTIONS(739), + [anon_sym_module] = ACTIONS(739), + [anon_sym_static] = ACTIONS(739), + [anon_sym_package] = ACTIONS(739), + [anon_sym_import] = ACTIONS(739), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_public] = ACTIONS(739), + [anon_sym_protected] = ACTIONS(739), + [anon_sym_private] = ACTIONS(739), + [anon_sym_abstract] = ACTIONS(739), + [anon_sym_final] = ACTIONS(739), + [anon_sym_strictfp] = ACTIONS(739), + [anon_sym_native] = ACTIONS(739), + [anon_sym_transient] = ACTIONS(739), + [anon_sym_volatile] = ACTIONS(739), + [anon_sym_sealed] = ACTIONS(739), + [anon_sym_non_DASHsealed] = ACTIONS(737), + [anon_sym_ATinterface] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(739), + [anon_sym_byte] = ACTIONS(739), + [anon_sym_short] = ACTIONS(739), + [anon_sym_int] = ACTIONS(739), + [anon_sym_long] = ACTIONS(739), + [anon_sym_char] = ACTIONS(739), + [anon_sym_float] = ACTIONS(739), + [anon_sym_double] = ACTIONS(739), + [sym_boolean_type] = ACTIONS(739), + [sym_void_type] = ACTIONS(739), + [sym_this] = ACTIONS(739), + [sym_super] = ACTIONS(739), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(673), - [sym_identifier] = ACTIONS(675), - [sym_decimal_integer_literal] = ACTIONS(675), - [sym_hex_integer_literal] = ACTIONS(675), - [sym_octal_integer_literal] = ACTIONS(673), - [sym_binary_integer_literal] = ACTIONS(673), - [sym_decimal_floating_point_literal] = ACTIONS(673), - [sym_hex_floating_point_literal] = ACTIONS(675), - [sym_true] = ACTIONS(675), - [sym_false] = ACTIONS(675), - [sym_character_literal] = ACTIONS(673), - [sym_string_literal] = ACTIONS(675), - [sym_text_block] = ACTIONS(673), - [sym_null_literal] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS_PLUS] = ACTIONS(673), - [anon_sym_DASH_DASH] = ACTIONS(673), - [anon_sym_new] = ACTIONS(675), - [anon_sym_class] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(673), - [anon_sym_RBRACE] = ACTIONS(673), - [anon_sym_case] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_do] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(675), - [anon_sym_synchronized] = ACTIONS(675), - [anon_sym_throw] = ACTIONS(675), - [anon_sym_try] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_else] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_open] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_package] = ACTIONS(675), - [anon_sym_import] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_abstract] = ACTIONS(675), - [anon_sym_final] = ACTIONS(675), - [anon_sym_strictfp] = ACTIONS(675), - [anon_sym_native] = ACTIONS(675), - [anon_sym_transient] = ACTIONS(675), - [anon_sym_volatile] = ACTIONS(675), - [anon_sym_sealed] = ACTIONS(675), - [anon_sym_non_DASHsealed] = ACTIONS(673), - [anon_sym_ATinterface] = ACTIONS(673), - [anon_sym_interface] = ACTIONS(675), - [anon_sym_byte] = ACTIONS(675), - [anon_sym_short] = ACTIONS(675), - [anon_sym_int] = ACTIONS(675), - [anon_sym_long] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_float] = ACTIONS(675), - [anon_sym_double] = ACTIONS(675), - [sym_boolean_type] = ACTIONS(675), - [sym_void_type] = ACTIONS(675), - [sym_this] = ACTIONS(675), - [sym_super] = ACTIONS(675), + [205] = { + [ts_builtin_sym_end] = ACTIONS(741), + [sym_identifier] = ACTIONS(743), + [sym_decimal_integer_literal] = ACTIONS(743), + [sym_hex_integer_literal] = ACTIONS(743), + [sym_octal_integer_literal] = ACTIONS(741), + [sym_binary_integer_literal] = ACTIONS(741), + [sym_decimal_floating_point_literal] = ACTIONS(741), + [sym_hex_floating_point_literal] = ACTIONS(743), + [sym_true] = ACTIONS(743), + [sym_false] = ACTIONS(743), + [sym_character_literal] = ACTIONS(741), + [sym_string_literal] = ACTIONS(743), + [sym_text_block] = ACTIONS(741), + [sym_null_literal] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_TILDE] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_new] = ACTIONS(743), + [anon_sym_class] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_default] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_assert] = ACTIONS(743), + [anon_sym_do] = ACTIONS(743), + [anon_sym_while] = ACTIONS(743), + [anon_sym_break] = ACTIONS(743), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_return] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(743), + [anon_sym_synchronized] = ACTIONS(743), + [anon_sym_throw] = ACTIONS(743), + [anon_sym_try] = ACTIONS(743), + [anon_sym_if] = ACTIONS(743), + [anon_sym_else] = ACTIONS(743), + [anon_sym_for] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_open] = ACTIONS(743), + [anon_sym_module] = ACTIONS(743), + [anon_sym_static] = ACTIONS(743), + [anon_sym_package] = ACTIONS(743), + [anon_sym_import] = ACTIONS(743), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_public] = ACTIONS(743), + [anon_sym_protected] = ACTIONS(743), + [anon_sym_private] = ACTIONS(743), + [anon_sym_abstract] = ACTIONS(743), + [anon_sym_final] = ACTIONS(743), + [anon_sym_strictfp] = ACTIONS(743), + [anon_sym_native] = ACTIONS(743), + [anon_sym_transient] = ACTIONS(743), + [anon_sym_volatile] = ACTIONS(743), + [anon_sym_sealed] = ACTIONS(743), + [anon_sym_non_DASHsealed] = ACTIONS(741), + [anon_sym_ATinterface] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(743), + [anon_sym_byte] = ACTIONS(743), + [anon_sym_short] = ACTIONS(743), + [anon_sym_int] = ACTIONS(743), + [anon_sym_long] = ACTIONS(743), + [anon_sym_char] = ACTIONS(743), + [anon_sym_float] = ACTIONS(743), + [anon_sym_double] = ACTIONS(743), + [sym_boolean_type] = ACTIONS(743), + [sym_void_type] = ACTIONS(743), + [sym_this] = ACTIONS(743), + [sym_super] = ACTIONS(743), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(677), - [sym_identifier] = ACTIONS(679), - [sym_decimal_integer_literal] = ACTIONS(679), - [sym_hex_integer_literal] = ACTIONS(679), - [sym_octal_integer_literal] = ACTIONS(677), - [sym_binary_integer_literal] = ACTIONS(677), - [sym_decimal_floating_point_literal] = ACTIONS(677), - [sym_hex_floating_point_literal] = ACTIONS(679), - [sym_true] = ACTIONS(679), - [sym_false] = ACTIONS(679), - [sym_character_literal] = ACTIONS(677), - [sym_string_literal] = ACTIONS(679), - [sym_text_block] = ACTIONS(677), - [sym_null_literal] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_PLUS] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_TILDE] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_new] = ACTIONS(679), - [anon_sym_class] = ACTIONS(679), - [anon_sym_switch] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_default] = ACTIONS(679), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_assert] = ACTIONS(679), - [anon_sym_do] = ACTIONS(679), - [anon_sym_while] = ACTIONS(679), - [anon_sym_break] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_return] = ACTIONS(679), - [anon_sym_yield] = ACTIONS(679), - [anon_sym_synchronized] = ACTIONS(679), - [anon_sym_throw] = ACTIONS(679), - [anon_sym_try] = ACTIONS(679), - [anon_sym_if] = ACTIONS(679), - [anon_sym_else] = ACTIONS(679), - [anon_sym_for] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(679), - [anon_sym_open] = ACTIONS(679), - [anon_sym_module] = ACTIONS(679), - [anon_sym_static] = ACTIONS(679), - [anon_sym_package] = ACTIONS(679), - [anon_sym_import] = ACTIONS(679), - [anon_sym_enum] = ACTIONS(679), - [anon_sym_public] = ACTIONS(679), - [anon_sym_protected] = ACTIONS(679), - [anon_sym_private] = ACTIONS(679), - [anon_sym_abstract] = ACTIONS(679), - [anon_sym_final] = ACTIONS(679), - [anon_sym_strictfp] = ACTIONS(679), - [anon_sym_native] = ACTIONS(679), - [anon_sym_transient] = ACTIONS(679), - [anon_sym_volatile] = ACTIONS(679), - [anon_sym_sealed] = ACTIONS(679), - [anon_sym_non_DASHsealed] = ACTIONS(677), - [anon_sym_ATinterface] = ACTIONS(677), - [anon_sym_interface] = ACTIONS(679), - [anon_sym_byte] = ACTIONS(679), - [anon_sym_short] = ACTIONS(679), - [anon_sym_int] = ACTIONS(679), - [anon_sym_long] = ACTIONS(679), - [anon_sym_char] = ACTIONS(679), - [anon_sym_float] = ACTIONS(679), - [anon_sym_double] = ACTIONS(679), - [sym_boolean_type] = ACTIONS(679), - [sym_void_type] = ACTIONS(679), - [sym_this] = ACTIONS(679), - [sym_super] = ACTIONS(679), + [206] = { + [ts_builtin_sym_end] = ACTIONS(745), + [sym_identifier] = ACTIONS(747), + [sym_decimal_integer_literal] = ACTIONS(747), + [sym_hex_integer_literal] = ACTIONS(747), + [sym_octal_integer_literal] = ACTIONS(745), + [sym_binary_integer_literal] = ACTIONS(745), + [sym_decimal_floating_point_literal] = ACTIONS(745), + [sym_hex_floating_point_literal] = ACTIONS(747), + [sym_true] = ACTIONS(747), + [sym_false] = ACTIONS(747), + [sym_character_literal] = ACTIONS(745), + [sym_string_literal] = ACTIONS(747), + [sym_text_block] = ACTIONS(745), + [sym_null_literal] = ACTIONS(747), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_PLUS_PLUS] = ACTIONS(745), + [anon_sym_DASH_DASH] = ACTIONS(745), + [anon_sym_new] = ACTIONS(747), + [anon_sym_class] = ACTIONS(747), + [anon_sym_switch] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(745), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(745), + [anon_sym_assert] = ACTIONS(747), + [anon_sym_do] = ACTIONS(747), + [anon_sym_while] = ACTIONS(747), + [anon_sym_break] = ACTIONS(747), + [anon_sym_continue] = ACTIONS(747), + [anon_sym_return] = ACTIONS(747), + [anon_sym_yield] = ACTIONS(747), + [anon_sym_synchronized] = ACTIONS(747), + [anon_sym_throw] = ACTIONS(747), + [anon_sym_try] = ACTIONS(747), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(747), + [anon_sym_for] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_open] = ACTIONS(747), + [anon_sym_module] = ACTIONS(747), + [anon_sym_static] = ACTIONS(747), + [anon_sym_package] = ACTIONS(747), + [anon_sym_import] = ACTIONS(747), + [anon_sym_enum] = ACTIONS(747), + [anon_sym_public] = ACTIONS(747), + [anon_sym_protected] = ACTIONS(747), + [anon_sym_private] = ACTIONS(747), + [anon_sym_abstract] = ACTIONS(747), + [anon_sym_final] = ACTIONS(747), + [anon_sym_strictfp] = ACTIONS(747), + [anon_sym_native] = ACTIONS(747), + [anon_sym_transient] = ACTIONS(747), + [anon_sym_volatile] = ACTIONS(747), + [anon_sym_sealed] = ACTIONS(747), + [anon_sym_non_DASHsealed] = ACTIONS(745), + [anon_sym_ATinterface] = ACTIONS(745), + [anon_sym_interface] = ACTIONS(747), + [anon_sym_byte] = ACTIONS(747), + [anon_sym_short] = ACTIONS(747), + [anon_sym_int] = ACTIONS(747), + [anon_sym_long] = ACTIONS(747), + [anon_sym_char] = ACTIONS(747), + [anon_sym_float] = ACTIONS(747), + [anon_sym_double] = ACTIONS(747), + [sym_boolean_type] = ACTIONS(747), + [sym_void_type] = ACTIONS(747), + [sym_this] = ACTIONS(747), + [sym_super] = ACTIONS(747), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [207] = { + [ts_builtin_sym_end] = ACTIONS(749), + [sym_identifier] = ACTIONS(751), + [sym_decimal_integer_literal] = ACTIONS(751), + [sym_hex_integer_literal] = ACTIONS(751), + [sym_octal_integer_literal] = ACTIONS(749), + [sym_binary_integer_literal] = ACTIONS(749), + [sym_decimal_floating_point_literal] = ACTIONS(749), + [sym_hex_floating_point_literal] = ACTIONS(751), + [sym_true] = ACTIONS(751), + [sym_false] = ACTIONS(751), + [sym_character_literal] = ACTIONS(749), + [sym_string_literal] = ACTIONS(751), + [sym_text_block] = ACTIONS(749), + [sym_null_literal] = ACTIONS(751), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(749), + [anon_sym_TILDE] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_DASH_DASH] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_class] = ACTIONS(751), + [anon_sym_switch] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_case] = ACTIONS(751), + [anon_sym_default] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_do] = ACTIONS(751), + [anon_sym_while] = ACTIONS(751), + [anon_sym_break] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_return] = ACTIONS(751), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_synchronized] = ACTIONS(751), + [anon_sym_throw] = ACTIONS(751), + [anon_sym_try] = ACTIONS(751), + [anon_sym_if] = ACTIONS(751), + [anon_sym_else] = ACTIONS(751), + [anon_sym_for] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(751), + [anon_sym_open] = ACTIONS(751), + [anon_sym_module] = ACTIONS(751), + [anon_sym_static] = ACTIONS(751), + [anon_sym_package] = ACTIONS(751), + [anon_sym_import] = ACTIONS(751), + [anon_sym_enum] = ACTIONS(751), + [anon_sym_public] = ACTIONS(751), + [anon_sym_protected] = ACTIONS(751), + [anon_sym_private] = ACTIONS(751), + [anon_sym_abstract] = ACTIONS(751), + [anon_sym_final] = ACTIONS(751), + [anon_sym_strictfp] = ACTIONS(751), + [anon_sym_native] = ACTIONS(751), + [anon_sym_transient] = ACTIONS(751), + [anon_sym_volatile] = ACTIONS(751), + [anon_sym_sealed] = ACTIONS(751), + [anon_sym_non_DASHsealed] = ACTIONS(749), + [anon_sym_ATinterface] = ACTIONS(749), + [anon_sym_interface] = ACTIONS(751), + [anon_sym_byte] = ACTIONS(751), + [anon_sym_short] = ACTIONS(751), + [anon_sym_int] = ACTIONS(751), + [anon_sym_long] = ACTIONS(751), + [anon_sym_char] = ACTIONS(751), + [anon_sym_float] = ACTIONS(751), + [anon_sym_double] = ACTIONS(751), + [sym_boolean_type] = ACTIONS(751), + [sym_void_type] = ACTIONS(751), + [sym_this] = ACTIONS(751), + [sym_super] = ACTIONS(751), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(753), + [sym_identifier] = ACTIONS(755), + [sym_decimal_integer_literal] = ACTIONS(755), + [sym_hex_integer_literal] = ACTIONS(755), + [sym_octal_integer_literal] = ACTIONS(753), + [sym_binary_integer_literal] = ACTIONS(753), + [sym_decimal_floating_point_literal] = ACTIONS(753), + [sym_hex_floating_point_literal] = ACTIONS(755), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_character_literal] = ACTIONS(753), + [sym_string_literal] = ACTIONS(755), + [sym_text_block] = ACTIONS(753), + [sym_null_literal] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_DASH_DASH] = ACTIONS(753), + [anon_sym_new] = ACTIONS(755), + [anon_sym_class] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_case] = ACTIONS(755), + [anon_sym_default] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_assert] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_break] = ACTIONS(755), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_yield] = ACTIONS(755), + [anon_sym_synchronized] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(755), + [anon_sym_try] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_open] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_static] = ACTIONS(755), + [anon_sym_package] = ACTIONS(755), + [anon_sym_import] = ACTIONS(755), + [anon_sym_enum] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(755), + [anon_sym_final] = ACTIONS(755), + [anon_sym_strictfp] = ACTIONS(755), + [anon_sym_native] = ACTIONS(755), + [anon_sym_transient] = ACTIONS(755), + [anon_sym_volatile] = ACTIONS(755), + [anon_sym_sealed] = ACTIONS(755), + [anon_sym_non_DASHsealed] = ACTIONS(753), + [anon_sym_ATinterface] = ACTIONS(753), + [anon_sym_interface] = ACTIONS(755), + [anon_sym_byte] = ACTIONS(755), + [anon_sym_short] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_long] = ACTIONS(755), + [anon_sym_char] = ACTIONS(755), + [anon_sym_float] = ACTIONS(755), + [anon_sym_double] = ACTIONS(755), + [sym_boolean_type] = ACTIONS(755), + [sym_void_type] = ACTIONS(755), + [sym_this] = ACTIONS(755), + [sym_super] = ACTIONS(755), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [209] = { + [ts_builtin_sym_end] = ACTIONS(757), + [sym_identifier] = ACTIONS(759), + [sym_decimal_integer_literal] = ACTIONS(759), + [sym_hex_integer_literal] = ACTIONS(759), + [sym_octal_integer_literal] = ACTIONS(757), + [sym_binary_integer_literal] = ACTIONS(757), + [sym_decimal_floating_point_literal] = ACTIONS(757), + [sym_hex_floating_point_literal] = ACTIONS(759), + [sym_true] = ACTIONS(759), + [sym_false] = ACTIONS(759), + [sym_character_literal] = ACTIONS(757), + [sym_string_literal] = ACTIONS(759), + [sym_text_block] = ACTIONS(757), + [sym_null_literal] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(757), + [anon_sym_TILDE] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_new] = ACTIONS(759), + [anon_sym_class] = ACTIONS(759), + [anon_sym_switch] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_case] = ACTIONS(759), + [anon_sym_default] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_do] = ACTIONS(759), + [anon_sym_while] = ACTIONS(759), + [anon_sym_break] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(759), + [anon_sym_return] = ACTIONS(759), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_synchronized] = ACTIONS(759), + [anon_sym_throw] = ACTIONS(759), + [anon_sym_try] = ACTIONS(759), + [anon_sym_if] = ACTIONS(759), + [anon_sym_else] = ACTIONS(759), + [anon_sym_for] = ACTIONS(759), + [anon_sym_AT] = ACTIONS(759), + [anon_sym_open] = ACTIONS(759), + [anon_sym_module] = ACTIONS(759), + [anon_sym_static] = ACTIONS(759), + [anon_sym_package] = ACTIONS(759), + [anon_sym_import] = ACTIONS(759), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_public] = ACTIONS(759), + [anon_sym_protected] = ACTIONS(759), + [anon_sym_private] = ACTIONS(759), + [anon_sym_abstract] = ACTIONS(759), + [anon_sym_final] = ACTIONS(759), + [anon_sym_strictfp] = ACTIONS(759), + [anon_sym_native] = ACTIONS(759), + [anon_sym_transient] = ACTIONS(759), + [anon_sym_volatile] = ACTIONS(759), + [anon_sym_sealed] = ACTIONS(759), + [anon_sym_non_DASHsealed] = ACTIONS(757), + [anon_sym_ATinterface] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(759), + [anon_sym_byte] = ACTIONS(759), + [anon_sym_short] = ACTIONS(759), + [anon_sym_int] = ACTIONS(759), + [anon_sym_long] = ACTIONS(759), + [anon_sym_char] = ACTIONS(759), + [anon_sym_float] = ACTIONS(759), + [anon_sym_double] = ACTIONS(759), + [sym_boolean_type] = ACTIONS(759), + [sym_void_type] = ACTIONS(759), + [sym_this] = ACTIONS(759), + [sym_super] = ACTIONS(759), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [210] = { + [ts_builtin_sym_end] = ACTIONS(761), + [sym_identifier] = ACTIONS(763), + [sym_decimal_integer_literal] = ACTIONS(763), + [sym_hex_integer_literal] = ACTIONS(763), + [sym_octal_integer_literal] = ACTIONS(761), + [sym_binary_integer_literal] = ACTIONS(761), + [sym_decimal_floating_point_literal] = ACTIONS(761), + [sym_hex_floating_point_literal] = ACTIONS(763), + [sym_true] = ACTIONS(763), + [sym_false] = ACTIONS(763), + [sym_character_literal] = ACTIONS(761), + [sym_string_literal] = ACTIONS(763), + [sym_text_block] = ACTIONS(761), + [sym_null_literal] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_new] = ACTIONS(763), + [anon_sym_class] = ACTIONS(763), + [anon_sym_switch] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_case] = ACTIONS(763), + [anon_sym_default] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_assert] = ACTIONS(763), + [anon_sym_do] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [anon_sym_break] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(763), + [anon_sym_return] = ACTIONS(763), + [anon_sym_yield] = ACTIONS(763), + [anon_sym_synchronized] = ACTIONS(763), + [anon_sym_throw] = ACTIONS(763), + [anon_sym_try] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_else] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_AT] = ACTIONS(763), + [anon_sym_open] = ACTIONS(763), + [anon_sym_module] = ACTIONS(763), + [anon_sym_static] = ACTIONS(763), + [anon_sym_package] = ACTIONS(763), + [anon_sym_import] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_public] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_abstract] = ACTIONS(763), + [anon_sym_final] = ACTIONS(763), + [anon_sym_strictfp] = ACTIONS(763), + [anon_sym_native] = ACTIONS(763), + [anon_sym_transient] = ACTIONS(763), + [anon_sym_volatile] = ACTIONS(763), + [anon_sym_sealed] = ACTIONS(763), + [anon_sym_non_DASHsealed] = ACTIONS(761), + [anon_sym_ATinterface] = ACTIONS(761), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_byte] = ACTIONS(763), + [anon_sym_short] = ACTIONS(763), + [anon_sym_int] = ACTIONS(763), + [anon_sym_long] = ACTIONS(763), + [anon_sym_char] = ACTIONS(763), + [anon_sym_float] = ACTIONS(763), + [anon_sym_double] = ACTIONS(763), + [sym_boolean_type] = ACTIONS(763), + [sym_void_type] = ACTIONS(763), + [sym_this] = ACTIONS(763), + [sym_super] = ACTIONS(763), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [211] = { + [ts_builtin_sym_end] = ACTIONS(765), + [sym_identifier] = ACTIONS(767), + [sym_decimal_integer_literal] = ACTIONS(767), + [sym_hex_integer_literal] = ACTIONS(767), + [sym_octal_integer_literal] = ACTIONS(765), + [sym_binary_integer_literal] = ACTIONS(765), + [sym_decimal_floating_point_literal] = ACTIONS(765), + [sym_hex_floating_point_literal] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_character_literal] = ACTIONS(765), + [sym_string_literal] = ACTIONS(767), + [sym_text_block] = ACTIONS(765), + [sym_null_literal] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_new] = ACTIONS(767), + [anon_sym_class] = ACTIONS(767), + [anon_sym_switch] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_case] = ACTIONS(767), + [anon_sym_default] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_assert] = ACTIONS(767), + [anon_sym_do] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [anon_sym_break] = ACTIONS(767), + [anon_sym_continue] = ACTIONS(767), + [anon_sym_return] = ACTIONS(767), + [anon_sym_yield] = ACTIONS(767), + [anon_sym_synchronized] = ACTIONS(767), + [anon_sym_throw] = ACTIONS(767), + [anon_sym_try] = ACTIONS(767), + [anon_sym_if] = ACTIONS(767), + [anon_sym_else] = ACTIONS(767), + [anon_sym_for] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(767), + [anon_sym_open] = ACTIONS(767), + [anon_sym_module] = ACTIONS(767), + [anon_sym_static] = ACTIONS(767), + [anon_sym_package] = ACTIONS(767), + [anon_sym_import] = ACTIONS(767), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_public] = ACTIONS(767), + [anon_sym_protected] = ACTIONS(767), + [anon_sym_private] = ACTIONS(767), + [anon_sym_abstract] = ACTIONS(767), + [anon_sym_final] = ACTIONS(767), + [anon_sym_strictfp] = ACTIONS(767), + [anon_sym_native] = ACTIONS(767), + [anon_sym_transient] = ACTIONS(767), + [anon_sym_volatile] = ACTIONS(767), + [anon_sym_sealed] = ACTIONS(767), + [anon_sym_non_DASHsealed] = ACTIONS(765), + [anon_sym_ATinterface] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(767), + [anon_sym_byte] = ACTIONS(767), + [anon_sym_short] = ACTIONS(767), + [anon_sym_int] = ACTIONS(767), + [anon_sym_long] = ACTIONS(767), + [anon_sym_char] = ACTIONS(767), + [anon_sym_float] = ACTIONS(767), + [anon_sym_double] = ACTIONS(767), + [sym_boolean_type] = ACTIONS(767), + [sym_void_type] = ACTIONS(767), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [212] = { + [ts_builtin_sym_end] = ACTIONS(769), + [sym_identifier] = ACTIONS(771), + [sym_decimal_integer_literal] = ACTIONS(771), + [sym_hex_integer_literal] = ACTIONS(771), + [sym_octal_integer_literal] = ACTIONS(769), + [sym_binary_integer_literal] = ACTIONS(769), + [sym_decimal_floating_point_literal] = ACTIONS(769), + [sym_hex_floating_point_literal] = ACTIONS(771), + [sym_true] = ACTIONS(771), + [sym_false] = ACTIONS(771), + [sym_character_literal] = ACTIONS(769), + [sym_string_literal] = ACTIONS(771), + [sym_text_block] = ACTIONS(769), + [sym_null_literal] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_new] = ACTIONS(771), + [anon_sym_class] = ACTIONS(771), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_case] = ACTIONS(771), + [anon_sym_default] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_assert] = ACTIONS(771), + [anon_sym_do] = ACTIONS(771), + [anon_sym_while] = ACTIONS(771), + [anon_sym_break] = ACTIONS(771), + [anon_sym_continue] = ACTIONS(771), + [anon_sym_return] = ACTIONS(771), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_synchronized] = ACTIONS(771), + [anon_sym_throw] = ACTIONS(771), + [anon_sym_try] = ACTIONS(771), + [anon_sym_if] = ACTIONS(771), + [anon_sym_else] = ACTIONS(771), + [anon_sym_for] = ACTIONS(771), + [anon_sym_AT] = ACTIONS(771), + [anon_sym_open] = ACTIONS(771), + [anon_sym_module] = ACTIONS(771), + [anon_sym_static] = ACTIONS(771), + [anon_sym_package] = ACTIONS(771), + [anon_sym_import] = ACTIONS(771), + [anon_sym_enum] = ACTIONS(771), + [anon_sym_public] = ACTIONS(771), + [anon_sym_protected] = ACTIONS(771), + [anon_sym_private] = ACTIONS(771), + [anon_sym_abstract] = ACTIONS(771), + [anon_sym_final] = ACTIONS(771), + [anon_sym_strictfp] = ACTIONS(771), + [anon_sym_native] = ACTIONS(771), + [anon_sym_transient] = ACTIONS(771), + [anon_sym_volatile] = ACTIONS(771), + [anon_sym_sealed] = ACTIONS(771), + [anon_sym_non_DASHsealed] = ACTIONS(769), + [anon_sym_ATinterface] = ACTIONS(769), + [anon_sym_interface] = ACTIONS(771), + [anon_sym_byte] = ACTIONS(771), + [anon_sym_short] = ACTIONS(771), + [anon_sym_int] = ACTIONS(771), + [anon_sym_long] = ACTIONS(771), + [anon_sym_char] = ACTIONS(771), + [anon_sym_float] = ACTIONS(771), + [anon_sym_double] = ACTIONS(771), + [sym_boolean_type] = ACTIONS(771), + [sym_void_type] = ACTIONS(771), + [sym_this] = ACTIONS(771), + [sym_super] = ACTIONS(771), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [213] = { + [ts_builtin_sym_end] = ACTIONS(773), + [sym_identifier] = ACTIONS(775), + [sym_decimal_integer_literal] = ACTIONS(775), + [sym_hex_integer_literal] = ACTIONS(775), + [sym_octal_integer_literal] = ACTIONS(773), + [sym_binary_integer_literal] = ACTIONS(773), + [sym_decimal_floating_point_literal] = ACTIONS(773), + [sym_hex_floating_point_literal] = ACTIONS(775), + [sym_true] = ACTIONS(775), + [sym_false] = ACTIONS(775), + [sym_character_literal] = ACTIONS(773), + [sym_string_literal] = ACTIONS(775), + [sym_text_block] = ACTIONS(773), + [sym_null_literal] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [anon_sym_new] = ACTIONS(775), + [anon_sym_class] = ACTIONS(775), + [anon_sym_switch] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_case] = ACTIONS(775), + [anon_sym_default] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_assert] = ACTIONS(775), + [anon_sym_do] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_return] = ACTIONS(775), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_synchronized] = ACTIONS(775), + [anon_sym_throw] = ACTIONS(775), + [anon_sym_try] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_else] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_open] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_static] = ACTIONS(775), + [anon_sym_package] = ACTIONS(775), + [anon_sym_import] = ACTIONS(775), + [anon_sym_enum] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_abstract] = ACTIONS(775), + [anon_sym_final] = ACTIONS(775), + [anon_sym_strictfp] = ACTIONS(775), + [anon_sym_native] = ACTIONS(775), + [anon_sym_transient] = ACTIONS(775), + [anon_sym_volatile] = ACTIONS(775), + [anon_sym_sealed] = ACTIONS(775), + [anon_sym_non_DASHsealed] = ACTIONS(773), + [anon_sym_ATinterface] = ACTIONS(773), + [anon_sym_interface] = ACTIONS(775), + [anon_sym_byte] = ACTIONS(775), + [anon_sym_short] = ACTIONS(775), + [anon_sym_int] = ACTIONS(775), + [anon_sym_long] = ACTIONS(775), + [anon_sym_char] = ACTIONS(775), + [anon_sym_float] = ACTIONS(775), + [anon_sym_double] = ACTIONS(775), + [sym_boolean_type] = ACTIONS(775), + [sym_void_type] = ACTIONS(775), + [sym_this] = ACTIONS(775), + [sym_super] = ACTIONS(775), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(777), + [sym_identifier] = ACTIONS(779), + [sym_decimal_integer_literal] = ACTIONS(779), + [sym_hex_integer_literal] = ACTIONS(779), + [sym_octal_integer_literal] = ACTIONS(777), + [sym_binary_integer_literal] = ACTIONS(777), + [sym_decimal_floating_point_literal] = ACTIONS(777), + [sym_hex_floating_point_literal] = ACTIONS(779), + [sym_true] = ACTIONS(779), + [sym_false] = ACTIONS(779), + [sym_character_literal] = ACTIONS(777), + [sym_string_literal] = ACTIONS(779), + [sym_text_block] = ACTIONS(777), + [sym_null_literal] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_new] = ACTIONS(779), + [anon_sym_class] = ACTIONS(779), + [anon_sym_switch] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_case] = ACTIONS(779), + [anon_sym_default] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_do] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_synchronized] = ACTIONS(779), + [anon_sym_throw] = ACTIONS(779), + [anon_sym_try] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(779), + [anon_sym_open] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_static] = ACTIONS(779), + [anon_sym_package] = ACTIONS(779), + [anon_sym_import] = ACTIONS(779), + [anon_sym_enum] = ACTIONS(779), + [anon_sym_public] = ACTIONS(779), + [anon_sym_protected] = ACTIONS(779), + [anon_sym_private] = ACTIONS(779), + [anon_sym_abstract] = ACTIONS(779), + [anon_sym_final] = ACTIONS(779), + [anon_sym_strictfp] = ACTIONS(779), + [anon_sym_native] = ACTIONS(779), + [anon_sym_transient] = ACTIONS(779), + [anon_sym_volatile] = ACTIONS(779), + [anon_sym_sealed] = ACTIONS(779), + [anon_sym_non_DASHsealed] = ACTIONS(777), + [anon_sym_ATinterface] = ACTIONS(777), + [anon_sym_interface] = ACTIONS(779), + [anon_sym_byte] = ACTIONS(779), + [anon_sym_short] = ACTIONS(779), + [anon_sym_int] = ACTIONS(779), + [anon_sym_long] = ACTIONS(779), + [anon_sym_char] = ACTIONS(779), + [anon_sym_float] = ACTIONS(779), + [anon_sym_double] = ACTIONS(779), + [sym_boolean_type] = ACTIONS(779), + [sym_void_type] = ACTIONS(779), + [sym_this] = ACTIONS(779), + [sym_super] = ACTIONS(779), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(781), + [sym_identifier] = ACTIONS(783), + [sym_decimal_integer_literal] = ACTIONS(783), + [sym_hex_integer_literal] = ACTIONS(783), + [sym_octal_integer_literal] = ACTIONS(781), + [sym_binary_integer_literal] = ACTIONS(781), + [sym_decimal_floating_point_literal] = ACTIONS(781), + [sym_hex_floating_point_literal] = ACTIONS(783), + [sym_true] = ACTIONS(783), + [sym_false] = ACTIONS(783), + [sym_character_literal] = ACTIONS(781), + [sym_string_literal] = ACTIONS(783), + [sym_text_block] = ACTIONS(781), + [sym_null_literal] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_PLUS_PLUS] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(781), + [anon_sym_new] = ACTIONS(783), + [anon_sym_class] = ACTIONS(783), + [anon_sym_switch] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), + [anon_sym_case] = ACTIONS(783), + [anon_sym_default] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_assert] = ACTIONS(783), + [anon_sym_do] = ACTIONS(783), + [anon_sym_while] = ACTIONS(783), + [anon_sym_break] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(783), + [anon_sym_return] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(783), + [anon_sym_synchronized] = ACTIONS(783), + [anon_sym_throw] = ACTIONS(783), + [anon_sym_try] = ACTIONS(783), + [anon_sym_if] = ACTIONS(783), + [anon_sym_else] = ACTIONS(783), + [anon_sym_for] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(783), + [anon_sym_open] = ACTIONS(783), + [anon_sym_module] = ACTIONS(783), + [anon_sym_static] = ACTIONS(783), + [anon_sym_package] = ACTIONS(783), + [anon_sym_import] = ACTIONS(783), + [anon_sym_enum] = ACTIONS(783), + [anon_sym_public] = ACTIONS(783), + [anon_sym_protected] = ACTIONS(783), + [anon_sym_private] = ACTIONS(783), + [anon_sym_abstract] = ACTIONS(783), + [anon_sym_final] = ACTIONS(783), + [anon_sym_strictfp] = ACTIONS(783), + [anon_sym_native] = ACTIONS(783), + [anon_sym_transient] = ACTIONS(783), + [anon_sym_volatile] = ACTIONS(783), + [anon_sym_sealed] = ACTIONS(783), + [anon_sym_non_DASHsealed] = ACTIONS(781), + [anon_sym_ATinterface] = ACTIONS(781), + [anon_sym_interface] = ACTIONS(783), + [anon_sym_byte] = ACTIONS(783), + [anon_sym_short] = ACTIONS(783), + [anon_sym_int] = ACTIONS(783), + [anon_sym_long] = ACTIONS(783), + [anon_sym_char] = ACTIONS(783), + [anon_sym_float] = ACTIONS(783), + [anon_sym_double] = ACTIONS(783), + [sym_boolean_type] = ACTIONS(783), + [sym_void_type] = ACTIONS(783), + [sym_this] = ACTIONS(783), + [sym_super] = ACTIONS(783), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [216] = { + [sym_switch_label] = STATE(1169), + [aux_sym_switch_block_statement_group_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(785), + [sym_decimal_integer_literal] = ACTIONS(785), + [sym_hex_integer_literal] = ACTIONS(785), + [sym_octal_integer_literal] = ACTIONS(787), + [sym_binary_integer_literal] = ACTIONS(787), + [sym_decimal_floating_point_literal] = ACTIONS(787), + [sym_hex_floating_point_literal] = ACTIONS(785), + [sym_true] = ACTIONS(785), + [sym_false] = ACTIONS(785), + [sym_character_literal] = ACTIONS(787), + [sym_string_literal] = ACTIONS(785), + [sym_text_block] = ACTIONS(787), + [sym_null_literal] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [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(785), + [anon_sym_class] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_case] = ACTIONS(789), + [anon_sym_default] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(787), + [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_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_final] = 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(787), + [anon_sym_ATinterface] = ACTIONS(787), + [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), + }, + [217] = { + [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(795), + [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), + [sym_string_literal] = ACTIONS(797), + [sym_text_block] = ACTIONS(795), + [sym_null_literal] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym_array_initializer] = STATE(1052), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [218] = { + [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(799), + [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), + [sym_string_literal] = ACTIONS(801), + [sym_text_block] = ACTIONS(799), + [sym_null_literal] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [219] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(581), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym_array_initializer] = STATE(939), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -23659,10 +29952,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -23677,1276 +29970,1122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [sym_decimal_integer_literal] = ACTIONS(683), - [sym_hex_integer_literal] = ACTIONS(683), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(681), - [sym_decimal_floating_point_literal] = ACTIONS(681), - [sym_hex_floating_point_literal] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_character_literal] = ACTIONS(681), - [sym_string_literal] = ACTIONS(683), - [sym_text_block] = ACTIONS(681), - [sym_null_literal] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_new] = ACTIONS(683), - [anon_sym_class] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_assert] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(683), - [anon_sym_synchronized] = ACTIONS(683), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_try] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_else] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [anon_sym_open] = ACTIONS(683), - [anon_sym_module] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_package] = ACTIONS(683), - [anon_sym_import] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_public] = ACTIONS(683), - [anon_sym_protected] = ACTIONS(683), - [anon_sym_private] = ACTIONS(683), - [anon_sym_abstract] = ACTIONS(683), - [anon_sym_final] = ACTIONS(683), - [anon_sym_strictfp] = ACTIONS(683), - [anon_sym_native] = ACTIONS(683), - [anon_sym_transient] = ACTIONS(683), - [anon_sym_volatile] = ACTIONS(683), - [anon_sym_sealed] = ACTIONS(683), - [anon_sym_non_DASHsealed] = ACTIONS(681), - [anon_sym_ATinterface] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(683), - [anon_sym_byte] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [anon_sym_int] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_float] = ACTIONS(683), - [anon_sym_double] = ACTIONS(683), - [sym_boolean_type] = ACTIONS(683), - [sym_void_type] = ACTIONS(683), - [sym_this] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(685), - [sym_identifier] = ACTIONS(687), - [sym_decimal_integer_literal] = ACTIONS(687), - [sym_hex_integer_literal] = ACTIONS(687), - [sym_octal_integer_literal] = ACTIONS(685), - [sym_binary_integer_literal] = ACTIONS(685), - [sym_decimal_floating_point_literal] = ACTIONS(685), - [sym_hex_floating_point_literal] = ACTIONS(687), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_character_literal] = ACTIONS(685), - [sym_string_literal] = ACTIONS(687), - [sym_text_block] = ACTIONS(685), - [sym_null_literal] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_PLUS_PLUS] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(685), - [anon_sym_new] = ACTIONS(687), - [anon_sym_class] = ACTIONS(687), - [anon_sym_switch] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_case] = ACTIONS(687), - [anon_sym_default] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_assert] = ACTIONS(687), - [anon_sym_do] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_break] = ACTIONS(687), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_return] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(687), - [anon_sym_synchronized] = ACTIONS(687), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_try] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_else] = ACTIONS(687), - [anon_sym_for] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(687), - [anon_sym_open] = ACTIONS(687), - [anon_sym_module] = ACTIONS(687), - [anon_sym_static] = ACTIONS(687), - [anon_sym_package] = ACTIONS(687), - [anon_sym_import] = ACTIONS(687), - [anon_sym_enum] = ACTIONS(687), - [anon_sym_public] = ACTIONS(687), - [anon_sym_protected] = ACTIONS(687), - [anon_sym_private] = ACTIONS(687), - [anon_sym_abstract] = ACTIONS(687), - [anon_sym_final] = ACTIONS(687), - [anon_sym_strictfp] = ACTIONS(687), - [anon_sym_native] = ACTIONS(687), - [anon_sym_transient] = ACTIONS(687), - [anon_sym_volatile] = ACTIONS(687), - [anon_sym_sealed] = ACTIONS(687), - [anon_sym_non_DASHsealed] = ACTIONS(685), - [anon_sym_ATinterface] = ACTIONS(685), - [anon_sym_interface] = ACTIONS(687), - [anon_sym_byte] = ACTIONS(687), - [anon_sym_short] = ACTIONS(687), - [anon_sym_int] = ACTIONS(687), - [anon_sym_long] = ACTIONS(687), - [anon_sym_char] = ACTIONS(687), - [anon_sym_float] = ACTIONS(687), - [anon_sym_double] = ACTIONS(687), - [sym_boolean_type] = ACTIONS(687), - [sym_void_type] = ACTIONS(687), - [sym_this] = ACTIONS(687), - [sym_super] = ACTIONS(687), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(689), - [sym_identifier] = ACTIONS(691), - [sym_decimal_integer_literal] = ACTIONS(691), - [sym_hex_integer_literal] = ACTIONS(691), - [sym_octal_integer_literal] = ACTIONS(689), - [sym_binary_integer_literal] = ACTIONS(689), - [sym_decimal_floating_point_literal] = ACTIONS(689), - [sym_hex_floating_point_literal] = ACTIONS(691), - [sym_true] = ACTIONS(691), - [sym_false] = ACTIONS(691), - [sym_character_literal] = ACTIONS(689), - [sym_string_literal] = ACTIONS(691), - [sym_text_block] = ACTIONS(689), - [sym_null_literal] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [anon_sym_new] = ACTIONS(691), - [anon_sym_class] = ACTIONS(691), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_case] = ACTIONS(691), - [anon_sym_default] = ACTIONS(691), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_assert] = ACTIONS(691), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(691), - [anon_sym_break] = ACTIONS(691), - [anon_sym_continue] = ACTIONS(691), - [anon_sym_return] = ACTIONS(691), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_synchronized] = ACTIONS(691), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_try] = ACTIONS(691), - [anon_sym_if] = ACTIONS(691), - [anon_sym_else] = ACTIONS(691), - [anon_sym_for] = ACTIONS(691), - [anon_sym_AT] = ACTIONS(691), - [anon_sym_open] = ACTIONS(691), - [anon_sym_module] = ACTIONS(691), - [anon_sym_static] = ACTIONS(691), - [anon_sym_package] = ACTIONS(691), - [anon_sym_import] = ACTIONS(691), - [anon_sym_enum] = ACTIONS(691), - [anon_sym_public] = ACTIONS(691), - [anon_sym_protected] = ACTIONS(691), - [anon_sym_private] = ACTIONS(691), - [anon_sym_abstract] = ACTIONS(691), - [anon_sym_final] = ACTIONS(691), - [anon_sym_strictfp] = ACTIONS(691), - [anon_sym_native] = ACTIONS(691), - [anon_sym_transient] = ACTIONS(691), - [anon_sym_volatile] = ACTIONS(691), - [anon_sym_sealed] = ACTIONS(691), - [anon_sym_non_DASHsealed] = ACTIONS(689), - [anon_sym_ATinterface] = ACTIONS(689), - [anon_sym_interface] = ACTIONS(691), - [anon_sym_byte] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [anon_sym_int] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_char] = ACTIONS(691), - [anon_sym_float] = ACTIONS(691), - [anon_sym_double] = ACTIONS(691), - [sym_boolean_type] = ACTIONS(691), - [sym_void_type] = ACTIONS(691), - [sym_this] = ACTIONS(691), - [sym_super] = ACTIONS(691), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(693), - [sym_identifier] = ACTIONS(695), - [sym_decimal_integer_literal] = ACTIONS(695), - [sym_hex_integer_literal] = ACTIONS(695), - [sym_octal_integer_literal] = ACTIONS(693), - [sym_binary_integer_literal] = ACTIONS(693), - [sym_decimal_floating_point_literal] = ACTIONS(693), - [sym_hex_floating_point_literal] = ACTIONS(695), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_character_literal] = ACTIONS(693), - [sym_string_literal] = ACTIONS(695), - [sym_text_block] = ACTIONS(693), - [sym_null_literal] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_PLUS_PLUS] = ACTIONS(693), - [anon_sym_DASH_DASH] = ACTIONS(693), - [anon_sym_new] = ACTIONS(695), - [anon_sym_class] = ACTIONS(695), - [anon_sym_switch] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(693), - [anon_sym_case] = ACTIONS(695), - [anon_sym_default] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_assert] = ACTIONS(695), - [anon_sym_do] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(695), - [anon_sym_return] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(695), - [anon_sym_synchronized] = ACTIONS(695), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_else] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_AT] = ACTIONS(695), - [anon_sym_open] = ACTIONS(695), - [anon_sym_module] = ACTIONS(695), - [anon_sym_static] = ACTIONS(695), - [anon_sym_package] = ACTIONS(695), - [anon_sym_import] = ACTIONS(695), - [anon_sym_enum] = ACTIONS(695), - [anon_sym_public] = ACTIONS(695), - [anon_sym_protected] = ACTIONS(695), - [anon_sym_private] = ACTIONS(695), - [anon_sym_abstract] = ACTIONS(695), - [anon_sym_final] = ACTIONS(695), - [anon_sym_strictfp] = ACTIONS(695), - [anon_sym_native] = ACTIONS(695), - [anon_sym_transient] = ACTIONS(695), - [anon_sym_volatile] = ACTIONS(695), - [anon_sym_sealed] = ACTIONS(695), - [anon_sym_non_DASHsealed] = ACTIONS(693), - [anon_sym_ATinterface] = ACTIONS(693), - [anon_sym_interface] = ACTIONS(695), - [anon_sym_byte] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [anon_sym_int] = ACTIONS(695), - [anon_sym_long] = ACTIONS(695), - [anon_sym_char] = ACTIONS(695), - [anon_sym_float] = ACTIONS(695), - [anon_sym_double] = ACTIONS(695), - [sym_boolean_type] = ACTIONS(695), - [sym_void_type] = ACTIONS(695), - [sym_this] = ACTIONS(695), - [sym_super] = ACTIONS(695), + [220] = { + [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(803), + [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), + [sym_string_literal] = ACTIONS(805), + [sym_text_block] = ACTIONS(803), + [sym_null_literal] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(697), - [sym_identifier] = ACTIONS(699), - [sym_decimal_integer_literal] = ACTIONS(699), - [sym_hex_integer_literal] = ACTIONS(699), - [sym_octal_integer_literal] = ACTIONS(697), - [sym_binary_integer_literal] = ACTIONS(697), - [sym_decimal_floating_point_literal] = ACTIONS(697), - [sym_hex_floating_point_literal] = ACTIONS(699), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_character_literal] = ACTIONS(697), - [sym_string_literal] = ACTIONS(699), - [sym_text_block] = ACTIONS(697), - [sym_null_literal] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_new] = ACTIONS(699), - [anon_sym_class] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_case] = ACTIONS(699), - [anon_sym_default] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_assert] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_synchronized] = ACTIONS(699), - [anon_sym_throw] = ACTIONS(699), - [anon_sym_try] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_else] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(699), - [anon_sym_open] = ACTIONS(699), - [anon_sym_module] = ACTIONS(699), - [anon_sym_static] = ACTIONS(699), - [anon_sym_package] = ACTIONS(699), - [anon_sym_import] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(699), - [anon_sym_public] = ACTIONS(699), - [anon_sym_protected] = ACTIONS(699), - [anon_sym_private] = ACTIONS(699), - [anon_sym_abstract] = ACTIONS(699), - [anon_sym_final] = ACTIONS(699), - [anon_sym_strictfp] = ACTIONS(699), - [anon_sym_native] = ACTIONS(699), - [anon_sym_transient] = ACTIONS(699), - [anon_sym_volatile] = ACTIONS(699), - [anon_sym_sealed] = ACTIONS(699), - [anon_sym_non_DASHsealed] = ACTIONS(697), - [anon_sym_ATinterface] = ACTIONS(697), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_byte] = ACTIONS(699), - [anon_sym_short] = ACTIONS(699), - [anon_sym_int] = ACTIONS(699), - [anon_sym_long] = ACTIONS(699), - [anon_sym_char] = ACTIONS(699), - [anon_sym_float] = ACTIONS(699), - [anon_sym_double] = ACTIONS(699), - [sym_boolean_type] = ACTIONS(699), - [sym_void_type] = ACTIONS(699), - [sym_this] = ACTIONS(699), - [sym_super] = ACTIONS(699), + [221] = { + [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(807), + [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), + [sym_string_literal] = ACTIONS(809), + [sym_text_block] = ACTIONS(807), + [sym_null_literal] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(701), - [sym_identifier] = ACTIONS(703), - [sym_decimal_integer_literal] = ACTIONS(703), - [sym_hex_integer_literal] = ACTIONS(703), - [sym_octal_integer_literal] = ACTIONS(701), - [sym_binary_integer_literal] = ACTIONS(701), - [sym_decimal_floating_point_literal] = ACTIONS(701), - [sym_hex_floating_point_literal] = ACTIONS(703), - [sym_true] = ACTIONS(703), - [sym_false] = ACTIONS(703), - [sym_character_literal] = ACTIONS(701), - [sym_string_literal] = ACTIONS(703), - [sym_text_block] = ACTIONS(701), - [sym_null_literal] = ACTIONS(703), - [anon_sym_LPAREN] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(703), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_BANG] = ACTIONS(701), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_new] = ACTIONS(703), - [anon_sym_class] = ACTIONS(703), - [anon_sym_switch] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(701), - [anon_sym_case] = ACTIONS(703), - [anon_sym_default] = ACTIONS(703), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_assert] = ACTIONS(703), - [anon_sym_do] = ACTIONS(703), - [anon_sym_while] = ACTIONS(703), - [anon_sym_break] = ACTIONS(703), - [anon_sym_continue] = ACTIONS(703), - [anon_sym_return] = ACTIONS(703), - [anon_sym_yield] = ACTIONS(703), - [anon_sym_synchronized] = ACTIONS(703), - [anon_sym_throw] = ACTIONS(703), - [anon_sym_try] = ACTIONS(703), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(703), - [anon_sym_for] = ACTIONS(703), - [anon_sym_AT] = ACTIONS(703), - [anon_sym_open] = ACTIONS(703), - [anon_sym_module] = ACTIONS(703), - [anon_sym_static] = ACTIONS(703), - [anon_sym_package] = ACTIONS(703), - [anon_sym_import] = ACTIONS(703), - [anon_sym_enum] = ACTIONS(703), - [anon_sym_public] = ACTIONS(703), - [anon_sym_protected] = ACTIONS(703), - [anon_sym_private] = ACTIONS(703), - [anon_sym_abstract] = ACTIONS(703), - [anon_sym_final] = ACTIONS(703), - [anon_sym_strictfp] = ACTIONS(703), - [anon_sym_native] = ACTIONS(703), - [anon_sym_transient] = ACTIONS(703), - [anon_sym_volatile] = ACTIONS(703), - [anon_sym_sealed] = ACTIONS(703), - [anon_sym_non_DASHsealed] = ACTIONS(701), - [anon_sym_ATinterface] = ACTIONS(701), - [anon_sym_interface] = ACTIONS(703), - [anon_sym_byte] = ACTIONS(703), - [anon_sym_short] = ACTIONS(703), - [anon_sym_int] = ACTIONS(703), - [anon_sym_long] = ACTIONS(703), - [anon_sym_char] = ACTIONS(703), - [anon_sym_float] = ACTIONS(703), - [anon_sym_double] = ACTIONS(703), - [sym_boolean_type] = ACTIONS(703), - [sym_void_type] = ACTIONS(703), - [sym_this] = ACTIONS(703), - [sym_super] = ACTIONS(703), + [222] = { + [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(811), + [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), + [sym_string_literal] = ACTIONS(813), + [sym_text_block] = ACTIONS(811), + [sym_null_literal] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(705), - [sym_identifier] = ACTIONS(707), - [sym_decimal_integer_literal] = ACTIONS(707), - [sym_hex_integer_literal] = ACTIONS(707), - [sym_octal_integer_literal] = ACTIONS(705), - [sym_binary_integer_literal] = ACTIONS(705), - [sym_decimal_floating_point_literal] = ACTIONS(705), - [sym_hex_floating_point_literal] = ACTIONS(707), - [sym_true] = ACTIONS(707), - [sym_false] = ACTIONS(707), - [sym_character_literal] = ACTIONS(705), - [sym_string_literal] = ACTIONS(707), - [sym_text_block] = ACTIONS(705), - [sym_null_literal] = ACTIONS(707), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_BANG] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [anon_sym_PLUS_PLUS] = ACTIONS(705), - [anon_sym_DASH_DASH] = ACTIONS(705), - [anon_sym_new] = ACTIONS(707), - [anon_sym_class] = ACTIONS(707), - [anon_sym_switch] = ACTIONS(707), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_case] = ACTIONS(707), - [anon_sym_default] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym_assert] = ACTIONS(707), - [anon_sym_do] = ACTIONS(707), - [anon_sym_while] = ACTIONS(707), - [anon_sym_break] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(707), - [anon_sym_return] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(707), - [anon_sym_synchronized] = ACTIONS(707), - [anon_sym_throw] = ACTIONS(707), - [anon_sym_try] = ACTIONS(707), - [anon_sym_if] = ACTIONS(707), - [anon_sym_else] = ACTIONS(707), - [anon_sym_for] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(707), - [anon_sym_open] = ACTIONS(707), - [anon_sym_module] = ACTIONS(707), - [anon_sym_static] = ACTIONS(707), - [anon_sym_package] = ACTIONS(707), - [anon_sym_import] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(707), - [anon_sym_public] = ACTIONS(707), - [anon_sym_protected] = ACTIONS(707), - [anon_sym_private] = ACTIONS(707), - [anon_sym_abstract] = ACTIONS(707), - [anon_sym_final] = ACTIONS(707), - [anon_sym_strictfp] = ACTIONS(707), - [anon_sym_native] = ACTIONS(707), - [anon_sym_transient] = ACTIONS(707), - [anon_sym_volatile] = ACTIONS(707), - [anon_sym_sealed] = ACTIONS(707), - [anon_sym_non_DASHsealed] = ACTIONS(705), - [anon_sym_ATinterface] = ACTIONS(705), - [anon_sym_interface] = ACTIONS(707), - [anon_sym_byte] = ACTIONS(707), - [anon_sym_short] = ACTIONS(707), - [anon_sym_int] = ACTIONS(707), - [anon_sym_long] = ACTIONS(707), - [anon_sym_char] = ACTIONS(707), - [anon_sym_float] = ACTIONS(707), - [anon_sym_double] = ACTIONS(707), - [sym_boolean_type] = ACTIONS(707), - [sym_void_type] = ACTIONS(707), - [sym_this] = ACTIONS(707), - [sym_super] = ACTIONS(707), + [223] = { + [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(815), + [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), + [sym_string_literal] = ACTIONS(817), + [sym_text_block] = ACTIONS(815), + [sym_null_literal] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [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(819), + [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), + [sym_string_literal] = ACTIONS(821), + [sym_text_block] = ACTIONS(819), + [sym_null_literal] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_identifier] = ACTIONS(711), - [sym_decimal_integer_literal] = ACTIONS(711), - [sym_hex_integer_literal] = ACTIONS(711), - [sym_octal_integer_literal] = ACTIONS(709), - [sym_binary_integer_literal] = ACTIONS(709), - [sym_decimal_floating_point_literal] = ACTIONS(709), - [sym_hex_floating_point_literal] = ACTIONS(711), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_character_literal] = ACTIONS(709), - [sym_string_literal] = ACTIONS(711), - [sym_text_block] = ACTIONS(709), - [sym_null_literal] = ACTIONS(711), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(709), - [anon_sym_DASH_DASH] = ACTIONS(709), - [anon_sym_new] = ACTIONS(711), - [anon_sym_class] = ACTIONS(711), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_case] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(709), - [anon_sym_assert] = ACTIONS(711), - [anon_sym_do] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_yield] = ACTIONS(711), - [anon_sym_synchronized] = ACTIONS(711), - [anon_sym_throw] = ACTIONS(711), - [anon_sym_try] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_else] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(711), - [anon_sym_open] = ACTIONS(711), - [anon_sym_module] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_package] = ACTIONS(711), - [anon_sym_import] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_public] = ACTIONS(711), - [anon_sym_protected] = ACTIONS(711), - [anon_sym_private] = ACTIONS(711), - [anon_sym_abstract] = ACTIONS(711), - [anon_sym_final] = ACTIONS(711), - [anon_sym_strictfp] = ACTIONS(711), - [anon_sym_native] = ACTIONS(711), - [anon_sym_transient] = ACTIONS(711), - [anon_sym_volatile] = ACTIONS(711), - [anon_sym_sealed] = ACTIONS(711), - [anon_sym_non_DASHsealed] = ACTIONS(709), - [anon_sym_ATinterface] = ACTIONS(709), - [anon_sym_interface] = ACTIONS(711), - [anon_sym_byte] = ACTIONS(711), - [anon_sym_short] = ACTIONS(711), - [anon_sym_int] = ACTIONS(711), - [anon_sym_long] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_float] = ACTIONS(711), - [anon_sym_double] = ACTIONS(711), - [sym_boolean_type] = ACTIONS(711), - [sym_void_type] = ACTIONS(711), - [sym_this] = ACTIONS(711), - [sym_super] = ACTIONS(711), + [225] = { + [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(823), + [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), + [sym_string_literal] = ACTIONS(825), + [sym_text_block] = ACTIONS(823), + [sym_null_literal] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(713), - [sym_identifier] = ACTIONS(715), - [sym_decimal_integer_literal] = ACTIONS(715), - [sym_hex_integer_literal] = ACTIONS(715), - [sym_octal_integer_literal] = ACTIONS(713), - [sym_binary_integer_literal] = ACTIONS(713), - [sym_decimal_floating_point_literal] = ACTIONS(713), - [sym_hex_floating_point_literal] = ACTIONS(715), - [sym_true] = ACTIONS(715), - [sym_false] = ACTIONS(715), - [sym_character_literal] = ACTIONS(713), - [sym_string_literal] = ACTIONS(715), - [sym_text_block] = ACTIONS(713), - [sym_null_literal] = ACTIONS(715), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(715), - [anon_sym_DASH] = ACTIONS(715), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_new] = ACTIONS(715), - [anon_sym_class] = ACTIONS(715), - [anon_sym_switch] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_case] = ACTIONS(715), - [anon_sym_default] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_assert] = ACTIONS(715), - [anon_sym_do] = ACTIONS(715), - [anon_sym_while] = ACTIONS(715), - [anon_sym_break] = ACTIONS(715), - [anon_sym_continue] = ACTIONS(715), - [anon_sym_return] = ACTIONS(715), - [anon_sym_yield] = ACTIONS(715), - [anon_sym_synchronized] = ACTIONS(715), - [anon_sym_throw] = ACTIONS(715), - [anon_sym_try] = ACTIONS(715), - [anon_sym_if] = ACTIONS(715), - [anon_sym_else] = ACTIONS(715), - [anon_sym_for] = ACTIONS(715), - [anon_sym_AT] = ACTIONS(715), - [anon_sym_open] = ACTIONS(715), - [anon_sym_module] = ACTIONS(715), - [anon_sym_static] = ACTIONS(715), - [anon_sym_package] = ACTIONS(715), - [anon_sym_import] = ACTIONS(715), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_public] = ACTIONS(715), - [anon_sym_protected] = ACTIONS(715), - [anon_sym_private] = ACTIONS(715), - [anon_sym_abstract] = ACTIONS(715), - [anon_sym_final] = ACTIONS(715), - [anon_sym_strictfp] = ACTIONS(715), - [anon_sym_native] = ACTIONS(715), - [anon_sym_transient] = ACTIONS(715), - [anon_sym_volatile] = ACTIONS(715), - [anon_sym_sealed] = ACTIONS(715), - [anon_sym_non_DASHsealed] = ACTIONS(713), - [anon_sym_ATinterface] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(715), - [anon_sym_byte] = ACTIONS(715), - [anon_sym_short] = ACTIONS(715), - [anon_sym_int] = ACTIONS(715), - [anon_sym_long] = ACTIONS(715), - [anon_sym_char] = ACTIONS(715), - [anon_sym_float] = ACTIONS(715), - [anon_sym_double] = ACTIONS(715), - [sym_boolean_type] = ACTIONS(715), - [sym_void_type] = ACTIONS(715), - [sym_this] = ACTIONS(715), - [sym_super] = ACTIONS(715), + [226] = { + [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(827), + [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), + [sym_string_literal] = ACTIONS(829), + [sym_text_block] = ACTIONS(827), + [sym_null_literal] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(515), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym_array_initializer] = STATE(880), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [227] = { + [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(831), + [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), + [sym_string_literal] = ACTIONS(833), + [sym_text_block] = ACTIONS(831), + [sym_null_literal] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(717), - [sym_identifier] = ACTIONS(719), - [sym_decimal_integer_literal] = ACTIONS(719), - [sym_hex_integer_literal] = ACTIONS(719), - [sym_octal_integer_literal] = ACTIONS(717), - [sym_binary_integer_literal] = ACTIONS(717), - [sym_decimal_floating_point_literal] = ACTIONS(717), - [sym_hex_floating_point_literal] = ACTIONS(719), - [sym_true] = ACTIONS(719), - [sym_false] = ACTIONS(719), - [sym_character_literal] = ACTIONS(717), - [sym_string_literal] = ACTIONS(719), - [sym_text_block] = ACTIONS(717), - [sym_null_literal] = ACTIONS(719), - [anon_sym_LPAREN] = ACTIONS(717), - [anon_sym_PLUS] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_PLUS_PLUS] = ACTIONS(717), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_new] = ACTIONS(719), - [anon_sym_class] = ACTIONS(719), - [anon_sym_switch] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_case] = ACTIONS(719), - [anon_sym_default] = ACTIONS(719), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_assert] = ACTIONS(719), - [anon_sym_do] = ACTIONS(719), - [anon_sym_while] = ACTIONS(719), - [anon_sym_break] = ACTIONS(719), - [anon_sym_continue] = ACTIONS(719), - [anon_sym_return] = ACTIONS(719), - [anon_sym_yield] = ACTIONS(719), - [anon_sym_synchronized] = ACTIONS(719), - [anon_sym_throw] = ACTIONS(719), - [anon_sym_try] = ACTIONS(719), - [anon_sym_if] = ACTIONS(719), - [anon_sym_else] = ACTIONS(719), - [anon_sym_for] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(719), - [anon_sym_open] = ACTIONS(719), - [anon_sym_module] = ACTIONS(719), - [anon_sym_static] = ACTIONS(719), - [anon_sym_package] = ACTIONS(719), - [anon_sym_import] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(719), - [anon_sym_public] = ACTIONS(719), - [anon_sym_protected] = ACTIONS(719), - [anon_sym_private] = ACTIONS(719), - [anon_sym_abstract] = ACTIONS(719), - [anon_sym_final] = ACTIONS(719), - [anon_sym_strictfp] = ACTIONS(719), - [anon_sym_native] = ACTIONS(719), - [anon_sym_transient] = ACTIONS(719), - [anon_sym_volatile] = ACTIONS(719), - [anon_sym_sealed] = ACTIONS(719), - [anon_sym_non_DASHsealed] = ACTIONS(717), - [anon_sym_ATinterface] = ACTIONS(717), - [anon_sym_interface] = ACTIONS(719), - [anon_sym_byte] = ACTIONS(719), - [anon_sym_short] = ACTIONS(719), - [anon_sym_int] = ACTIONS(719), - [anon_sym_long] = ACTIONS(719), - [anon_sym_char] = ACTIONS(719), - [anon_sym_float] = ACTIONS(719), - [anon_sym_double] = ACTIONS(719), - [sym_boolean_type] = ACTIONS(719), - [sym_void_type] = ACTIONS(719), - [sym_this] = ACTIONS(719), - [sym_super] = ACTIONS(719), + [228] = { + [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(835), + [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), + [sym_string_literal] = ACTIONS(837), + [sym_text_block] = ACTIONS(835), + [sym_null_literal] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(721), - [sym_identifier] = ACTIONS(723), - [sym_decimal_integer_literal] = ACTIONS(723), - [sym_hex_integer_literal] = ACTIONS(723), - [sym_octal_integer_literal] = ACTIONS(721), - [sym_binary_integer_literal] = ACTIONS(721), - [sym_decimal_floating_point_literal] = ACTIONS(721), - [sym_hex_floating_point_literal] = ACTIONS(723), - [sym_true] = ACTIONS(723), - [sym_false] = ACTIONS(723), - [sym_character_literal] = ACTIONS(721), - [sym_string_literal] = ACTIONS(723), - [sym_text_block] = ACTIONS(721), - [sym_null_literal] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [anon_sym_new] = ACTIONS(723), - [anon_sym_class] = ACTIONS(723), - [anon_sym_switch] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_assert] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_yield] = ACTIONS(723), - [anon_sym_synchronized] = ACTIONS(723), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_try] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(723), - [anon_sym_open] = ACTIONS(723), - [anon_sym_module] = ACTIONS(723), - [anon_sym_static] = ACTIONS(723), - [anon_sym_package] = ACTIONS(723), - [anon_sym_import] = ACTIONS(723), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_public] = ACTIONS(723), - [anon_sym_protected] = ACTIONS(723), - [anon_sym_private] = ACTIONS(723), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_final] = ACTIONS(723), - [anon_sym_strictfp] = ACTIONS(723), - [anon_sym_native] = ACTIONS(723), - [anon_sym_transient] = ACTIONS(723), - [anon_sym_volatile] = ACTIONS(723), - [anon_sym_sealed] = ACTIONS(723), - [anon_sym_non_DASHsealed] = ACTIONS(721), - [anon_sym_ATinterface] = ACTIONS(721), - [anon_sym_interface] = ACTIONS(723), - [anon_sym_byte] = ACTIONS(723), - [anon_sym_short] = ACTIONS(723), - [anon_sym_int] = ACTIONS(723), - [anon_sym_long] = ACTIONS(723), - [anon_sym_char] = ACTIONS(723), - [anon_sym_float] = ACTIONS(723), - [anon_sym_double] = ACTIONS(723), - [sym_boolean_type] = ACTIONS(723), - [sym_void_type] = ACTIONS(723), - [sym_this] = ACTIONS(723), - [sym_super] = ACTIONS(723), + [229] = { + [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(839), + [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), + [sym_string_literal] = ACTIONS(841), + [sym_text_block] = ACTIONS(839), + [sym_null_literal] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_PLUS] = ACTIONS(841), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_switch_label] = STATE(1100), - [aux_sym_switch_block_statement_group_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(725), - [sym_decimal_integer_literal] = ACTIONS(725), - [sym_hex_integer_literal] = ACTIONS(725), - [sym_octal_integer_literal] = ACTIONS(727), - [sym_binary_integer_literal] = ACTIONS(727), - [sym_decimal_floating_point_literal] = ACTIONS(727), - [sym_hex_floating_point_literal] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_character_literal] = ACTIONS(727), - [sym_string_literal] = ACTIONS(725), - [sym_text_block] = ACTIONS(727), - [sym_null_literal] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(725), - [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(725), - [anon_sym_class] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(727), - [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_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_final] = 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(727), - [anon_sym_ATinterface] = ACTIONS(727), - [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), + [230] = { + [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(843), + [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), + [sym_string_literal] = ACTIONS(845), + [sym_text_block] = ACTIONS(843), + [sym_null_literal] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [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(735), - [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), - [sym_string_literal] = ACTIONS(737), - [sym_text_block] = ACTIONS(735), - [sym_null_literal] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [231] = { + [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(847), + [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), + [sym_string_literal] = ACTIONS(849), + [sym_text_block] = ACTIONS(847), + [sym_null_literal] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [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(739), - [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), - [sym_string_literal] = ACTIONS(741), - [sym_text_block] = ACTIONS(739), - [sym_null_literal] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [232] = { + [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(851), + [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), + [sym_string_literal] = ACTIONS(853), + [sym_text_block] = ACTIONS(851), + [sym_null_literal] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [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(743), - [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), - [sym_string_literal] = ACTIONS(745), - [sym_text_block] = ACTIONS(743), - [sym_null_literal] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [233] = { + [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(855), + [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), + [sym_string_literal] = ACTIONS(857), + [sym_text_block] = ACTIONS(855), + [sym_null_literal] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(510), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(438), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [234] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(547), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym_block] = STATE(485), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -24959,19 +31098,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -24986,1738 +31125,1579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [180] = { - [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(759), - [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), - [sym_string_literal] = ACTIONS(761), - [sym_text_block] = ACTIONS(759), - [sym_null_literal] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(761), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [181] = { - [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(763), - [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), - [sym_string_literal] = ACTIONS(765), - [sym_text_block] = ACTIONS(763), - [sym_null_literal] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [182] = { - [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(767), - [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), - [sym_string_literal] = ACTIONS(769), - [sym_text_block] = ACTIONS(767), - [sym_null_literal] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [183] = { - [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(771), - [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), - [sym_string_literal] = ACTIONS(773), - [sym_text_block] = ACTIONS(771), - [sym_null_literal] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(773), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [184] = { - [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(775), - [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), - [sym_string_literal] = ACTIONS(777), - [sym_text_block] = ACTIONS(775), - [sym_null_literal] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [185] = { - [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(779), - [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), - [sym_string_literal] = ACTIONS(781), - [sym_text_block] = ACTIONS(779), - [sym_null_literal] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [235] = { + [ts_builtin_sym_end] = ACTIONS(320), + [sym_identifier] = ACTIONS(322), + [sym_decimal_integer_literal] = ACTIONS(322), + [sym_hex_integer_literal] = ACTIONS(322), + [sym_octal_integer_literal] = ACTIONS(320), + [sym_binary_integer_literal] = ACTIONS(320), + [sym_decimal_floating_point_literal] = ACTIONS(320), + [sym_hex_floating_point_literal] = ACTIONS(322), + [sym_true] = ACTIONS(322), + [sym_false] = ACTIONS(322), + [sym_character_literal] = ACTIONS(320), + [sym_string_literal] = ACTIONS(322), + [sym_text_block] = ACTIONS(320), + [sym_null_literal] = ACTIONS(322), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(320), + [anon_sym_new] = ACTIONS(322), + [anon_sym_class] = ACTIONS(322), + [anon_sym_switch] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_case] = ACTIONS(322), + [anon_sym_default] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_assert] = ACTIONS(322), + [anon_sym_do] = ACTIONS(322), + [anon_sym_while] = ACTIONS(322), + [anon_sym_break] = ACTIONS(322), + [anon_sym_continue] = ACTIONS(322), + [anon_sym_return] = ACTIONS(322), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_synchronized] = ACTIONS(322), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_try] = ACTIONS(322), + [anon_sym_if] = ACTIONS(322), + [anon_sym_else] = ACTIONS(322), + [anon_sym_for] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(322), + [anon_sym_open] = ACTIONS(322), + [anon_sym_module] = ACTIONS(322), + [anon_sym_static] = ACTIONS(322), + [anon_sym_package] = ACTIONS(322), + [anon_sym_import] = ACTIONS(322), + [anon_sym_enum] = ACTIONS(322), + [anon_sym_public] = ACTIONS(322), + [anon_sym_protected] = ACTIONS(322), + [anon_sym_private] = ACTIONS(322), + [anon_sym_abstract] = ACTIONS(322), + [anon_sym_final] = ACTIONS(322), + [anon_sym_strictfp] = ACTIONS(322), + [anon_sym_native] = ACTIONS(322), + [anon_sym_transient] = ACTIONS(322), + [anon_sym_volatile] = ACTIONS(322), + [anon_sym_sealed] = ACTIONS(322), + [anon_sym_non_DASHsealed] = ACTIONS(320), + [anon_sym_ATinterface] = ACTIONS(320), + [anon_sym_interface] = ACTIONS(322), + [anon_sym_byte] = ACTIONS(322), + [anon_sym_short] = ACTIONS(322), + [anon_sym_int] = ACTIONS(322), + [anon_sym_long] = ACTIONS(322), + [anon_sym_char] = ACTIONS(322), + [anon_sym_float] = ACTIONS(322), + [anon_sym_double] = ACTIONS(322), + [sym_boolean_type] = ACTIONS(322), + [sym_void_type] = ACTIONS(322), + [sym_this] = ACTIONS(322), + [sym_super] = ACTIONS(322), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [186] = { - [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(783), - [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), - [sym_string_literal] = ACTIONS(785), - [sym_text_block] = ACTIONS(783), - [sym_null_literal] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [236] = { + [ts_builtin_sym_end] = ACTIONS(308), + [sym_identifier] = ACTIONS(310), + [sym_decimal_integer_literal] = ACTIONS(310), + [sym_hex_integer_literal] = ACTIONS(310), + [sym_octal_integer_literal] = ACTIONS(308), + [sym_binary_integer_literal] = ACTIONS(308), + [sym_decimal_floating_point_literal] = ACTIONS(308), + [sym_hex_floating_point_literal] = ACTIONS(310), + [sym_true] = ACTIONS(310), + [sym_false] = ACTIONS(310), + [sym_character_literal] = ACTIONS(308), + [sym_string_literal] = ACTIONS(310), + [sym_text_block] = ACTIONS(308), + [sym_null_literal] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(308), + [anon_sym_DASH_DASH] = ACTIONS(308), + [anon_sym_new] = ACTIONS(310), + [anon_sym_class] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(308), + [anon_sym_RBRACE] = ACTIONS(308), + [anon_sym_case] = ACTIONS(310), + [anon_sym_default] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(308), + [anon_sym_assert] = ACTIONS(310), + [anon_sym_do] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_return] = ACTIONS(310), + [anon_sym_yield] = ACTIONS(310), + [anon_sym_synchronized] = ACTIONS(310), + [anon_sym_throw] = ACTIONS(310), + [anon_sym_try] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(310), + [anon_sym_open] = ACTIONS(310), + [anon_sym_module] = ACTIONS(310), + [anon_sym_static] = ACTIONS(310), + [anon_sym_package] = ACTIONS(310), + [anon_sym_import] = ACTIONS(310), + [anon_sym_enum] = ACTIONS(310), + [anon_sym_public] = ACTIONS(310), + [anon_sym_protected] = ACTIONS(310), + [anon_sym_private] = ACTIONS(310), + [anon_sym_abstract] = ACTIONS(310), + [anon_sym_final] = ACTIONS(310), + [anon_sym_strictfp] = ACTIONS(310), + [anon_sym_native] = ACTIONS(310), + [anon_sym_transient] = ACTIONS(310), + [anon_sym_volatile] = ACTIONS(310), + [anon_sym_sealed] = ACTIONS(310), + [anon_sym_non_DASHsealed] = ACTIONS(308), + [anon_sym_ATinterface] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(310), + [anon_sym_byte] = ACTIONS(310), + [anon_sym_short] = ACTIONS(310), + [anon_sym_int] = ACTIONS(310), + [anon_sym_long] = ACTIONS(310), + [anon_sym_char] = ACTIONS(310), + [anon_sym_float] = ACTIONS(310), + [anon_sym_double] = ACTIONS(310), + [sym_boolean_type] = ACTIONS(310), + [sym_void_type] = ACTIONS(310), + [sym_this] = ACTIONS(310), + [sym_super] = ACTIONS(310), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [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(787), - [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), - [sym_string_literal] = ACTIONS(789), - [sym_text_block] = ACTIONS(787), - [sym_null_literal] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [237] = { + [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(871), + [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), + [sym_string_literal] = ACTIONS(873), + [sym_text_block] = ACTIONS(871), + [sym_null_literal] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [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(791), - [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), - [sym_string_literal] = ACTIONS(793), - [sym_text_block] = ACTIONS(791), - [sym_null_literal] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [238] = { + [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(875), + [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), + [sym_string_literal] = ACTIONS(877), + [sym_text_block] = ACTIONS(875), + [sym_null_literal] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [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(795), - [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), - [sym_string_literal] = ACTIONS(797), - [sym_text_block] = ACTIONS(795), - [sym_null_literal] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(797), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [239] = { + [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(879), + [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), + [sym_string_literal] = ACTIONS(881), + [sym_text_block] = ACTIONS(879), + [sym_null_literal] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DASH] = 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_RBRACE] = 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(883), + [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_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_final] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [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(799), - [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), - [sym_string_literal] = ACTIONS(801), - [sym_text_block] = ACTIONS(799), - [sym_null_literal] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [240] = { + [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(885), + [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), + [sym_string_literal] = ACTIONS(887), + [sym_text_block] = ACTIONS(885), + [sym_null_literal] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), }, - [191] = { - [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(803), - [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), - [sym_string_literal] = ACTIONS(805), - [sym_text_block] = ACTIONS(803), - [sym_null_literal] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [241] = { + [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(889), + [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), + [sym_string_literal] = ACTIONS(891), + [sym_text_block] = ACTIONS(889), + [sym_null_literal] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + }, + [242] = { + [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(893), + [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), + [sym_string_literal] = ACTIONS(895), + [sym_text_block] = ACTIONS(893), + [sym_null_literal] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + }, + [243] = { + [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(897), + [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), + [sym_string_literal] = ACTIONS(899), + [sym_text_block] = ACTIONS(897), + [sym_null_literal] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), }, - [192] = { - [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(807), - [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), - [sym_string_literal] = ACTIONS(809), - [sym_text_block] = ACTIONS(807), - [sym_null_literal] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [244] = { + [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(901), + [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), + [sym_string_literal] = ACTIONS(903), + [sym_text_block] = ACTIONS(901), + [sym_null_literal] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), }, - [193] = { - [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(811), - [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), - [sym_string_literal] = ACTIONS(813), - [sym_text_block] = ACTIONS(811), - [sym_null_literal] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [245] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(511), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym_block] = STATE(503), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [194] = { - [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(815), - [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), - [sym_string_literal] = ACTIONS(817), - [sym_text_block] = ACTIONS(815), - [sym_null_literal] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [246] = { + [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(905), + [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), + [sym_string_literal] = ACTIONS(907), + [sym_text_block] = ACTIONS(905), + [sym_null_literal] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), }, - [195] = { - [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(819), - [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), - [sym_string_literal] = ACTIONS(821), - [sym_text_block] = ACTIONS(819), - [sym_null_literal] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [247] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym_block] = STATE(503), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [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(823), - [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), - [sym_string_literal] = ACTIONS(825), - [sym_text_block] = ACTIONS(823), - [sym_null_literal] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [248] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym_block] = STATE(485), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [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(827), - [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), - [sym_string_literal] = ACTIONS(829), - [sym_text_block] = ACTIONS(827), - [sym_null_literal] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [249] = { + [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(909), + [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), + [sym_string_literal] = ACTIONS(911), + [sym_text_block] = ACTIONS(909), + [sym_null_literal] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), }, - [198] = { - [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(831), - [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), - [sym_string_literal] = ACTIONS(833), - [sym_text_block] = ACTIONS(831), - [sym_null_literal] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(833), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [250] = { + [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(913), + [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), + [sym_string_literal] = ACTIONS(915), + [sym_text_block] = ACTIONS(913), + [sym_null_literal] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), }, - [199] = { - [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(835), - [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), - [sym_string_literal] = ACTIONS(837), - [sym_text_block] = ACTIONS(835), - [sym_null_literal] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [251] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(567), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [200] = { - [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(839), - [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), - [sym_string_literal] = ACTIONS(841), - [sym_text_block] = ACTIONS(839), - [sym_null_literal] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [252] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(562), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [201] = { - [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(843), - [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), - [sym_string_literal] = ACTIONS(845), - [sym_text_block] = ACTIONS(843), - [sym_null_literal] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [253] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(560), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [254] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [202] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(463), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(438), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [255] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(604), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -26738,11 +32718,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(925), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -26757,1198 +32737,575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [ts_builtin_sym_end] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_decimal_integer_literal] = ACTIONS(270), - [sym_hex_integer_literal] = ACTIONS(270), - [sym_octal_integer_literal] = ACTIONS(268), - [sym_binary_integer_literal] = ACTIONS(268), - [sym_decimal_floating_point_literal] = ACTIONS(268), - [sym_hex_floating_point_literal] = ACTIONS(270), - [sym_true] = ACTIONS(270), - [sym_false] = ACTIONS(270), - [sym_character_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(270), - [sym_text_block] = ACTIONS(268), - [sym_null_literal] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(270), - [anon_sym_DASH] = ACTIONS(270), - [anon_sym_BANG] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PLUS_PLUS] = ACTIONS(268), - [anon_sym_DASH_DASH] = ACTIONS(268), - [anon_sym_new] = ACTIONS(270), - [anon_sym_class] = ACTIONS(270), - [anon_sym_switch] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_case] = ACTIONS(270), - [anon_sym_default] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [anon_sym_break] = ACTIONS(270), - [anon_sym_continue] = ACTIONS(270), - [anon_sym_return] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(270), - [anon_sym_synchronized] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_for] = ACTIONS(270), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_open] = ACTIONS(270), - [anon_sym_module] = ACTIONS(270), - [anon_sym_static] = ACTIONS(270), - [anon_sym_package] = ACTIONS(270), - [anon_sym_import] = ACTIONS(270), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_public] = ACTIONS(270), - [anon_sym_protected] = ACTIONS(270), - [anon_sym_private] = ACTIONS(270), - [anon_sym_abstract] = ACTIONS(270), - [anon_sym_final] = ACTIONS(270), - [anon_sym_strictfp] = ACTIONS(270), - [anon_sym_native] = ACTIONS(270), - [anon_sym_transient] = ACTIONS(270), - [anon_sym_volatile] = ACTIONS(270), - [anon_sym_sealed] = ACTIONS(270), - [anon_sym_non_DASHsealed] = ACTIONS(268), - [anon_sym_ATinterface] = ACTIONS(268), - [anon_sym_interface] = ACTIONS(270), - [anon_sym_byte] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_int] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_char] = ACTIONS(270), - [anon_sym_float] = ACTIONS(270), - [anon_sym_double] = ACTIONS(270), - [sym_boolean_type] = ACTIONS(270), - [sym_void_type] = ACTIONS(270), - [sym_this] = ACTIONS(270), - [sym_super] = ACTIONS(270), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [204] = { - [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(847), - [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), - [sym_string_literal] = ACTIONS(849), - [sym_text_block] = ACTIONS(847), - [sym_null_literal] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = 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_RBRACE] = 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(851), - [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_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_final] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [ts_builtin_sym_end] = ACTIONS(300), + [256] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), [sym_identifier] = ACTIONS(302), - [sym_decimal_integer_literal] = ACTIONS(302), - [sym_hex_integer_literal] = ACTIONS(302), - [sym_octal_integer_literal] = ACTIONS(300), - [sym_binary_integer_literal] = ACTIONS(300), - [sym_decimal_floating_point_literal] = ACTIONS(300), - [sym_hex_floating_point_literal] = ACTIONS(302), - [sym_true] = ACTIONS(302), - [sym_false] = ACTIONS(302), - [sym_character_literal] = ACTIONS(300), - [sym_string_literal] = ACTIONS(302), - [sym_text_block] = ACTIONS(300), - [sym_null_literal] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_PLUS_PLUS] = ACTIONS(300), - [anon_sym_DASH_DASH] = ACTIONS(300), - [anon_sym_new] = ACTIONS(302), - [anon_sym_class] = ACTIONS(302), - [anon_sym_switch] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_assert] = ACTIONS(302), - [anon_sym_do] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_synchronized] = ACTIONS(302), - [anon_sym_throw] = ACTIONS(302), - [anon_sym_try] = ACTIONS(302), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_AT] = ACTIONS(302), - [anon_sym_open] = ACTIONS(302), - [anon_sym_module] = ACTIONS(302), - [anon_sym_static] = ACTIONS(302), - [anon_sym_package] = ACTIONS(302), - [anon_sym_import] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_public] = ACTIONS(302), - [anon_sym_protected] = ACTIONS(302), - [anon_sym_private] = ACTIONS(302), - [anon_sym_abstract] = ACTIONS(302), - [anon_sym_final] = ACTIONS(302), - [anon_sym_strictfp] = ACTIONS(302), - [anon_sym_native] = ACTIONS(302), - [anon_sym_transient] = ACTIONS(302), - [anon_sym_volatile] = ACTIONS(302), - [anon_sym_sealed] = ACTIONS(302), - [anon_sym_non_DASHsealed] = ACTIONS(300), - [anon_sym_ATinterface] = ACTIONS(300), - [anon_sym_interface] = ACTIONS(302), - [anon_sym_byte] = ACTIONS(302), - [anon_sym_short] = ACTIONS(302), - [anon_sym_int] = ACTIONS(302), - [anon_sym_long] = ACTIONS(302), - [anon_sym_char] = ACTIONS(302), - [anon_sym_float] = ACTIONS(302), - [anon_sym_double] = ACTIONS(302), - [sym_boolean_type] = ACTIONS(302), - [sym_void_type] = ACTIONS(302), - [sym_this] = ACTIONS(302), - [sym_super] = ACTIONS(302), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [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(853), - [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), - [sym_string_literal] = ACTIONS(855), - [sym_text_block] = ACTIONS(853), - [sym_null_literal] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [207] = { - [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(857), - [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), - [sym_string_literal] = ACTIONS(859), - [sym_text_block] = ACTIONS(857), - [sym_null_literal] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [208] = { - [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(861), - [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), - [sym_string_literal] = ACTIONS(863), - [sym_text_block] = ACTIONS(861), - [sym_null_literal] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [209] = { - [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(865), - [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), - [sym_string_literal] = ACTIONS(867), - [sym_text_block] = ACTIONS(865), - [sym_null_literal] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [210] = { - [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(869), - [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), - [sym_string_literal] = ACTIONS(871), - [sym_text_block] = ACTIONS(869), - [sym_null_literal] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [211] = { - [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(873), - [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), - [sym_string_literal] = ACTIONS(875), - [sym_text_block] = ACTIONS(873), - [sym_null_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [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(877), - [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), - [sym_string_literal] = ACTIONS(879), - [sym_text_block] = ACTIONS(877), - [sym_null_literal] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [257] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(539), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [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(881), - [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), - [sym_string_literal] = ACTIONS(883), - [sym_text_block] = ACTIONS(881), - [sym_null_literal] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [258] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(610), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [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(885), - [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), - [sym_string_literal] = ACTIONS(887), - [sym_text_block] = ACTIONS(885), - [sym_null_literal] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [259] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(611), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [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(889), - [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), - [sym_string_literal] = ACTIONS(891), - [sym_text_block] = ACTIONS(889), - [sym_null_literal] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [260] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(573), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [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(893), - [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), - [sym_string_literal] = ACTIONS(895), - [sym_text_block] = ACTIONS(893), - [sym_null_literal] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [261] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [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(897), - [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), - [sym_string_literal] = ACTIONS(899), - [sym_text_block] = ACTIONS(897), - [sym_null_literal] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [262] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(603), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [263] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(602), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -27962,7 +33319,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(901), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -27971,9 +33327,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -27988,43 +33345,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [264] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(574), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28038,6 +33395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(943), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28045,11 +33403,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(903), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28064,43 +33421,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [220] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(512), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [265] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(606), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28114,7 +33471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(905), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28123,9 +33479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28140,43 +33497,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(488), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [266] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(534), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28190,7 +33547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(947), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28199,9 +33556,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28216,43 +33573,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(511), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [267] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(540), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28266,7 +33623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(949), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28275,9 +33632,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28292,43 +33649,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(555), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [268] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(564), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28342,6 +33699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(951), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28349,11 +33707,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(911), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28368,43 +33725,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(487), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [269] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(576), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28418,7 +33775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(953), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28427,9 +33784,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28444,43 +33801,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(553), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [270] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(541), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28494,6 +33851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(955), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28502,10 +33860,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28520,43 +33877,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(484), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [271] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(595), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28570,7 +33927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(917), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28579,9 +33935,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28596,43 +33953,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(547), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [272] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28646,6 +34003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(959), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28654,10 +34012,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28672,43 +34029,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [228] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(555), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [273] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(538), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28722,6 +34079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(961), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28729,11 +34087,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(921), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28748,43 +34105,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(485), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [274] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28798,7 +34155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(923), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28807,9 +34163,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28824,43 +34181,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [230] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(503), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [275] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(604), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28874,7 +34231,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(925), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28882,10 +34238,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(965), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28900,43 +34257,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [231] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(535), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [276] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28957,11 +34314,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(967), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -28976,43 +34333,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [232] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [277] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(570), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29026,6 +34383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -29033,11 +34391,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(929), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29052,43 +34409,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [233] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(521), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [278] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(614), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29102,7 +34459,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -29111,9 +34467,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29128,43 +34485,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [234] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(545), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [279] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(609), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [280] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(542), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [281] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(546), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [282] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(530), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [283] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(553), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), + [anon_sym_byte] = ACTIONS(75), + [anon_sym_short] = ACTIONS(75), + [anon_sym_int] = ACTIONS(75), + [anon_sym_long] = ACTIONS(75), + [anon_sym_char] = ACTIONS(75), + [anon_sym_float] = ACTIONS(77), + [anon_sym_double] = ACTIONS(77), + [sym_boolean_type] = ACTIONS(79), + [sym_void_type] = ACTIONS(79), + [sym_this] = ACTIONS(81), + [sym_super] = ACTIONS(83), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [284] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(489), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29186,10 +34920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29204,43 +34937,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [235] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [285] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(490), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29262,85 +34995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(490), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29355,43 +35012,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [237] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(507), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [286] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(593), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29404,18 +35061,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29430,43 +35087,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [238] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(444), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [287] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(601), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29488,9 +35145,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29505,43 +35162,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(436), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [288] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(548), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29554,18 +35211,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29580,43 +35237,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(448), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [289] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(597), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29638,9 +35295,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29655,43 +35312,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [241] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [290] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(617), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29713,9 +35370,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29730,43 +35387,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [242] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(452), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [291] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(565), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29788,9 +35445,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29805,43 +35462,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(550), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [292] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29863,9 +35520,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29880,43 +35537,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [293] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(524), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29938,9 +35595,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -29955,43 +35612,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [245] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(454), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [294] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(586), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30013,9 +35670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30030,43 +35687,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [246] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(496), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [295] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(512), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30088,9 +35745,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30105,43 +35762,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(451), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [296] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30163,9 +35820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30180,43 +35837,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(444), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [297] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(510), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30229,18 +35886,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30255,43 +35912,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [249] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(546), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [298] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(509), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30313,9 +35970,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30330,43 +35987,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(516), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [299] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30388,9 +36045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30405,43 +36062,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [300] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(513), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30463,9 +36120,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30480,43 +36137,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [252] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(446), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [301] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30538,9 +36195,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30555,43 +36212,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [253] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(554), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [302] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(533), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30604,18 +36261,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30630,43 +36287,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [254] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(436), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [303] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(520), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30688,9 +36345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30705,43 +36362,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [255] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(549), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [304] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(556), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30754,18 +36411,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30780,43 +36437,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [256] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(456), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [305] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(557), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30829,18 +36486,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30855,43 +36512,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [257] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(479), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [306] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(585), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30904,18 +36561,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -30930,43 +36587,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [258] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(468), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [307] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(558), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30979,18 +36636,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31005,43 +36662,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [259] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(467), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [308] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(559), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31054,18 +36711,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31080,43 +36737,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [260] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(466), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [309] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(519), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31138,9 +36795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31155,43 +36812,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [261] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(446), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [310] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(495), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31204,18 +36861,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31230,43 +36887,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [262] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(526), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [311] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(518), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31288,9 +36945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31305,43 +36962,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [263] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(489), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [312] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(532), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31354,18 +37011,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31380,43 +37037,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [264] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(491), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [313] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(495), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31429,18 +37086,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31455,43 +37112,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [265] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(494), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [314] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(561), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31504,18 +37161,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31530,43 +37187,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [266] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(443), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [315] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(517), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31588,9 +37245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31605,43 +37262,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [267] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(533), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [316] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(555), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31654,18 +37311,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31680,43 +37337,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [268] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(443), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [317] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(516), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31729,18 +37386,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31755,43 +37412,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [269] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(448), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [318] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(604), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31804,18 +37461,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31830,43 +37487,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [270] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [319] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(514), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31888,9 +37545,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31905,43 +37562,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(532), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [320] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(612), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31963,9 +37620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -31980,43 +37637,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [272] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(514), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [321] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(608), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32029,18 +37686,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32055,43 +37712,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(513), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [322] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(598), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32104,18 +37761,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32130,43 +37787,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(495), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [323] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32179,18 +37836,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32205,43 +37862,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(483), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [324] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(600), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32254,18 +37911,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32280,43 +37937,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [276] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(499), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [325] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(490), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32329,18 +37986,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32355,43 +38012,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(551), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [326] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(489), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32404,18 +38061,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32430,43 +38087,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(472), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [327] = { + [sym_identifier] = ACTIONS(785), + [sym_decimal_integer_literal] = ACTIONS(785), + [sym_hex_integer_literal] = ACTIONS(785), + [sym_octal_integer_literal] = ACTIONS(787), + [sym_binary_integer_literal] = ACTIONS(787), + [sym_decimal_floating_point_literal] = ACTIONS(787), + [sym_hex_floating_point_literal] = ACTIONS(785), + [sym_true] = ACTIONS(785), + [sym_false] = ACTIONS(785), + [sym_character_literal] = ACTIONS(787), + [sym_string_literal] = ACTIONS(785), + [sym_text_block] = ACTIONS(787), + [sym_null_literal] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [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(785), + [anon_sym_class] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [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_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_final] = 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(787), + [anon_sym_ATinterface] = ACTIONS(787), + [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), + }, + [328] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(579), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32479,18 +38211,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32505,43 +38237,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(500), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [329] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(494), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32554,18 +38286,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32580,118 +38312,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym_identifier] = ACTIONS(725), - [sym_decimal_integer_literal] = ACTIONS(725), - [sym_hex_integer_literal] = ACTIONS(725), - [sym_octal_integer_literal] = ACTIONS(727), - [sym_binary_integer_literal] = ACTIONS(727), - [sym_decimal_floating_point_literal] = ACTIONS(727), - [sym_hex_floating_point_literal] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_character_literal] = ACTIONS(727), - [sym_string_literal] = ACTIONS(725), - [sym_text_block] = ACTIONS(727), - [sym_null_literal] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(725), - [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(725), - [anon_sym_class] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(727), - [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_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_final] = 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(727), - [anon_sym_ATinterface] = ACTIONS(727), - [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), - }, - [281] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(470), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [330] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(584), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32713,9 +38370,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32730,43 +38387,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(524), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [331] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(599), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32788,9 +38445,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32805,43 +38462,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), + [332] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(578), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32854,18 +38511,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32880,43 +38537,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [284] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(555), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [333] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(494), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32938,9 +38595,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -32955,43 +38612,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [285] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [334] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(504), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33013,9 +38670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33030,43 +38687,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(539), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [335] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(575), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33088,84 +38745,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [287] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(505), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1115), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(332), - [sym_array_access] = STATE(332), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1115), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(747), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33180,43 +38762,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(538), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [336] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(504), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1196), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1196), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(859), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33229,18 +38811,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33255,43 +38837,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(465), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [337] = { + [sym__literal] = STATE(436), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(501), + [sym_assignment_expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_instanceof_expression] = STATE(501), + [sym_lambda_expression] = STATE(501), + [sym_inferred_parameters] = STATE(1215), + [sym_ternary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_update_expression] = STATE(501), + [sym_primary_expression] = STATE(437), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(371), + [sym_array_access] = STATE(371), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_switch_expression] = STATE(501), + [sym__annotation] = STATE(641), + [sym_marker_annotation] = STATE(641), + [sym_annotation] = STATE(641), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(743), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [sym_formal_parameters] = STATE(1215), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(302), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33313,9 +38895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(337), + [anon_sym_open] = ACTIONS(298), + [anon_sym_module] = ACTIONS(298), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33330,43 +38912,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [sym__literal] = STATE(390), - [sym_expression] = STATE(475), - [sym_cast_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_instanceof_expression] = STATE(449), - [sym_lambda_expression] = STATE(449), - [sym_inferred_parameters] = STATE(1140), - [sym_ternary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_primary_expression] = STATE(416), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(576), - [sym_marker_annotation] = STATE(576), - [sym_annotation] = STATE(576), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [sym_formal_parameters] = STATE(1140), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [sym_identifier] = ACTIONS(288), + [338] = { + [sym_identifier] = ACTIONS(977), + [sym_decimal_integer_literal] = ACTIONS(977), + [sym_hex_integer_literal] = ACTIONS(977), + [sym_octal_integer_literal] = ACTIONS(979), + [sym_binary_integer_literal] = ACTIONS(979), + [sym_decimal_floating_point_literal] = ACTIONS(979), + [sym_hex_floating_point_literal] = ACTIONS(977), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_character_literal] = ACTIONS(979), + [sym_string_literal] = ACTIONS(977), + [sym_text_block] = ACTIONS(979), + [sym_null_literal] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [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(977), + [anon_sym_class] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_default] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [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_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_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_final] = 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(979), + [anon_sym_ATinterface] = ACTIONS(979), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [339] = { + [sym_identifier] = ACTIONS(981), + [sym_decimal_integer_literal] = ACTIONS(981), + [sym_hex_integer_literal] = ACTIONS(981), + [sym_octal_integer_literal] = ACTIONS(983), + [sym_binary_integer_literal] = ACTIONS(983), + [sym_decimal_floating_point_literal] = ACTIONS(983), + [sym_hex_floating_point_literal] = ACTIONS(981), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_character_literal] = ACTIONS(983), + [sym_string_literal] = ACTIONS(981), + [sym_text_block] = ACTIONS(983), + [sym_null_literal] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [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(981), + [anon_sym_class] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_default] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [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_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_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_final] = 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(983), + [anon_sym_ATinterface] = ACTIONS(983), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [340] = { + [sym_identifier] = ACTIONS(985), + [sym_decimal_integer_literal] = ACTIONS(985), + [sym_hex_integer_literal] = ACTIONS(985), + [sym_octal_integer_literal] = ACTIONS(987), + [sym_binary_integer_literal] = ACTIONS(987), + [sym_decimal_floating_point_literal] = ACTIONS(987), + [sym_hex_floating_point_literal] = ACTIONS(985), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_character_literal] = ACTIONS(987), + [sym_string_literal] = ACTIONS(985), + [sym_text_block] = ACTIONS(987), + [sym_null_literal] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [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(985), + [anon_sym_class] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_default] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [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_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_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_final] = 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(987), + [anon_sym_ATinterface] = ACTIONS(987), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [341] = { + [sym__literal] = STATE(436), + [sym_primary_expression] = STATE(1042), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(856), + [sym_array_access] = STATE(436), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_resource] = STATE(1154), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(677), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(697), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(989), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33379,388 +39174,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(937), - [sym_decimal_integer_literal] = ACTIONS(937), - [sym_hex_integer_literal] = ACTIONS(937), - [sym_octal_integer_literal] = ACTIONS(939), - [sym_binary_integer_literal] = ACTIONS(939), - [sym_decimal_floating_point_literal] = ACTIONS(939), - [sym_hex_floating_point_literal] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_character_literal] = ACTIONS(939), - [sym_string_literal] = ACTIONS(937), - [sym_text_block] = ACTIONS(939), - [sym_null_literal] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [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(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_default] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [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_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_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_final] = 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(939), - [anon_sym_ATinterface] = ACTIONS(939), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [292] = { - [sym_identifier] = ACTIONS(941), - [sym_decimal_integer_literal] = ACTIONS(941), - [sym_hex_integer_literal] = ACTIONS(941), - [sym_octal_integer_literal] = ACTIONS(943), - [sym_binary_integer_literal] = ACTIONS(943), - [sym_decimal_floating_point_literal] = ACTIONS(943), - [sym_hex_floating_point_literal] = ACTIONS(941), - [sym_true] = ACTIONS(941), - [sym_false] = ACTIONS(941), - [sym_character_literal] = ACTIONS(943), - [sym_string_literal] = ACTIONS(941), - [sym_text_block] = ACTIONS(943), - [sym_null_literal] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), - [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(941), - [anon_sym_class] = ACTIONS(941), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_default] = ACTIONS(941), - [anon_sym_SEMI] = ACTIONS(943), - [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_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_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_final] = 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(943), - [anon_sym_ATinterface] = ACTIONS(943), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(945), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hex_integer_literal] = ACTIONS(945), - [sym_octal_integer_literal] = ACTIONS(947), - [sym_binary_integer_literal] = ACTIONS(947), - [sym_decimal_floating_point_literal] = ACTIONS(947), - [sym_hex_floating_point_literal] = ACTIONS(945), - [sym_true] = ACTIONS(945), - [sym_false] = ACTIONS(945), - [sym_character_literal] = ACTIONS(947), - [sym_string_literal] = ACTIONS(945), - [sym_text_block] = ACTIONS(947), - [sym_null_literal] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [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(945), - [anon_sym_class] = ACTIONS(945), - [anon_sym_switch] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_default] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(947), - [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_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_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_final] = 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(947), - [anon_sym_ATinterface] = ACTIONS(947), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [294] = { - [sym_identifier] = ACTIONS(949), - [sym_decimal_integer_literal] = ACTIONS(949), - [sym_hex_integer_literal] = ACTIONS(949), - [sym_octal_integer_literal] = ACTIONS(951), - [sym_binary_integer_literal] = ACTIONS(951), - [sym_decimal_floating_point_literal] = ACTIONS(951), - [sym_hex_floating_point_literal] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_character_literal] = ACTIONS(951), - [sym_string_literal] = ACTIONS(949), - [sym_text_block] = ACTIONS(951), - [sym_null_literal] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [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(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_default] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(951), - [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_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_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_final] = 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(951), - [anon_sym_ATinterface] = ACTIONS(951), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [295] = { - [sym__literal] = STATE(390), - [sym_primary_expression] = STATE(868), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(782), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_resource] = STATE(1076), - [sym__annotation] = STATE(528), - [sym_marker_annotation] = STATE(528), - [sym_annotation] = STATE(528), - [sym_modifiers] = STATE(609), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(633), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [aux_sym_modifiers_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(953), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_new] = ACTIONS(959), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_new] = ACTIONS(995), + [anon_sym_default] = ACTIONS(294), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(997), + [anon_sym_module] = ACTIONS(997), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33775,34 +39208,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [sym__literal] = STATE(390), - [sym_primary_expression] = STATE(868), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(782), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_resource] = STATE(1076), - [sym__annotation] = STATE(528), - [sym_marker_annotation] = STATE(528), - [sym_annotation] = STATE(528), - [sym_modifiers] = STATE(609), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(633), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [aux_sym_modifiers_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(953), + [342] = { + [sym__literal] = STATE(436), + [sym_primary_expression] = STATE(1042), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(856), + [sym_array_access] = STATE(436), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_resource] = STATE(1154), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(677), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(697), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(989), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33815,26 +39248,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_new] = ACTIONS(959), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_new] = ACTIONS(995), + [anon_sym_default] = ACTIONS(294), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(997), + [anon_sym_module] = ACTIONS(997), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33849,34 +39282,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [sym__literal] = STATE(390), - [sym_primary_expression] = STATE(868), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(782), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_resource] = STATE(920), - [sym__annotation] = STATE(528), - [sym_marker_annotation] = STATE(528), - [sym_annotation] = STATE(528), - [sym_modifiers] = STATE(609), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(633), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [aux_sym_modifiers_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(953), + [343] = { + [sym_identifier] = ACTIONS(1001), + [sym_decimal_integer_literal] = ACTIONS(1001), + [sym_hex_integer_literal] = ACTIONS(1001), + [sym_octal_integer_literal] = ACTIONS(1003), + [sym_binary_integer_literal] = ACTIONS(1003), + [sym_decimal_floating_point_literal] = ACTIONS(1003), + [sym_hex_floating_point_literal] = ACTIONS(1001), + [sym_true] = ACTIONS(1001), + [sym_false] = ACTIONS(1001), + [sym_character_literal] = ACTIONS(1003), + [sym_string_literal] = ACTIONS(1001), + [sym_text_block] = ACTIONS(1003), + [sym_null_literal] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [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(1001), + [anon_sym_class] = ACTIONS(1001), + [anon_sym_switch] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [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_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_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_final] = 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(1003), + [anon_sym_ATinterface] = ACTIONS(1003), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [344] = { + [sym__literal] = STATE(436), + [sym_primary_expression] = STATE(1042), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(856), + [sym_array_access] = STATE(436), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_resource] = STATE(1154), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(677), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(697), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(989), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33889,25 +39396,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_new] = ACTIONS(959), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_new] = ACTIONS(995), + [anon_sym_default] = ACTIONS(294), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(997), + [anon_sym_module] = ACTIONS(997), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -33922,34 +39429,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [sym__literal] = STATE(390), - [sym_primary_expression] = STATE(868), - [sym_array_creation_expression] = STATE(390), - [sym_parenthesized_expression] = STATE(390), - [sym_class_literal] = STATE(390), - [sym_object_creation_expression] = STATE(390), - [sym__unqualified_object_creation_expression] = STATE(413), - [sym_field_access] = STATE(782), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(390), - [sym_method_reference] = STATE(390), - [sym_resource] = STATE(1076), - [sym__annotation] = STATE(528), - [sym_marker_annotation] = STATE(528), - [sym_annotation] = STATE(528), - [sym_modifiers] = STATE(609), - [sym__type] = STATE(1135), - [sym__unannotated_type] = STATE(633), - [sym_annotated_type] = STATE(681), - [sym_scoped_type_identifier] = STATE(644), - [sym_generic_type] = STATE(666), - [sym_array_type] = STATE(605), - [sym_integral_type] = STATE(605), - [sym_floating_point_type] = STATE(605), - [aux_sym_array_creation_expression_repeat1] = STATE(576), - [aux_sym_modifiers_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(953), + [345] = { + [sym__literal] = STATE(436), + [sym_primary_expression] = STATE(1042), + [sym_array_creation_expression] = STATE(436), + [sym_parenthesized_expression] = STATE(436), + [sym_class_literal] = STATE(436), + [sym_object_creation_expression] = STATE(436), + [sym__unqualified_object_creation_expression] = STATE(438), + [sym_field_access] = STATE(856), + [sym_array_access] = STATE(436), + [sym_method_invocation] = STATE(436), + [sym_method_reference] = STATE(436), + [sym_resource] = STATE(1048), + [sym__annotation] = STATE(587), + [sym_marker_annotation] = STATE(587), + [sym_annotation] = STATE(587), + [sym_modifiers] = STATE(677), + [sym__type] = STATE(1213), + [sym__unannotated_type] = STATE(697), + [sym_annotated_type] = STATE(753), + [sym_scoped_type_identifier] = STATE(707), + [sym_generic_type] = STATE(737), + [sym_array_type] = STATE(671), + [sym_integral_type] = STATE(671), + [sym_floating_point_type] = STATE(671), + [aux_sym_array_creation_expression_repeat1] = STATE(641), + [aux_sym_modifiers_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(989), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33962,25 +39469,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_new] = ACTIONS(959), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_new] = ACTIONS(995), + [anon_sym_default] = ACTIONS(294), + [anon_sym_synchronized] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_open] = ACTIONS(997), + [anon_sym_module] = ACTIONS(997), + [anon_sym_static] = ACTIONS(294), + [anon_sym_public] = ACTIONS(294), + [anon_sym_protected] = ACTIONS(294), + [anon_sym_private] = ACTIONS(294), + [anon_sym_abstract] = ACTIONS(294), + [anon_sym_final] = ACTIONS(294), + [anon_sym_strictfp] = ACTIONS(294), + [anon_sym_native] = ACTIONS(294), + [anon_sym_transient] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(294), + [anon_sym_sealed] = ACTIONS(294), + [anon_sym_non_DASHsealed] = ACTIONS(300), [anon_sym_byte] = ACTIONS(75), [anon_sym_short] = ACTIONS(75), [anon_sym_int] = ACTIONS(75), @@ -34013,31 +39520,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(965), 1, + ACTIONS(1005), 1, sym_identifier, - ACTIONS(967), 1, + ACTIONS(1007), 1, anon_sym_LT, - ACTIONS(969), 1, + ACTIONS(1009), 1, anon_sym_RBRACE, - ACTIONS(971), 1, + ACTIONS(1011), 1, anon_sym_SEMI, - ACTIONS(973), 1, + ACTIONS(1013), 1, anon_sym_static, - ACTIONS(975), 1, + ACTIONS(1015), 1, anon_sym_record, - STATE(531), 1, + STATE(590), 1, sym_modifiers, - STATE(573), 1, + STATE(638), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(621), 1, + STATE(688), 1, sym__unannotated_type, - STATE(816), 1, + STATE(926), 1, sym__constructor_declarator, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34048,11 +39555,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34063,7 +39570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(302), 11, + STATE(348), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34089,71 +39596,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [118] = 28, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(980), 1, - anon_sym_LT, - ACTIONS(983), 1, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(986), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(989), 1, - anon_sym_RBRACE, - ACTIONS(994), 1, - anon_sym_SEMI, - ACTIONS(997), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1000), 1, - anon_sym_static, - ACTIONS(1003), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(1006), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1009), 1, - anon_sym_record, - ACTIONS(1012), 1, + ACTIONS(71), 1, anon_sym_ATinterface, - ACTIONS(1015), 1, + ACTIONS(73), 1, anon_sym_interface, - STATE(531), 1, + ACTIONS(1005), 1, + sym_identifier, + ACTIONS(1007), 1, + anon_sym_LT, + ACTIONS(1013), 1, + anon_sym_static, + ACTIONS(1015), 1, + anon_sym_record, + ACTIONS(1017), 1, + anon_sym_RBRACE, + ACTIONS(1019), 1, + anon_sym_SEMI, + STATE(590), 1, sym_modifiers, - STATE(573), 1, + STATE(638), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(621), 1, + STATE(688), 1, sym__unannotated_type, - STATE(816), 1, + STATE(926), 1, sym__constructor_declarator, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1021), 2, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1024), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1018), 5, + ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(300), 11, + STATE(346), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34165,7 +39672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(991), 12, + ACTIONS(29), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -34179,71 +39686,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [236] = 28, - ACTIONS(23), 1, + ACTIONS(1021), 1, + sym_identifier, + ACTIONS(1024), 1, + anon_sym_LT, + ACTIONS(1027), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(1030), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(1033), 1, + anon_sym_RBRACE, + ACTIONS(1038), 1, + anon_sym_SEMI, + ACTIONS(1041), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1044), 1, + anon_sym_static, + ACTIONS(1047), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1050), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, + ACTIONS(1053), 1, + anon_sym_record, + ACTIONS(1056), 1, anon_sym_ATinterface, - ACTIONS(73), 1, + ACTIONS(1059), 1, anon_sym_interface, - ACTIONS(965), 1, - sym_identifier, - ACTIONS(967), 1, - anon_sym_LT, - ACTIONS(973), 1, - anon_sym_static, - ACTIONS(975), 1, - anon_sym_record, - ACTIONS(1027), 1, - anon_sym_RBRACE, - ACTIONS(1029), 1, - anon_sym_SEMI, - STATE(531), 1, + STATE(590), 1, sym_modifiers, - STATE(573), 1, + STATE(638), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(621), 1, + STATE(688), 1, sym__unannotated_type, - STATE(816), 1, + STATE(926), 1, sym__constructor_declarator, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1065), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1068), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(1062), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(303), 11, + STATE(348), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34255,7 +39762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(1035), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -34283,31 +39790,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(965), 1, + ACTIONS(1005), 1, sym_identifier, - ACTIONS(967), 1, + ACTIONS(1007), 1, anon_sym_LT, - ACTIONS(973), 1, + ACTIONS(1013), 1, anon_sym_static, - ACTIONS(975), 1, + ACTIONS(1015), 1, anon_sym_record, - ACTIONS(1031), 1, + ACTIONS(1071), 1, anon_sym_RBRACE, - ACTIONS(1033), 1, + ACTIONS(1073), 1, anon_sym_SEMI, - STATE(531), 1, + STATE(590), 1, sym_modifiers, - STATE(573), 1, + STATE(638), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(621), 1, + STATE(688), 1, sym__unannotated_type, - STATE(816), 1, + STATE(926), 1, sym__constructor_declarator, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34318,11 +39825,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34333,7 +39840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(300), 11, + STATE(350), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34373,31 +39880,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(965), 1, + ACTIONS(1005), 1, sym_identifier, - ACTIONS(967), 1, + ACTIONS(1007), 1, anon_sym_LT, - ACTIONS(973), 1, + ACTIONS(1011), 1, + anon_sym_SEMI, + ACTIONS(1013), 1, anon_sym_static, - ACTIONS(975), 1, + ACTIONS(1015), 1, anon_sym_record, - ACTIONS(1033), 1, - anon_sym_SEMI, - ACTIONS(1035), 1, + ACTIONS(1075), 1, anon_sym_RBRACE, - STATE(531), 1, + STATE(590), 1, sym_modifiers, - STATE(573), 1, + STATE(638), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(621), 1, + STATE(688), 1, sym__unannotated_type, - STATE(816), 1, + STATE(926), 1, sym__constructor_declarator, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34408,11 +39915,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34423,7 +39930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(300), 11, + STATE(348), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34449,33 +39956,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [590] = 14, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(1085), 1, anon_sym_EQ, - ACTIONS(1049), 1, + ACTIONS(1089), 1, anon_sym_LT, - ACTIONS(1052), 1, + ACTIONS(1092), 1, anon_sym_DASH_GT, - ACTIONS(1057), 1, + ACTIONS(1097), 1, anon_sym_DOT, - ACTIONS(1061), 1, + ACTIONS(1101), 1, anon_sym_AT, - STATE(404), 1, + STATE(444), 1, sym_argument_list, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 2, + ACTIONS(1094), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1037), 3, + ACTIONS(1077), 3, anon_sym_open, anon_sym_module, sym_identifier, - ACTIONS(1047), 11, + ACTIONS(1087), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34487,7 +39994,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(1041), 14, + ACTIONS(1081), 14, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -34502,7 +40009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1043), 14, + ACTIONS(1083), 14, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -34518,63 +40025,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [673] = 24, - ACTIONS(23), 1, + ACTIONS(1103), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1109), 1, anon_sym_class, - ACTIONS(57), 1, + ACTIONS(1112), 1, + anon_sym_RBRACE, + ACTIONS(1117), 1, + anon_sym_SEMI, + ACTIONS(1120), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1123), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1126), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, + ACTIONS(1129), 1, anon_sym_ATinterface, - ACTIONS(73), 1, + ACTIONS(1132), 1, anon_sym_interface, - ACTIONS(967), 1, - anon_sym_LT, - ACTIONS(1063), 1, - sym_identifier, - ACTIONS(1065), 1, - anon_sym_RBRACE, - ACTIONS(1067), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(623), 1, sym_modifiers, - STATE(578), 1, + STATE(639), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(624), 1, + STATE(691), 1, sym__unannotated_type, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1138), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1141), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(1135), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(307), 7, + STATE(352), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -34582,7 +40089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(29), 13, + ACTIONS(1114), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -34609,25 +40116,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(73), 1, anon_sym_interface, - ACTIONS(967), 1, + ACTIONS(1007), 1, anon_sym_LT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1146), 1, anon_sym_RBRACE, - ACTIONS(1071), 1, + ACTIONS(1148), 1, anon_sym_SEMI, - STATE(562), 1, + STATE(623), 1, sym_modifiers, - STATE(578), 1, + STATE(639), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(624), 1, + STATE(691), 1, sym__unannotated_type, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -34638,11 +40145,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -34653,7 +40160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(305), 7, + STATE(354), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -34676,63 +40183,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [879] = 24, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1076), 1, - anon_sym_LT, - ACTIONS(1079), 1, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(1082), 1, - anon_sym_RBRACE, - ACTIONS(1087), 1, - anon_sym_SEMI, - ACTIONS(1090), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1093), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(1096), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1099), 1, + ACTIONS(71), 1, anon_sym_ATinterface, - ACTIONS(1102), 1, + ACTIONS(73), 1, anon_sym_interface, - STATE(562), 1, + ACTIONS(1007), 1, + anon_sym_LT, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1150), 1, + anon_sym_RBRACE, + ACTIONS(1152), 1, + anon_sym_SEMI, + STATE(623), 1, sym_modifiers, - STATE(578), 1, + STATE(639), 1, sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(624), 1, + STATE(691), 1, sym__unannotated_type, - STATE(970), 1, + STATE(1023), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1108), 2, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1111), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(352), 4, + STATE(399), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1105), 5, + ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(307), 7, + STATE(352), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -34740,7 +40247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(1084), 13, + ACTIONS(29), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -34755,43 +40262,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [982] = 18, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(1085), 1, anon_sym_EQ, - ACTIONS(1049), 1, + ACTIONS(1089), 1, anon_sym_LT, - ACTIONS(1052), 1, + ACTIONS(1092), 1, anon_sym_DASH_GT, - ACTIONS(1114), 1, + ACTIONS(1154), 1, anon_sym_AMP, - ACTIONS(1117), 1, + ACTIONS(1157), 1, anon_sym_RPAREN, - ACTIONS(1121), 1, + ACTIONS(1161), 1, anon_sym_COMMA, - ACTIONS(1123), 1, + ACTIONS(1163), 1, anon_sym_DOT, - STATE(404), 1, + STATE(444), 1, sym_argument_list, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, - STATE(950), 1, + STATE(1014), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 2, + ACTIONS(1094), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1061), 2, + ACTIONS(1101), 2, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1037), 4, + ACTIONS(1077), 4, anon_sym_open, anon_sym_module, sym_this, sym_identifier, - ACTIONS(1043), 9, + ACTIONS(1083), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -34801,7 +40308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1047), 11, + ACTIONS(1087), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34813,7 +40320,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(1041), 12, + ACTIONS(1081), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -34826,36 +40333,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1072] = 15, - ACTIONS(1039), 1, + [1072] = 20, + ACTIONS(1167), 1, + sym_identifier, + ACTIONS(1170), 1, + anon_sym_class, + ACTIONS(1173), 1, + anon_sym_RBRACE, + ACTIONS(1178), 1, + anon_sym_AT, + ACTIONS(1181), 1, + anon_sym_enum, + ACTIONS(1184), 1, + anon_sym_non_DASHsealed, + ACTIONS(1187), 1, + anon_sym_ATinterface, + ACTIONS(1190), 1, + anon_sym_interface, + STATE(650), 1, + sym_modifiers, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1196), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1199), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(399), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1193), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(356), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_annotation_type_element_declaration, + sym_interface_declaration, + sym_constant_declaration, + aux_sym_annotation_type_body_repeat1, + ACTIONS(1175), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [1163] = 20, + ACTIONS(23), 1, + anon_sym_class, + ACTIONS(57), 1, + anon_sym_AT, + ACTIONS(67), 1, + anon_sym_enum, + ACTIONS(69), 1, + anon_sym_non_DASHsealed, + ACTIONS(71), 1, + anon_sym_ATinterface, + ACTIONS(73), 1, + anon_sym_interface, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1202), 1, + anon_sym_RBRACE, + STATE(650), 1, + sym_modifiers, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(399), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(360), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_annotation_type_element_declaration, + sym_interface_declaration, + sym_constant_declaration, + aux_sym_annotation_type_body_repeat1, + ACTIONS(29), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [1254] = 15, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(1085), 1, anon_sym_EQ, - ACTIONS(1049), 1, + ACTIONS(1089), 1, anon_sym_LT, - ACTIONS(1052), 1, + ACTIONS(1092), 1, anon_sym_DASH_GT, - ACTIONS(1057), 1, + ACTIONS(1097), 1, anon_sym_DOT, - ACTIONS(1061), 1, + ACTIONS(1101), 1, anon_sym_AT, - ACTIONS(1127), 1, + ACTIONS(1204), 1, anon_sym_COLON, - STATE(404), 1, + STATE(444), 1, sym_argument_list, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 2, + ACTIONS(1094), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1037), 3, + ACTIONS(1077), 3, anon_sym_open, anon_sym_module, sym_identifier, - ACTIONS(1043), 10, + ACTIONS(1083), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -34866,7 +40515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1047), 11, + ACTIONS(1087), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34878,7 +40527,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(1041), 13, + ACTIONS(1081), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -34892,19 +40541,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1153] = 5, - ACTIONS(1039), 1, + [1335] = 15, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(399), 1, + ACTIONS(1085), 1, + anon_sym_EQ, + ACTIONS(1089), 1, + anon_sym_LT, + ACTIONS(1092), 1, + anon_sym_DASH_GT, + ACTIONS(1097), 1, + anon_sym_DOT, + ACTIONS(1101), 1, + anon_sym_AT, + ACTIONS(1206), 1, + anon_sym_COLON, + STATE(444), 1, sym_argument_list, + STATE(662), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1129), 15, + ACTIONS(1094), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1077), 3, + anon_sym_open, + anon_sym_module, + sym_identifier, + ACTIONS(1083), 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(1087), 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(1081), 13, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -34915,47 +40606,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1131), 30, - 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_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, + [1416] = 20, + ACTIONS(23), 1, + anon_sym_class, + ACTIONS(57), 1, + anon_sym_AT, + ACTIONS(67), 1, + anon_sym_enum, + ACTIONS(69), 1, + anon_sym_non_DASHsealed, + ACTIONS(71), 1, + anon_sym_ATinterface, + ACTIONS(73), 1, + anon_sym_interface, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1208), 1, anon_sym_RBRACE, - anon_sym_SEMI, - [1213] = 5, - ACTIONS(1039), 1, + STATE(650), 1, + sym_modifiers, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(399), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(356), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_annotation_type_element_declaration, + sym_interface_declaration, + sym_constant_declaration, + aux_sym_annotation_type_body_repeat1, + ACTIONS(29), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [1507] = 5, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(395), 1, + STATE(473), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1133), 15, + ACTIONS(1210), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -34971,7 +40702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1135), 30, + ACTIONS(1212), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35002,15 +40733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1273] = 5, - ACTIONS(1039), 1, + [1567] = 5, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(400), 1, + STATE(474), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1137), 15, + ACTIONS(1214), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35026,7 +40757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1139), 30, + ACTIONS(1216), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35057,15 +40788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1333] = 5, - ACTIONS(1039), 1, + [1627] = 5, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(387), 1, + STATE(468), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 15, + ACTIONS(1218), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35081,7 +40812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1143), 30, + ACTIONS(1220), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35112,85 +40843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1393] = 19, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1063), 1, - sym_identifier, - ACTIONS(1145), 1, - anon_sym_RBRACE, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(594), 1, - sym_modifiers, - STATE(604), 1, - sym_generic_type, - STATE(627), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(352), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(316), 6, - sym_class_declaration, - sym_annotation_type_declaration, - sym_annotation_type_element_declaration, - sym_interface_declaration, - sym_constant_declaration, - aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [1480] = 7, - ACTIONS(1039), 1, + [1687] = 8, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1226), 1, anon_sym_EQ, - STATE(411), 1, + ACTIONS(1230), 1, + anon_sym_DASH_GT, + STATE(443), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1153), 11, + ACTIONS(1228), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35202,7 +40867,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(1147), 14, + ACTIONS(1222), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35217,7 +40882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1149), 18, + ACTIONS(1224), 18, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35236,147 +40901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1543] = 19, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1063), 1, - sym_identifier, - ACTIONS(1155), 1, - anon_sym_RBRACE, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(594), 1, - sym_modifiers, - STATE(604), 1, - sym_generic_type, - STATE(627), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(352), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(317), 6, - sym_class_declaration, - sym_annotation_type_declaration, - sym_annotation_type_element_declaration, - sym_interface_declaration, - sym_constant_declaration, - aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [1630] = 19, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_class, - ACTIONS(1163), 1, - anon_sym_RBRACE, - ACTIONS(1168), 1, - anon_sym_AT, - ACTIONS(1171), 1, - anon_sym_non_DASHsealed, - ACTIONS(1174), 1, - anon_sym_ATinterface, - ACTIONS(1177), 1, - anon_sym_interface, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(594), 1, - sym_modifiers, - STATE(604), 1, - sym_generic_type, - STATE(627), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1183), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1186), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(352), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1180), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(317), 6, - sym_class_declaration, - sym_annotation_type_declaration, - sym_annotation_type_element_declaration, - sym_interface_declaration, - sym_constant_declaration, - aux_sym_annotation_type_body_repeat1, - ACTIONS(1165), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [1717] = 3, + [1753] = 5, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(475), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1129), 15, + ACTIONS(1232), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35392,7 +40925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1131), 30, + ACTIONS(1234), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35423,24 +40956,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1771] = 10, - ACTIONS(1039), 1, + [1813] = 11, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1189), 1, + ACTIONS(1230), 1, + anon_sym_DASH_GT, + ACTIONS(1236), 1, sym_identifier, - STATE(411), 1, + STATE(443), 1, sym_argument_list, - STATE(899), 1, + STATE(956), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1191), 2, + ACTIONS(1238), 2, anon_sym_open, anon_sym_module, - ACTIONS(1153), 11, + ACTIONS(1228), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35452,7 +40987,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(1149), 13, + ACTIONS(1224), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -35466,7 +41001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - ACTIONS(1147), 14, + ACTIONS(1222), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35481,56 +41016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1839] = 13, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(1049), 1, - anon_sym_LT, - ACTIONS(1057), 1, - anon_sym_DOT, - ACTIONS(1061), 1, - anon_sym_AT, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(1197), 1, - anon_sym_DASH_GT, - STATE(404), 1, - sym_argument_list, - STATE(599), 1, - sym_type_arguments, + [1884] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1043), 11, - 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(1195), 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(1041), 13, + ACTIONS(1210), 15, anon_sym_AMP, + anon_sym_EQ, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -35542,11 +41036,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - [1913] = 3, + ACTIONS(1212), 30, + 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_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_RBRACE, + anon_sym_SEMI, + [1938] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 15, + ACTIONS(1240), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35562,7 +41087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1143), 30, + ACTIONS(1242), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35593,11 +41118,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1967] = 3, + [1992] = 13, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1089), 1, + anon_sym_LT, + ACTIONS(1097), 1, + anon_sym_DOT, + ACTIONS(1101), 1, + anon_sym_AT, + ACTIONS(1244), 1, + anon_sym_EQ, + ACTIONS(1248), 1, + anon_sym_DASH_GT, + STATE(444), 1, + sym_argument_list, + STATE(662), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1200), 15, + ACTIONS(1094), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1083), 11, + 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(1246), 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(1081), 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_COLON, + [2066] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1218), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35613,7 +41199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1202), 30, + ACTIONS(1220), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35644,13 +41230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2021] = 5, - ACTIONS(1045), 1, + [2120] = 5, + ACTIONS(1085), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 11, + ACTIONS(1087), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35662,7 +41248,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(1041), 14, + ACTIONS(1081), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35677,7 +41263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1043), 18, + ACTIONS(1083), 18, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35696,30 +41282,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2078] = 13, - ACTIONS(1039), 1, + [2177] = 13, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(1089), 1, anon_sym_LT, - ACTIONS(1052), 1, + ACTIONS(1092), 1, anon_sym_DASH_GT, - ACTIONS(1057), 1, + ACTIONS(1097), 1, anon_sym_DOT, - ACTIONS(1061), 1, + ACTIONS(1101), 1, anon_sym_AT, - ACTIONS(1204), 1, + ACTIONS(1251), 1, anon_sym_EQ, - STATE(404), 1, + STATE(444), 1, sym_argument_list, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 2, + ACTIONS(1094), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1043), 11, + ACTIONS(1083), 11, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35731,7 +41317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1047), 11, + ACTIONS(1087), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35743,7 +41329,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(1041), 12, + ACTIONS(1081), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -35756,17 +41342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - [2151] = 7, - ACTIONS(1039), 1, + [2250] = 9, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1206), 1, + ACTIONS(1226), 1, anon_sym_EQ, - STATE(411), 1, + ACTIONS(1230), 1, + anon_sym_DASH_GT, + ACTIONS(1253), 1, + anon_sym_module, + STATE(443), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 11, + ACTIONS(1228), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35778,7 +41368,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(1147), 14, + ACTIONS(1222), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35792,8 +41382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1149), 15, + ACTIONS(1224), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -35801,27 +41390,26 @@ 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_DOT, anon_sym_COLON_COLON, - [2211] = 8, - ACTIONS(1039), 1, + anon_sym_SEMI, + [2314] = 8, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1210), 1, - anon_sym_module, - STATE(411), 1, + ACTIONS(1259), 1, + anon_sym_DASH_GT, + STATE(443), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1153), 11, + ACTIONS(1257), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35833,7 +41421,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(1147), 13, + ACTIONS(1222), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35847,7 +41435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(1149), 14, + anon_sym_COLON, + ACTIONS(1224), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -35855,34 +41444,34 @@ static const uint16_t ts_small_parse_table[] = { 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_SEMI, - [2272] = 9, - ACTIONS(282), 1, + [2376] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1216), 1, + ACTIONS(1266), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(384), 1, aux_sym_dimensions_repeat1, - STATE(409), 1, + STATE(464), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(335), 2, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(702), 4, + STATE(769), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1212), 9, + ACTIONS(1262), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35892,7 +41481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1214), 23, + ACTIONS(1264), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35916,27 +41505,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2335] = 9, - ACTIONS(282), 1, + [2439] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1216), 1, + ACTIONS(1266), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(384), 1, aux_sym_dimensions_repeat1, - STATE(421), 1, + STATE(448), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(335), 2, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(702), 4, + STATE(769), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1218), 9, + ACTIONS(1268), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35946,7 +41535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1220), 23, + ACTIONS(1270), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35970,27 +41559,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2398] = 9, - ACTIONS(282), 1, + [2502] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1216), 1, + ACTIONS(1266), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(384), 1, aux_sym_dimensions_repeat1, - STATE(418), 1, + STATE(445), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(335), 2, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(702), 4, + STATE(769), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1222), 9, + ACTIONS(1272), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36000,7 +41589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1224), 23, + ACTIONS(1274), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36024,27 +41613,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2461] = 9, - ACTIONS(282), 1, + [2565] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1216), 1, + ACTIONS(1266), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(384), 1, aux_sym_dimensions_repeat1, - STATE(405), 1, + STATE(462), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(335), 2, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(702), 4, + STATE(769), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1226), 9, + ACTIONS(1276), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36054,7 +41643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1228), 23, + ACTIONS(1278), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36078,11 +41667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2524] = 3, + [2628] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 8, + ACTIONS(1282), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -36091,7 +41680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1230), 33, + ACTIONS(1280), 33, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36125,60 +41714,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [2574] = 5, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1195), 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(1041), 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(1043), 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_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [2628] = 3, + [2678] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 8, + ACTIONS(1286), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -36187,7 +41727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1234), 33, + ACTIONS(1284), 33, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36221,28 +41761,77 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [2678] = 19, - ACTIONS(278), 1, + [2728] = 5, + ACTIONS(1244), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1246), 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(1081), 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(1083), 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_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [2782] = 19, + ACTIONS(292), 1, anon_sym_RPAREN, - ACTIONS(282), 1, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(300), 1, anon_sym_non_DASHsealed, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(337), 1, + STATE(385), 1, sym_receiver_parameter, - STATE(469), 1, + STATE(506), 1, aux_sym_modifiers_repeat1, - STATE(577), 1, + STATE(640), 1, aux_sym_array_creation_expression_repeat1, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(610), 1, + STATE(674), 1, sym_modifiers, - STATE(628), 1, + STATE(701), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -36253,14 +41842,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(906), 2, + STATE(987), 2, sym_formal_parameter, sym_spread_parameter, - STATE(528), 3, + STATE(587), 3, sym__annotation, sym_marker_annotation, sym_annotation, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -36270,7 +41859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(280), 13, + ACTIONS(294), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -36284,23 +41873,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2760] = 7, - ACTIONS(1242), 1, + [2864] = 7, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1245), 1, + ACTIONS(1295), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(335), 2, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(748), 4, + STATE(801), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1238), 9, + ACTIONS(1288), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36310,7 +41899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1240), 23, + ACTIONS(1290), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36334,22 +41923,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2817] = 7, - ACTIONS(282), 1, + [2921] = 7, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1252), 1, + ACTIONS(1302), 1, anon_sym_LBRACK, - STATE(338), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(703), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1248), 9, + ACTIONS(1298), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36359,7 +41948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1250), 23, + ACTIONS(1300), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36383,22 +41972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2873] = 16, - ACTIONS(282), 1, + [2977] = 16, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(300), 1, anon_sym_non_DASHsealed, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1254), 1, + ACTIONS(1304), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(610), 1, + STATE(674), 1, sym_modifiers, - STATE(639), 1, + STATE(718), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -36409,14 +41998,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(928), 2, + STATE(1021), 2, sym_formal_parameter, sym_spread_parameter, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(469), 4, + STATE(506), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -36427,7 +42016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(280), 13, + ACTIONS(294), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -36441,22 +42030,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2947] = 7, - ACTIONS(1260), 1, + [3051] = 7, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1313), 1, + anon_sym_AT, + STATE(386), 1, + aux_sym_dimensions_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1306), 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(1308), 23, + 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_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [3107] = 8, + ACTIONS(296), 1, anon_sym_AT, - STATE(338), 1, + ACTIONS(1302), 1, + anon_sym_LBRACK, + STATE(384), 1, aux_sym_dimensions_repeat1, + STATE(478), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(703), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1256), 9, + ACTIONS(1316), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36465,8 +42105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1258), 23, + ACTIONS(1318), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36483,31 +42122,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_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3003] = 8, - ACTIONS(282), 1, + [3164] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1252), 1, + ACTIONS(1302), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(384), 1, aux_sym_dimensions_repeat1, - STATE(429), 1, + STATE(478), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(703), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1266), 8, + ACTIONS(1320), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36516,7 +42154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1268), 22, + ACTIONS(1322), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36539,21 +42177,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [3060] = 15, - ACTIONS(282), 1, + [3221] = 16, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(300), 1, anon_sym_non_DASHsealed, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(610), 1, + STATE(672), 1, sym_modifiers, - STATE(639), 1, + STATE(712), 1, sym__unannotated_type, + STATE(873), 1, + sym_catch_type, + STATE(1180), 1, + sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -36563,14 +42205,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(1019), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(469), 4, + STATE(506), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -36581,7 +42220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(280), 13, + ACTIONS(294), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -36595,74 +42234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3131] = 8, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1252), 1, - anon_sym_LBRACK, - STATE(336), 1, - aux_sym_dimensions_repeat1, - STATE(429), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(703), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1270), 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(1272), 22, - 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_RBRACE, - anon_sym_SEMI, - [3188] = 16, - ACTIONS(282), 1, + [3294] = 15, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(300), 1, anon_sym_non_DASHsealed, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(607), 1, + STATE(674), 1, sym_modifiers, - STATE(637), 1, + STATE(718), 1, sym__unannotated_type, - STATE(805), 1, - sym_catch_type, - STATE(1085), 1, - sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -36672,11 +42258,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(1128), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(469), 4, + STATE(506), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -36687,7 +42276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(280), 13, + ACTIONS(294), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -36701,107 +42290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3261] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(735), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(737), 25, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_open, - anon_sym_module, - 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, - [3307] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(717), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(719), 25, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_open, - anon_sym_module, - 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, - [3353] = 6, - ACTIONS(1276), 1, + [3365] = 6, + ACTIONS(1326), 1, anon_sym_LPAREN, - ACTIONS(1280), 1, + ACTIONS(1330), 1, anon_sym_DOT, - STATE(372), 1, + STATE(416), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1278), 3, + ACTIONS(1328), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1274), 31, + ACTIONS(1324), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36833,21 +42336,21 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3405] = 6, - ACTIONS(1276), 1, + [3417] = 6, + ACTIONS(1326), 1, anon_sym_LPAREN, - ACTIONS(1286), 1, + ACTIONS(1336), 1, anon_sym_DOT, - STATE(370), 1, + STATE(430), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1334), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1282), 31, + ACTIONS(1332), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -36879,58 +42382,101 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3457] = 5, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_class_body, + [3469] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 9, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(839), 12, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + sym_text_block, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(841), 25, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + sym_string_literal, + sym_null_literal, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1290), 24, - 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_new, + anon_sym_switch, + anon_sym_open, + anon_sym_module, + 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, + [3515] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(909), 12, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + sym_text_block, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_RBRACE, anon_sym_SEMI, - [3505] = 5, - ACTIONS(1292), 1, + anon_sym_AT, + ACTIONS(911), 25, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + sym_string_literal, + sym_null_literal, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_new, + anon_sym_switch, + anon_sym_open, + anon_sym_module, + 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, + [3561] = 5, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(470), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1294), 9, + ACTIONS(1338), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36940,7 +42486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1296), 24, + ACTIONS(1340), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36965,15 +42511,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3553] = 5, - ACTIONS(1292), 1, + [3609] = 7, + ACTIONS(1351), 1, + anon_sym_AT, + ACTIONS(1354), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1346), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(396), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1348), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + ACTIONS(1344), 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, + [3661] = 5, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(407), 1, + STATE(447), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1298), 9, + ACTIONS(1357), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36983,7 +42574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1300), 24, + ACTIONS(1359), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37008,15 +42599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3601] = 5, - ACTIONS(1292), 1, + [3709] = 5, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(397), 1, + STATE(451), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1302), 9, + ACTIONS(1361), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37026,7 +42617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1304), 24, + ACTIONS(1363), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37051,68 +42642,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3649] = 7, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1316), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1308), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(351), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1310), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1306), 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, - [3701] = 7, + [3757] = 7, ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1325), 1, + ACTIONS(1371), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1321), 2, + ACTIONS(1367), 2, anon_sym_LT, anon_sym_ATinterface, - STATE(351), 4, + STATE(396), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1323), 13, + ACTIONS(1369), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -37126,7 +42672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - ACTIONS(1319), 14, + ACTIONS(1365), 14, anon_sym_class, anon_sym_enum, anon_sym_record, @@ -37141,54 +42687,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3753] = 6, - ACTIONS(1327), 1, - anon_sym_LT, - ACTIONS(1330), 1, - anon_sym_DOT, - STATE(422), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1037), 7, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1061), 24, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [3802] = 3, + [3809] = 5, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1332), 9, + ACTIONS(1373), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37198,7 +42705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1334), 25, + ACTIONS(1375), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37223,59 +42730,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [3845] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1338), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1336), 31, - 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_final, - 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, - [3888] = 3, + [3857] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1342), 6, + ACTIONS(1379), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1340), 28, + ACTIONS(1377), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37304,23 +42770,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3931] = 3, + [3900] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1346), 6, + ACTIONS(1383), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1344), 28, + ACTIONS(1381), 31, 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, @@ -37344,11 +42810,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3974] = 3, + [3943] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1348), 9, + ACTIONS(1385), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37358,7 +42824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1350), 25, + ACTIONS(1387), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37384,15 +42850,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4017] = 3, + [3986] = 6, + ACTIONS(1389), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_DOT, + STATE(466), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1077), 7, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1101), 24, + 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_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4035] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1354), 3, + ACTIONS(1396), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1352), 31, + ACTIONS(1394), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37424,18 +42933,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4060] = 3, + [4078] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1358), 6, + ACTIONS(1400), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1356), 28, + ACTIONS(1398), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37464,18 +42973,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4103] = 3, + [4121] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1362), 6, + ACTIONS(1404), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1360), 28, + ACTIONS(1402), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37504,23 +43013,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4146] = 3, + [4164] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 6, + ACTIONS(1408), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1364), 28, + ACTIONS(1406), 31, 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, @@ -37538,57 +43047,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4189] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 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(1370), 25, - 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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [4232] = 3, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [4207] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1256), 9, + ACTIONS(1306), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37598,7 +43067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1258), 25, + ACTIONS(1308), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37624,18 +43093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4275] = 3, + [4250] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1374), 6, + ACTIONS(1412), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1372), 28, + ACTIONS(1410), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37664,23 +43133,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4318] = 3, + [4293] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1378), 3, + ACTIONS(1416), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1376), 31, + ACTIONS(1414), 28, 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, @@ -37704,58 +43173,58 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4361] = 3, + [4336] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1420), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1382), 25, - 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4404] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1418), 28, + 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_final, + 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, + [4379] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1386), 6, + ACTIONS(1424), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1384), 28, + ACTIONS(1422), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37784,63 +43253,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4447] = 3, + [4422] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1388), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1428), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1390), 25, - 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4490] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1394), 3, - anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1392), 31, + ACTIONS(1426), 28, 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, @@ -37864,18 +43293,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4533] = 3, + [4465] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1398), 6, + ACTIONS(1432), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1396), 28, + ACTIONS(1430), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37904,15 +43333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4576] = 3, + [4508] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 3, + ACTIONS(1436), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1400), 31, + ACTIONS(1434), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37944,18 +43373,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4619] = 3, + [4551] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1406), 6, + ACTIONS(1440), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1404), 28, + ACTIONS(1438), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37984,18 +43413,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4662] = 3, + [4594] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1410), 6, + ACTIONS(1444), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1408), 28, + ACTIONS(1442), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38024,61 +43453,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4705] = 6, - ACTIONS(1416), 1, - anon_sym_LT, - ACTIONS(1419), 1, - anon_sym_DOT, - STATE(419), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1412), 7, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1414), 24, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [4754] = 3, + [4637] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 6, + ACTIONS(1448), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1421), 28, + ACTIONS(1446), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38107,18 +43493,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4797] = 3, + [4680] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 6, + ACTIONS(1452), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1425), 28, + ACTIONS(1450), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38147,11 +43533,91 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4840] = 3, + [4723] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1454), 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(1456), 25, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + [4766] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1458), 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(1460), 25, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4809] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 9, + ACTIONS(1462), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38161,7 +43627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1431), 25, + ACTIONS(1464), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38187,18 +43653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4883] = 3, + [4852] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 6, + ACTIONS(1468), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1433), 28, + ACTIONS(1466), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38227,18 +43693,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4926] = 3, + [4895] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 6, + ACTIONS(1472), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1437), 28, + ACTIONS(1470), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38267,18 +43733,58 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4969] = 3, + [4938] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1474), 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(1476), 25, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4981] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 6, + ACTIONS(1480), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1441), 28, + ACTIONS(1478), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38307,23 +43813,106 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5012] = 3, + [5024] = 6, + ACTIONS(1486), 1, + anon_sym_LT, + ACTIONS(1489), 1, + anon_sym_DOT, + STATE(461), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1482), 7, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1484), 24, + 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_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [5073] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 6, + ACTIONS(1491), 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(1493), 25, + 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + [5116] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1497), 3, + anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1445), 28, + ACTIONS(1495), 31, 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, @@ -38347,11 +43936,206 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5055] = 3, + [5159] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1499), 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(1501), 24, + 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_RBRACE, + anon_sym_SEMI, + [5201] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1503), 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(1505), 25, + 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [5243] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1507), 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(1509), 24, + 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_RBRACE, + anon_sym_SEMI, + [5285] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1511), 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(1513), 24, + 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_RBRACE, + anon_sym_SEMI, + [5327] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1515), 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(1517), 24, + 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_RBRACE, + anon_sym_SEMI, + [5369] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 9, + ACTIONS(1081), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38361,7 +44145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1451), 24, + ACTIONS(1083), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38386,11 +44170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5097] = 3, + [5411] = 6, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(1521), 1, + anon_sym_DOT, + ACTIONS(1523), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1453), 9, + ACTIONS(280), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38400,7 +44190,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1455), 24, + ACTIONS(282), 21, + 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_RBRACE, + anon_sym_SEMI, + [5459] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + 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(1527), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38425,11 +44251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5139] = 3, + [5501] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1457), 9, + ACTIONS(1529), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38439,7 +44265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1459), 24, + ACTIONS(1531), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38464,11 +44290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5181] = 3, + [5543] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 8, + ACTIONS(1533), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38477,7 +44303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1463), 25, + anon_sym_COLON, + ACTIONS(1535), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38494,20 +44321,99 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACE, + anon_sym_SEMI, + [5585] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1537), 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(1539), 24, + 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_RBRACE, anon_sym_SEMI, + [5627] = 5, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(406), 1, + sym_block, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1543), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1541), 28, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [5223] = 3, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [5673] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 9, + ACTIONS(1545), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38517,7 +44423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1467), 24, + ACTIONS(1547), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38542,11 +44448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5265] = 3, + [5715] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 8, + ACTIONS(1549), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38555,7 +44461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1471), 25, + anon_sym_COLON, + ACTIONS(1551), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38572,20 +44479,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5307] = 3, + [5757] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 9, + ACTIONS(1553), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38595,7 +44501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1475), 24, + ACTIONS(1555), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38620,11 +44526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5349] = 3, + [5799] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 9, + ACTIONS(1557), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38634,7 +44540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1043), 24, + ACTIONS(1559), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38659,11 +44565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5391] = 3, + [5841] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 9, + ACTIONS(1561), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38673,7 +44579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1479), 24, + ACTIONS(1563), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38698,11 +44604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5433] = 3, + [5883] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 8, + ACTIONS(1565), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38711,7 +44617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1483), 25, + anon_sym_COLON, + ACTIONS(1567), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38728,20 +44635,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5475] = 3, + [5925] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 9, + ACTIONS(1569), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38751,7 +44657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1487), 24, + ACTIONS(1571), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38776,11 +44682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5517] = 3, + [5967] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 9, + ACTIONS(1573), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38790,7 +44696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1491), 24, + ACTIONS(1575), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38815,11 +44721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5559] = 3, + [6009] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 9, + ACTIONS(1577), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38829,7 +44735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1495), 24, + ACTIONS(1579), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38854,11 +44760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5601] = 3, + [6051] = 4, + ACTIONS(1489), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 8, + ACTIONS(1482), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38867,7 +44775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1499), 25, + ACTIONS(1484), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38889,15 +44797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5643] = 3, + [6095] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 9, + ACTIONS(1581), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38906,8 +44813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1503), 24, + ACTIONS(1583), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38924,60 +44830,59 @@ 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_RBRACE, anon_sym_SEMI, - [5685] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_block, + anon_sym_AT, + [6137] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 3, + ACTIONS(1585), 8, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1505), 28, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1587), 25, + 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [5731] = 3, + [6179] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 9, + ACTIONS(1589), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38986,8 +44891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1511), 24, + ACTIONS(1591), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39004,19 +44908,20 @@ 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_RBRACE, anon_sym_SEMI, - [5773] = 3, + anon_sym_AT, + [6221] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 9, + ACTIONS(1593), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39026,7 +44931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1515), 24, + ACTIONS(1595), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39051,11 +44956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5815] = 3, + [6263] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 9, + ACTIONS(1597), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39064,8 +44969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1519), 24, + ACTIONS(1599), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39082,19 +44986,20 @@ 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_RBRACE, anon_sym_SEMI, - [5857] = 3, + anon_sym_AT, + [6305] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1521), 9, + ACTIONS(1601), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39104,7 +45009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1523), 24, + ACTIONS(1603), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39129,11 +45034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5899] = 3, + [6347] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 8, + ACTIONS(1605), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39142,7 +45047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1527), 25, + ACTIONS(1607), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39168,11 +45073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5941] = 3, + [6389] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 9, + ACTIONS(1609), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39181,8 +45086,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, + ACTIONS(1611), 25, + 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, - ACTIONS(1531), 24, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [6431] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1613), 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(1615), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39199,19 +45142,20 @@ 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_RBRACE, anon_sym_SEMI, - [5983] = 3, + anon_sym_AT, + [6473] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 9, + ACTIONS(1617), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39221,7 +45165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1535), 24, + ACTIONS(1619), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39246,13 +45190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6025] = 4, - ACTIONS(1419), 1, - anon_sym_DOT, + [6515] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 8, + ACTIONS(1621), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39261,7 +45203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1414), 24, + anon_sym_COLON, + ACTIONS(1623), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39278,19 +45221,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6069] = 3, + [6557] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 9, + ACTIONS(1625), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39300,7 +45243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1539), 24, + ACTIONS(1627), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39325,11 +45268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6111] = 3, + [6599] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 9, + ACTIONS(1629), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39339,7 +45282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1543), 24, + ACTIONS(1631), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39364,11 +45307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6153] = 3, + [6641] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1545), 9, + ACTIONS(1633), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39377,8 +45320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1547), 24, + ACTIONS(1635), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39395,19 +45337,20 @@ 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_RBRACE, anon_sym_SEMI, - [6195] = 3, + anon_sym_AT, + [6683] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1549), 9, + ACTIONS(1637), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39417,7 +45360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1551), 24, + ACTIONS(1639), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39442,11 +45385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6237] = 3, + [6725] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1553), 9, + ACTIONS(1641), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39456,7 +45399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1555), 24, + ACTIONS(1643), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39481,11 +45424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6279] = 3, + [6767] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1557), 9, + ACTIONS(1645), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39495,7 +45438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1559), 24, + ACTIONS(1647), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39520,11 +45463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6321] = 3, + [6809] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1561), 9, + ACTIONS(1649), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39534,7 +45477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1563), 24, + ACTIONS(1651), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39559,11 +45502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6363] = 3, + [6851] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1565), 9, + ACTIONS(1653), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39573,7 +45516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1567), 24, + ACTIONS(1655), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39598,11 +45541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6405] = 3, + [6893] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1569), 9, + ACTIONS(1657), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39612,7 +45555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1571), 24, + ACTIONS(1659), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39637,17 +45580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6447] = 6, - ACTIONS(1573), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - anon_sym_DOT, - ACTIONS(1577), 1, - anon_sym_COLON_COLON, + [6935] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 9, + ACTIONS(1661), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39657,7 +45594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(274), 21, + ACTIONS(1663), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39676,14 +45613,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_RBRACE, anon_sym_SEMI, - [6495] = 3, + [6977] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1579), 8, + ACTIONS(1665), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39692,7 +45632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1581), 25, + anon_sym_COLON, + ACTIONS(1667), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39709,20 +45650,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6537] = 3, + [7019] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 9, + ACTIONS(1669), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39732,7 +45672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1585), 24, + ACTIONS(1671), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39757,11 +45697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6579] = 3, + [7061] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1587), 8, + ACTIONS(1673), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39770,7 +45710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1589), 25, + ACTIONS(1675), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39792,15 +45732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [6621] = 3, + [7102] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1591), 9, + ACTIONS(1482), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39809,8 +45748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1593), 24, + ACTIONS(1484), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39827,19 +45765,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_RBRACE, anon_sym_SEMI, - [6663] = 3, + anon_sym_AT, + [7143] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1595), 9, + ACTIONS(1677), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39848,8 +45786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1597), 24, + ACTIONS(1679), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39866,19 +45803,57 @@ 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_RBRACE, anon_sym_SEMI, - [6705] = 3, + anon_sym_AT, + [7184] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 8, + ACTIONS(1683), 5, + anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1681), 27, + 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_final, + 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, + [7225] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1685), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39887,7 +45862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1601), 25, + ACTIONS(1687), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39909,15 +45884,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [6747] = 3, + [7266] = 5, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1543), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1692), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1689), 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(1541), 16, + 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_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + [7311] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1696), 5, + anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1694), 27, + 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_final, + 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, + [7352] = 5, + ACTIONS(991), 1, + anon_sym_LPAREN, + STATE(1150), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1603), 9, + ACTIONS(1543), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1541), 27, + 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_final, + 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, + [7396] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1698), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39926,8 +46017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1605), 24, + ACTIONS(1700), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39944,19 +46034,17 @@ 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_RBRACE, anon_sym_SEMI, - [6789] = 3, + [7435] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1607), 9, + ACTIONS(1702), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39965,8 +46053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1609), 24, + ACTIONS(1704), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39983,19 +46070,125 @@ 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_RBRACE, anon_sym_SEMI, - [6831] = 3, + [7474] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1708), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1706), 27, + 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_final, + 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, + [7513] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1712), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1710), 27, + 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_final, + 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, + [7552] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1716), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1714), 27, + 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_final, + 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, + [7591] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1611), 8, + ACTIONS(1718), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40004,7 +46197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1613), 25, + ACTIONS(1720), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40024,17 +46217,14 @@ 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6873] = 3, + [7630] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1615), 9, + ACTIONS(1722), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40043,8 +46233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1617), 24, + ACTIONS(1724), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40061,19 +46250,17 @@ 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_RBRACE, anon_sym_SEMI, - [6915] = 3, + [7669] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1619), 9, + ACTIONS(1722), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40082,8 +46269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1621), 24, + ACTIONS(1724), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40100,27 +46286,36 @@ 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_RBRACE, anon_sym_SEMI, - [6957] = 5, + [7708] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1626), 3, + ACTIONS(1599), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1597), 18, + anon_sym_new, + anon_sym_DOT, anon_sym_open, anon_sym_module, - anon_sym_package, - ACTIONS(1623), 11, - anon_sym_AT, + anon_sym_implements, + anon_sym_permits, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40130,11 +46325,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, + sym_this, + sym_super, sym_identifier, - ACTIONS(1505), 16, + [7747] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1728), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1726), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, + anon_sym_AT, anon_sym_static, anon_sym_enum, anon_sym_public, @@ -40148,11 +46354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, anon_sym_interface, - [7002] = 3, + 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, + [7786] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1628), 8, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1730), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40161,7 +46380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1630), 24, + ACTIONS(1732), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40179,18 +46398,17 @@ 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_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [7043] = 3, + [7827] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 8, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1736), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40199,7 +46417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1634), 24, + ACTIONS(1738), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40217,24 +46435,18 @@ 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_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [7084] = 3, + [7868] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 5, - anon_sym_LT, + ACTIONS(1742), 3, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1636), 27, + ACTIONS(1740), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -40262,55 +46474,123 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7125] = 3, + [7907] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1640), 8, + ACTIONS(1611), 12, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1642), 24, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - [7166] = 3, + anon_sym_DOT_DOT_DOT, + ACTIONS(1609), 18, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + 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, + [7946] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1746), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1744), 27, + 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_final, + 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, + [7985] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1750), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1748), 27, + 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_final, + 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, + [8024] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1646), 5, - anon_sym_LT, + ACTIONS(1754), 3, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1644), 27, + ACTIONS(1752), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -40338,11 +46618,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7207] = 3, + [8063] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 8, + ACTIONS(280), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40351,7 +46631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1414), 24, + ACTIONS(282), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40371,40 +46651,33 @@ 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [7248] = 5, - ACTIONS(955), 1, - anon_sym_LPAREN, - STATE(1020), 1, - sym_parenthesized_expression, + [8102] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1505), 27, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + ACTIONS(1583), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, + anon_sym_DOT_DOT_DOT, + ACTIONS(1581), 18, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40414,15 +46687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, + sym_this, + sym_super, sym_identifier, - [7292] = 4, + [8141] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1648), 8, + ACTIONS(1756), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40431,7 +46703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1650), 20, + ACTIONS(1758), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40449,14 +46721,19 @@ 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_RBRACE, anon_sym_SEMI, - [7333] = 3, + [8180] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 8, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1760), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40465,7 +46742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1272), 22, + ACTIONS(1762), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40483,16 +46760,14 @@ 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_RBRACE, anon_sym_SEMI, - [7372] = 3, + [8221] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1654), 8, + ACTIONS(1320), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40501,7 +46776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1656), 22, + ACTIONS(1322), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40524,30 +46799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7411] = 3, + [8260] = 6, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1766), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1613), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1611), 18, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, + STATE(507), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1365), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40557,33 +46822,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, - sym_this, - sym_super, sym_identifier, - [7450] = 3, + ACTIONS(1764), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [8304] = 6, + ACTIONS(1771), 1, + anon_sym_AT, + ACTIONS(1774), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1581), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1579), 18, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, + STATE(507), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1344), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40593,59 +46860,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, - sym_this, - sym_super, sym_identifier, - [7489] = 3, + ACTIONS(1768), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [8348] = 12, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1736), 2, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(274), 22, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1738), 12, 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_RBRACE, anon_sym_SEMI, - [7528] = 3, + [8404] = 9, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1658), 8, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1736), 4, 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(1660), 22, + ACTIONS(1738), 15, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40653,146 +46952,231 @@ 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_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7567] = 3, + [8454] = 13, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1658), 8, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1736), 2, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1660), 22, - anon_sym_RPAREN, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1738), 10, + anon_sym_RPAREN, 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_RBRACE, anon_sym_SEMI, - [7606] = 3, + [8512] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 8, - anon_sym_AMP, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1664), 22, - anon_sym_RPAREN, + ACTIONS(1779), 2, 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(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1758), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7645] = 3, + [8580] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 8, - anon_sym_AMP, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1668), 22, - anon_sym_RPAREN, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1807), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8648] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, anon_sym_AMP_AMP, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - anon_sym_STAR, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1809), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7684] = 4, + [8716] = 7, + ACTIONS(1785), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 8, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1736), 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(1672), 20, + ACTIONS(1738), 17, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40800,43 +47184,44 @@ 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_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7725] = 3, + [8762] = 6, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_DOT, + STATE(545), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(1334), 3, anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1481), 18, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, + anon_sym_non_DASHsealed, + ACTIONS(1332), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40846,60 +47231,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, - sym_this, - sym_super, sym_identifier, - [7764] = 4, + [8806] = 14, + ACTIONS(1736), 1, + anon_sym_PIPE, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1674), 8, - anon_sym_AMP, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1676), 20, - anon_sym_RPAREN, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1738), 10, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_CARET, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8866] = 15, + ACTIONS(1736), 1, + anon_sym_PIPE, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1738), 9, + 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_RBRACE, anon_sym_SEMI, - [7805] = 3, + [8928] = 6, + ACTIONS(1785), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1736), 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(274), 22, + ACTIONS(1738), 17, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40907,153 +47353,158 @@ 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_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7844] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1680), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1678), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [7882] = 18, - ACTIONS(1682), 1, + [8972] = 16, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1684), 6, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1738), 8, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7950] = 6, - ACTIONS(1700), 1, + [9036] = 15, + ACTIONS(1785), 1, anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1698), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1674), 7, - anon_sym_AMP, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1676), 17, - anon_sym_RPAREN, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1738), 9, + anon_sym_RPAREN, 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, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7994] = 5, - ACTIONS(1039), 1, + [9098] = 6, + ACTIONS(1811), 1, anon_sym_LPAREN, - STATE(1108), 1, + ACTIONS(1815), 1, + anon_sym_DOT, + STATE(544), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1328), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1324), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [9142] = 5, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(1233), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 8, + ACTIONS(1081), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -41062,7 +47513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1043), 19, + ACTIONS(1083), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -41082,191 +47533,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - [8036] = 18, - ACTIONS(1682), 1, + [9184] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1714), 6, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1704), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8104] = 6, - ACTIONS(1719), 1, - anon_sym_AT, - ACTIONS(1722), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(455), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1306), 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(1716), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [8148] = 15, - ACTIONS(1674), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1700), 1, + [9252] = 18, + ACTIONS(1785), 1, anon_sym_SLASH, - ACTIONS(1704), 1, - anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1789), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, + ACTIONS(1791), 1, anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 9, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1817), 6, 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_RBRACE, anon_sym_SEMI, - [8210] = 3, + [9320] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1727), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1725), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [8248] = 6, - ACTIONS(1729), 1, + ACTIONS(1282), 5, anon_sym_LPAREN, - ACTIONS(1731), 1, - anon_sym_DOT, - STATE(518), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1282), 23, + ACTIONS(1280), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41290,19 +47667,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8292] = 3, + [9357] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, - anon_sym_RBRACE, + ACTIONS(1286), 5, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1733), 26, - anon_sym_class, + ACTIONS(1284), 23, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41314,7 +47691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41325,314 +47701,284 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8330] = 3, + [9394] = 6, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(1523), 1, + anon_sym_COLON_COLON, + ACTIONS(1819), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1737), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + ACTIONS(280), 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(282), 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, + [9436] = 7, + ACTIONS(1313), 1, anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [8368] = 3, + ACTIONS(1821), 1, + anon_sym_LBRACK, + STATE(528), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1741), 26, - anon_sym_class, + STATE(811), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1306), 10, + anon_sym_COLON, + anon_sym_DOT, anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, sym_identifier, - [8406] = 3, + ACTIONS(1308), 10, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [9480] = 7, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + STATE(528), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1747), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1745), 26, - anon_sym_class, + STATE(811), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1298), 10, + anon_sym_COLON, + anon_sym_DOT, anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, sym_identifier, - [8444] = 18, - ACTIONS(1682), 1, + ACTIONS(1300), 10, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [9524] = 20, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1834), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1836), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1854), 1, + anon_sym_COMMA, + ACTIONS(1856), 1, anon_sym_QMARK, + STATE(909), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1656), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1852), 2, + anon_sym_DASH_GT, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8512] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1751), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1749), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [8550] = 15, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1700), 1, + [9594] = 18, + ACTIONS(1785), 1, anon_sym_SLASH, - ACTIONS(1702), 1, - anon_sym_PIPE, - ACTIONS(1704), 1, - anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1789), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, + ACTIONS(1791), 1, anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 9, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1858), 4, 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_RBRACE, anon_sym_SEMI, - [8612] = 12, - ACTIONS(1700), 1, + [9660] = 15, + ACTIONS(1736), 1, + anon_sym_PIPE, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1826), 1, + anon_sym_AMP, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1708), 1, + ACTIONS(1846), 1, + anon_sym_CARET, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1674), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1686), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1696), 2, + ACTIONS(1832), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 12, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1738), 6, 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_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8668] = 9, - ACTIONS(1700), 1, + [9719] = 9, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1708), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1696), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1674), 4, + ACTIONS(1736), 4, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, - ACTIONS(1676), 15, - anon_sym_RPAREN, + ACTIONS(1738), 12, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -41641,362 +47987,509 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8718] = 13, - ACTIONS(1700), 1, + [9766] = 20, + ACTIONS(1785), 1, anon_sym_SLASH, - ACTIONS(1708), 1, + ACTIONS(1789), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, + ACTIONS(1791), 1, anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1860), 1, + anon_sym_RPAREN, + ACTIONS(1862), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1674), 2, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [9835] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1686), 2, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1864), 1, + anon_sym_RPAREN, + ACTIONS(1866), 1, + anon_sym_COMMA, + STATE(1027), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + [9904] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1868), 1, + anon_sym_COMMA, + ACTIONS(1870), 1, + anon_sym_SEMI, + STATE(951), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 10, - anon_sym_RPAREN, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [9973] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, anon_sym_AMP_AMP, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1866), 1, anon_sym_COMMA, + ACTIONS(1872), 1, + anon_sym_RPAREN, + STATE(1033), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [10042] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8776] = 6, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1755), 1, - anon_sym_non_DASHsealed, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1874), 1, + anon_sym_RPAREN, + STATE(1034), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(455), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1319), 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(1753), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [8820] = 7, - ACTIONS(1700), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [10111] = 20, + ACTIONS(1785), 1, anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1876), 1, + anon_sym_RPAREN, + STATE(1029), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1696), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1698), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1674), 5, - anon_sym_AMP, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1676), 17, - anon_sym_RPAREN, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + [10180] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, anon_sym_AMP_AMP, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_COMMA, + ACTIONS(1805), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8866] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1759), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1757), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [8904] = 14, - ACTIONS(1674), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1878), 1, + anon_sym_RPAREN, + STATE(1018), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 10, - anon_sym_RPAREN, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [10249] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, anon_sym_AMP_AMP, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, anon_sym_CARET, - anon_sym_COMMA, + ACTIONS(1805), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8964] = 6, - ACTIONS(1729), 1, - anon_sym_LPAREN, - ACTIONS(1761), 1, - anon_sym_DOT, - STATE(519), 1, - sym_annotation_argument_list, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1880), 1, + anon_sym_RPAREN, + STATE(1041), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1278), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1274), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [9008] = 18, - ACTIONS(1682), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [10318] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1882), 1, + anon_sym_RPAREN, + STATE(1044), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1763), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [9076] = 16, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [10387] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1884), 1, + anon_sym_RPAREN, + STATE(1047), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 8, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [9140] = 3, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [10456] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 5, - anon_sym_LPAREN, + ACTIONS(1436), 3, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1234), 23, + ACTIONS(1434), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42020,17 +48513,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9177] = 3, + [10491] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 5, - anon_sym_LPAREN, + ACTIONS(1497), 3, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1230), 23, + ACTIONS(1495), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42054,366 +48545,252 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9214] = 7, - ACTIONS(1263), 1, - anon_sym_AT, - ACTIONS(1765), 1, - anon_sym_LBRACK, - STATE(478), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(758), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1256), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1258), 10, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [9258] = 20, - ACTIONS(1710), 1, + [10526] = 18, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1768), 1, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1776), 1, + ACTIONS(1834), 1, anon_sym_AMP_AMP, - ACTIONS(1778), 1, + ACTIONS(1836), 1, anon_sym_PIPE_PIPE, - ACTIONS(1784), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1786), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1788), 1, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1792), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1796), 1, - anon_sym_COMMA, - ACTIONS(1798), 1, + ACTIONS(1856), 1, anon_sym_QMARK, - STATE(837), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1770), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1794), 2, + ACTIONS(1817), 3, anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_COLON, - [9328] = 18, - ACTIONS(1682), 1, + [10591] = 18, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1834), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1836), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1856), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1800), 4, - anon_sym_RPAREN, + ACTIONS(1704), 3, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [9394] = 7, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1802), 1, - anon_sym_LBRACK, - STATE(478), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(758), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1248), 10, anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1250), 10, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [9438] = 6, - ACTIONS(1573), 1, - anon_sym_LBRACK, - ACTIONS(1577), 1, - anon_sym_COLON_COLON, - ACTIONS(1804), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(272), 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(274), 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, - [9480] = 16, - ACTIONS(1710), 1, + [10656] = 18, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1768), 1, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1776), 1, + ACTIONS(1834), 1, anon_sym_AMP_AMP, - ACTIONS(1784), 1, + ACTIONS(1836), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1786), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1788), 1, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1792), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1770), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 5, - anon_sym_PIPE_PIPE, + ACTIONS(1807), 3, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - [9541] = 20, - ACTIONS(1682), 1, + [10721] = 18, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1834), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1836), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1856), 1, anon_sym_QMARK, - ACTIONS(1806), 1, - anon_sym_RPAREN, - ACTIONS(1808), 1, - anon_sym_COMMA, - STATE(871), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [9610] = 20, - ACTIONS(1682), 1, + ACTIONS(1758), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10786] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1810), 1, - anon_sym_RPAREN, - ACTIONS(1812), 1, + ACTIONS(1868), 1, anon_sym_COMMA, - STATE(924), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1886), 1, + anon_sym_SEMI, + STATE(986), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [9679] = 3, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [10855] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1816), 3, + ACTIONS(1890), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1814), 23, + ACTIONS(1888), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42437,126 +48814,144 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9714] = 20, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, - anon_sym_PIPE, - ACTIONS(1704), 1, - anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, - anon_sym_QMARK, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(936), 1, - aux_sym_for_statement_repeat2, + [10890] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(276), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(280), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(282), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1698), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1706), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [9783] = 20, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, - anon_sym_PIPE, - ACTIONS(1704), 1, - anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, anon_sym_instanceof, - ACTIONS(1712), 1, anon_sym_QMARK, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(1820), 1, - anon_sym_RPAREN, - STATE(877), 1, - aux_sym_for_statement_repeat2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [10927] = 13, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1842), 1, + anon_sym_SLASH, + ACTIONS(1850), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1736), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [9852] = 7, - ACTIONS(1784), 1, + ACTIONS(1738), 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, + [10982] = 12, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(300), 1, + anon_sym_non_DASHsealed, + ACTIONS(1892), 1, + sym_identifier, + ACTIONS(1894), 1, + anon_sym_COMMA, + ACTIONS(1896), 1, + anon_sym_RBRACE, + ACTIONS(1898), 1, + anon_sym_SEMI, + STATE(834), 1, + sym_enum_constant, + STATE(1179), 1, + sym_enum_body_declarations, + STATE(1227), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(506), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(294), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [11035] = 7, + ACTIONS(1842), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1674), 5, + ACTIONS(1736), 5, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1676), 14, + ACTIONS(1738), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42571,217 +48966,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [9895] = 9, - ACTIONS(1784), 1, + [11078] = 12, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1792), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, + ACTIONS(1736), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1828), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1830), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1674), 4, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - ACTIONS(1676), 12, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(1738), 9, 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, - [9942] = 14, - ACTIONS(1674), 1, - anon_sym_PIPE, - ACTIONS(1710), 1, + [11131] = 15, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1768), 1, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1784), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1792), 1, + ACTIONS(1844), 1, + anon_sym_PIPE, + ACTIONS(1846), 1, + anon_sym_CARET, + ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1770), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1790), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1676), 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, - [9999] = 12, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, - anon_sym_COMMA, - ACTIONS(1826), 1, - anon_sym_RBRACE, - ACTIONS(1828), 1, - anon_sym_SEMI, - STATE(780), 1, - sym_enum_constant, - STATE(1143), 1, - sym_modifiers, - STATE(1145), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(469), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [10052] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1832), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1830), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10087] = 15, - ACTIONS(1674), 1, - anon_sym_PIPE, - ACTIONS(1710), 1, + anon_sym_PERCENT, + ACTIONS(1848), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1738), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [11190] = 16, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1768), 1, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1784), 1, + ACTIONS(1834), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1788), 1, + ACTIONS(1844), 1, + anon_sym_PIPE, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1792), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1770), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 6, - anon_sym_AMP_AMP, + ACTIONS(1738), 5, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [10146] = 6, - ACTIONS(1784), 1, + [11251] = 6, + ACTIONS(1842), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1674), 7, + ACTIONS(1736), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42789,7 +49116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1676), 14, + ACTIONS(1738), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42804,353 +49131,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [10187] = 20, - ACTIONS(1682), 1, + [11292] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1794), 1, - anon_sym_COLON, - ACTIONS(1812), 1, + ACTIONS(1866), 1, anon_sym_COMMA, - STATE(961), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1900), 1, + anon_sym_RPAREN, + STATE(1026), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10256] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1354), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1352), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10291] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1378), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1376), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10326] = 15, - ACTIONS(1710), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [11361] = 14, + ACTIONS(1736), 1, + anon_sym_PIPE, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1768), 1, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1784), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1786), 1, - anon_sym_PIPE, - ACTIONS(1788), 1, - anon_sym_CARET, - ACTIONS(1792), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1770), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 6, + ACTIONS(1738), 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, - [10385] = 12, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1784), 1, + [11418] = 20, + ACTIONS(1785), 1, anon_sym_SLASH, - ACTIONS(1792), 1, + ACTIONS(1789), 1, anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1902), 1, + anon_sym_RPAREN, + STATE(1012), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1674), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1770), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 9, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + [11487] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, anon_sym_AMP_AMP, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, anon_sym_CARET, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(1805), 1, anon_sym_QMARK, - anon_sym_COLON, - [10438] = 13, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1784), 1, - anon_sym_SLASH, - ACTIONS(1792), 1, - anon_sym_GT_GT, + ACTIONS(1904), 1, + anon_sym_COMMA, + ACTIONS(1906), 1, + anon_sym_RBRACE, + STATE(966), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1674), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1770), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1676), 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, - [10493] = 20, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [11556] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1834), 1, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(1836), 1, - anon_sym_SEMI, - STATE(930), 1, - aux_sym_for_statement_repeat1, + ACTIONS(1908), 1, + anon_sym_RPAREN, + STATE(1051), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10562] = 20, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [11625] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(1838), 1, - anon_sym_RPAREN, - STATE(967), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10631] = 3, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1910), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [11690] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 3, + ACTIONS(1914), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1840), 23, + ACTIONS(1912), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43174,214 +49449,184 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10666] = 18, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1768), 1, - anon_sym_AMP, - ACTIONS(1776), 1, - anon_sym_AMP_AMP, - ACTIONS(1778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1784), 1, + [11725] = 20, + ACTIONS(1785), 1, anon_sym_SLASH, - ACTIONS(1786), 1, - anon_sym_PIPE, - ACTIONS(1788), 1, - anon_sym_CARET, - ACTIONS(1792), 1, + ACTIONS(1789), 1, anon_sym_GT_GT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1770), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1772), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1774), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1780), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1782), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1790), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1844), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [10731] = 20, - ACTIONS(1682), 1, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1808), 1, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(1846), 1, + ACTIONS(1916), 1, anon_sym_RPAREN, - STATE(882), 1, + STATE(1022), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10800] = 18, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1768), 1, - anon_sym_AMP, - ACTIONS(1776), 1, - anon_sym_AMP_AMP, - ACTIONS(1778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1784), 1, - anon_sym_SLASH, - ACTIONS(1786), 1, - anon_sym_PIPE, - ACTIONS(1788), 1, - anon_sym_CARET, - ACTIONS(1792), 1, - anon_sym_GT_GT, - ACTIONS(1798), 1, - anon_sym_QMARK, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [11794] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1770), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1772), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1774), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1780), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1782), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1790), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1714), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [10865] = 20, - ACTIONS(1682), 1, + ACTIONS(1383), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1381), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [11829] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1920), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1918), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [11864] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1848), 1, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(1850), 1, - anon_sym_RBRACE, - STATE(944), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(1922), 1, + anon_sym_RPAREN, + STATE(985), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10934] = 15, - ACTIONS(321), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [11933] = 15, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1852), 1, + ACTIONS(1924), 1, anon_sym_GT, - ACTIONS(1854), 1, + ACTIONS(1926), 1, anon_sym_QMARK, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, ACTIONS(3), 2, sym_line_comment, @@ -43392,14 +49637,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(895), 2, + STATE(1028), 2, sym_wildcard, sym__type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(636), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -43410,380 +49655,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [10993] = 18, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1768), 1, - anon_sym_AMP, - ACTIONS(1776), 1, - anon_sym_AMP_AMP, - ACTIONS(1778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1784), 1, - anon_sym_SLASH, - ACTIONS(1786), 1, - anon_sym_PIPE, - ACTIONS(1788), 1, - anon_sym_CARET, - ACTIONS(1792), 1, - anon_sym_GT_GT, - ACTIONS(1798), 1, - anon_sym_QMARK, + [11992] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1770), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1772), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1774), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1780), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1782), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1790), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1656), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11058] = 20, - ACTIONS(1682), 1, + ACTIONS(1930), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1928), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [12027] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1808), 1, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(1856), 1, + ACTIONS(1932), 1, anon_sym_RPAREN, - STATE(929), 1, + STATE(945), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11127] = 20, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12096] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1808), 1, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(1858), 1, + ACTIONS(1934), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(990), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11196] = 18, - ACTIONS(1710), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12165] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1768), 1, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1776), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1778), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1784), 1, - anon_sym_SLASH, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1788), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1792), 1, - anon_sym_GT_GT, - ACTIONS(1798), 1, + ACTIONS(1805), 1, anon_sym_QMARK, + ACTIONS(1852), 1, + anon_sym_COLON, + ACTIONS(1862), 1, + anon_sym_COMMA, + STATE(1004), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1770), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1684), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11261] = 18, - ACTIONS(1710), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12234] = 20, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1768), 1, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1776), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1778), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1784), 1, - anon_sym_SLASH, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1788), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1792), 1, - anon_sym_GT_GT, - ACTIONS(1798), 1, + ACTIONS(1805), 1, anon_sym_QMARK, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(1936), 1, + anon_sym_RPAREN, + STATE(1010), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1770), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1772), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1774), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1780), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1782), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1790), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1763), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11326] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12303] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1396), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1394), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [12338] = 18, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1834), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1836), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1856), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1828), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1840), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1848), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1860), 3, - anon_sym_RPAREN, + ACTIONS(1910), 3, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_SEMI, - [11391] = 18, - ACTIONS(1682), 1, + anon_sym_COLON, + [12403] = 18, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1826), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1834), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1836), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, + ACTIONS(1842), 1, anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1846), 1, anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1856), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1686), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1688), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1698), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1706), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1844), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [11456] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1338), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1336), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [11491] = 3, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1828), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1830), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1832), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1838), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1840), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1848), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1809), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [12468] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1394), 3, + ACTIONS(1408), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1392), 23, + ACTIONS(1406), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43807,54 +50041,111 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11526] = 3, + [12503] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 3, - anon_sym_LBRACK, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1938), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [12568] = 15, + ACTIONS(337), 1, anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1400), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1926), 1, + anon_sym_QMARK, + ACTIONS(1940), 1, + anon_sym_GT, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(679), 1, + sym__unannotated_type, + STATE(753), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(976), 2, + sym_wildcard, + sym__type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(636), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 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, - [11561] = 15, - ACTIONS(321), 1, + [12627] = 14, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1854), 1, + ACTIONS(1926), 1, anon_sym_QMARK, - ACTIONS(1862), 1, - anon_sym_GT, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, ACTIONS(3), 2, sym_line_comment, @@ -43865,14 +50156,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(922), 2, + STATE(1091), 2, sym_wildcard, sym__type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(636), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -43883,64 +50174,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [11620] = 20, - ACTIONS(1682), 1, + [12683] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1942), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [12747] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, anon_sym_GT_GT, - ACTIONS(1710), 1, + ACTIONS(1791), 1, anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(1864), 1, - anon_sym_RPAREN, - STATE(879), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1944), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [12811] = 19, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1946), 1, + anon_sym_COLON, + ACTIONS(1948), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11689] = 3, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12877] = 5, + ACTIONS(1543), 1, + anon_sym_non_DASHsealed, + ACTIONS(1950), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1868), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1866), 23, + ACTIONS(1689), 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(1541), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43954,134 +50346,209 @@ 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, - [11724] = 18, - ACTIONS(1682), 1, + [12915] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1870), 2, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1858), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [11788] = 18, - ACTIONS(1682), 1, + [12979] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1872), 2, - anon_sym_RPAREN, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1953), 2, anon_sym_COMMA, - [11852] = 11, - ACTIONS(282), 1, + anon_sym_SEMI, + [13043] = 18, + ACTIONS(1005), 1, + sym_identifier, + ACTIONS(1007), 1, + anon_sym_LT, + ACTIONS(1955), 1, + anon_sym_class, + ACTIONS(1957), 1, + anon_sym_enum, + ACTIONS(1959), 1, + anon_sym_record, + ACTIONS(1961), 1, + anon_sym_ATinterface, + ACTIONS(1963), 1, + anon_sym_interface, + STATE(638), 1, + sym_type_parameters, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(689), 1, + sym__unannotated_type, + STATE(908), 1, + sym__constructor_declarator, + STATE(940), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13107] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(300), 1, anon_sym_non_DASHsealed, - ACTIONS(1822), 1, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1898), 1, anon_sym_SEMI, - ACTIONS(1874), 1, + ACTIONS(1965), 1, anon_sym_RBRACE, - STATE(937), 1, + STATE(1003), 1, sym_enum_constant, - STATE(1082), 1, + STATE(1227), 1, + sym_modifiers, + STATE(1242), 1, sym_enum_body_declarations, - STATE(1143), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(506), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(294), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [13157] = 11, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(300), 1, + anon_sym_non_DASHsealed, + ACTIONS(1892), 1, + sym_identifier, + ACTIONS(1898), 1, + anon_sym_SEMI, + ACTIONS(1967), 1, + anon_sym_RBRACE, + STATE(1003), 1, + sym_enum_constant, + STATE(1187), 1, + sym_enum_body_declarations, + STATE(1227), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(469), 4, + STATE(506), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(280), 13, + ACTIONS(294), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -44095,146 +50562,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [11902] = 18, - ACTIONS(1682), 1, + [13207] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1876), 2, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1969), 2, anon_sym_RPAREN, anon_sym_SEMI, - [11966] = 18, - ACTIONS(1682), 1, + [13271] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1800), 2, - anon_sym_RPAREN, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1971), 2, anon_sym_COMMA, - [12030] = 5, - ACTIONS(1507), 1, - anon_sym_non_DASHsealed, - ACTIONS(1878), 1, - anon_sym_AT, + anon_sym_RBRACE, + [13335] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1973), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1623), 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(1505), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12068] = 14, - ACTIONS(321), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13398] = 14, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1854), 1, - anon_sym_QMARK, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, + STATE(922), 1, + sym__type, + STATE(1082), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -44244,14 +50725,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(1032), 2, - sym_wildcard, - sym__type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(641), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -44262,550 +50740,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [12124] = 18, - ACTIONS(1682), 1, + [13453] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, + ACTIONS(1975), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1881), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [12188] = 18, - ACTIONS(965), 1, - sym_identifier, - ACTIONS(967), 1, - anon_sym_LT, - ACTIONS(1883), 1, - anon_sym_class, - ACTIONS(1885), 1, - anon_sym_enum, - ACTIONS(1887), 1, - anon_sym_record, - ACTIONS(1889), 1, - anon_sym_ATinterface, - ACTIONS(1891), 1, - anon_sym_interface, - STATE(573), 1, - sym_type_parameters, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(604), 1, - sym_generic_type, - STATE(626), 1, - sym__unannotated_type, - STATE(826), 1, - sym__constructor_declarator, - STATE(912), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12252] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13516] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, + ACTIONS(1977), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1893), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [12316] = 19, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13579] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1895), 1, - anon_sym_COLON, - ACTIONS(1897), 1, + ACTIONS(1979), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12382] = 11, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1828), 1, - anon_sym_SEMI, - ACTIONS(1899), 1, - anon_sym_RBRACE, - STATE(937), 1, - sym_enum_constant, - STATE(1139), 1, - sym_enum_body_declarations, - STATE(1143), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(469), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12432] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13642] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1901), 1, + ACTIONS(1981), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12495] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1063), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_open, - ACTIONS(1905), 1, - anon_sym_module, - ACTIONS(1907), 1, - anon_sym_package, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(604), 1, - sym_generic_type, - STATE(606), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(589), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12550] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13705] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_SEMI, + ACTIONS(1983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12613] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13768] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1911), 1, + ACTIONS(1985), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12676] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13831] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1913), 1, + ACTIONS(1987), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12739] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1063), 1, - sym_identifier, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(604), 1, - sym_generic_type, - STATE(611), 1, - sym__unannotated_type, - STATE(681), 1, - sym_annotated_type, - STATE(866), 1, - sym__type, - STATE(977), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(576), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12794] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1063), 1, - sym_identifier, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(604), 1, - sym_generic_type, - STATE(611), 1, - sym__unannotated_type, - STATE(681), 1, - sym_annotated_type, - STATE(866), 1, - sym__type, - STATE(997), 1, - sym_type_list, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13894] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(1989), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(576), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12849] = 14, - ACTIONS(321), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13957] = 14, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + ACTIONS(1991), 1, + anon_sym_open, + ACTIONS(1993), 1, + anon_sym_module, + ACTIONS(1995), 1, + anon_sym_package, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(673), 1, sym__unannotated_type, - STATE(681), 1, - sym_annotated_type, - STATE(866), 1, - sym__type, - STATE(1166), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -44815,11 +51126,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -44830,683 +51141,813 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [12904] = 18, - ACTIONS(1682), 1, + [14012] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1915), 1, - anon_sym_RPAREN, + ACTIONS(1997), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12967] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14075] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1917), 1, + ACTIONS(1999), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13030] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14138] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1919), 1, + ACTIONS(2001), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13093] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14201] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1921), 1, - anon_sym_COLON, + ACTIONS(2003), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13156] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14264] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1923), 1, + ACTIONS(2005), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13219] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14327] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1925), 1, - anon_sym_RPAREN, + ACTIONS(2007), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13282] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14390] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1927), 1, + ACTIONS(2009), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13345] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14453] = 14, + ACTIONS(337), 1, + anon_sym_AT, + ACTIONS(1144), 1, + sym_identifier, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(679), 1, + sym__unannotated_type, + STATE(753), 1, + sym_annotated_type, + STATE(922), 1, + sym__type, + STATE(1229), 1, + sym_type_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(641), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14508] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1929), 1, + ACTIONS(2011), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13408] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14571] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1931), 1, - anon_sym_RBRACK, + ACTIONS(2013), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13471] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14634] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1933), 1, - anon_sym_SEMI, + ACTIONS(2015), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13534] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14697] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1935), 1, - anon_sym_SEMI, + ACTIONS(2017), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13597] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14760] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1937), 1, - anon_sym_COLON, + ACTIONS(2019), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1696), 2, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13660] = 18, - ACTIONS(1682), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14823] = 14, + ACTIONS(337), 1, + anon_sym_AT, + ACTIONS(1144), 1, + sym_identifier, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(679), 1, + sym__unannotated_type, + STATE(753), 1, + sym_annotated_type, + STATE(922), 1, + sym__type, + STATE(1159), 1, + sym_type_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(641), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14878] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, anon_sym_AMP, - ACTIONS(1692), 1, + ACTIONS(1797), 1, anon_sym_AMP_AMP, - ACTIONS(1694), 1, + ACTIONS(1799), 1, anon_sym_PIPE_PIPE, - ACTIONS(1700), 1, - anon_sym_SLASH, - ACTIONS(1702), 1, + ACTIONS(1801), 1, anon_sym_PIPE, - ACTIONS(1704), 1, + ACTIONS(1803), 1, anon_sym_CARET, - ACTIONS(1708), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_instanceof, - ACTIONS(1712), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(2021), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1652), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1686), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1688), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 2, + ACTIONS(1781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1793), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 2, + [14941] = 18, + ACTIONS(1785), 1, + anon_sym_SLASH, + ACTIONS(1789), 1, + anon_sym_GT_GT, + ACTIONS(1791), 1, + anon_sym_instanceof, + ACTIONS(1795), 1, + anon_sym_AMP, + ACTIONS(1797), 1, + anon_sym_AMP_AMP, + ACTIONS(1799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1801), 1, + anon_sym_PIPE, + ACTIONS(1803), 1, + anon_sym_CARET, + ACTIONS(1805), 1, + anon_sym_QMARK, + ACTIONS(2023), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1698), 2, + ACTIONS(1783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1706), 2, + ACTIONS(1787), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13723] = 13, - ACTIONS(321), 1, + ACTIONS(1793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15004] = 13, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(2025), 1, sym_identifier, - STATE(586), 1, + STATE(388), 1, + sym__unannotated_type, + STATE(428), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(452), 1, sym_generic_type, - STATE(611), 1, - sym__unannotated_type, - STATE(681), 1, - sym_annotated_type, - STATE(910), 1, + STATE(484), 1, sym__type, + STATE(505), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(2029), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2031), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(477), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(647), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(75), 5, + ACTIONS(2027), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13775] = 13, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1941), 1, + [15056] = 16, + ACTIONS(1007), 1, + anon_sym_LT, + ACTIONS(1144), 1, sym_identifier, - STATE(341), 1, - sym__unannotated_type, - STATE(375), 1, + ACTIONS(1955), 1, + anon_sym_class, + ACTIONS(1957), 1, + anon_sym_enum, + ACTIONS(1961), 1, + anon_sym_ATinterface, + ACTIONS(1963), 1, + anon_sym_interface, + STATE(639), 1, + sym_type_parameters, + STATE(652), 1, sym_scoped_type_identifier, - STATE(406), 1, + STATE(669), 1, sym_generic_type, - STATE(437), 1, - sym_annotated_type, - STATE(445), 1, - sym__type, + STATE(690), 1, + sym__unannotated_type, + STATE(940), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1945), 2, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1947), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(434), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(571), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1943), 5, + ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13827] = 13, - ACTIONS(321), 1, + [15114] = 13, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, - STATE(1031), 1, + STATE(897), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45517,11 +51958,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(641), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -45532,20 +51973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [13879] = 13, - ACTIONS(321), 1, + [15166] = 13, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, - STATE(804), 1, + STATE(1024), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45556,11 +51997,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(641), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -45571,20 +52012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [13931] = 13, - ACTIONS(321), 1, + [15218] = 13, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, - STATE(1023), 1, + STATE(1066), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45595,11 +52036,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(641), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -45610,20 +52051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [13983] = 13, - ACTIONS(321), 1, + [15270] = 13, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, - STATE(817), 1, + STATE(998), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45634,11 +52075,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(641), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -45649,29 +52090,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14035] = 16, - ACTIONS(967), 1, - anon_sym_LT, - ACTIONS(1063), 1, + [15322] = 13, + ACTIONS(337), 1, + anon_sym_AT, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1883), 1, - anon_sym_class, - ACTIONS(1885), 1, - anon_sym_enum, - ACTIONS(1889), 1, - anon_sym_ATinterface, - ACTIONS(1891), 1, - anon_sym_interface, - STATE(578), 1, - sym_type_parameters, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(620), 1, + STATE(679), 1, sym__unannotated_type, - STATE(912), 1, - sym__method_header, + STATE(753), 1, + sym_annotated_type, + STATE(902), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -45681,30 +52114,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, + STATE(641), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14093] = 13, - ACTIONS(321), 1, + [15374] = 13, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, - STATE(822), 1, + STATE(905), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45715,11 +52153,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(641), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -45730,20 +52168,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14145] = 13, - ACTIONS(321), 1, + [15426] = 13, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(611), 1, + STATE(679), 1, sym__unannotated_type, - STATE(681), 1, + STATE(753), 1, sym_annotated_type, - STATE(900), 1, + STATE(1123), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -45754,11 +52192,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(576), 4, + STATE(641), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -45769,24 +52207,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14197] = 6, - ACTIONS(1949), 1, + [15478] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1306), 10, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1308), 12, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [15509] = 8, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(300), 1, + anon_sym_non_DASHsealed, + ACTIONS(1892), 1, + sym_identifier, + STATE(1003), 1, + sym_enum_constant, + STATE(1227), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(506), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(294), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [15550] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1458), 10, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1460), 12, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [15581] = 6, + ACTIONS(2033), 1, anon_sym_LPAREN, - ACTIONS(1951), 1, + ACTIONS(2035), 1, anon_sym_DOT, - STATE(592), 1, + STATE(664), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 6, + ACTIONS(1334), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1282), 13, + ACTIONS(1332), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45800,24 +52327,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14234] = 6, - ACTIONS(1949), 1, + [15618] = 6, + ACTIONS(2033), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(2037), 1, anon_sym_DOT, - STATE(593), 1, + STATE(663), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1278), 6, + ACTIONS(1328), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1274), 13, + ACTIONS(1324), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45831,46 +52358,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14271] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1370), 12, - anon_sym_AMP, - anon_sym_RPAREN, - 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, + [15655] = 12, + ACTIONS(337), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [14302] = 12, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1955), 1, + ACTIONS(2039), 1, anon_sym_QMARK, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(606), 1, + STATE(673), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -45881,11 +52380,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(589), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -45896,112 +52395,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14351] = 8, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1822), 1, - sym_identifier, - STATE(937), 1, - sym_enum_constant, - STATE(1143), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(469), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [14392] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1256), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1258), 12, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [14423] = 11, - ACTIONS(321), 1, + [15704] = 12, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1941), 1, + ACTIONS(2041), 1, sym_identifier, - STATE(339), 1, - sym__unannotated_type, - STATE(375), 1, + STATE(694), 1, sym_scoped_type_identifier, - STATE(406), 1, + STATE(702), 1, + sym_type_arguments, + STATE(709), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1945), 2, + ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1947), 2, + ACTIONS(2043), 2, sym_boolean_type, sym_void_type, - STATE(434), 3, - sym_array_type, + STATE(728), 2, sym_integral_type, sym_floating_point_type, - STATE(589), 4, + STATE(658), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1943), 5, + ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14469] = 11, - ACTIONS(321), 1, + [15752] = 11, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(2045), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(643), 1, + STATE(733), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -46012,11 +52451,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(589), 4, + STATE(646), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46027,16 +52466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14515] = 11, - ACTIONS(321), 1, + [15798] = 11, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1957), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(659), 1, + STATE(733), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -46047,11 +52486,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(579), 4, + STATE(646), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46062,59 +52501,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14561] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1232), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1230), 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, - [14591] = 12, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(321), 1, + [15844] = 11, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1959), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(623), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(632), 1, - sym_type_arguments, - STATE(651), 1, + STATE(669), 1, sym_generic_type, + STATE(749), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1961), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(656), 2, + STATE(671), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(590), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46125,16 +52536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14639] = 11, - ACTIONS(321), 1, + [15890] = 11, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(606), 1, + STATE(673), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -46145,11 +52556,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(589), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46160,16 +52571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14685] = 11, - ACTIONS(321), 1, + [15936] = 11, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(679), 1, + STATE(713), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -46180,11 +52591,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(589), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46195,31 +52606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14731] = 11, - ACTIONS(321), 1, + [15982] = 12, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1063), 1, + ACTIONS(2047), 1, sym_identifier, - STATE(586), 1, + STATE(685), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(702), 1, + sym_type_arguments, + STATE(717), 1, sym_generic_type, - STATE(659), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2049), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, - sym_array_type, + STATE(731), 2, sym_integral_type, sym_floating_point_type, - STATE(579), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46230,46 +52642,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14777] = 11, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1063), 1, - sym_identifier, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(604), 1, - sym_generic_type, - STATE(655), 1, - sym__unannotated_type, + [16030] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(589), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(75), 5, + ACTIONS(1282), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1280), 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, - [14823] = 3, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16060] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 8, + ACTIONS(1286), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -46278,7 +52682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1234), 13, + ACTIONS(1284), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46292,32 +52696,31 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14853] = 12, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(321), 1, + [16090] = 11, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1963), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(617), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(632), 1, - sym_type_arguments, - STATE(648), 1, + STATE(669), 1, sym_generic_type, + STATE(723), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1965), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(658), 2, + STATE(671), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(600), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46328,11 +52731,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14901] = 3, + [16136] = 11, + ACTIONS(337), 1, + anon_sym_AT, + ACTIONS(2025), 1, + sym_identifier, + STATE(387), 1, + sym__unannotated_type, + STATE(428), 1, + sym_scoped_type_identifier, + STATE(452), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2029), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2031), 2, + sym_boolean_type, + sym_void_type, + STATE(477), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2027), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16182] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1585), 7, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1587), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16211] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 7, + ACTIONS(1503), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46340,7 +52804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1471), 13, + ACTIONS(1505), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46354,22 +52818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14930] = 13, - ACTIONS(1063), 1, + [16240] = 13, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1883), 1, + ACTIONS(1955), 1, anon_sym_class, - ACTIONS(1885), 1, + ACTIONS(1957), 1, anon_sym_enum, - ACTIONS(1889), 1, + ACTIONS(1961), 1, anon_sym_ATinterface, - ACTIONS(1891), 1, + ACTIONS(1963), 1, anon_sym_interface, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(631), 1, + STATE(700), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -46380,7 +52844,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -46390,11 +52854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [14979] = 3, + [16289] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 7, + ACTIONS(1589), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46402,7 +52866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1499), 13, + ACTIONS(1591), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46416,24 +52880,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15008] = 6, + [16318] = 6, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1967), 1, + ACTIONS(2051), 1, anon_sym_DOT, - STATE(599), 1, + STATE(659), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 6, + ACTIONS(1482), 6, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1061), 11, + ACTIONS(1484), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46445,27 +52909,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15043] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1969), 1, - anon_sym_DOT, - STATE(598), 1, - sym_type_arguments, + [16353] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 6, + ACTIONS(1605), 7, + anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1414), 11, + ACTIONS(1607), 13, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -46474,24 +52935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15078] = 3, + [16382] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2053), 1, + anon_sym_DOT, + STATE(662), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 7, - anon_sym_DOT, + ACTIONS(1077), 6, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1463), 13, - anon_sym_LPAREN, + ACTIONS(1101), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -46500,11 +52964,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15107] = 3, + [16417] = 13, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1955), 1, + anon_sym_class, + ACTIONS(1957), 1, + anon_sym_enum, + ACTIONS(1961), 1, + anon_sym_ATinterface, + ACTIONS(1963), 1, + anon_sym_interface, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(695), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16466] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1396), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1394), 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, + [16494] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 7, + ACTIONS(1673), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46512,12 +53037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1527), 13, + ACTIONS(1675), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -46526,41 +53050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15136] = 5, - ACTIONS(1973), 1, - anon_sym_QMARK, - ACTIONS(1975), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(589), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1971), 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, - [15168] = 10, - ACTIONS(321), 1, + [16522] = 10, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(1978), 1, + ACTIONS(2055), 1, sym_identifier, - STATE(646), 1, + STATE(703), 1, sym_scoped_type_identifier, - STATE(665), 1, + STATE(741), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -46568,13 +53065,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1980), 2, + ACTIONS(2057), 2, sym_boolean_type, sym_void_type, - STATE(674), 2, + STATE(745), 2, sym_integral_type, sym_floating_point_type, - STATE(589), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -46585,68 +53082,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15210] = 3, + [16564] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1354), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1352), 13, + ACTIONS(1613), 7, + anon_sym_DOT, 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, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - [15238] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1394), 6, + ACTIONS(1615), 12, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1392), 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, - [15266] = 3, + anon_sym_DOT_DOT_DOT, + [16592] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 6, + ACTIONS(1408), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1400), 13, + ACTIONS(1406), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46660,45 +53132,43 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15294] = 12, - ACTIONS(1063), 1, + [16620] = 10, + ACTIONS(337), 1, + anon_sym_AT, + ACTIONS(2059), 1, sym_identifier, - ACTIONS(1883), 1, - anon_sym_class, - ACTIONS(1889), 1, - anon_sym_ATinterface, - ACTIONS(1891), 1, - anon_sym_interface, - STATE(586), 1, + STATE(720), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(734), 1, sym_generic_type, - STATE(629), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2061), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, - sym_array_type, + STATE(747), 2, sym_integral_type, sym_floating_point_type, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(75), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15340] = 3, + [16662] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1640), 7, + ACTIONS(1633), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46706,7 +53176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1642), 12, + ACTIONS(1635), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46719,18 +53189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15368] = 3, + [16690] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1338), 6, + ACTIONS(1436), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1336), 13, + ACTIONS(1434), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46744,125 +53214,70 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15396] = 3, + [16718] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1634), 12, - anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(1497), 6, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15424] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1587), 7, - anon_sym_DOT, + ACTIONS(1495), 13, anon_sym_open, anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, + 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, - ACTIONS(1589), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [15452] = 3, + [16746] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1601), 12, - anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(1383), 6, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15480] = 10, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1982), 1, - sym_identifier, - STATE(652), 1, - sym_scoped_type_identifier, - STATE(670), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1984), 2, - sym_boolean_type, - sym_void_type, - STATE(673), 2, - sym_integral_type, - sym_floating_point_type, - STATE(589), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(75), 5, + ACTIONS(1381), 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, - [15522] = 3, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16774] = 5, + ACTIONS(2065), 1, + anon_sym_QMARK, + ACTIONS(2067), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1378), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1376), 13, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2063), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46876,11 +53291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15550] = 3, + [16806] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1628), 7, + ACTIONS(1685), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46888,7 +53303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1630), 11, + ACTIONS(1687), 12, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46900,54 +53316,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15577] = 13, - ACTIONS(282), 1, + [16834] = 13, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2070), 1, sym_identifier, - ACTIONS(1988), 1, + ACTIONS(2072), 1, anon_sym_DOT, - ACTIONS(1992), 1, + ACTIONS(2076), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1994), 1, + ACTIONS(2078), 1, sym_this, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(1079), 1, + STATE(1087), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - ACTIONS(1272), 3, + ACTIONS(1322), 3, anon_sym_AMP, anon_sym_RPAREN, anon_sym_COLON_COLON, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [15624] = 4, - ACTIONS(1969), 1, + [16881] = 4, + ACTIONS(2051), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 6, + ACTIONS(1482), 6, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1484), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16910] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1677), 7, + anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1414), 11, + ACTIONS(1679), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46959,11 +53399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15653] = 3, + [16937] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 7, + ACTIONS(1482), 7, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -46971,7 +53411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_permits, sym_this, sym_identifier, - ACTIONS(1414), 11, + ACTIONS(1484), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46983,24 +53423,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15680] = 7, - ACTIONS(282), 1, + [16964] = 10, + ACTIONS(1144), 1, + sym_identifier, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(712), 1, + sym__unannotated_type, + STATE(912), 1, + sym_catch_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17004] = 7, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1268), 9, + ACTIONS(1318), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -47010,17 +53480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [15714] = 10, - ACTIONS(1063), 1, + [17038] = 9, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(637), 1, + STATE(719), 1, sym__unannotated_type, - STATE(857), 1, - sym_catch_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -47030,7 +53498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -47040,27 +53508,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15754] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1996), 1, + [17075] = 9, + ACTIONS(1144), 1, sym_identifier, - STATE(632), 1, - sym_type_arguments, - STATE(766), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(869), 1, + STATE(669), 1, sym_generic_type, + STATE(724), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(1998), 2, + ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(1010), 2, + STATE(671), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, ACTIONS(75), 5, @@ -47069,14 +53536,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15793] = 9, - ACTIONS(1063), 1, + [17112] = 13, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1322), 1, + anon_sym_COLON_COLON, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(2080), 1, + sym_identifier, + ACTIONS(2082), 1, + anon_sym_DOT, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(670), 1, + sym_dimensions, + STATE(903), 1, + sym__variable_declarator_id, + STATE(1001), 1, + sym_variable_declarator, + STATE(1204), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2074), 2, + anon_sym_open, + anon_sym_module, + STATE(811), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17157] = 9, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(664), 1, + STATE(732), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -47087,7 +53586,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -47097,26 +53596,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15830] = 9, - ACTIONS(1063), 1, + [17194] = 10, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2084), 1, sym_identifier, - STATE(586), 1, + STATE(702), 1, + sym_type_arguments, + STATE(850), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(969), 1, sym_generic_type, - STATE(638), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2086), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, - sym_array_type, + STATE(1139), 2, sym_integral_type, sym_floating_point_type, ACTIONS(75), 5, @@ -47125,24 +53625,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15867] = 7, - ACTIONS(282), 1, + [17233] = 7, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1272), 8, + ACTIONS(1322), 8, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -47151,106 +53651,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [15900] = 9, - ACTIONS(1063), 1, - sym_identifier, - STATE(586), 1, - sym_scoped_type_identifier, - STATE(604), 1, - sym_generic_type, - STATE(630), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(605), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15937] = 13, - ACTIONS(282), 1, + [17266] = 13, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1272), 1, + ACTIONS(1322), 1, anon_sym_COLON_COLON, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2000), 1, + ACTIONS(2080), 1, sym_identifier, - ACTIONS(2002), 1, + ACTIONS(2082), 1, anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, + STATE(876), 1, sym__variable_declarator_id, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1091), 1, + STATE(1177), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [15982] = 13, - ACTIONS(282), 1, + [17311] = 13, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1272), 1, + ACTIONS(1322), 1, anon_sym_COLON_COLON, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2000), 1, + ACTIONS(2080), 1, sym_identifier, - ACTIONS(2002), 1, + ACTIONS(2082), 1, anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(808), 1, + STATE(860), 1, sym__variable_declarator_id, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1123), 1, + STATE(1177), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16027] = 9, - ACTIONS(1063), 1, + [17356] = 9, + ACTIONS(1144), 1, + sym_identifier, + STATE(652), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(698), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(77), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(79), 2, + sym_boolean_type, + sym_void_type, + STATE(671), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(75), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17393] = 9, + ACTIONS(1144), 1, sym_identifier, - STATE(586), 1, + STATE(652), 1, sym_scoped_type_identifier, - STATE(604), 1, + STATE(669), 1, sym_generic_type, - STATE(657), 1, + STATE(696), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -47261,7 +53761,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, sym_boolean_type, sym_void_type, - STATE(605), 3, + STATE(671), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -47271,14 +53771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16064] = 3, + [17430] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 2, + ACTIONS(2090), 2, anon_sym_LBRACE, anon_sym_AT, - ACTIONS(2004), 13, + ACTIONS(2088), 13, anon_sym_extends, anon_sym_implements, anon_sym_permits, @@ -47292,435 +53792,491 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16088] = 12, + [17454] = 12, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(350), 1, + STATE(398), 1, sym_argument_list, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(598), 1, + STATE(659), 1, sym_type_arguments, - STATE(1073), 1, + STATE(1077), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(660), 2, + STATE(727), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16130] = 12, + [17496] = 4, + ACTIONS(2096), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1858), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1692), 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, + [17522] = 12, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2012), 1, + ACTIONS(2098), 1, anon_sym_DOT, - STATE(349), 1, + STATE(397), 1, sym_argument_list, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, - STATE(1071), 1, + STATE(1075), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(663), 2, + STATE(725), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16172] = 3, + [17564] = 12, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(2100), 1, + sym_identifier, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(670), 1, + sym_dimensions, + STATE(903), 1, + sym__variable_declarator_id, + STATE(915), 1, + sym__method_declarator, + STATE(1001), 1, + sym_variable_declarator, + STATE(1201), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2016), 2, - anon_sym_LBRACE, + ACTIONS(2102), 2, + anon_sym_open, + anon_sym_module, + STATE(811), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17606] = 12, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2014), 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, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(2100), 1, sym_identifier, - [16196] = 12, - ACTIONS(282), 1, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(670), 1, + sym_dimensions, + STATE(903), 1, + sym__variable_declarator_id, + STATE(915), 1, + sym__method_declarator, + STATE(1001), 1, + sym_variable_declarator, + STATE(1200), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2102), 2, + anon_sym_open, + anon_sym_module, + STATE(811), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17648] = 12, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2018), 1, + ACTIONS(2100), 1, sym_identifier, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, + STATE(903), 1, sym__variable_declarator_id, - STATE(821), 1, + STATE(915), 1, sym__method_declarator, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1087), 1, + STATE(1244), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2020), 2, + ACTIONS(2102), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16238] = 12, - ACTIONS(282), 1, + [17690] = 12, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2018), 1, + ACTIONS(2100), 1, sym_identifier, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, + STATE(903), 1, sym__variable_declarator_id, - STATE(821), 1, + STATE(915), 1, sym__method_declarator, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1104), 1, + STATE(1209), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2020), 2, + ACTIONS(2102), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16280] = 12, + [17732] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2106), 2, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2104), 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, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [17756] = 12, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2012), 1, + ACTIONS(2098), 1, anon_sym_DOT, - STATE(349), 1, + STATE(397), 1, sym_argument_list, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, - STATE(1071), 1, + STATE(1075), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(327), 2, + STATE(377), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16322] = 12, + [17798] = 12, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(350), 1, + STATE(398), 1, sym_argument_list, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(598), 1, + STATE(659), 1, sym_type_arguments, - STATE(1073), 1, + STATE(1077), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(330), 2, + STATE(376), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16364] = 12, - ACTIONS(282), 1, + [17840] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2018), 1, + ACTIONS(2080), 1, sym_identifier, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, + STATE(903), 1, sym__variable_declarator_id, - STATE(821), 1, - sym__method_declarator, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1127), 1, + STATE(1230), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2020), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16406] = 4, - ACTIONS(2022), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1800), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1626), 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, - [16432] = 12, - ACTIONS(282), 1, + [17879] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2018), 1, + ACTIONS(2080), 1, sym_identifier, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, + STATE(859), 1, sym__variable_declarator_id, - STATE(821), 1, - sym__method_declarator, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1159), 1, + STATE(1189), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2020), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16474] = 11, - ACTIONS(282), 1, + [17918] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1322), 1, + anon_sym_COLON_COLON, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2024), 1, + ACTIONS(2080), 1, sym_identifier, - STATE(481), 1, + ACTIONS(2082), 1, + anon_sym_DOT, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, - sym__variable_declarator_id, - STATE(956), 1, - sym_variable_declarator, - STATE(1127), 1, - sym__variable_declarator_list, + STATE(1182), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16513] = 11, - ACTIONS(282), 1, + [17957] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2080), 1, sym_identifier, - ACTIONS(1992), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1994), 1, - sym_this, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(1079), 1, + STATE(867), 1, sym__variable_declarator_id, + STATE(1001), 1, + sym_variable_declarator, + STATE(1189), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16552] = 11, - ACTIONS(282), 1, + [17996] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2026), 1, + ACTIONS(2108), 1, sym_identifier, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, + STATE(903), 1, sym__variable_declarator_id, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1087), 1, + STATE(1209), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16591] = 11, - ACTIONS(282), 1, + [18035] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2000), 1, + ACTIONS(2110), 1, sym_identifier, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(800), 1, + STATE(903), 1, sym__variable_declarator_id, - STATE(956), 1, + STATE(1001), 1, sym_variable_declarator, - STATE(1136), 1, + STATE(1244), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16630] = 11, - ACTIONS(282), 1, + [18074] = 11, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2000), 1, + ACTIONS(2070), 1, sym_identifier, - STATE(481), 1, + ACTIONS(2076), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2078), 1, + sym_this, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(790), 1, + STATE(1087), 1, sym__variable_declarator_id, - STATE(956), 1, - sym_variable_declarator, - STATE(1109), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16669] = 8, - ACTIONS(2028), 1, + [18113] = 8, + ACTIONS(2112), 1, sym_identifier, - STATE(786), 1, + STATE(842), 1, sym_scoped_type_identifier, - STATE(921), 1, + STATE(1030), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -47728,10 +54284,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(77), 2, anon_sym_float, anon_sym_double, - ACTIONS(2030), 2, + ACTIONS(2114), 2, sym_boolean_type, sym_void_type, - STATE(973), 2, + STATE(1074), 2, sym_integral_type, sym_floating_point_type, ACTIONS(75), 5, @@ -47740,6684 +54296,6835 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16702] = 11, - ACTIONS(282), 1, + [18146] = 10, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1272), 1, - anon_sym_COLON_COLON, - ACTIONS(1802), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2002), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(659), 1, + sym_type_arguments, + STATE(1161), 1, sym_dimensions, - STATE(1157), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, - anon_sym_open, - anon_sym_module, - STATE(758), 4, + STATE(375), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(777), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18182] = 7, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(848), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16741] = 9, - ACTIONS(2032), 1, + ACTIONS(2116), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [18212] = 9, + ACTIONS(2118), 1, anon_sym_RBRACE, - ACTIONS(2034), 1, + ACTIONS(2120), 1, anon_sym_requires, - ACTIONS(2036), 1, + ACTIONS(2122), 1, anon_sym_exports, - ACTIONS(2038), 1, + ACTIONS(2124), 1, anon_sym_opens, - ACTIONS(2040), 1, + ACTIONS(2126), 1, anon_sym_uses, - ACTIONS(2042), 1, + ACTIONS(2128), 1, anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(650), 2, + STATE(716), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(719), 5, + STATE(831), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [16775] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2008), 1, - anon_sym_LBRACK, - ACTIONS(2012), 1, - anon_sym_DOT, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(599), 1, - sym_type_arguments, - STATE(1004), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(661), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(763), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [16811] = 9, - ACTIONS(2044), 1, - anon_sym_RBRACE, - ACTIONS(2046), 1, + [18246] = 9, + ACTIONS(2120), 1, anon_sym_requires, - ACTIONS(2049), 1, + ACTIONS(2122), 1, anon_sym_exports, - ACTIONS(2052), 1, + ACTIONS(2124), 1, anon_sym_opens, - ACTIONS(2055), 1, + ACTIONS(2126), 1, anon_sym_uses, - ACTIONS(2058), 1, + ACTIONS(2128), 1, anon_sym_provides, + ACTIONS(2130), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(636), 2, + STATE(705), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(719), 5, + STATE(831), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [16845] = 9, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1802), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_PIPE, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(602), 1, - sym_dimensions, - STATE(771), 1, - aux_sym_catch_type_repeat1, + [18280] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2132), 1, + anon_sym_DOT, + STATE(659), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2061), 3, + ACTIONS(1482), 4, anon_sym_open, anon_sym_module, + sym_this, sym_identifier, - STATE(758), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [16879] = 10, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1484), 6, + anon_sym_AMP, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2065), 1, - anon_sym_DOT_DOT_DOT, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(602), 1, - sym_dimensions, - STATE(1024), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1990), 2, - anon_sym_open, - anon_sym_module, - STATE(758), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [16915] = 10, - ACTIONS(282), 1, + anon_sym_COLON_COLON, anon_sym_AT, - ACTIONS(1802), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2000), 1, - sym_identifier, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(602), 1, - sym_dimensions, - STATE(1079), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1990), 2, - anon_sym_open, - anon_sym_module, - STATE(758), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [16951] = 9, - ACTIONS(282), 1, + [18308] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2135), 1, anon_sym_LPAREN, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(668), 1, + STATE(736), 1, sym_formal_parameters, - STATE(777), 1, + STATE(839), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2069), 3, + ACTIONS(2137), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [16985] = 7, - ACTIONS(282), 1, + [18342] = 10, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2092), 1, anon_sym_LBRACK, - STATE(481), 1, + ACTIONS(2094), 1, + anon_sym_DOT, + STATE(398), 1, + sym_argument_list, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(764), 1, + STATE(1077), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, + STATE(376), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2071), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [17015] = 9, - ACTIONS(282), 1, + [18378] = 7, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2067), 1, - anon_sym_LPAREN, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(672), 1, - sym_formal_parameters, - STATE(764), 1, + STATE(839), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17049] = 9, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1802), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - sym_identifier, - ACTIONS(2075), 1, - sym_this, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(602), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1268), 3, - anon_sym_AMP, + ACTIONS(2137), 5, anon_sym_RPAREN, - anon_sym_COLON_COLON, - STATE(758), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [17083] = 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [18408] = 10, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2077), 1, - anon_sym_DOT, - STATE(598), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1412), 4, - anon_sym_open, - anon_sym_module, - sym_this, - sym_identifier, - ACTIONS(1414), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [17111] = 7, - ACTIONS(282), 1, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - STATE(481), 1, + ACTIONS(2098), 1, + anon_sym_DOT, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(777), 1, + STATE(662), 1, + sym_type_arguments, + STATE(1054), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, + STATE(378), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2069), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [17141] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(282), 1, + [18444] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, - anon_sym_DOT, - STATE(481), 1, + ACTIONS(2141), 1, + anon_sym_PIPE, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(598), 1, - sym_type_arguments, - STATE(1008), 1, + STATE(670), 1, sym_dimensions, + STATE(853), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(328), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + ACTIONS(2139), 3, + anon_sym_open, + anon_sym_module, + sym_identifier, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17177] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(282), 1, + [18478] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2012), 1, - anon_sym_DOT, - STATE(481), 1, + ACTIONS(2143), 1, + sym_identifier, + ACTIONS(2145), 1, + sym_this, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(599), 1, - sym_type_arguments, - STATE(1004), 1, + STATE(670), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(329), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + ACTIONS(1318), 3, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17213] = 10, - ACTIONS(282), 1, + [18512] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, - anon_sym_DOT, - STATE(350), 1, - sym_argument_list, - STATE(481), 1, + ACTIONS(2135), 1, + anon_sym_LPAREN, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(1073), 1, + STATE(738), 1, + sym_formal_parameters, + STATE(848), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(660), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + ACTIONS(2116), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17249] = 10, + [18546] = 10, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1097), 1, anon_sym_DOT, - ACTIONS(1061), 1, + ACTIONS(1101), 1, anon_sym_AT, - STATE(404), 1, + STATE(444), 1, sym_argument_list, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 2, + ACTIONS(1094), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(2080), 2, + ACTIONS(2147), 2, anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(1037), 3, + ACTIONS(1077), 3, anon_sym_open, anon_sym_module, sym_identifier, - [17285] = 9, - ACTIONS(2034), 1, + [18582] = 9, + ACTIONS(2149), 1, + anon_sym_RBRACE, + ACTIONS(2151), 1, anon_sym_requires, - ACTIONS(2036), 1, + ACTIONS(2154), 1, anon_sym_exports, - ACTIONS(2038), 1, + ACTIONS(2157), 1, anon_sym_opens, - ACTIONS(2040), 1, + ACTIONS(2160), 1, anon_sym_uses, - ACTIONS(2042), 1, + ACTIONS(2163), 1, anon_sym_provides, - ACTIONS(2082), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(636), 2, + STATE(716), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(719), 5, + STATE(831), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [17319] = 10, - ACTIONS(282), 1, + [18616] = 10, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(350), 1, + STATE(398), 1, sym_argument_list, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(1073), 1, + STATE(1077), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(330), 2, + STATE(727), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18652] = 10, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(2076), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2080), 1, + sym_identifier, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(670), 1, + sym_dimensions, + STATE(1087), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2074), 2, + anon_sym_open, + anon_sym_module, + STATE(811), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18688] = 10, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(2080), 1, + sym_identifier, + ACTIONS(2166), 1, + anon_sym_DOT_DOT_DOT, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(670), 1, + sym_dimensions, + STATE(1122), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2074), 2, + anon_sym_open, + anon_sym_module, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17355] = 10, + [18724] = 10, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(598), 1, + STATE(659), 1, sym_type_arguments, - STATE(1008), 1, + STATE(1161), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(654), 2, + STATE(730), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17391] = 8, - ACTIONS(282), 1, + [18760] = 10, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2084), 1, + ACTIONS(2098), 1, + anon_sym_DOT, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(662), 1, + sym_type_arguments, + STATE(1054), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(729), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(777), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18796] = 8, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(2168), 1, anon_sym_LPAREN, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(764), 1, + STATE(839), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 3, + ACTIONS(2137), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17422] = 8, - ACTIONS(282), 1, + [18827] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - STATE(421), 1, - sym_dimensions, - STATE(481), 1, + ACTIONS(2170), 1, + sym_identifier, + STATE(529), 1, aux_sym_dimensions_repeat1, + STATE(670), 1, + sym_dimensions, + STATE(929), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1220), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(335), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + ACTIONS(2172), 2, + anon_sym_open, + anon_sym_module, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17453] = 9, - ACTIONS(282), 1, + [18860] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2086), 1, - sym_identifier, - STATE(481), 1, + ACTIONS(2176), 1, + anon_sym_PIPE, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(835), 1, - sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2088), 2, + ACTIONS(2174), 3, anon_sym_open, anon_sym_module, - STATE(758), 4, + sym_identifier, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17486] = 9, - ACTIONS(282), 1, + [18891] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - STATE(350), 1, - sym_argument_list, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(1073), 1, + STATE(445), 1, sym_dimensions, + STATE(529), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(330), 2, + ACTIONS(1274), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17519] = 8, - ACTIONS(282), 1, + [18922] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_PIPE, - STATE(481), 1, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(839), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - STATE(758), 4, + ACTIONS(2137), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17550] = 9, - ACTIONS(282), 1, + [18953] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - STATE(350), 1, - sym_argument_list, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(1073), 1, + STATE(448), 1, sym_dimensions, + STATE(529), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(660), 2, + ACTIONS(1270), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17583] = 9, - ACTIONS(282), 1, + [18984] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2086), 1, - sym_identifier, - STATE(481), 1, + STATE(398), 1, + sym_argument_list, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(1077), 1, sym_dimensions, - STATE(823), 1, - sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2088), 2, - anon_sym_open, - anon_sym_module, - STATE(758), 4, + STATE(376), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17616] = 8, - ACTIONS(282), 1, + [19017] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - STATE(405), 1, + STATE(462), 1, sym_dimensions, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 2, + ACTIONS(1278), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(335), 2, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17647] = 8, - ACTIONS(282), 1, + [19048] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - STATE(418), 1, + STATE(464), 1, sym_dimensions, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 2, + ACTIONS(1264), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(335), 2, + STATE(383), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17678] = 8, - ACTIONS(282), 1, + [19079] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, - anon_sym_LBRACK, - ACTIONS(2094), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(481), 1, + ACTIONS(2092), 1, + anon_sym_LBRACK, + STATE(398), 1, + sym_argument_list, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(764), 1, + STATE(1077), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(758), 4, + STATE(727), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17709] = 8, - ACTIONS(282), 1, + [19112] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - STATE(409), 1, - sym_dimensions, - STATE(481), 1, + ACTIONS(2080), 1, + sym_identifier, + STATE(529), 1, aux_sym_dimensions_repeat1, + STATE(670), 1, + sym_dimensions, + STATE(1178), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1214), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(335), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + ACTIONS(2074), 2, + anon_sym_open, + anon_sym_module, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17740] = 9, - ACTIONS(282), 1, + [19145] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2000), 1, + ACTIONS(2170), 1, sym_identifier, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, - STATE(1089), 1, - sym__variable_declarator_id, + STATE(900), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2172), 2, anon_sym_open, anon_sym_module, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17773] = 8, - ACTIONS(282), 1, + [19178] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(1008), 1, + STATE(1161), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(328), 2, + STATE(730), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19208] = 8, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(2180), 1, + anon_sym_DOT, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(839), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2137), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(811), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19238] = 7, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(1824), 1, + anon_sym_LBRACK, + STATE(529), 1, + aux_sym_dimensions_repeat1, + STATE(994), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2182), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17803] = 4, - ACTIONS(2077), 1, + [19266] = 4, + ACTIONS(2132), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 4, + ACTIONS(1482), 4, anon_sym_open, anon_sym_module, sym_this, sym_identifier, - ACTIONS(1414), 6, + ACTIONS(1484), 6, anon_sym_AMP, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [17825] = 8, - ACTIONS(282), 1, + [19288] = 7, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2096), 1, - anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(764), 1, + STATE(1008), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(758), 4, + ACTIONS(2184), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17855] = 7, - ACTIONS(282), 1, + [19316] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - STATE(481), 1, + ACTIONS(2186), 1, + anon_sym_default, + ACTIONS(2188), 1, + anon_sym_SEMI, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(891), 1, + STATE(972), 1, sym_dimensions, + STATE(1250), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17883] = 9, - ACTIONS(282), 1, + [19348] = 9, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2100), 1, + ACTIONS(2186), 1, anon_sym_default, - ACTIONS(2102), 1, + ACTIONS(2190), 1, anon_sym_SEMI, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(876), 1, + STATE(1007), 1, sym_dimensions, - STATE(1138), 1, + STATE(1241), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17915] = 8, - ACTIONS(282), 1, + [19380] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(1008), 1, + STATE(1161), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(654), 2, + STATE(375), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17945] = 9, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1802), 1, - anon_sym_LBRACK, - ACTIONS(2100), 1, - anon_sym_default, - ACTIONS(2104), 1, - anon_sym_SEMI, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(966), 1, - sym_dimensions, - STATE(1165), 1, - sym__default_value, + [19410] = 11, + ACTIONS(1007), 1, + anon_sym_LT, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2192), 1, + anon_sym_extends, + ACTIONS(2194), 1, + anon_sym_implements, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(104), 1, + sym_class_body, + STATE(757), 1, + sym_type_parameters, + STATE(806), 1, + sym_superclass, + STATE(933), 1, + sym_super_interfaces, + STATE(1116), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [17977] = 7, - ACTIONS(282), 1, + [19445] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1322), 1, + anon_sym_COLON_COLON, + ACTIONS(1824), 1, anon_sym_LBRACK, - STATE(481), 1, + ACTIONS(2082), 1, + anon_sym_DOT, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(890), 1, + STATE(670), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18005] = 7, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2008), 1, - anon_sym_LBRACK, - STATE(481), 1, - aux_sym_dimensions_repeat1, - STATE(1008), 1, - sym_dimensions, + [19474] = 8, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2098), 1, + anon_sym_DOT, + ACTIONS(2135), 1, + anon_sym_LPAREN, + STATE(662), 1, + sym_type_arguments, + STATE(1115), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(654), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(763), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18032] = 7, - ACTIONS(282), 1, + ACTIONS(1101), 2, + anon_sym_LBRACK, anon_sym_AT, - ACTIONS(2008), 1, + ACTIONS(1077), 3, + anon_sym_open, + anon_sym_module, + sym_identifier, + [19503] = 7, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(2092), 1, anon_sym_LBRACK, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(1008), 1, + STATE(1161), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(328), 2, + STATE(375), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(763), 4, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18059] = 11, - ACTIONS(967), 1, - anon_sym_LT, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(2108), 1, - anon_sym_extends, - ACTIONS(2110), 1, - anon_sym_implements, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(71), 1, - sym_class_body, - STATE(685), 1, - sym_type_parameters, - STATE(743), 1, - sym_superclass, - STATE(867), 1, - sym_super_interfaces, - STATE(1015), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18094] = 8, + [19530] = 8, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2012), 1, + ACTIONS(2098), 1, anon_sym_DOT, - ACTIONS(2067), 1, + ACTIONS(2135), 1, anon_sym_LPAREN, - STATE(599), 1, + STATE(662), 1, sym_type_arguments, - STATE(1035), 1, + STATE(1078), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1061), 2, + ACTIONS(1101), 2, anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1037), 3, + ACTIONS(1077), 3, anon_sym_open, anon_sym_module, sym_identifier, - [18123] = 8, - ACTIONS(282), 1, + [19559] = 7, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1272), 1, - anon_sym_COLON_COLON, - ACTIONS(1802), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2002), 1, - anon_sym_DOT, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(1161), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, + STATE(730), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(777), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18152] = 11, - ACTIONS(967), 1, + [19586] = 11, + ACTIONS(1007), 1, anon_sym_LT, - ACTIONS(1292), 1, + ACTIONS(1342), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(2192), 1, anon_sym_extends, - ACTIONS(2110), 1, + ACTIONS(2194), 1, anon_sym_implements, - ACTIONS(2112), 1, + ACTIONS(2196), 1, anon_sym_permits, - STATE(110), 1, + STATE(97), 1, sym_class_body, - STATE(686), 1, + STATE(756), 1, sym_type_parameters, - STATE(753), 1, + STATE(780), 1, sym_superclass, - STATE(814), 1, + STATE(914), 1, sym_super_interfaces, - STATE(1064), 1, + STATE(1062), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18187] = 8, - ACTIONS(282), 1, + [19621] = 8, + ACTIONS(296), 1, anon_sym_AT, - ACTIONS(1802), 1, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(2143), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2145), 1, sym_this, - STATE(481), 1, + STATE(529), 1, aux_sym_dimensions_repeat1, - STATE(602), 1, + STATE(670), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(758), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18216] = 8, + [19650] = 9, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2012), 1, - anon_sym_DOT, - ACTIONS(2067), 1, - anon_sym_LPAREN, - STATE(599), 1, + ACTIONS(2198), 1, + sym_identifier, + ACTIONS(2200), 1, + anon_sym_new, + ACTIONS(2204), 1, + sym_this, + ACTIONS(2206), 1, + sym_super, + STATE(472), 1, + sym__unqualified_object_creation_expression, + STATE(918), 1, sym_type_arguments, - STATE(989), 1, - sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1061), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1037), 3, + ACTIONS(2202), 2, anon_sym_open, anon_sym_module, - sym_identifier, - [18245] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1272), 9, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [18261] = 9, + [19680] = 9, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2114), 1, + ACTIONS(2198), 1, sym_identifier, - ACTIONS(2116), 1, + ACTIONS(2200), 1, anon_sym_new, - ACTIONS(2120), 1, + ACTIONS(2204), 1, sym_this, - ACTIONS(2122), 1, + ACTIONS(2208), 1, sym_super, - STATE(384), 1, + STATE(472), 1, sym__unqualified_object_creation_expression, - STATE(820), 1, + STATE(1031), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 2, + ACTIONS(2202), 2, anon_sym_open, anon_sym_module, - [18291] = 8, - ACTIONS(2124), 1, + [19710] = 8, + ACTIONS(2210), 1, anon_sym_RBRACE, - ACTIONS(2126), 1, + ACTIONS(2212), 1, anon_sym_case, - ACTIONS(2128), 1, + ACTIONS(2214), 1, anon_sym_default, STATE(3), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(984), 1, + STATE(1100), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(697), 2, + STATE(764), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - STATE(718), 2, + STATE(799), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [18319] = 9, - ACTIONS(85), 1, + [19738] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1322), 9, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [19754] = 9, + ACTIONS(1007), 1, anon_sym_LT, - ACTIONS(2114), 1, - sym_identifier, - ACTIONS(2116), 1, - anon_sym_new, - ACTIONS(2120), 1, - sym_this, - ACTIONS(2130), 1, - sym_super, - STATE(384), 1, - sym__unqualified_object_creation_expression, - STATE(905), 1, - sym_type_arguments, + ACTIONS(2196), 1, + anon_sym_permits, + ACTIONS(2216), 1, + anon_sym_extends, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(115), 1, + sym_interface_body, + STATE(793), 1, + sym_type_parameters, + STATE(928), 1, + sym_extends_interfaces, + STATE(1095), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 2, + [19783] = 8, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2222), 1, anon_sym_open, + ACTIONS(2224), 1, anon_sym_module, - [18349] = 9, - ACTIONS(1292), 1, + STATE(761), 1, + aux_sym_requires_module_directive_repeat1, + STATE(844), 1, + sym_requires_modifier, + STATE(1081), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2226), 2, + anon_sym_transitive, + anon_sym_static, + [19810] = 9, + ACTIONS(1342), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(2192), 1, anon_sym_extends, - ACTIONS(2110), 1, + ACTIONS(2194), 1, anon_sym_implements, - ACTIONS(2112), 1, + ACTIONS(2196), 1, anon_sym_permits, - STATE(86), 1, + STATE(148), 1, sym_class_body, - STATE(711), 1, + STATE(809), 1, sym_superclass, - STATE(827), 1, + STATE(916), 1, sym_super_interfaces, - STATE(994), 1, + STATE(1076), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18378] = 9, - ACTIONS(1292), 1, + [19839] = 9, + ACTIONS(1342), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(2192), 1, anon_sym_extends, - ACTIONS(2110), 1, + ACTIONS(2194), 1, anon_sym_implements, - ACTIONS(2112), 1, + ACTIONS(2196), 1, anon_sym_permits, - STATE(105), 1, + STATE(102), 1, sym_class_body, - STATE(701), 1, + STATE(813), 1, sym_superclass, - STATE(863), 1, + STATE(868), 1, sym_super_interfaces, - STATE(974), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18407] = 9, - ACTIONS(967), 1, - anon_sym_LT, - ACTIONS(2112), 1, - anon_sym_permits, - ACTIONS(2132), 1, - anon_sym_extends, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(92), 1, - sym_interface_body, - STATE(757), 1, - sym_type_parameters, - STATE(829), 1, - sym_extends_interfaces, - STATE(1046), 1, + STATE(1164), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18436] = 7, - ACTIONS(2136), 1, + [19868] = 7, + ACTIONS(2228), 1, sym_identifier, - STATE(689), 1, + STATE(755), 1, aux_sym_requires_module_directive_repeat1, - STATE(770), 1, + STATE(844), 1, sym_requires_modifier, - STATE(1050), 1, + STATE(1084), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(2140), 2, + ACTIONS(2226), 2, anon_sym_transitive, anon_sym_static, - [18461] = 8, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, + ACTIONS(2230), 2, anon_sym_open, - ACTIONS(2146), 1, anon_sym_module, - STATE(692), 1, - aux_sym_requires_module_directive_repeat1, - STATE(770), 1, - sym_requires_modifier, - STATE(1080), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2140), 2, - anon_sym_transitive, - anon_sym_static, - [18488] = 9, - ACTIONS(967), 1, + [19893] = 9, + ACTIONS(1007), 1, anon_sym_LT, - ACTIONS(2112), 1, + ACTIONS(2196), 1, anon_sym_permits, - ACTIONS(2132), 1, + ACTIONS(2216), 1, anon_sym_extends, - ACTIONS(2134), 1, + ACTIONS(2218), 1, anon_sym_LBRACE, - STATE(79), 1, + STATE(100), 1, sym_interface_body, - STATE(744), 1, + STATE(771), 1, sym_type_parameters, - STATE(862), 1, + STATE(917), 1, sym_extends_interfaces, - STATE(1017), 1, + STATE(1067), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18517] = 6, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_argument_list, - STATE(935), 1, - sym_class_body, + [19922] = 7, + ACTIONS(2232), 1, + anon_sym_RBRACE, + ACTIONS(2234), 1, + anon_sym_case, + ACTIONS(2237), 1, + anon_sym_default, + STATE(3), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1169), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2148), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [18539] = 5, - STATE(692), 1, + STATE(760), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [19946] = 5, + STATE(761), 1, aux_sym_requires_module_directive_repeat1, - STATE(770), 1, + STATE(844), 1, sym_requires_modifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2152), 2, + ACTIONS(2242), 2, anon_sym_transitive, anon_sym_static, - ACTIONS(2150), 3, + ACTIONS(2240), 3, anon_sym_open, anon_sym_module, sym_identifier, - [18559] = 6, - ACTIONS(1039), 1, + [19966] = 6, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1292), 1, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(854), 1, + sym_argument_list, + STATE(997), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2245), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [19988] = 6, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(855), 1, sym_argument_list, - STATE(893), 1, + STATE(1036), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 3, + ACTIONS(2247), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [18581] = 5, - ACTIONS(321), 1, + [20010] = 7, + ACTIONS(2214), 1, + anon_sym_default, + ACTIONS(2249), 1, + anon_sym_RBRACE, + ACTIONS(2251), 1, + anon_sym_case, + STATE(3), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1169), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(760), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [20034] = 7, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(2198), 1, + sym_identifier, + ACTIONS(2204), 1, + sym_this, + ACTIONS(2208), 1, + sym_super, + STATE(1031), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2202), 2, + anon_sym_open, + anon_sym_module, + [20058] = 5, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(2157), 1, + ACTIONS(2253), 1, sym_identifier, - STATE(934), 1, + STATE(1130), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(717), 4, + STATE(768), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18601] = 5, - ACTIONS(321), 1, + [20078] = 5, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(2157), 1, + ACTIONS(2253), 1, sym_identifier, - STATE(1003), 1, + STATE(1013), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(717), 4, + STATE(768), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18621] = 7, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2114), 1, + [20098] = 4, + ACTIONS(337), 1, + anon_sym_AT, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2120), 1, - sym_this, - ACTIONS(2130), 1, - sym_super, - STATE(905), 1, - sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 2, - anon_sym_open, - anon_sym_module, - [18645] = 7, - ACTIONS(2128), 1, - anon_sym_default, - ACTIONS(2159), 1, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20115] = 4, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(829), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20132] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2259), 6, anon_sym_RBRACE, - ACTIONS(2161), 1, - anon_sym_case, - STATE(3), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1100), 1, - sym_switch_label, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20145] = 7, + ACTIONS(2196), 1, + anon_sym_permits, + ACTIONS(2216), 1, + anon_sym_extends, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(125), 1, + sym_interface_body, + STATE(934), 1, + sym_extends_interfaces, + STATE(1155), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(698), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [18669] = 7, - ACTIONS(2163), 1, + [20168] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2259), 6, anon_sym_RBRACE, - ACTIONS(2165), 1, - anon_sym_case, - ACTIONS(2168), 1, - anon_sym_default, - STATE(3), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1100), 1, - sym_switch_label, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20181] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(698), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [18693] = 6, - ACTIONS(2171), 1, + ACTIONS(2261), 6, anon_sym_RBRACE, - ACTIONS(2173), 1, - anon_sym_case, - ACTIONS(2176), 1, - anon_sym_default, - STATE(1096), 1, - sym_switch_label, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20194] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(699), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [18714] = 4, - ACTIONS(321), 1, + ACTIONS(2263), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20207] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2265), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20220] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2261), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20233] = 4, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(829), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20250] = 4, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(2269), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(749), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18731] = 7, - ACTIONS(1292), 1, + [20267] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2271), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20280] = 7, + ACTIONS(1342), 1, anon_sym_LBRACE, - ACTIONS(2110), 1, + ACTIONS(2194), 1, anon_sym_implements, - ACTIONS(2112), 1, + ACTIONS(2196), 1, anon_sym_permits, - STATE(120), 1, + STATE(145), 1, sym_class_body, - STATE(818), 1, + STATE(911), 1, sym_super_interfaces, - STATE(1060), 1, + STATE(1088), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18754] = 4, - ACTIONS(282), 1, + [20303] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2273), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20316] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2275), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [20329] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2277), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20342] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2279), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [20355] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2281), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20368] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2283), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20381] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2285), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20394] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2287), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20407] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2289), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(2181), 1, + anon_sym_throws, + [20420] = 4, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(2291), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 4, + STATE(829), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18771] = 4, - ACTIONS(282), 1, + [20437] = 4, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(2183), 1, - anon_sym_LBRACK, + ACTIONS(2293), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18788] = 2, + [20454] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 6, + ACTIONS(2295), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18801] = 2, + [20467] = 7, + ACTIONS(2196), 1, + anon_sym_permits, + ACTIONS(2216), 1, + anon_sym_extends, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(142), 1, + sym_interface_body, + STATE(877), 1, + sym_extends_interfaces, + STATE(1153), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18814] = 2, + [20490] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 6, + ACTIONS(2297), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18827] = 2, + [20503] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2299), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18840] = 2, + [20516] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 6, + ACTIONS(2301), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18853] = 2, + [20529] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 6, + ACTIONS(2303), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18866] = 2, + [20542] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 6, + ACTIONS(2305), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18879] = 7, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(2110), 1, - anon_sym_implements, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(100), 1, - sym_class_body, - STATE(812), 1, - sym_super_interfaces, - STATE(1069), 1, - sym_permits, + [20555] = 6, + ACTIONS(2212), 1, + anon_sym_case, + ACTIONS(2214), 1, + anon_sym_default, + ACTIONS(2249), 1, + anon_sym_RBRACE, + STATE(1176), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18902] = 2, + STATE(814), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [20576] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 6, + ACTIONS(2307), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18915] = 2, + [20589] = 4, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(829), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20606] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 6, + ACTIONS(2311), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18928] = 2, + [20619] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 6, + ACTIONS(2313), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18941] = 2, + [20632] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 6, + ACTIONS(2315), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18954] = 2, + [20645] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 6, + ACTIONS(2317), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18967] = 4, - ACTIONS(321), 1, + [20658] = 7, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2194), 1, + anon_sym_implements, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(105), 1, + sym_class_body, + STATE(874), 1, + sym_super_interfaces, + STATE(1158), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20681] = 4, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(2209), 1, + ACTIONS(2319), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(589), 4, + STATE(791), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18984] = 6, - ACTIONS(2126), 1, - anon_sym_case, - ACTIONS(2128), 1, - anon_sym_default, - ACTIONS(2159), 1, - anon_sym_RBRACE, - STATE(1096), 1, - sym_switch_label, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(699), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [19005] = 2, + [20698] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 6, + ACTIONS(2321), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19018] = 2, + [20711] = 7, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2194), 1, + anon_sym_implements, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(154), 1, + sym_class_body, + STATE(895), 1, + sym_super_interfaces, + STATE(1133), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19031] = 4, - ACTIONS(321), 1, + [20734] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2323), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(2215), 1, - sym_identifier, + anon_sym_throws, + [20747] = 4, + ACTIONS(296), 1, + anon_sym_AT, + ACTIONS(2325), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(589), 4, + STATE(829), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19048] = 2, + [20764] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 6, + ACTIONS(2327), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19061] = 2, + [20777] = 7, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2194), 1, + anon_sym_implements, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(99), 1, + sym_class_body, + STATE(936), 1, + sym_super_interfaces, + STATE(1129), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 6, + [20800] = 6, + ACTIONS(2329), 1, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19074] = 4, - ACTIONS(321), 1, + ACTIONS(2331), 1, + anon_sym_case, + ACTIONS(2334), 1, + anon_sym_default, + STATE(1176), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(814), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [20821] = 4, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(2221), 1, + ACTIONS(2337), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(589), 4, + STATE(778), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19091] = 2, + [20838] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2223), 6, + ACTIONS(2339), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19104] = 2, + [20851] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 6, + ACTIONS(2341), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19117] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2227), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, + [20864] = 4, + ACTIONS(337), 1, anon_sym_AT, - anon_sym_throws, - [19130] = 2, + ACTIONS(2343), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19143] = 2, + STATE(832), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20881] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 6, + ACTIONS(2345), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19156] = 2, + [20894] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 6, + ACTIONS(2347), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19169] = 2, + [20907] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 6, + ACTIONS(2349), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19182] = 6, + [20920] = 6, ACTIONS(85), 1, anon_sym_LT, - ACTIONS(2237), 1, + ACTIONS(2351), 1, sym_identifier, - ACTIONS(2241), 1, + ACTIONS(2355), 1, sym_this, - STATE(918), 1, + STATE(983), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 2, + ACTIONS(2353), 2, anon_sym_open, anon_sym_module, - [19203] = 2, + [20941] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 6, + ACTIONS(2357), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19216] = 2, + [20954] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 6, + ACTIONS(2359), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19229] = 2, + [20967] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 6, + ACTIONS(2361), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19242] = 4, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, + [20980] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2363), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20993] = 4, + ACTIONS(337), 1, anon_sym_AT, + ACTIONS(2365), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 4, + STATE(830), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19259] = 2, + [21010] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 6, + ACTIONS(2367), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19272] = 4, - ACTIONS(321), 1, + [21023] = 4, + ACTIONS(2065), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, anon_sym_AT, - ACTIONS(2254), 1, - sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(829), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19289] = 4, - ACTIONS(321), 1, + [21040] = 4, + ACTIONS(337), 1, anon_sym_AT, - ACTIONS(2256), 1, + ACTIONS(2372), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(724), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19306] = 2, + [21057] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 6, + ACTIONS(2374), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [19319] = 2, + [21070] = 4, + ACTIONS(337), 1, + anon_sym_AT, + ACTIONS(2376), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19332] = 2, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21087] = 4, + STATE(1068), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 6, + ACTIONS(2378), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2380), 2, + anon_sym_extends, + sym_super, + [21103] = 6, + ACTIONS(1898), 1, + anon_sym_SEMI, + ACTIONS(2382), 1, + anon_sym_COMMA, + ACTIONS(2384), 1, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19345] = 7, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(2110), 1, - anon_sym_implements, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(87), 1, - sym_class_body, - STATE(830), 1, - sym_super_interfaces, - STATE(982), 1, - sym_permits, + STATE(845), 1, + aux_sym_enum_body_repeat1, + STATE(1214), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19368] = 7, - ACTIONS(2112), 1, - anon_sym_permits, - ACTIONS(2132), 1, - anon_sym_extends, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(94), 1, - sym_interface_body, - STATE(802), 1, - sym_extends_interfaces, - STATE(996), 1, - sym_permits, + [21123] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2098), 1, + anon_sym_DOT, + STATE(397), 1, + sym_argument_list, + STATE(662), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19391] = 2, + [21143] = 5, + ACTIONS(2080), 1, + sym_identifier, + STATE(903), 1, + sym__variable_declarator_id, + STATE(1127), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [19404] = 2, + ACTIONS(2074), 2, + anon_sym_open, + anon_sym_module, + [21161] = 4, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(443), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 6, - anon_sym_DASH_GT, + ACTIONS(1224), 3, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + [21177] = 5, + ACTIONS(2386), 1, + anon_sym_catch, + ACTIONS(2388), 1, + anon_sym_finally, + STATE(236), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(88), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [21195] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2390), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [19417] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2264), 1, + [21207] = 5, + ACTIONS(2080), 1, sym_identifier, + STATE(903), 1, + sym__variable_declarator_id, + STATE(1064), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(589), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19434] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2266), 1, - anon_sym_LBRACK, + ACTIONS(2074), 2, + anon_sym_open, + anon_sym_module, + [21225] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19451] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2268), 1, + ACTIONS(2392), 5, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, sym_identifier, + [21237] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2094), 1, + anon_sym_DOT, + STATE(395), 1, + sym_argument_list, + STATE(659), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(589), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19468] = 2, + [21257] = 5, + ACTIONS(2394), 1, + sym_identifier, + ACTIONS(2398), 1, + anon_sym_static, + STATE(1141), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19481] = 2, + ACTIONS(2396), 2, + anon_sym_open, + anon_sym_module, + [21275] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(2400), 5, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + sym_identifier, + [21287] = 6, + ACTIONS(1898), 1, anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [19494] = 2, + ACTIONS(1965), 1, + anon_sym_RBRACE, + ACTIONS(2402), 1, + anon_sym_COMMA, + STATE(931), 1, + aux_sym_enum_body_repeat1, + STATE(1242), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19507] = 7, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(2110), 1, - anon_sym_implements, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(66), 1, - sym_class_body, - STATE(859), 1, - sym_super_interfaces, - STATE(976), 1, - sym_permits, + [21307] = 4, + ACTIONS(2404), 1, + anon_sym_COMMA, + STATE(846), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19530] = 2, + ACTIONS(2407), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_permits, + [21323] = 5, + ACTIONS(2080), 1, + sym_identifier, + STATE(903), 1, + sym__variable_declarator_id, + STATE(1065), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2276), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19543] = 2, + ACTIONS(2074), 2, + anon_sym_open, + anon_sym_module, + [21341] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19556] = 2, + ACTIONS(2409), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [21353] = 4, + STATE(1132), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2280), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19569] = 7, - ACTIONS(2112), 1, - anon_sym_permits, - ACTIONS(2132), 1, + ACTIONS(2380), 2, anon_sym_extends, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(99), 1, - sym_interface_body, - STATE(833), 1, - sym_extends_interfaces, - STATE(999), 1, - sym_permits, + sym_super, + ACTIONS(2411), 2, + anon_sym_GT, + anon_sym_COMMA, + [21369] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2094), 1, + anon_sym_DOT, + STATE(398), 1, + sym_argument_list, + STATE(659), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19592] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2282), 1, - anon_sym_LBRACK, + [21389] = 4, + ACTIONS(2413), 1, + anon_sym_PIPE, + STATE(851), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19609] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2284), 1, + ACTIONS(2174), 3, + anon_sym_open, + anon_sym_module, sym_identifier, + [21405] = 6, + ACTIONS(85), 1, + anon_sym_LT, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2098), 1, + anon_sym_DOT, + STATE(400), 1, + sym_argument_list, + STATE(662), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(747), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19626] = 2, + [21425] = 4, + ACTIONS(2141), 1, + anon_sym_PIPE, + STATE(851), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19639] = 2, + ACTIONS(2416), 3, + anon_sym_open, + anon_sym_module, + sym_identifier, + [21441] = 4, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(968), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2288), 6, + ACTIONS(2418), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19652] = 2, + anon_sym_SEMI, + [21457] = 4, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(1005), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 6, + ACTIONS(2420), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [19665] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2292), 1, + anon_sym_SEMI, + [21473] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2147), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1083), 3, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [21487] = 4, + ACTIONS(2422), 1, + sym_identifier, + STATE(989), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19682] = 2, + ACTIONS(2424), 2, + anon_sym_open, + anon_sym_module, + [21502] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 5, + ACTIONS(2426), 4, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [21513] = 4, + ACTIONS(2428), 1, anon_sym_EQ, + ACTIONS(2432), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2430), 2, anon_sym_COMMA, + anon_sym_SEMI, + [21528] = 4, + ACTIONS(2428), 1, + anon_sym_EQ, + ACTIONS(2434), 1, anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2430), 2, + anon_sym_COMMA, anon_sym_SEMI, - [19694] = 4, - ACTIONS(1039), 1, + [21543] = 5, + ACTIONS(2436), 1, anon_sym_LPAREN, - STATE(411), 1, - sym_argument_list, + ACTIONS(2438), 1, + anon_sym_LBRACE, + STATE(838), 1, + sym_block, + STATE(1149), 1, + sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1149), 3, - anon_sym_LBRACK, - anon_sym_DOT, + [21560] = 4, + ACTIONS(2440), 1, + sym_identifier, + STATE(392), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2442), 2, + anon_sym_open, + anon_sym_module, + [21575] = 4, + ACTIONS(2444), 1, + sym_identifier, + STATE(1144), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2446), 2, + anon_sym_open, + anon_sym_module, + [21590] = 4, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(864), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1910), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [21605] = 5, + ACTIONS(1523), 1, anon_sym_COLON_COLON, - [19710] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2010), 1, - anon_sym_DOT, - STATE(350), 1, - sym_argument_list, - STATE(598), 1, - sym_type_arguments, + ACTIONS(2451), 1, + anon_sym_AMP, + ACTIONS(2453), 1, + anon_sym_RPAREN, + STATE(1016), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19730] = 5, - ACTIONS(2296), 1, - anon_sym_catch, - ACTIONS(2298), 1, - anon_sym_finally, - STATE(205), 1, - sym_finally_clause, + [21622] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(58), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [19748] = 4, - STATE(1081), 1, - sym__wildcard_bounds, + ACTIONS(2455), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [21633] = 4, + ACTIONS(2428), 1, + anon_sym_EQ, + ACTIONS(2457), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 2, - anon_sym_GT, + ACTIONS(2430), 2, anon_sym_COMMA, - ACTIONS(2302), 2, - anon_sym_extends, - sym_super, - [19764] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2012), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(599), 1, - sym_type_arguments, + anon_sym_SEMI, + [21648] = 5, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(134), 1, + sym_class_body, + STATE(1134), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19784] = 2, + [21665] = 4, + ACTIONS(2459), 1, + sym_identifier, + STATE(1069), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 5, + ACTIONS(2461), 2, anon_sym_open, anon_sym_module, - anon_sym_transitive, - anon_sym_static, + [21680] = 4, + ACTIONS(2463), 1, sym_identifier, - [19796] = 4, - ACTIONS(2063), 1, - anon_sym_PIPE, - STATE(775), 1, - aux_sym_catch_type_repeat1, + STATE(1090), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2465), 2, + anon_sym_open, + anon_sym_module, + [21695] = 4, + ACTIONS(2467), 1, + sym_identifier, + STATE(975), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2469), 2, + anon_sym_open, + anon_sym_module, + [21710] = 4, + ACTIONS(2471), 1, + sym_identifier, + STATE(970), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 3, + ACTIONS(2473), 2, anon_sym_open, anon_sym_module, + [21725] = 4, + ACTIONS(2080), 1, sym_identifier, - [19812] = 2, + STATE(1211), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 5, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - anon_sym_transitive, - anon_sym_static, - sym_identifier, - [19824] = 4, - ACTIONS(1292), 1, + [21740] = 5, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(939), 1, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(114), 1, sym_class_body, + STATE(1137), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19840] = 5, - ACTIONS(2000), 1, + [21757] = 4, + ACTIONS(2475), 1, sym_identifier, - STATE(790), 1, - sym__variable_declarator_id, - STATE(1025), 1, - sym_variable_declarator, + STATE(634), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2477), 2, anon_sym_open, anon_sym_module, - [19858] = 4, - ACTIONS(2312), 1, - anon_sym_PIPE, - STATE(775), 1, - aux_sym_catch_type_repeat1, + [21772] = 4, + ACTIONS(2428), 1, + anon_sym_EQ, + ACTIONS(2479), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [19874] = 5, - ACTIONS(2000), 1, - sym_identifier, - STATE(790), 1, - sym__variable_declarator_id, - STATE(1022), 1, - sym_variable_declarator, + ACTIONS(2430), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [21787] = 5, + ACTIONS(2196), 1, + anon_sym_permits, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(123), 1, + sym_interface_body, + STATE(1147), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, - anon_sym_open, - anon_sym_module, - [19892] = 2, + [21804] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 5, + ACTIONS(2481), 4, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_SEMI, - [19904] = 5, - ACTIONS(2317), 1, + [21815] = 4, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2321), 1, - anon_sym_static, - STATE(1054), 1, + STATE(1045), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2319), 2, + ACTIONS(2485), 2, anon_sym_open, anon_sym_module, - [19922] = 6, - ACTIONS(1828), 1, - anon_sym_SEMI, - ACTIONS(1874), 1, - anon_sym_RBRACE, - ACTIONS(2323), 1, - anon_sym_COMMA, - STATE(806), 1, - aux_sym_enum_body_repeat1, - STATE(1082), 1, - sym_enum_body_declarations, + [21830] = 4, + ACTIONS(2487), 1, + sym_identifier, + STATE(1059), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19942] = 6, - ACTIONS(1828), 1, - anon_sym_SEMI, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(2327), 1, - anon_sym_RBRACE, - STATE(779), 1, - aux_sym_enum_body_repeat1, - STATE(1121), 1, - sym_enum_body_declarations, + ACTIONS(2489), 2, + anon_sym_open, + anon_sym_module, + [21845] = 5, + ACTIONS(2194), 1, + anon_sym_implements, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(112), 1, + sym_enum_body, + STATE(1061), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19962] = 4, - ACTIONS(2329), 1, - anon_sym_COMMA, - STATE(781), 1, - aux_sym_type_list_repeat1, + [21862] = 4, + ACTIONS(85), 1, + anon_sym_LT, + STATE(1072), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 3, - anon_sym_LBRACE, + ACTIONS(2493), 2, + anon_sym_new, + sym_identifier, + [21877] = 5, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2497), 1, anon_sym_SEMI, - anon_sym_permits, - [19978] = 3, + STATE(946), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2080), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1043), 3, - anon_sym_LBRACK, + [21894] = 5, + ACTIONS(1336), 1, anon_sym_DOT, - anon_sym_COLON_COLON, - [19992] = 4, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_class_body, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2499), 1, + anon_sym_SEMI, + STATE(948), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 3, + [21911] = 5, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2495), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2501), 1, anon_sym_SEMI, - [20008] = 4, - STATE(1013), 1, - sym__wildcard_bounds, + STATE(950), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 2, - anon_sym_extends, - sym_super, - ACTIONS(2336), 2, - anon_sym_GT, + [21928] = 5, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2495), 1, anon_sym_COMMA, - [20024] = 5, - ACTIONS(2000), 1, - sym_identifier, - STATE(790), 1, - sym__variable_declarator_id, - STATE(1021), 1, - sym_variable_declarator, + ACTIONS(2503), 1, + anon_sym_SEMI, + STATE(952), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, - anon_sym_open, - anon_sym_module, - [20042] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2010), 1, + [21945] = 5, + ACTIONS(1330), 1, anon_sym_DOT, - STATE(347), 1, - sym_argument_list, - STATE(598), 1, - sym_type_arguments, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2505), 1, + anon_sym_SEMI, + STATE(953), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20062] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2012), 1, + [21962] = 5, + ACTIONS(1336), 1, anon_sym_DOT, - STATE(348), 1, - sym_argument_list, - STATE(599), 1, - sym_type_arguments, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2507), 1, + anon_sym_SEMI, + STATE(955), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20082] = 4, - ACTIONS(2338), 1, - sym_identifier, - STATE(844), 1, - sym_scoped_identifier, + [21979] = 5, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2509), 1, + anon_sym_SEMI, + STATE(957), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 2, - anon_sym_open, - anon_sym_module, - [20097] = 4, - ACTIONS(2342), 1, - sym_identifier, - STATE(565), 1, - sym_scoped_identifier, + [21996] = 5, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2511), 1, + anon_sym_SEMI, + STATE(959), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 2, - anon_sym_open, - anon_sym_module, - [20112] = 3, - ACTIONS(2348), 1, - anon_sym_EQ, + [22013] = 5, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2513), 1, + anon_sym_COMMA, + ACTIONS(2515), 1, + anon_sym_SEMI, + STATE(961), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 3, - anon_sym_RPAREN, + [22030] = 5, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2513), 1, anon_sym_COMMA, + ACTIONS(2517), 1, anon_sym_SEMI, - [20125] = 4, - ACTIONS(2350), 1, - sym_identifier, - STATE(1029), 1, - sym_scoped_identifier, + STATE(963), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 2, - anon_sym_open, - anon_sym_module, - [20140] = 2, + [22047] = 5, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2513), 1, + anon_sym_COMMA, + ACTIONS(2519), 1, + anon_sym_SEMI, + STATE(965), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 4, - anon_sym_RPAREN, + [22064] = 5, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2513), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2521), 1, anon_sym_SEMI, - [20151] = 4, - ACTIONS(2356), 1, - sym_identifier, - STATE(855), 1, - sym_scoped_identifier, + STATE(967), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2358), 2, - anon_sym_open, - anon_sym_module, - [20166] = 4, - ACTIONS(2360), 1, - sym_identifier, - STATE(853), 1, - sym_scoped_identifier, + [22081] = 5, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(150), 1, + sym_class_body, + STATE(1099), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2362), 2, - anon_sym_open, - anon_sym_module, - [20181] = 4, - ACTIONS(2364), 1, - sym_identifier, + [22098] = 4, + ACTIONS(2523), 1, + anon_sym_COMMA, STATE(846), 1, - sym_scoped_identifier, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2366), 2, - anon_sym_open, - anon_sym_module, - [20196] = 4, - ACTIONS(2368), 1, - sym_identifier, - STATE(458), 1, - sym_scoped_identifier, + ACTIONS(2525), 2, + anon_sym_LBRACE, + anon_sym_permits, + [22113] = 4, + ACTIONS(2527), 1, + anon_sym_AMP, + STATE(937), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2370), 2, - anon_sym_open, - anon_sym_module, - [20211] = 4, - ACTIONS(2372), 1, - sym_identifier, - STATE(842), 1, - sym_scoped_identifier, + ACTIONS(2529), 2, + anon_sym_GT, + anon_sym_COMMA, + [22128] = 5, + ACTIONS(1523), 1, + anon_sym_COLON_COLON, + ACTIONS(2451), 1, + anon_sym_AMP, + ACTIONS(2531), 1, + anon_sym_RPAREN, + STATE(977), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2374), 2, - anon_sym_open, - anon_sym_module, - [20226] = 4, - ACTIONS(2376), 1, + [22145] = 4, + ACTIONS(2533), 1, sym_identifier, - STATE(839), 1, + STATE(515), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 2, + ACTIONS(2535), 2, anon_sym_open, anon_sym_module, - [20241] = 5, - ACTIONS(1039), 1, + [22160] = 4, + ACTIONS(2539), 1, + anon_sym_throws, + STATE(1052), 1, + sym_throws, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2537), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [22175] = 5, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1577), 1, + ACTIONS(1523), 1, anon_sym_COLON_COLON, - ACTIONS(2380), 1, + ACTIONS(2541), 1, anon_sym_DOT, - STATE(1108), 1, + STATE(1233), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20258] = 4, - ACTIONS(2348), 1, - anon_sym_EQ, - ACTIONS(2382), 1, - anon_sym_COLON, + [22192] = 4, + ACTIONS(2523), 1, + anon_sym_COMMA, + STATE(906), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 2, - anon_sym_COMMA, + ACTIONS(2543), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [20273] = 4, - ACTIONS(2384), 1, - sym_identifier, - STATE(925), 1, - sym_scoped_identifier, + [22207] = 3, + ACTIONS(2428), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 2, - anon_sym_open, - anon_sym_module, - [20288] = 5, - ACTIONS(2112), 1, - anon_sym_permits, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(112), 1, - sym_interface_body, - STATE(1059), 1, - sym_permits, + ACTIONS(2430), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [22220] = 4, + ACTIONS(2545), 1, + anon_sym_COMMA, + STATE(904), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20305] = 2, + ACTIONS(1910), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [22235] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 4, - anon_sym_RPAREN, + ACTIONS(2407), 4, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_SEMI, - [20316] = 4, - ACTIONS(2390), 1, + anon_sym_permits, + [22246] = 4, + ACTIONS(2523), 1, anon_sym_COMMA, - STATE(841), 1, + STATE(846), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 2, + ACTIONS(2548), 2, anon_sym_LBRACE, anon_sym_SEMI, - [20331] = 4, - ACTIONS(2000), 1, + [22261] = 4, + ACTIONS(2550), 1, sym_identifier, - STATE(1124), 1, - sym__variable_declarator_id, + STATE(1096), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, + ACTIONS(2552), 2, anon_sym_open, anon_sym_module, - [20346] = 4, - ACTIONS(2394), 1, - anon_sym_COMMA, - STATE(806), 1, - aux_sym_enum_body_repeat1, + [22276] = 5, + ACTIONS(2539), 1, + anon_sym_throws, + ACTIONS(2554), 1, + anon_sym_LBRACE, + STATE(401), 1, + sym_constructor_body, + STATE(1118), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2397), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [20361] = 4, - ACTIONS(2401), 1, - anon_sym_extends, - STATE(1037), 1, - sym_type_bound, + [22293] = 4, + ACTIONS(1854), 1, + anon_sym_COMMA, + STATE(904), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2399), 2, - anon_sym_GT, - anon_sym_COMMA, - [20376] = 4, - ACTIONS(2348), 1, - anon_sym_EQ, - ACTIONS(2403), 1, + ACTIONS(2556), 2, + anon_sym_DASH_GT, anon_sym_COLON, + [22308] = 4, + ACTIONS(2560), 1, + anon_sym_extends, + STATE(1126), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 2, + ACTIONS(2558), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SEMI, - [20391] = 4, - ACTIONS(2405), 1, - sym_identifier, - STATE(969), 1, - sym_scoped_identifier, + [22323] = 5, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(160), 1, + sym_class_body, + STATE(1136), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2407), 2, - anon_sym_open, - anon_sym_module, - [20406] = 4, - ACTIONS(2409), 1, + [22340] = 4, + ACTIONS(2080), 1, sym_identifier, - STATE(870), 1, - sym_scoped_identifier, + STATE(1197), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2411), 2, + ACTIONS(2074), 2, anon_sym_open, anon_sym_module, - [20421] = 4, - ACTIONS(2413), 1, - sym_identifier, - STATE(1034), 1, - sym_scoped_identifier, + [22355] = 4, + ACTIONS(2562), 1, + anon_sym_AMP, + STATE(913), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2415), 2, - anon_sym_open, - anon_sym_module, - [20436] = 5, - ACTIONS(1292), 1, + ACTIONS(2565), 2, + anon_sym_GT, + anon_sym_COMMA, + [22370] = 5, + ACTIONS(1342), 1, anon_sym_LBRACE, - ACTIONS(2112), 1, + ACTIONS(2196), 1, anon_sym_permits, - STATE(132), 1, + STATE(143), 1, sym_class_body, - STATE(998), 1, + STATE(1117), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20453] = 4, - ACTIONS(2417), 1, - sym_identifier, - STATE(1026), 1, - sym_scoped_identifier, + [22387] = 4, + ACTIONS(2539), 1, + anon_sym_throws, + STATE(1101), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 2, - anon_sym_open, - anon_sym_module, - [20468] = 5, - ACTIONS(1292), 1, + ACTIONS(2567), 2, anon_sym_LBRACE, - ACTIONS(2112), 1, + anon_sym_SEMI, + [22402] = 5, + ACTIONS(1342), 1, + anon_sym_LBRACE, + ACTIONS(2196), 1, anon_sym_permits, - STATE(109), 1, + STATE(155), 1, sym_class_body, - STATE(979), 1, + STATE(1135), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22419] = 5, + ACTIONS(2196), 1, + anon_sym_permits, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(122), 1, + sym_interface_body, + STATE(1148), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20485] = 4, - ACTIONS(2421), 1, + [22436] = 4, + ACTIONS(2569), 1, sym_identifier, - STATE(1039), 1, - sym_scoped_identifier, + ACTIONS(2573), 1, + sym_super, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 2, + ACTIONS(2571), 2, anon_sym_open, anon_sym_module, - [20500] = 5, - ACTIONS(2425), 1, - anon_sym_LBRACE, - ACTIONS(2427), 1, - anon_sym_throws, - STATE(368), 1, - sym_constructor_body, - STATE(1053), 1, - sym_throws, + [22451] = 4, + ACTIONS(2575), 1, + sym_identifier, + STATE(884), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20517] = 4, - ACTIONS(2429), 1, - anon_sym_AMP, - STATE(828), 1, - aux_sym_type_bound_repeat1, + ACTIONS(2577), 2, + anon_sym_open, + anon_sym_module, + [22466] = 4, + ACTIONS(2579), 1, + sym_identifier, + STATE(886), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 2, - anon_sym_GT, - anon_sym_COMMA, - [20532] = 5, - ACTIONS(1292), 1, + ACTIONS(2581), 2, + anon_sym_open, + anon_sym_module, + [22481] = 5, + ACTIONS(2194), 1, + anon_sym_implements, + ACTIONS(2491), 1, anon_sym_LBRACE, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(108), 1, - sym_class_body, - STATE(1007), 1, - sym_permits, + STATE(106), 1, + sym_enum_body, + STATE(1107), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20549] = 4, - ACTIONS(2390), 1, + [22498] = 4, + ACTIONS(2523), 1, anon_sym_COMMA, - STATE(781), 1, + STATE(896), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 2, + ACTIONS(2583), 2, anon_sym_LBRACE, anon_sym_permits, - [20564] = 4, - ACTIONS(2435), 1, + [22513] = 4, + ACTIONS(2585), 1, sym_identifier, - ACTIONS(2439), 1, - sym_super, + STATE(888), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2437), 2, + ACTIONS(2587), 2, anon_sym_open, anon_sym_module, - [20579] = 4, - ACTIONS(2427), 1, - anon_sym_throws, - STATE(1006), 1, - sym_throws, + [22528] = 4, + ACTIONS(2589), 1, + sym_identifier, + STATE(890), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2441), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [20594] = 2, + ACTIONS(2591), 2, + anon_sym_open, + anon_sym_module, + [22543] = 4, + ACTIONS(2593), 1, + sym_identifier, + STATE(892), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_permits, - [20605] = 4, - ACTIONS(2427), 1, + ACTIONS(2595), 2, + anon_sym_open, + anon_sym_module, + [22558] = 5, + ACTIONS(2539), 1, anon_sym_throws, - STATE(1041), 1, + ACTIONS(2554), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_constructor_body, + STATE(1111), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [20620] = 4, - ACTIONS(2445), 1, - anon_sym_AMP, - STATE(824), 1, - aux_sym_type_bound_repeat1, + [22575] = 4, + ACTIONS(2597), 1, + sym_identifier, + STATE(894), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 2, - anon_sym_GT, - anon_sym_COMMA, - [20635] = 5, - ACTIONS(1577), 1, - anon_sym_COLON_COLON, - ACTIONS(2450), 1, - anon_sym_AMP, - ACTIONS(2452), 1, - anon_sym_RPAREN, - STATE(938), 1, - aux_sym_cast_expression_repeat1, + ACTIONS(2599), 2, + anon_sym_open, + anon_sym_module, + [22590] = 5, + ACTIONS(2196), 1, + anon_sym_permits, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_interface_body, + STATE(1138), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20652] = 5, - ACTIONS(2425), 1, - anon_sym_LBRACE, - ACTIONS(2427), 1, + [22607] = 4, + ACTIONS(2539), 1, anon_sym_throws, - STATE(371), 1, - sym_constructor_body, - STATE(986), 1, + STATE(1063), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20669] = 5, - ACTIONS(1292), 1, + ACTIONS(2601), 2, anon_sym_LBRACE, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(126), 1, - sym_class_body, - STATE(1067), 1, - sym_permits, + anon_sym_SEMI, + [22622] = 4, + ACTIONS(2603), 1, + sym_identifier, + STATE(1038), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20686] = 4, - ACTIONS(2429), 1, - anon_sym_AMP, - STATE(824), 1, - aux_sym_type_bound_repeat1, + ACTIONS(2605), 2, + anon_sym_open, + anon_sym_module, + [22637] = 4, + ACTIONS(2607), 1, + anon_sym_COMMA, + STATE(931), 1, + aux_sym_enum_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 2, - anon_sym_GT, - anon_sym_COMMA, - [20701] = 5, - ACTIONS(2112), 1, - anon_sym_permits, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(85), 1, - sym_interface_body, - STATE(1000), 1, - sym_permits, + ACTIONS(2610), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [22652] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20718] = 5, - ACTIONS(1292), 1, + ACTIONS(2612), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22663] = 5, + ACTIONS(1342), 1, anon_sym_LBRACE, - ACTIONS(2112), 1, + ACTIONS(2196), 1, anon_sym_permits, - STATE(119), 1, + STATE(109), 1, sym_class_body, - STATE(1062), 1, + STATE(1156), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20735] = 4, - ACTIONS(2456), 1, - anon_sym_COMMA, - STATE(831), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1844), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [20750] = 4, - ACTIONS(2401), 1, - anon_sym_extends, - STATE(1009), 1, - sym_type_bound, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2459), 2, - anon_sym_GT, - anon_sym_COMMA, - [20765] = 5, - ACTIONS(2112), 1, + [22680] = 5, + ACTIONS(2196), 1, anon_sym_permits, - ACTIONS(2134), 1, + ACTIONS(2218), 1, anon_sym_LBRACE, - STATE(69), 1, + STATE(140), 1, sym_interface_body, - STATE(987), 1, + STATE(1108), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20782] = 5, - ACTIONS(2110), 1, - anon_sym_implements, - ACTIONS(2461), 1, - anon_sym_LBRACE, - STATE(72), 1, - sym_enum_body, - STATE(1016), 1, - sym_super_interfaces, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20799] = 4, - ACTIONS(2427), 1, - anon_sym_throws, - STATE(992), 1, - sym_throws, + [22697] = 4, + ACTIONS(2560), 1, + anon_sym_extends, + STATE(1073), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 2, + ACTIONS(2614), 2, + anon_sym_GT, + anon_sym_COMMA, + [22712] = 5, + ACTIONS(1342), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [20814] = 4, - ACTIONS(2465), 1, - sym_identifier, - STATE(901), 1, - sym_scoped_identifier, + ACTIONS(2196), 1, + anon_sym_permits, + STATE(131), 1, + sym_class_body, + STATE(1103), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 2, - anon_sym_open, - anon_sym_module, - [20829] = 4, - ACTIONS(1796), 1, - anon_sym_COMMA, - STATE(831), 1, - aux_sym_argument_list_repeat1, + [22729] = 4, + ACTIONS(2527), 1, + anon_sym_AMP, + STATE(913), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2469), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [20844] = 4, - ACTIONS(2471), 1, + ACTIONS(2616), 2, + anon_sym_GT, + anon_sym_COMMA, + [22744] = 4, + ACTIONS(2618), 1, sym_identifier, - STATE(1044), 1, + STATE(1000), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 2, + ACTIONS(2620), 2, anon_sym_open, anon_sym_module, - [20859] = 5, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2477), 1, - anon_sym_SEMI, - STATE(964), 1, - aux_sym_provides_module_directive_repeat1, + [22759] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20876] = 5, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2475), 1, + ACTIONS(1938), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2479), 1, anon_sym_SEMI, - STATE(962), 1, - aux_sym_provides_module_directive_repeat1, + [22769] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(2622), 1, + anon_sym_SEMI, + STATE(417), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20893] = 4, - ACTIONS(2390), 1, + [22783] = 4, + ACTIONS(2624), 1, + anon_sym_RPAREN, + ACTIONS(2626), 1, anon_sym_COMMA, - STATE(781), 1, - aux_sym_type_list_repeat1, + STATE(1009), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2481), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [20908] = 5, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2475), 1, + [22797] = 4, + ACTIONS(2626), 1, anon_sym_COMMA, - ACTIONS(2483), 1, - anon_sym_SEMI, - STATE(960), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(2628), 1, + anon_sym_RPAREN, + STATE(1037), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20925] = 5, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2475), 1, + [22811] = 4, + ACTIONS(2626), 1, anon_sym_COMMA, - ACTIONS(2485), 1, - anon_sym_SEMI, - STATE(958), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(2630), 1, + anon_sym_RPAREN, + STATE(942), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20942] = 5, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2487), 1, + [22825] = 4, + ACTIONS(2632), 1, + anon_sym_GT, + ACTIONS(2634), 1, anon_sym_COMMA, - ACTIONS(2489), 1, - anon_sym_SEMI, - STATE(955), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1035), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20959] = 5, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2487), 1, + [22839] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2491), 1, - anon_sym_SEMI, - STATE(953), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2636), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20976] = 5, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2487), 1, + [22853] = 4, + ACTIONS(2495), 1, anon_sym_COMMA, - ACTIONS(2493), 1, + ACTIONS(2638), 1, anon_sym_SEMI, - STATE(951), 1, + STATE(991), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20993] = 5, - ACTIONS(2495), 1, - anon_sym_LPAREN, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_block, - STATE(1027), 1, - sym_resource_specification, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21010] = 4, - ACTIONS(2499), 1, - sym_identifier, - STATE(883), 1, - sym_scoped_identifier, + [22867] = 4, + ACTIONS(1971), 1, + anon_sym_RBRACE, + ACTIONS(2640), 1, + anon_sym_COMMA, + STATE(947), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 2, - anon_sym_open, - anon_sym_module, - [21025] = 2, + [22881] = 4, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2643), 1, + anon_sym_SEMI, + STATE(991), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2503), 4, + [22895] = 4, + ACTIONS(2645), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21036] = 5, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2505), 1, + ACTIONS(2647), 1, anon_sym_SEMI, STATE(949), 1, - aux_sym_exports_module_directive_repeat1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21053] = 4, - ACTIONS(2507), 1, + [22909] = 4, + ACTIONS(2495), 1, anon_sym_COMMA, - STATE(851), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2650), 1, + anon_sym_SEMI, + STATE(991), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1844), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [21068] = 4, - ACTIONS(2510), 1, - sym_identifier, - STATE(916), 1, - sym_scoped_identifier, + [22923] = 4, + ACTIONS(1868), 1, + anon_sym_COMMA, + ACTIONS(2652), 1, + anon_sym_SEMI, + STATE(982), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 2, - anon_sym_open, - anon_sym_module, - [21083] = 5, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2487), 1, + [22937] = 4, + ACTIONS(2495), 1, anon_sym_COMMA, - ACTIONS(2514), 1, + ACTIONS(2654), 1, anon_sym_SEMI, - STATE(947), 1, + STATE(991), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21100] = 5, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2487), 1, + [22951] = 4, + ACTIONS(2495), 1, anon_sym_COMMA, - ACTIONS(2516), 1, + ACTIONS(2656), 1, anon_sym_SEMI, - STATE(945), 1, + STATE(991), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21117] = 5, - ACTIONS(1286), 1, + [22965] = 4, + ACTIONS(1330), 1, anon_sym_DOT, - ACTIONS(2487), 1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_module_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22979] = 4, + ACTIONS(2495), 1, anon_sym_COMMA, - ACTIONS(2518), 1, + ACTIONS(2660), 1, anon_sym_SEMI, - STATE(943), 1, + STATE(991), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21134] = 5, - ACTIONS(1280), 1, + [22993] = 4, + ACTIONS(1336), 1, anon_sym_DOT, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2520), 1, - anon_sym_SEMI, - STATE(941), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21151] = 4, - ACTIONS(2000), 1, - sym_identifier, - STATE(1110), 1, - sym__variable_declarator_id, + [23007] = 4, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2662), 1, + anon_sym_SEMI, + STATE(991), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 2, - anon_sym_open, - anon_sym_module, - [21166] = 4, - ACTIONS(85), 1, - anon_sym_LT, - STATE(1042), 1, - sym_type_arguments, + [23021] = 4, + ACTIONS(2664), 1, + anon_sym_COMMA, + ACTIONS(2667), 1, + anon_sym_RBRACE, + STATE(958), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 2, - anon_sym_new, - sym_identifier, - [21181] = 5, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(127), 1, - sym_class_body, - STATE(1065), 1, - sym_permits, + [23035] = 4, + ACTIONS(2495), 1, + anon_sym_COMMA, + ACTIONS(2669), 1, + anon_sym_SEMI, + STATE(991), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21198] = 5, - ACTIONS(1577), 1, - anon_sym_COLON_COLON, - ACTIONS(2450), 1, - anon_sym_AMP, - ACTIONS(2524), 1, + [23049] = 4, + ACTIONS(2626), 1, + anon_sym_COMMA, + ACTIONS(2671), 1, anon_sym_RPAREN, - STATE(894), 1, - aux_sym_cast_expression_repeat1, + STATE(1037), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21215] = 5, - ACTIONS(2110), 1, - anon_sym_implements, - ACTIONS(2461), 1, - anon_sym_LBRACE, - STATE(96), 1, - sym_enum_body, - STATE(1048), 1, - sym_super_interfaces, + [23063] = 4, + ACTIONS(2513), 1, + anon_sym_COMMA, + ACTIONS(2673), 1, + anon_sym_SEMI, + STATE(1002), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21232] = 5, - ACTIONS(2112), 1, - anon_sym_permits, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(106), 1, - sym_interface_body, - STATE(1061), 1, - sym_permits, + [23077] = 4, + ACTIONS(2626), 1, + anon_sym_COMMA, + ACTIONS(2675), 1, + anon_sym_RPAREN, + STATE(960), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21249] = 5, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(124), 1, - sym_class_body, - STATE(972), 1, - sym_permits, + [23091] = 4, + ACTIONS(2513), 1, + anon_sym_COMMA, + ACTIONS(2677), 1, + anon_sym_SEMI, + STATE(1002), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21266] = 4, - ACTIONS(2526), 1, - sym_identifier, - STATE(346), 1, - sym_scoped_identifier, + [23105] = 4, + ACTIONS(2634), 1, + anon_sym_COMMA, + ACTIONS(2679), 1, + anon_sym_GT, + STATE(1035), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 2, - anon_sym_open, - anon_sym_module, - [21281] = 2, + [23119] = 4, + ACTIONS(2513), 1, + anon_sym_COMMA, + ACTIONS(2681), 1, + anon_sym_SEMI, + STATE(1002), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [23133] = 4, + ACTIONS(615), 1, anon_sym_RBRACE, - anon_sym_SEMI, - [21292] = 4, - ACTIONS(2390), 1, + ACTIONS(2683), 1, anon_sym_COMMA, - STATE(819), 1, - aux_sym_type_list_repeat1, + STATE(947), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 2, - anon_sym_LBRACE, - anon_sym_permits, - [21307] = 5, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(2112), 1, - anon_sym_permits, - STATE(88), 1, - sym_class_body, - STATE(988), 1, - sym_permits, + [23147] = 4, + ACTIONS(2513), 1, + anon_sym_COMMA, + ACTIONS(2685), 1, + anon_sym_SEMI, + STATE(1002), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21324] = 4, - ACTIONS(1573), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - anon_sym_DOT, - ACTIONS(1577), 1, - anon_sym_COLON_COLON, + [23161] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21338] = 4, - ACTIONS(1039), 1, + ACTIONS(2687), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23171] = 4, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2010), 1, + ACTIONS(2094), 1, anon_sym_DOT, - STATE(350), 1, + STATE(398), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21352] = 4, - ACTIONS(1286), 1, + [23185] = 4, + ACTIONS(1336), 1, anon_sym_DOT, - ACTIONS(2534), 1, + ACTIONS(2689), 1, anon_sym_SEMI, - ACTIONS(2536), 1, + ACTIONS(2691), 1, anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21366] = 4, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(2538), 1, - anon_sym_RPAREN, - STATE(885), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21380] = 4, - ACTIONS(2540), 1, - anon_sym_GT, - ACTIONS(2542), 1, - anon_sym_COMMA, - STATE(887), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21394] = 4, - ACTIONS(2544), 1, - anon_sym_RPAREN, - ACTIONS(2546), 1, - anon_sym_COMMA, - STATE(874), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21408] = 4, - ACTIONS(2548), 1, + [23199] = 4, + ACTIONS(2693), 1, anon_sym_RPAREN, - ACTIONS(2550), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - STATE(874), 1, + STATE(974), 1, aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21422] = 4, - ACTIONS(2553), 1, - anon_sym_COMMA, - ACTIONS(2556), 1, - anon_sym_RBRACE, - STATE(875), 1, - aux_sym_element_value_array_initializer_repeat1, + [23213] = 4, + ACTIONS(2186), 1, + anon_sym_default, + ACTIONS(2697), 1, + anon_sym_SEMI, + STATE(1239), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21436] = 4, - ACTIONS(2100), 1, - anon_sym_default, - ACTIONS(2558), 1, + [23227] = 4, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2699), 1, anon_sym_SEMI, - STATE(1125), 1, - sym__default_value, + ACTIONS(2701), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21450] = 4, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(2560), 1, + [23241] = 4, + ACTIONS(2703), 1, anon_sym_RPAREN, - STATE(885), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2705), 1, + anon_sym_COMMA, + STATE(974), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21464] = 4, - ACTIONS(2562), 1, - anon_sym_COMMA, - ACTIONS(2565), 1, + [23255] = 4, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2708), 1, anon_sym_SEMI, - STATE(878), 1, - aux_sym__variable_declarator_list_repeat1, + ACTIONS(2710), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21478] = 4, - ACTIONS(1808), 1, + [23269] = 4, + ACTIONS(2634), 1, anon_sym_COMMA, - ACTIONS(2567), 1, - anon_sym_RPAREN, - STATE(885), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2712), 1, + anon_sym_GT, + STATE(964), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21492] = 2, + [23283] = 4, + ACTIONS(2451), 1, + anon_sym_AMP, + ACTIONS(2714), 1, + anon_sym_RPAREN, + STATE(981), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1860), 3, - anon_sym_RPAREN, + [23297] = 4, + ACTIONS(2716), 1, + anon_sym_GT, + ACTIONS(2718), 1, anon_sym_COMMA, - anon_sym_SEMI, - [21502] = 4, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2569), 1, - anon_sym_LBRACE, - STATE(153), 1, - sym_module_body, + STATE(978), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21516] = 4, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(2571), 1, - anon_sym_RPAREN, - STATE(885), 1, - aux_sym_for_statement_repeat2, + [23311] = 4, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2723), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21530] = 4, - ACTIONS(1286), 1, + [23325] = 4, + ACTIONS(1330), 1, anon_sym_DOT, - ACTIONS(2569), 1, - anon_sym_LBRACE, - STATE(152), 1, - sym_module_body, + ACTIONS(2725), 1, + anon_sym_SEMI, + ACTIONS(2727), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21544] = 4, - ACTIONS(2573), 1, + [23339] = 4, + ACTIONS(2729), 1, anon_sym_AMP, - ACTIONS(2576), 1, + ACTIONS(2732), 1, anon_sym_RPAREN, - STATE(884), 1, + STATE(981), 1, aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21558] = 4, - ACTIONS(2578), 1, - anon_sym_RPAREN, - ACTIONS(2580), 1, + [23353] = 4, + ACTIONS(2734), 1, anon_sym_COMMA, - STATE(885), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2737), 1, + anon_sym_SEMI, + STATE(982), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23367] = 3, + ACTIONS(2739), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21572] = 4, - ACTIONS(2583), 1, + ACTIONS(2741), 2, + anon_sym_open, + anon_sym_module, + [23379] = 4, + ACTIONS(2743), 1, anon_sym_RPAREN, - ACTIONS(2585), 1, + ACTIONS(2745), 1, anon_sym_COMMA, - STATE(886), 1, + STATE(984), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21586] = 4, - ACTIONS(2588), 1, - anon_sym_GT, - ACTIONS(2590), 1, + [23393] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - STATE(887), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2748), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21600] = 4, - ACTIONS(2593), 1, - sym_identifier, - ACTIONS(2595), 1, - anon_sym_STAR, - STATE(1114), 1, - sym_asterisk, + [23407] = 4, + ACTIONS(1868), 1, + anon_sym_COMMA, + ACTIONS(2750), 1, + anon_sym_SEMI, + STATE(982), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21614] = 4, - ACTIONS(2597), 1, + [23421] = 4, + ACTIONS(1304), 1, + anon_sym_RPAREN, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(2599), 1, - anon_sym_SEMI, - STATE(878), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(1020), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21628] = 2, + [23435] = 3, + ACTIONS(1330), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 3, - anon_sym_LBRACE, + ACTIONS(2752), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_throws, - [21638] = 2, + [23447] = 3, + ACTIONS(1336), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2603), 3, - anon_sym_LBRACE, + ACTIONS(2754), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_throws, - [21648] = 4, - ACTIONS(1848), 1, + [23459] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(1850), 1, - anon_sym_RBRACE, - STATE(944), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2756), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21662] = 2, + [23473] = 4, + ACTIONS(2758), 1, + anon_sym_COMMA, + ACTIONS(2761), 1, + anon_sym_SEMI, + STATE(991), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2605), 3, + [23487] = 4, + ACTIONS(2763), 1, anon_sym_COMMA, + ACTIONS(2765), 1, anon_sym_RBRACE, - anon_sym_SEMI, - [21672] = 4, - ACTIONS(2450), 1, - anon_sym_AMP, - ACTIONS(2607), 1, - anon_sym_RPAREN, - STATE(884), 1, - aux_sym_cast_expression_repeat1, + STATE(996), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21686] = 4, - ACTIONS(2542), 1, - anon_sym_COMMA, - ACTIONS(2609), 1, - anon_sym_GT, - STATE(940), 1, - aux_sym_type_arguments_repeat1, + [23501] = 4, + ACTIONS(999), 1, + anon_sym_RPAREN, + ACTIONS(2767), 1, + anon_sym_SEMI, + STATE(949), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21700] = 2, + [23515] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2611), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2769), 3, + anon_sym_LBRACE, anon_sym_SEMI, - [21710] = 4, - ACTIONS(2613), 1, + anon_sym_throws, + [23525] = 4, + ACTIONS(1862), 1, anon_sym_COMMA, - ACTIONS(2616), 1, - anon_sym_SEMI, - STATE(897), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(2771), 1, + anon_sym_RPAREN, + STATE(864), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21724] = 2, + [23539] = 4, + ACTIONS(419), 1, + anon_sym_RBRACE, + ACTIONS(2773), 1, + anon_sym_COMMA, + STATE(958), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [21734] = 4, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2569), 1, - anon_sym_LBRACE, - STATE(198), 1, - sym_module_body, + [23553] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21748] = 2, + ACTIONS(2775), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23563] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2620), 3, + ACTIONS(2777), 3, anon_sym_LBRACE, anon_sym_implements, anon_sym_permits, - [21758] = 3, - ACTIONS(1286), 1, + [23573] = 3, + ACTIONS(1330), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2622), 2, + ACTIONS(2779), 2, anon_sym_COMMA, anon_sym_SEMI, - [21770] = 3, - ACTIONS(1280), 1, + [23585] = 3, + ACTIONS(1336), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2624), 2, + ACTIONS(2781), 2, anon_sym_COMMA, anon_sym_SEMI, - [21782] = 4, - ACTIONS(2626), 1, - anon_sym_GT, - ACTIONS(2628), 1, + [23597] = 4, + ACTIONS(2783), 1, anon_sym_COMMA, - STATE(914), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2785), 1, + anon_sym_SEMI, + STATE(1017), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21796] = 4, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2569), 1, - anon_sym_LBRACE, - STATE(199), 1, - sym_module_body, + [23611] = 4, + ACTIONS(2787), 1, + anon_sym_COMMA, + ACTIONS(2790), 1, + anon_sym_SEMI, + STATE(1002), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21810] = 3, - ACTIONS(2435), 1, - sym_identifier, + [23625] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2437), 2, - anon_sym_open, - anon_sym_module, - [21822] = 4, - ACTIONS(1254), 1, - anon_sym_RPAREN, - ACTIONS(2546), 1, + ACTIONS(2610), 3, anon_sym_COMMA, - STATE(933), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21836] = 4, - ACTIONS(1828), 1, - anon_sym_SEMI, - ACTIONS(2327), 1, anon_sym_RBRACE, - STATE(1121), 1, - sym_enum_body_declarations, + anon_sym_SEMI, + [23635] = 4, + ACTIONS(1862), 1, + anon_sym_COMMA, + ACTIONS(2556), 1, + anon_sym_COLON, + STATE(864), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21850] = 4, - ACTIONS(1870), 1, - anon_sym_RBRACE, - ACTIONS(2630), 1, - anon_sym_COMMA, - STATE(908), 1, - aux_sym_array_initializer_repeat1, + [23649] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21864] = 4, - ACTIONS(2595), 1, + ACTIONS(2792), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23659] = 4, + ACTIONS(2723), 1, anon_sym_STAR, - ACTIONS(2633), 1, + ACTIONS(2794), 1, sym_identifier, - STATE(1118), 1, + STATE(1234), 1, sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21878] = 2, + [23673] = 4, + ACTIONS(2186), 1, + anon_sym_default, + ACTIONS(2796), 1, + anon_sym_SEMI, + STATE(1231), 1, + sym__default_value, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23687] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2798), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + [23697] = 4, + ACTIONS(2626), 1, + anon_sym_COMMA, + ACTIONS(2800), 1, + anon_sym_RPAREN, + STATE(1037), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23711] = 4, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(2802), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 3, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - [21888] = 4, - ACTIONS(2595), 1, + [23725] = 4, + ACTIONS(2723), 1, anon_sym_STAR, - ACTIONS(2633), 1, + ACTIONS(2794), 1, sym_identifier, - STATE(1146), 1, + STATE(1222), 1, sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21902] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2635), 1, - anon_sym_SEMI, - STATE(381), 1, - sym_block, + [23739] = 4, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(2804), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21916] = 4, - ACTIONS(2593), 1, - sym_identifier, - ACTIONS(2595), 1, - anon_sym_STAR, - STATE(1150), 1, - sym_asterisk, + [23753] = 4, + ACTIONS(2806), 1, + anon_sym_GT, + ACTIONS(2808), 1, + anon_sym_COMMA, + STATE(1025), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21930] = 4, - ACTIONS(2637), 1, - anon_sym_GT, - ACTIONS(2639), 1, + [23767] = 4, + ACTIONS(1161), 1, anon_sym_COMMA, - STATE(914), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2810), 1, + anon_sym_RPAREN, + STATE(984), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21944] = 4, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2642), 1, - anon_sym_DOT, - STATE(1163), 1, - sym_argument_list, + [23781] = 4, + ACTIONS(2812), 1, + anon_sym_RPAREN, + ACTIONS(2814), 1, + anon_sym_COMMA, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21958] = 4, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2569), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_module_body, + [23795] = 4, + ACTIONS(2451), 1, + anon_sym_AMP, + ACTIONS(2817), 1, + anon_sym_RPAREN, + STATE(981), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21972] = 4, - ACTIONS(2644), 1, + [23809] = 4, + ACTIONS(2783), 1, anon_sym_COMMA, - ACTIONS(2647), 1, + ACTIONS(2819), 1, anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1050), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21986] = 3, - ACTIONS(2649), 1, - sym_identifier, + [23823] = 4, + ACTIONS(1866), 1, + anon_sym_COMMA, + ACTIONS(2821), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 2, - anon_sym_open, - anon_sym_module, - [21998] = 4, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2569), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_module_body, + [23837] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22012] = 4, - ACTIONS(2653), 1, + ACTIONS(2823), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [23847] = 4, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(2825), 1, anon_sym_RPAREN, - ACTIONS(2655), 1, - anon_sym_SEMI, - STATE(932), 1, - aux_sym_resource_specification_repeat1, + STATE(974), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22026] = 4, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(2010), 1, - anon_sym_DOT, - STATE(347), 1, - sym_argument_list, + [23861] = 4, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(2825), 1, + anon_sym_RPAREN, + STATE(971), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22040] = 4, - ACTIONS(2542), 1, + [23875] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2657), 1, - anon_sym_GT, - STATE(872), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2827), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22054] = 4, - ACTIONS(2659), 1, - anon_sym_RPAREN, - ACTIONS(2661), 1, + [23889] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(2829), 1, anon_sym_SEMI, - STATE(923), 1, - aux_sym_resource_specification_repeat1, + STATE(410), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22068] = 4, - ACTIONS(1812), 1, - anon_sym_COMMA, - ACTIONS(2664), 1, - anon_sym_RPAREN, - STATE(851), 1, - aux_sym_argument_list_repeat1, + [23903] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22082] = 3, - ACTIONS(1286), 1, - anon_sym_DOT, + ACTIONS(2565), 3, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + [23913] = 4, + ACTIONS(2808), 1, + anon_sym_COMMA, + ACTIONS(2831), 1, + anon_sym_GT, + STATE(978), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2666), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [22094] = 4, - ACTIONS(1808), 1, + [23927] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2668), 1, + ACTIONS(2833), 1, anon_sym_RPAREN, - STATE(885), 1, + STATE(1015), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22108] = 4, - ACTIONS(2670), 1, - anon_sym_RPAREN, - ACTIONS(2672), 1, + [23941] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - STATE(965), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2835), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22122] = 4, - ACTIONS(2546), 1, + [23955] = 4, + ACTIONS(2634), 1, anon_sym_COMMA, - ACTIONS(2674), 1, - anon_sym_RPAREN, - STATE(873), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2837), 1, + anon_sym_GT, + STATE(944), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22136] = 4, - ACTIONS(1808), 1, + [23969] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2676), 1, + ACTIONS(2839), 1, anon_sym_RPAREN, - STATE(885), 1, + STATE(1015), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22150] = 4, - ACTIONS(1834), 1, - anon_sym_COMMA, - ACTIONS(2678), 1, - anon_sym_SEMI, - STATE(946), 1, - aux_sym_for_statement_repeat1, + [23983] = 4, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2094), 1, + anon_sym_DOT, + STATE(395), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22164] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, + [23997] = 3, + ACTIONS(2569), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2571), 2, + anon_sym_open, + anon_sym_module, + [24009] = 4, + ACTIONS(1904), 1, + anon_sym_COMMA, + ACTIONS(1906), 1, + anon_sym_RBRACE, + STATE(966), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 2, + [24023] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - anon_sym_SEMI, - [22176] = 4, - ACTIONS(963), 1, + ACTIONS(2841), 1, anon_sym_RPAREN, - ACTIONS(2682), 1, - anon_sym_SEMI, - STATE(923), 1, - aux_sym_resource_specification_repeat1, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22190] = 4, - ACTIONS(2546), 1, + [24037] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_RPAREN, - STATE(874), 1, - aux_sym_formal_parameters_repeat1, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22204] = 4, - ACTIONS(2628), 1, - anon_sym_COMMA, - ACTIONS(2684), 1, + [24051] = 4, + ACTIONS(2845), 1, anon_sym_GT, - STATE(903), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2847), 1, + anon_sym_COMMA, + STATE(1035), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22218] = 2, + [24065] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2686), 3, + ACTIONS(2850), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22228] = 4, - ACTIONS(1808), 1, - anon_sym_COMMA, - ACTIONS(2688), 1, + [24075] = 4, + ACTIONS(2852), 1, anon_sym_RPAREN, - STATE(885), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2854), 1, + anon_sym_COMMA, + STATE(1037), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22242] = 2, + [24089] = 4, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(175), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2397), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22252] = 4, - ACTIONS(2450), 1, - anon_sym_AMP, - ACTIONS(2690), 1, - anon_sym_RPAREN, - STATE(884), 1, - aux_sym_cast_expression_repeat1, + [24103] = 4, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(201), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22266] = 2, + [24117] = 4, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2723), 1, + anon_sym_STAR, + STATE(1246), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22276] = 4, - ACTIONS(2542), 1, + [24131] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2694), 1, - anon_sym_GT, - STATE(887), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2857), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22290] = 4, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2696), 1, - anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + [24145] = 4, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(1521), 1, + anon_sym_DOT, + ACTIONS(1523), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22304] = 4, - ACTIONS(2672), 1, - anon_sym_COMMA, - ACTIONS(2698), 1, - anon_sym_RPAREN, - STATE(948), 1, - aux_sym_annotation_argument_list_repeat1, + [24159] = 4, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(2859), 1, + anon_sym_DOT, + STATE(1249), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22318] = 4, - ACTIONS(2487), 1, + [24173] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2700), 1, - anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2861), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22332] = 4, - ACTIONS(597), 1, - anon_sym_RBRACE, - ACTIONS(2702), 1, - anon_sym_COMMA, - STATE(908), 1, - aux_sym_array_initializer_repeat1, + [24187] = 4, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(177), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22346] = 4, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + [24201] = 4, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22360] = 4, - ACTIONS(2706), 1, + [24215] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2709), 1, - anon_sym_SEMI, - STATE(946), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2863), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22374] = 4, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2711), 1, + [24229] = 4, + ACTIONS(2865), 1, + anon_sym_RPAREN, + ACTIONS(2867), 1, anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + STATE(993), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22388] = 4, - ACTIONS(2672), 1, - anon_sym_COMMA, - ACTIONS(2713), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_annotation_argument_list_repeat1, + [24243] = 4, + ACTIONS(1898), 1, + anon_sym_SEMI, + ACTIONS(2384), 1, + anon_sym_RBRACE, + STATE(1214), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22402] = 4, - ACTIONS(2487), 1, + [24257] = 4, + ACTIONS(2869), 1, anon_sym_COMMA, - ACTIONS(2715), 1, + ACTIONS(2872), 1, anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1050), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22416] = 4, - ACTIONS(1121), 1, + [24271] = 4, + ACTIONS(1866), 1, anon_sym_COMMA, - ACTIONS(2717), 1, + ACTIONS(2874), 1, anon_sym_RPAREN, - STATE(886), 1, - aux_sym_inferred_parameters_repeat1, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22430] = 4, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, + [24285] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2876), 2, + anon_sym_LBRACE, anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + [24294] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22444] = 4, - ACTIONS(2721), 1, - anon_sym_RPAREN, - ACTIONS(2723), 1, - anon_sym_COMMA, - STATE(952), 1, - aux_sym_annotation_argument_list_repeat1, + [24305] = 3, + ACTIONS(593), 1, + anon_sym_LBRACE, + STATE(463), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22458] = 4, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2726), 1, - anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + [24316] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22472] = 4, - ACTIONS(2728), 1, + ACTIONS(2878), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2730), 1, - anon_sym_RBRACE, - STATE(963), 1, - aux_sym_element_value_array_initializer_repeat1, + [24325] = 3, + ACTIONS(1523), 1, + anon_sym_COLON_COLON, + ACTIONS(2541), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22486] = 4, - ACTIONS(2487), 1, - anon_sym_COMMA, - ACTIONS(2732), 1, - anon_sym_SEMI, - STATE(917), 1, - aux_sym_exports_module_directive_repeat1, + [24336] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22500] = 4, - ACTIONS(2597), 1, + ACTIONS(2852), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2734), 1, + [24345] = 3, + ACTIONS(2880), 1, + anon_sym_DOT, + ACTIONS(2882), 1, anon_sym_SEMI, - STATE(889), 1, - aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22514] = 4, - ACTIONS(2672), 1, - anon_sym_COMMA, - ACTIONS(2736), 1, - anon_sym_RPAREN, - STATE(959), 1, - aux_sym_annotation_argument_list_repeat1, + [24356] = 3, + ACTIONS(2884), 1, + anon_sym_DOT, + ACTIONS(2886), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22528] = 4, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2738), 1, - anon_sym_SEMI, - STATE(897), 1, - aux_sym_provides_module_directive_repeat1, + [24367] = 3, + ACTIONS(991), 1, + anon_sym_LPAREN, + STATE(1203), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22542] = 4, - ACTIONS(2672), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_annotation_argument_list_repeat1, + [24378] = 3, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(152), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22556] = 4, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2742), 1, - anon_sym_SEMI, - STATE(897), 1, - aux_sym_provides_module_directive_repeat1, + [24389] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(141), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22570] = 4, - ACTIONS(1812), 1, - anon_sym_COMMA, - ACTIONS(2469), 1, - anon_sym_COLON, - STATE(851), 1, - aux_sym_argument_list_repeat1, + [24400] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22584] = 4, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2744), 1, + ACTIONS(2888), 2, + anon_sym_LBRACE, anon_sym_SEMI, - STATE(897), 1, - aux_sym_provides_module_directive_repeat1, + [24409] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22598] = 4, - ACTIONS(547), 1, - anon_sym_RBRACE, - ACTIONS(2746), 1, + ACTIONS(2890), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(875), 1, - aux_sym_element_value_array_initializer_repeat1, + [24418] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22612] = 4, - ACTIONS(2475), 1, + ACTIONS(2892), 2, anon_sym_COMMA, - ACTIONS(2748), 1, anon_sym_SEMI, - STATE(897), 1, - aux_sym_provides_module_directive_repeat1, + [24427] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22626] = 4, - ACTIONS(2672), 1, + ACTIONS(2894), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2750), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_annotation_argument_list_repeat1, + [24436] = 3, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(124), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22640] = 4, - ACTIONS(2100), 1, - anon_sym_default, - ACTIONS(2752), 1, - anon_sym_SEMI, - STATE(1131), 1, - sym__default_value, + [24447] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22654] = 4, - ACTIONS(1808), 1, + ACTIONS(2896), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2754), 1, - anon_sym_RPAREN, - STATE(885), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22668] = 4, - ACTIONS(1280), 1, + [24456] = 3, + ACTIONS(1336), 1, anon_sym_DOT, - ACTIONS(2756), 1, - anon_sym_SEMI, - ACTIONS(2758), 1, - anon_sym_to, + ACTIONS(2898), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22682] = 4, - ACTIONS(1286), 1, + [24467] = 3, + ACTIONS(1330), 1, anon_sym_DOT, - ACTIONS(2760), 1, + ACTIONS(2900), 1, anon_sym_SEMI, - ACTIONS(2762), 1, - anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22696] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2764), 1, + [24478] = 3, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2902), 1, anon_sym_SEMI, - STATE(379), 1, - sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22710] = 4, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2766), 1, - anon_sym_SEMI, - ACTIONS(2768), 1, - anon_sym_to, + [24489] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22724] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(81), 1, - sym_class_body, + ACTIONS(2904), 2, + anon_sym_new, + sym_identifier, + [24498] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22735] = 3, - ACTIONS(1039), 1, + ACTIONS(2906), 2, + anon_sym_GT, + anon_sym_COMMA, + [24507] = 3, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(347), 1, + STATE(395), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22746] = 3, - ACTIONS(1292), 1, + [24518] = 3, + ACTIONS(593), 1, anon_sym_LBRACE, - STATE(125), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22757] = 3, - ACTIONS(955), 1, - anon_sym_LPAREN, - STATE(1014), 1, - sym_parenthesized_expression, + STATE(446), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22768] = 3, - ACTIONS(1292), 1, + [24529] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(128), 1, + STATE(156), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22779] = 2, + [24540] = 3, + ACTIONS(593), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2770), 2, - anon_sym_LBRACE, - anon_sym_permits, - [22788] = 3, - ACTIONS(955), 1, - anon_sym_LPAREN, - STATE(38), 1, - sym_parenthesized_expression, + [24551] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22799] = 3, - ACTIONS(1292), 1, + ACTIONS(2908), 2, anon_sym_LBRACE, - STATE(129), 1, - sym_class_body, + anon_sym_throws, + [24560] = 3, + ACTIONS(2438), 1, + anon_sym_LBRACE, + STATE(164), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22810] = 3, - ACTIONS(2772), 1, - sym_identifier, - ACTIONS(2774), 1, + [24571] = 3, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2910), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22821] = 3, - ACTIONS(2776), 1, - sym_identifier, - ACTIONS(2778), 1, + [24582] = 3, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2912), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22832] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(118), 1, - sym_class_body, + [24593] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22843] = 3, - ACTIONS(2780), 1, + ACTIONS(2914), 2, + anon_sym_LBRACE, + anon_sym_permits, + [24602] = 3, + ACTIONS(2916), 1, anon_sym_LBRACE, - STATE(74), 1, + STATE(113), 1, sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22854] = 3, - ACTIONS(2782), 1, - anon_sym_DASH_GT, - ACTIONS(2784), 1, - anon_sym_COLON, + [24613] = 3, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22865] = 3, - ACTIONS(955), 1, + [24624] = 3, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(41), 1, - sym_parenthesized_expression, + STATE(1225), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22876] = 3, - ACTIONS(2425), 1, - anon_sym_LBRACE, - STATE(374), 1, - sym_constructor_body, + [24635] = 3, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22887] = 3, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(130), 1, - sym_interface_body, + [24646] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22898] = 3, - ACTIONS(1292), 1, + ACTIONS(2922), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [24655] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(158), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22909] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2786), 2, - anon_sym_LBRACE, - anon_sym_throws, - [22918] = 3, - ACTIONS(2067), 1, - anon_sym_LPAREN, - STATE(668), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22929] = 3, - ACTIONS(2067), 1, + [24666] = 3, + ACTIONS(2135), 1, anon_sym_LPAREN, - STATE(672), 1, + STATE(1125), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22940] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2788), 2, - anon_sym_LBRACE, + [24677] = 3, + ACTIONS(1336), 1, + anon_sym_DOT, + ACTIONS(2924), 1, anon_sym_SEMI, - [22949] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2790), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22958] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(123), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22969] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 2, - sym_this, - sym_super, - [22978] = 3, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(113), 1, - sym_interface_body, + [24688] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22989] = 2, + ACTIONS(2845), 2, + anon_sym_GT, + anon_sym_COMMA, + [24697] = 3, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2926), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 2, - anon_sym_LBRACE, - anon_sym_permits, - [22998] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(98), 1, - sym_class_body, + [24708] = 3, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2928), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23009] = 3, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(70), 1, - sym_interface_body, + [24719] = 3, + ACTIONS(991), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23020] = 3, - ACTIONS(2134), 1, + [24730] = 3, + ACTIONS(2218), 1, anon_sym_LBRACE, - STATE(68), 1, + STATE(147), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23031] = 3, - ACTIONS(1577), 1, - anon_sym_COLON_COLON, - ACTIONS(2380), 1, + [24741] = 3, + ACTIONS(1336), 1, anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23042] = 3, - ACTIONS(1039), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_argument_list, + [24752] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23053] = 2, + ACTIONS(2932), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [24761] = 3, + ACTIONS(1330), 1, + anon_sym_DOT, + ACTIONS(2934), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 2, - anon_sym_GT, - anon_sym_COMMA, - [23062] = 3, - ACTIONS(397), 1, + [24772] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(420), 1, - sym_array_initializer, + STATE(162), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23073] = 3, - ACTIONS(1039), 1, - anon_sym_LPAREN, - STATE(383), 1, - sym_argument_list, + [24783] = 3, + ACTIONS(2936), 1, + anon_sym_DASH_GT, + ACTIONS(2938), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23084] = 2, + [24794] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2796), 2, + ACTIONS(2940), 2, anon_sym_LBRACE, anon_sym_SEMI, - [23093] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(90), 1, - sym_class_body, + [24803] = 3, + ACTIONS(2942), 1, + sym_identifier, + ACTIONS(2944), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23104] = 3, - ACTIONS(397), 1, + [24814] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(424), 1, - sym_array_initializer, + STATE(151), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23115] = 2, + [24825] = 3, + ACTIONS(2946), 1, + sym_identifier, + ACTIONS(2948), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 2, - anon_sym_GT, - anon_sym_COMMA, - [23124] = 3, - ACTIONS(1039), 1, + [24836] = 3, + ACTIONS(991), 1, anon_sym_LPAREN, - STATE(350), 1, - sym_argument_list, + STATE(50), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23135] = 2, + [24847] = 3, + ACTIONS(879), 1, + anon_sym_while, + ACTIONS(2950), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2556), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [23144] = 3, - ACTIONS(1292), 1, + [24858] = 3, + ACTIONS(2491), 1, anon_sym_LBRACE, - STATE(377), 1, - sym_class_body, + STATE(118), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23155] = 2, + [24869] = 3, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 2, - anon_sym_GT, - anon_sym_COMMA, - [23164] = 3, - ACTIONS(2800), 1, - anon_sym_LBRACE, - STATE(51), 1, - sym_switch_block, + [24880] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23175] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(91), 1, - sym_class_body, + ACTIONS(2952), 2, + sym_this, + sym_super, + [24889] = 3, + ACTIONS(2954), 1, + sym_identifier, + STATE(1057), 1, + sym_element_value_pair, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23186] = 3, - ACTIONS(2461), 1, + [24900] = 3, + ACTIONS(2554), 1, anon_sym_LBRACE, - STATE(93), 1, - sym_enum_body, + STATE(427), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23197] = 3, - ACTIONS(2134), 1, - anon_sym_LBRACE, - STATE(101), 1, - sym_interface_body, + [24911] = 3, + ACTIONS(991), 1, + anon_sym_LPAREN, + STATE(1151), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23208] = 3, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(89), 1, - sym_block, + [24922] = 3, + ACTIONS(2135), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23219] = 2, + [24933] = 3, + ACTIONS(2135), 1, + anon_sym_LPAREN, + STATE(738), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2548), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23228] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_block, + [24944] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23239] = 2, + ACTIONS(2956), 2, + anon_sym_LBRACE, + anon_sym_throws, + [24953] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(111), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23248] = 2, + [24964] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(157), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [23257] = 2, + [24975] = 3, + ACTIONS(2554), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, - anon_sym_AMP, - anon_sym_RPAREN, - [23266] = 2, + [24986] = 3, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(433), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23275] = 2, + [24997] = 3, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(434), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23284] = 3, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2812), 1, - anon_sym_with, + [25008] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23295] = 3, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(57), 1, - sym_block, + ACTIONS(2743), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25017] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23306] = 2, + ACTIONS(2958), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25026] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2583), 2, + ACTIONS(2960), 2, + anon_sym_AMP, anon_sym_RPAREN, - anon_sym_COMMA, - [23315] = 3, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2814), 1, - anon_sym_SEMI, + [25035] = 3, + ACTIONS(2135), 1, + anon_sym_LPAREN, + STATE(1160), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23326] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2816), 1, - anon_sym_SEMI, + [25046] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23337] = 2, + [25057] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 2, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_COMMA, - [23346] = 2, + [25066] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2588), 2, - anon_sym_GT, + ACTIONS(2964), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [23355] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2820), 1, - anon_sym_with, + [25075] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23366] = 3, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2822), 1, - anon_sym_SEMI, + ACTIONS(2703), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25084] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(133), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23377] = 2, + [25095] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 2, - anon_sym_LBRACE, - anon_sym_throws, - [23386] = 3, - ACTIONS(1039), 1, + ACTIONS(2716), 2, + anon_sym_GT, + anon_sym_COMMA, + [25104] = 3, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(1152), 1, + STATE(1238), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23397] = 2, + [25115] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2826), 2, + ACTIONS(2378), 2, anon_sym_GT, anon_sym_COMMA, - [23406] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2828), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23417] = 3, - ACTIONS(2830), 1, - anon_sym_DOT, - ACTIONS(2832), 1, - anon_sym_SEMI, + [25124] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(139), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23428] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2834), 1, - anon_sym_SEMI, + [25135] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(136), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23439] = 2, + [25146] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(138), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 2, + [25157] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [23448] = 2, + STATE(98), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2838), 2, - anon_sym_new, - sym_identifier, - [23457] = 3, - ACTIONS(1292), 1, + [25168] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(357), 1, + STATE(144), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23468] = 3, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2840), 1, - anon_sym_SEMI, + [25179] = 3, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(126), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23479] = 3, - ACTIONS(2067), 1, + [25190] = 3, + ACTIONS(1079), 1, anon_sym_LPAREN, - STATE(1012), 1, - sym_formal_parameters, + STATE(398), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23490] = 3, - ACTIONS(2134), 1, + [25201] = 3, + ACTIONS(2916), 1, anon_sym_LBRACE, - STATE(97), 1, - sym_interface_body, + STATE(107), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23501] = 3, - ACTIONS(2067), 1, - anon_sym_LPAREN, - STATE(1043), 1, - sym_formal_parameters, + [25212] = 3, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2968), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23512] = 3, - ACTIONS(2461), 1, - anon_sym_LBRACE, - STATE(131), 1, - sym_enum_body, + [25223] = 3, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(441), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23523] = 3, - ACTIONS(2842), 1, + [25234] = 3, + ACTIONS(2970), 1, anon_sym_DOT, - ACTIONS(2844), 1, + ACTIONS(2972), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23534] = 3, - ACTIONS(1286), 1, + [25245] = 3, + ACTIONS(1336), 1, anon_sym_DOT, - ACTIONS(2846), 1, + ACTIONS(2974), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23545] = 3, - ACTIONS(2848), 1, + [25256] = 3, + ACTIONS(1330), 1, anon_sym_DOT, - ACTIONS(2850), 1, + ACTIONS(2976), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23556] = 2, + [25267] = 3, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(439), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [23565] = 3, - ACTIONS(2425), 1, + [25278] = 3, + ACTIONS(2218), 1, anon_sym_LBRACE, - STATE(362), 1, - sym_constructor_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23576] = 3, - ACTIONS(2852), 1, - anon_sym_DOT, - ACTIONS(2854), 1, - anon_sym_SEMI, + STATE(146), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23587] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2856), 1, - anon_sym_SEMI, + [25289] = 3, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(101), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23598] = 3, - ACTIONS(2780), 1, + [25300] = 3, + ACTIONS(2438), 1, anon_sym_LBRACE, - STATE(95), 1, - sym_annotation_type_body, + STATE(89), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23609] = 3, + [25311] = 3, ACTIONS(27), 1, anon_sym_LBRACE, - STATE(147), 1, + STATE(225), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23620] = 3, - ACTIONS(2858), 1, - sym_identifier, - STATE(1068), 1, - sym_element_value_pair, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23631] = 3, - ACTIONS(2134), 1, + [25322] = 3, + ACTIONS(2978), 1, anon_sym_LBRACE, - STATE(77), 1, - sym_interface_body, + STATE(81), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23642] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(103), 1, - sym_class_body, + [25333] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23653] = 3, - ACTIONS(2134), 1, + ACTIONS(2667), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25342] = 3, + ACTIONS(2218), 1, anon_sym_LBRACE, - STATE(111), 1, + STATE(121), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23664] = 3, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(67), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23675] = 3, - ACTIONS(955), 1, - anon_sym_LPAREN, - STATE(1161), 1, - sym_parenthesized_expression, + [25353] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23686] = 3, - ACTIONS(1292), 1, + ACTIONS(2645), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [25362] = 3, + ACTIONS(2218), 1, anon_sym_LBRACE, - STATE(114), 1, - sym_class_body, + STATE(132), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23697] = 3, - ACTIONS(1292), 1, + [25373] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(76), 1, + STATE(120), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23708] = 2, + [25384] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 2, - anon_sym_RPAREN, + ACTIONS(1971), 2, anon_sym_COMMA, - [23717] = 3, - ACTIONS(1292), 1, + anon_sym_RBRACE, + [25393] = 3, + ACTIONS(1342), 1, anon_sym_LBRACE, - STATE(115), 1, + STATE(119), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23728] = 2, + [25404] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23737] = 3, - ACTIONS(1292), 1, + ACTIONS(2980), 2, anon_sym_LBRACE, - STATE(133), 1, + anon_sym_permits, + [25413] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(407), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23748] = 3, - ACTIONS(1039), 1, - anon_sym_LPAREN, - STATE(1130), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23759] = 3, - ACTIONS(397), 1, + [25424] = 3, + ACTIONS(593), 1, anon_sym_LBRACE, - STATE(408), 1, + STATE(465), 1, sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23770] = 3, - ACTIONS(1039), 1, + [25435] = 3, + ACTIONS(991), 1, anon_sym_LPAREN, - STATE(402), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23781] = 3, - ACTIONS(397), 1, - anon_sym_LBRACE, - STATE(401), 1, - sym_array_initializer, + STATE(58), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23792] = 3, - ACTIONS(1039), 1, + [25446] = 3, + ACTIONS(991), 1, anon_sym_LPAREN, - STATE(385), 1, - sym_argument_list, + STATE(59), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23803] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2862), 1, - anon_sym_SEMI, + [25457] = 3, + ACTIONS(1342), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23814] = 2, + [25468] = 2, + ACTIONS(2982), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 2, + [25476] = 2, + ACTIONS(2984), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [23823] = 3, - ACTIONS(1280), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23834] = 3, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2866), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23845] = 2, + [25484] = 2, + ACTIONS(2986), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23854] = 3, - ACTIONS(1286), 1, - anon_sym_DOT, - ACTIONS(2870), 1, - anon_sym_SEMI, + [25492] = 2, + ACTIONS(2988), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23865] = 2, + [25500] = 2, + ACTIONS(2938), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 2, - anon_sym_GT, - anon_sym_COMMA, - [23874] = 2, - ACTIONS(1899), 1, - anon_sym_RBRACE, + [25508] = 2, + ACTIONS(2990), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23882] = 2, - ACTIONS(2874), 1, - sym_identifier, + [25516] = 2, + ACTIONS(2992), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23890] = 2, - ACTIONS(2876), 1, - anon_sym_DASH_GT, + [25524] = 2, + ACTIONS(2994), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23898] = 2, - ACTIONS(2878), 1, + [25532] = 2, + ACTIONS(2996), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23906] = 2, - ACTIONS(2880), 1, - anon_sym_module, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23914] = 2, - ACTIONS(2882), 1, - anon_sym_SEMI, + [25540] = 2, + ACTIONS(925), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23922] = 2, - ACTIONS(2884), 1, + [25548] = 2, + ACTIONS(2675), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23930] = 2, - ACTIONS(2886), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23938] = 2, - ACTIONS(2888), 1, - anon_sym_LBRACE, + [25556] = 2, + ACTIONS(2936), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23946] = 2, - ACTIONS(2890), 1, + [25564] = 2, + ACTIONS(2998), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23954] = 2, - ACTIONS(2892), 1, - anon_sym_class, + [25572] = 2, + ACTIONS(3000), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23962] = 2, - ACTIONS(921), 1, - anon_sym_RBRACK, + [25580] = 2, + ACTIONS(2384), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23970] = 2, - ACTIONS(2894), 1, - sym_identifier, + [25588] = 2, + ACTIONS(3002), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23978] = 2, - ACTIONS(2896), 1, + [25596] = 2, + ACTIONS(3004), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23986] = 2, - ACTIONS(2782), 1, - anon_sym_DASH_GT, + [25604] = 2, + ACTIONS(3006), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23994] = 2, - ACTIONS(2898), 1, + [25612] = 2, + ACTIONS(3008), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24002] = 2, - ACTIONS(2900), 1, - anon_sym_EQ, + [25620] = 2, + ACTIONS(3010), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24010] = 2, - ACTIONS(2902), 1, + [25628] = 2, + ACTIONS(3012), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24018] = 2, - ACTIONS(2784), 1, - anon_sym_COLON, + [25636] = 2, + ACTIONS(2630), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24026] = 2, - ACTIONS(2904), 1, - anon_sym_LPAREN, + [25644] = 2, + ACTIONS(3014), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24034] = 2, - ACTIONS(2593), 1, + [25652] = 2, + ACTIONS(3016), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24042] = 2, - ACTIONS(2633), 1, - sym_identifier, + [25660] = 2, + ACTIONS(3018), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24050] = 2, - ACTIONS(2906), 1, - anon_sym_SEMI, + [25668] = 2, + ACTIONS(927), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24058] = 2, - ACTIONS(2908), 1, - sym_identifier, + [25676] = 2, + ACTIONS(2624), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24066] = 2, - ACTIONS(2910), 1, + [25684] = 2, + ACTIONS(3020), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24074] = 2, - ACTIONS(2642), 1, - anon_sym_DOT, + [25692] = 2, + ACTIONS(3022), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24082] = 2, - ACTIONS(2912), 1, - anon_sym_SEMI, + [25700] = 2, + ACTIONS(3024), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24090] = 2, - ACTIONS(2914), 1, - anon_sym_SEMI, + [25708] = 2, + ACTIONS(965), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24098] = 2, - ACTIONS(2916), 1, - anon_sym_RPAREN, + [25716] = 2, + ACTIONS(3026), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24106] = 2, - ACTIONS(903), 1, - anon_sym_RBRACK, + [25724] = 2, + ACTIONS(3028), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24114] = 2, - ACTIONS(2918), 1, - anon_sym_DASH_GT, + [25732] = 2, + ACTIONS(2765), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24122] = 2, - ACTIONS(2920), 1, - sym_this, + [25740] = 2, + ACTIONS(3030), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24130] = 2, - ACTIONS(2922), 1, + [25748] = 2, + ACTIONS(3032), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24138] = 2, - ACTIONS(2924), 1, - anon_sym_DASH_GT, + [25756] = 2, + ACTIONS(3034), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24146] = 2, - ACTIONS(2926), 1, - sym_this, + [25764] = 2, + ACTIONS(3036), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24154] = 2, - ACTIONS(2928), 1, + [25772] = 2, + ACTIONS(3038), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24162] = 2, - ACTIONS(2930), 1, + [25780] = 2, + ACTIONS(3040), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24170] = 2, - ACTIONS(2932), 1, - anon_sym_SEMI, + [25788] = 2, + ACTIONS(3042), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24178] = 2, - ACTIONS(2934), 1, - anon_sym_while, + [25796] = 2, + ACTIONS(3044), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24186] = 2, - ACTIONS(1874), 1, - anon_sym_RBRACE, + [25804] = 2, + ACTIONS(3046), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24194] = 2, - ACTIONS(911), 1, - anon_sym_RBRACK, + [25812] = 2, + ACTIONS(3048), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24202] = 2, - ACTIONS(2936), 1, + [25820] = 2, + ACTIONS(3050), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24210] = 2, - ACTIONS(2938), 1, - anon_sym_RPAREN, + [25828] = 2, + ACTIONS(3052), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24218] = 2, - ACTIONS(2940), 1, - anon_sym_SEMI, + [25836] = 2, + ACTIONS(3054), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24226] = 2, - ACTIONS(2730), 1, + [25844] = 2, + ACTIONS(1906), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24234] = 2, - ACTIONS(2942), 1, - anon_sym_SEMI, + [25852] = 2, + ACTIONS(1523), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24242] = 2, - ACTIONS(2944), 1, - anon_sym_DOT, + [25860] = 2, + ACTIONS(1965), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24250] = 2, - ACTIONS(2946), 1, - anon_sym_LBRACE, + [25868] = 2, + ACTIONS(1092), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24258] = 2, - ACTIONS(2948), 1, - anon_sym_SEMI, + [25876] = 2, + ACTIONS(3056), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24266] = 2, - ACTIONS(2950), 1, - anon_sym_SEMI, + [25884] = 2, + ACTIONS(3058), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24274] = 2, - ACTIONS(2952), 1, - sym_identifier, + [25892] = 2, + ACTIONS(3060), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24282] = 2, - ACTIONS(2954), 1, + [25900] = 2, + ACTIONS(2794), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24290] = 2, - ACTIONS(2956), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24298] = 2, - ACTIONS(1577), 1, - anon_sym_COLON_COLON, + [25908] = 2, + ACTIONS(2721), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24306] = 2, - ACTIONS(2958), 1, + [25916] = 2, + ACTIONS(3062), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24314] = 2, - ACTIONS(929), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24322] = 2, - ACTIONS(2960), 1, + [25924] = 2, + ACTIONS(3064), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24330] = 2, - ACTIONS(2962), 1, - anon_sym_RBRACE, + [25932] = 2, + ACTIONS(3066), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24338] = 2, - ACTIONS(1052), 1, - anon_sym_DASH_GT, + [25940] = 2, + ACTIONS(3068), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24346] = 2, - ACTIONS(2964), 1, - ts_builtin_sym_end, + [25948] = 2, + ACTIONS(3070), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24354] = 2, - ACTIONS(2966), 1, - anon_sym_RPAREN, + [25956] = 2, + ACTIONS(2859), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24362] = 2, - ACTIONS(2968), 1, + [25964] = 2, + ACTIONS(3072), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24370] = 2, - ACTIONS(2698), 1, - anon_sym_RPAREN, + [25972] = 2, + ACTIONS(3074), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24378] = 2, - ACTIONS(2327), 1, - anon_sym_RBRACE, + [25980] = 2, + ACTIONS(3076), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24386] = 2, - ACTIONS(2970), 1, + [25988] = 2, + ACTIONS(3078), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24394] = 2, - ACTIONS(2972), 1, - sym_identifier, + [25996] = 2, + ACTIONS(3080), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24402] = 2, - ACTIONS(2974), 1, + [26004] = 2, + ACTIONS(3082), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24410] = 2, - ACTIONS(2976), 1, - sym_identifier, + [26012] = 2, + ACTIONS(3084), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24418] = 2, - ACTIONS(2978), 1, + [26020] = 2, + ACTIONS(3086), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24426] = 2, - ACTIONS(2736), 1, - anon_sym_RPAREN, + [26028] = 2, + ACTIONS(967), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24434] = 2, - ACTIONS(2980), 1, - anon_sym_SEMI, + [26036] = 2, + ACTIONS(3088), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24442] = 2, - ACTIONS(2982), 1, + [26044] = 2, + ACTIONS(3090), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24450] = 2, - ACTIONS(2984), 1, - sym_identifier, + [26052] = 2, + ACTIONS(3092), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24458] = 2, - ACTIONS(2986), 1, + [26060] = 2, + ACTIONS(3094), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24466] = 2, - ACTIONS(2670), 1, - anon_sym_RPAREN, + [26068] = 2, + ACTIONS(3096), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24474] = 2, - ACTIONS(2988), 1, - anon_sym_EQ, + [26076] = 2, + ACTIONS(3098), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24482] = 2, - ACTIONS(2990), 1, - anon_sym_LPAREN, + [26084] = 2, + ACTIONS(1967), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24490] = 2, - ACTIONS(2992), 1, - anon_sym_SEMI, + [26092] = 2, + ACTIONS(3100), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24498] = 2, - ACTIONS(2994), 1, - anon_sym_LBRACE, + [26100] = 2, + ACTIONS(3102), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24506] = 2, - ACTIONS(2996), 1, - anon_sym_SEMI, + [26108] = 2, + ACTIONS(3104), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24514] = 2, - ACTIONS(1850), 1, - anon_sym_RBRACE, + [26116] = 2, + ACTIONS(3106), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24522] = 2, - ACTIONS(2998), 1, - anon_sym_SEMI, + [26124] = 2, + ACTIONS(3108), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24530] = 2, - ACTIONS(3000), 1, - sym_identifier, + [26132] = 2, + ACTIONS(3110), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24538] = 2, - ACTIONS(3002), 1, + [26140] = 2, + ACTIONS(3112), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24546] = 2, - ACTIONS(3004), 1, - anon_sym_LBRACE, + [26148] = 2, + ACTIONS(3114), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(299)] = 0, - [SMALL_STATE(300)] = 118, - [SMALL_STATE(301)] = 236, - [SMALL_STATE(302)] = 354, - [SMALL_STATE(303)] = 472, - [SMALL_STATE(304)] = 590, - [SMALL_STATE(305)] = 673, - [SMALL_STATE(306)] = 776, - [SMALL_STATE(307)] = 879, - [SMALL_STATE(308)] = 982, - [SMALL_STATE(309)] = 1072, - [SMALL_STATE(310)] = 1153, - [SMALL_STATE(311)] = 1213, - [SMALL_STATE(312)] = 1273, - [SMALL_STATE(313)] = 1333, - [SMALL_STATE(314)] = 1393, - [SMALL_STATE(315)] = 1480, - [SMALL_STATE(316)] = 1543, - [SMALL_STATE(317)] = 1630, - [SMALL_STATE(318)] = 1717, - [SMALL_STATE(319)] = 1771, - [SMALL_STATE(320)] = 1839, - [SMALL_STATE(321)] = 1913, - [SMALL_STATE(322)] = 1967, - [SMALL_STATE(323)] = 2021, - [SMALL_STATE(324)] = 2078, - [SMALL_STATE(325)] = 2151, - [SMALL_STATE(326)] = 2211, - [SMALL_STATE(327)] = 2272, - [SMALL_STATE(328)] = 2335, - [SMALL_STATE(329)] = 2398, - [SMALL_STATE(330)] = 2461, - [SMALL_STATE(331)] = 2524, - [SMALL_STATE(332)] = 2574, - [SMALL_STATE(333)] = 2628, - [SMALL_STATE(334)] = 2678, - [SMALL_STATE(335)] = 2760, - [SMALL_STATE(336)] = 2817, - [SMALL_STATE(337)] = 2873, - [SMALL_STATE(338)] = 2947, - [SMALL_STATE(339)] = 3003, - [SMALL_STATE(340)] = 3060, - [SMALL_STATE(341)] = 3131, - [SMALL_STATE(342)] = 3188, - [SMALL_STATE(343)] = 3261, - [SMALL_STATE(344)] = 3307, - [SMALL_STATE(345)] = 3353, - [SMALL_STATE(346)] = 3405, - [SMALL_STATE(347)] = 3457, - [SMALL_STATE(348)] = 3505, - [SMALL_STATE(349)] = 3553, - [SMALL_STATE(350)] = 3601, - [SMALL_STATE(351)] = 3649, - [SMALL_STATE(352)] = 3701, - [SMALL_STATE(353)] = 3753, - [SMALL_STATE(354)] = 3802, - [SMALL_STATE(355)] = 3845, - [SMALL_STATE(356)] = 3888, - [SMALL_STATE(357)] = 3931, - [SMALL_STATE(358)] = 3974, - [SMALL_STATE(359)] = 4017, - [SMALL_STATE(360)] = 4060, - [SMALL_STATE(361)] = 4103, - [SMALL_STATE(362)] = 4146, - [SMALL_STATE(363)] = 4189, - [SMALL_STATE(364)] = 4232, - [SMALL_STATE(365)] = 4275, - [SMALL_STATE(366)] = 4318, - [SMALL_STATE(367)] = 4361, - [SMALL_STATE(368)] = 4404, - [SMALL_STATE(369)] = 4447, - [SMALL_STATE(370)] = 4490, - [SMALL_STATE(371)] = 4533, - [SMALL_STATE(372)] = 4576, - [SMALL_STATE(373)] = 4619, - [SMALL_STATE(374)] = 4662, - [SMALL_STATE(375)] = 4705, - [SMALL_STATE(376)] = 4754, - [SMALL_STATE(377)] = 4797, - [SMALL_STATE(378)] = 4840, - [SMALL_STATE(379)] = 4883, - [SMALL_STATE(380)] = 4926, - [SMALL_STATE(381)] = 4969, - [SMALL_STATE(382)] = 5012, - [SMALL_STATE(383)] = 5055, - [SMALL_STATE(384)] = 5097, - [SMALL_STATE(385)] = 5139, - [SMALL_STATE(386)] = 5181, - [SMALL_STATE(387)] = 5223, - [SMALL_STATE(388)] = 5265, - [SMALL_STATE(389)] = 5307, - [SMALL_STATE(390)] = 5349, - [SMALL_STATE(391)] = 5391, - [SMALL_STATE(392)] = 5433, - [SMALL_STATE(393)] = 5475, - [SMALL_STATE(394)] = 5517, - [SMALL_STATE(395)] = 5559, - [SMALL_STATE(396)] = 5601, - [SMALL_STATE(397)] = 5643, - [SMALL_STATE(398)] = 5685, - [SMALL_STATE(399)] = 5731, - [SMALL_STATE(400)] = 5773, - [SMALL_STATE(401)] = 5815, - [SMALL_STATE(402)] = 5857, - [SMALL_STATE(403)] = 5899, - [SMALL_STATE(404)] = 5941, - [SMALL_STATE(405)] = 5983, - [SMALL_STATE(406)] = 6025, - [SMALL_STATE(407)] = 6069, - [SMALL_STATE(408)] = 6111, - [SMALL_STATE(409)] = 6153, - [SMALL_STATE(410)] = 6195, - [SMALL_STATE(411)] = 6237, - [SMALL_STATE(412)] = 6279, - [SMALL_STATE(413)] = 6321, - [SMALL_STATE(414)] = 6363, - [SMALL_STATE(415)] = 6405, - [SMALL_STATE(416)] = 6447, - [SMALL_STATE(417)] = 6495, - [SMALL_STATE(418)] = 6537, - [SMALL_STATE(419)] = 6579, - [SMALL_STATE(420)] = 6621, - [SMALL_STATE(421)] = 6663, - [SMALL_STATE(422)] = 6705, - [SMALL_STATE(423)] = 6747, - [SMALL_STATE(424)] = 6789, - [SMALL_STATE(425)] = 6831, - [SMALL_STATE(426)] = 6873, - [SMALL_STATE(427)] = 6915, - [SMALL_STATE(428)] = 6957, - [SMALL_STATE(429)] = 7002, - [SMALL_STATE(430)] = 7043, - [SMALL_STATE(431)] = 7084, - [SMALL_STATE(432)] = 7125, - [SMALL_STATE(433)] = 7166, - [SMALL_STATE(434)] = 7207, - [SMALL_STATE(435)] = 7248, - [SMALL_STATE(436)] = 7292, - [SMALL_STATE(437)] = 7333, - [SMALL_STATE(438)] = 7372, - [SMALL_STATE(439)] = 7411, - [SMALL_STATE(440)] = 7450, - [SMALL_STATE(441)] = 7489, - [SMALL_STATE(442)] = 7528, - [SMALL_STATE(443)] = 7567, - [SMALL_STATE(444)] = 7606, - [SMALL_STATE(445)] = 7645, - [SMALL_STATE(446)] = 7684, - [SMALL_STATE(447)] = 7725, - [SMALL_STATE(448)] = 7764, - [SMALL_STATE(449)] = 7805, - [SMALL_STATE(450)] = 7844, - [SMALL_STATE(451)] = 7882, - [SMALL_STATE(452)] = 7950, - [SMALL_STATE(453)] = 7994, - [SMALL_STATE(454)] = 8036, - [SMALL_STATE(455)] = 8104, - [SMALL_STATE(456)] = 8148, - [SMALL_STATE(457)] = 8210, - [SMALL_STATE(458)] = 8248, - [SMALL_STATE(459)] = 8292, - [SMALL_STATE(460)] = 8330, - [SMALL_STATE(461)] = 8368, - [SMALL_STATE(462)] = 8406, - [SMALL_STATE(463)] = 8444, - [SMALL_STATE(464)] = 8512, - [SMALL_STATE(465)] = 8550, - [SMALL_STATE(466)] = 8612, - [SMALL_STATE(467)] = 8668, - [SMALL_STATE(468)] = 8718, - [SMALL_STATE(469)] = 8776, - [SMALL_STATE(470)] = 8820, - [SMALL_STATE(471)] = 8866, - [SMALL_STATE(472)] = 8904, - [SMALL_STATE(473)] = 8964, - [SMALL_STATE(474)] = 9008, - [SMALL_STATE(475)] = 9076, - [SMALL_STATE(476)] = 9140, - [SMALL_STATE(477)] = 9177, - [SMALL_STATE(478)] = 9214, - [SMALL_STATE(479)] = 9258, - [SMALL_STATE(480)] = 9328, - [SMALL_STATE(481)] = 9394, - [SMALL_STATE(482)] = 9438, - [SMALL_STATE(483)] = 9480, - [SMALL_STATE(484)] = 9541, - [SMALL_STATE(485)] = 9610, - [SMALL_STATE(486)] = 9679, - [SMALL_STATE(487)] = 9714, - [SMALL_STATE(488)] = 9783, - [SMALL_STATE(489)] = 9852, - [SMALL_STATE(490)] = 9895, - [SMALL_STATE(491)] = 9942, - [SMALL_STATE(492)] = 9999, - [SMALL_STATE(493)] = 10052, - [SMALL_STATE(494)] = 10087, - [SMALL_STATE(495)] = 10146, - [SMALL_STATE(496)] = 10187, - [SMALL_STATE(497)] = 10256, - [SMALL_STATE(498)] = 10291, - [SMALL_STATE(499)] = 10326, - [SMALL_STATE(500)] = 10385, - [SMALL_STATE(501)] = 10438, - [SMALL_STATE(502)] = 10493, - [SMALL_STATE(503)] = 10562, - [SMALL_STATE(504)] = 10631, - [SMALL_STATE(505)] = 10666, - [SMALL_STATE(506)] = 10731, - [SMALL_STATE(507)] = 10800, - [SMALL_STATE(508)] = 10865, - [SMALL_STATE(509)] = 10934, - [SMALL_STATE(510)] = 10993, - [SMALL_STATE(511)] = 11058, - [SMALL_STATE(512)] = 11127, - [SMALL_STATE(513)] = 11196, - [SMALL_STATE(514)] = 11261, - [SMALL_STATE(515)] = 11326, - [SMALL_STATE(516)] = 11391, - [SMALL_STATE(517)] = 11456, - [SMALL_STATE(518)] = 11491, - [SMALL_STATE(519)] = 11526, - [SMALL_STATE(520)] = 11561, - [SMALL_STATE(521)] = 11620, - [SMALL_STATE(522)] = 11689, - [SMALL_STATE(523)] = 11724, - [SMALL_STATE(524)] = 11788, - [SMALL_STATE(525)] = 11852, - [SMALL_STATE(526)] = 11902, - [SMALL_STATE(527)] = 11966, - [SMALL_STATE(528)] = 12030, - [SMALL_STATE(529)] = 12068, - [SMALL_STATE(530)] = 12124, - [SMALL_STATE(531)] = 12188, - [SMALL_STATE(532)] = 12252, - [SMALL_STATE(533)] = 12316, - [SMALL_STATE(534)] = 12382, - [SMALL_STATE(535)] = 12432, - [SMALL_STATE(536)] = 12495, - [SMALL_STATE(537)] = 12550, - [SMALL_STATE(538)] = 12613, - [SMALL_STATE(539)] = 12676, - [SMALL_STATE(540)] = 12739, - [SMALL_STATE(541)] = 12794, - [SMALL_STATE(542)] = 12849, - [SMALL_STATE(543)] = 12904, - [SMALL_STATE(544)] = 12967, - [SMALL_STATE(545)] = 13030, - [SMALL_STATE(546)] = 13093, - [SMALL_STATE(547)] = 13156, - [SMALL_STATE(548)] = 13219, - [SMALL_STATE(549)] = 13282, - [SMALL_STATE(550)] = 13345, - [SMALL_STATE(551)] = 13408, - [SMALL_STATE(552)] = 13471, - [SMALL_STATE(553)] = 13534, - [SMALL_STATE(554)] = 13597, - [SMALL_STATE(555)] = 13660, - [SMALL_STATE(556)] = 13723, - [SMALL_STATE(557)] = 13775, - [SMALL_STATE(558)] = 13827, - [SMALL_STATE(559)] = 13879, - [SMALL_STATE(560)] = 13931, - [SMALL_STATE(561)] = 13983, - [SMALL_STATE(562)] = 14035, - [SMALL_STATE(563)] = 14093, - [SMALL_STATE(564)] = 14145, - [SMALL_STATE(565)] = 14197, - [SMALL_STATE(566)] = 14234, - [SMALL_STATE(567)] = 14271, - [SMALL_STATE(568)] = 14302, - [SMALL_STATE(569)] = 14351, - [SMALL_STATE(570)] = 14392, - [SMALL_STATE(571)] = 14423, - [SMALL_STATE(572)] = 14469, - [SMALL_STATE(573)] = 14515, - [SMALL_STATE(574)] = 14561, - [SMALL_STATE(575)] = 14591, - [SMALL_STATE(576)] = 14639, - [SMALL_STATE(577)] = 14685, - [SMALL_STATE(578)] = 14731, - [SMALL_STATE(579)] = 14777, - [SMALL_STATE(580)] = 14823, - [SMALL_STATE(581)] = 14853, - [SMALL_STATE(582)] = 14901, - [SMALL_STATE(583)] = 14930, - [SMALL_STATE(584)] = 14979, - [SMALL_STATE(585)] = 15008, - [SMALL_STATE(586)] = 15043, - [SMALL_STATE(587)] = 15078, - [SMALL_STATE(588)] = 15107, - [SMALL_STATE(589)] = 15136, - [SMALL_STATE(590)] = 15168, - [SMALL_STATE(591)] = 15210, - [SMALL_STATE(592)] = 15238, - [SMALL_STATE(593)] = 15266, - [SMALL_STATE(594)] = 15294, - [SMALL_STATE(595)] = 15340, - [SMALL_STATE(596)] = 15368, - [SMALL_STATE(597)] = 15396, - [SMALL_STATE(598)] = 15424, - [SMALL_STATE(599)] = 15452, - [SMALL_STATE(600)] = 15480, - [SMALL_STATE(601)] = 15522, - [SMALL_STATE(602)] = 15550, - [SMALL_STATE(603)] = 15577, - [SMALL_STATE(604)] = 15624, - [SMALL_STATE(605)] = 15653, - [SMALL_STATE(606)] = 15680, - [SMALL_STATE(607)] = 15714, - [SMALL_STATE(608)] = 15754, - [SMALL_STATE(609)] = 15793, - [SMALL_STATE(610)] = 15830, - [SMALL_STATE(611)] = 15867, - [SMALL_STATE(612)] = 15900, - [SMALL_STATE(613)] = 15937, - [SMALL_STATE(614)] = 15982, - [SMALL_STATE(615)] = 16027, - [SMALL_STATE(616)] = 16064, - [SMALL_STATE(617)] = 16088, - [SMALL_STATE(618)] = 16130, - [SMALL_STATE(619)] = 16172, - [SMALL_STATE(620)] = 16196, - [SMALL_STATE(621)] = 16238, - [SMALL_STATE(622)] = 16280, - [SMALL_STATE(623)] = 16322, - [SMALL_STATE(624)] = 16364, - [SMALL_STATE(625)] = 16406, - [SMALL_STATE(626)] = 16432, - [SMALL_STATE(627)] = 16474, - [SMALL_STATE(628)] = 16513, - [SMALL_STATE(629)] = 16552, - [SMALL_STATE(630)] = 16591, - [SMALL_STATE(631)] = 16630, - [SMALL_STATE(632)] = 16669, - [SMALL_STATE(633)] = 16702, - [SMALL_STATE(634)] = 16741, - [SMALL_STATE(635)] = 16775, - [SMALL_STATE(636)] = 16811, - [SMALL_STATE(637)] = 16845, - [SMALL_STATE(638)] = 16879, - [SMALL_STATE(639)] = 16915, - [SMALL_STATE(640)] = 16951, - [SMALL_STATE(641)] = 16985, - [SMALL_STATE(642)] = 17015, - [SMALL_STATE(643)] = 17049, - [SMALL_STATE(644)] = 17083, - [SMALL_STATE(645)] = 17111, - [SMALL_STATE(646)] = 17141, - [SMALL_STATE(647)] = 17177, - [SMALL_STATE(648)] = 17213, - [SMALL_STATE(649)] = 17249, - [SMALL_STATE(650)] = 17285, - [SMALL_STATE(651)] = 17319, - [SMALL_STATE(652)] = 17355, - [SMALL_STATE(653)] = 17391, - [SMALL_STATE(654)] = 17422, - [SMALL_STATE(655)] = 17453, - [SMALL_STATE(656)] = 17486, - [SMALL_STATE(657)] = 17519, - [SMALL_STATE(658)] = 17550, - [SMALL_STATE(659)] = 17583, - [SMALL_STATE(660)] = 17616, - [SMALL_STATE(661)] = 17647, - [SMALL_STATE(662)] = 17678, - [SMALL_STATE(663)] = 17709, - [SMALL_STATE(664)] = 17740, - [SMALL_STATE(665)] = 17773, - [SMALL_STATE(666)] = 17803, - [SMALL_STATE(667)] = 17825, - [SMALL_STATE(668)] = 17855, - [SMALL_STATE(669)] = 17883, - [SMALL_STATE(670)] = 17915, - [SMALL_STATE(671)] = 17945, - [SMALL_STATE(672)] = 17977, - [SMALL_STATE(673)] = 18005, - [SMALL_STATE(674)] = 18032, - [SMALL_STATE(675)] = 18059, - [SMALL_STATE(676)] = 18094, - [SMALL_STATE(677)] = 18123, - [SMALL_STATE(678)] = 18152, - [SMALL_STATE(679)] = 18187, - [SMALL_STATE(680)] = 18216, - [SMALL_STATE(681)] = 18245, - [SMALL_STATE(682)] = 18261, - [SMALL_STATE(683)] = 18291, - [SMALL_STATE(684)] = 18319, - [SMALL_STATE(685)] = 18349, - [SMALL_STATE(686)] = 18378, - [SMALL_STATE(687)] = 18407, - [SMALL_STATE(688)] = 18436, - [SMALL_STATE(689)] = 18461, - [SMALL_STATE(690)] = 18488, - [SMALL_STATE(691)] = 18517, - [SMALL_STATE(692)] = 18539, - [SMALL_STATE(693)] = 18559, - [SMALL_STATE(694)] = 18581, - [SMALL_STATE(695)] = 18601, - [SMALL_STATE(696)] = 18621, - [SMALL_STATE(697)] = 18645, - [SMALL_STATE(698)] = 18669, - [SMALL_STATE(699)] = 18693, - [SMALL_STATE(700)] = 18714, - [SMALL_STATE(701)] = 18731, - [SMALL_STATE(702)] = 18754, - [SMALL_STATE(703)] = 18771, - [SMALL_STATE(704)] = 18788, - [SMALL_STATE(705)] = 18801, - [SMALL_STATE(706)] = 18814, - [SMALL_STATE(707)] = 18827, - [SMALL_STATE(708)] = 18840, - [SMALL_STATE(709)] = 18853, - [SMALL_STATE(710)] = 18866, - [SMALL_STATE(711)] = 18879, - [SMALL_STATE(712)] = 18902, - [SMALL_STATE(713)] = 18915, - [SMALL_STATE(714)] = 18928, - [SMALL_STATE(715)] = 18941, - [SMALL_STATE(716)] = 18954, - [SMALL_STATE(717)] = 18967, - [SMALL_STATE(718)] = 18984, - [SMALL_STATE(719)] = 19005, - [SMALL_STATE(720)] = 19018, - [SMALL_STATE(721)] = 19031, - [SMALL_STATE(722)] = 19048, - [SMALL_STATE(723)] = 19061, - [SMALL_STATE(724)] = 19074, - [SMALL_STATE(725)] = 19091, - [SMALL_STATE(726)] = 19104, - [SMALL_STATE(727)] = 19117, - [SMALL_STATE(728)] = 19130, - [SMALL_STATE(729)] = 19143, - [SMALL_STATE(730)] = 19156, - [SMALL_STATE(731)] = 19169, - [SMALL_STATE(732)] = 19182, - [SMALL_STATE(733)] = 19203, - [SMALL_STATE(734)] = 19216, - [SMALL_STATE(735)] = 19229, - [SMALL_STATE(736)] = 19242, - [SMALL_STATE(737)] = 19259, - [SMALL_STATE(738)] = 19272, - [SMALL_STATE(739)] = 19289, - [SMALL_STATE(740)] = 19306, - [SMALL_STATE(741)] = 19319, - [SMALL_STATE(742)] = 19332, - [SMALL_STATE(743)] = 19345, - [SMALL_STATE(744)] = 19368, - [SMALL_STATE(745)] = 19391, - [SMALL_STATE(746)] = 19404, - [SMALL_STATE(747)] = 19417, - [SMALL_STATE(748)] = 19434, - [SMALL_STATE(749)] = 19451, - [SMALL_STATE(750)] = 19468, - [SMALL_STATE(751)] = 19481, - [SMALL_STATE(752)] = 19494, - [SMALL_STATE(753)] = 19507, - [SMALL_STATE(754)] = 19530, - [SMALL_STATE(755)] = 19543, - [SMALL_STATE(756)] = 19556, - [SMALL_STATE(757)] = 19569, - [SMALL_STATE(758)] = 19592, - [SMALL_STATE(759)] = 19609, - [SMALL_STATE(760)] = 19626, - [SMALL_STATE(761)] = 19639, - [SMALL_STATE(762)] = 19652, - [SMALL_STATE(763)] = 19665, - [SMALL_STATE(764)] = 19682, - [SMALL_STATE(765)] = 19694, - [SMALL_STATE(766)] = 19710, - [SMALL_STATE(767)] = 19730, - [SMALL_STATE(768)] = 19748, - [SMALL_STATE(769)] = 19764, - [SMALL_STATE(770)] = 19784, - [SMALL_STATE(771)] = 19796, - [SMALL_STATE(772)] = 19812, - [SMALL_STATE(773)] = 19824, - [SMALL_STATE(774)] = 19840, - [SMALL_STATE(775)] = 19858, - [SMALL_STATE(776)] = 19874, - [SMALL_STATE(777)] = 19892, - [SMALL_STATE(778)] = 19904, - [SMALL_STATE(779)] = 19922, - [SMALL_STATE(780)] = 19942, - [SMALL_STATE(781)] = 19962, - [SMALL_STATE(782)] = 19978, - [SMALL_STATE(783)] = 19992, - [SMALL_STATE(784)] = 20008, - [SMALL_STATE(785)] = 20024, - [SMALL_STATE(786)] = 20042, - [SMALL_STATE(787)] = 20062, - [SMALL_STATE(788)] = 20082, - [SMALL_STATE(789)] = 20097, - [SMALL_STATE(790)] = 20112, - [SMALL_STATE(791)] = 20125, - [SMALL_STATE(792)] = 20140, - [SMALL_STATE(793)] = 20151, - [SMALL_STATE(794)] = 20166, - [SMALL_STATE(795)] = 20181, - [SMALL_STATE(796)] = 20196, - [SMALL_STATE(797)] = 20211, - [SMALL_STATE(798)] = 20226, - [SMALL_STATE(799)] = 20241, - [SMALL_STATE(800)] = 20258, - [SMALL_STATE(801)] = 20273, - [SMALL_STATE(802)] = 20288, - [SMALL_STATE(803)] = 20305, - [SMALL_STATE(804)] = 20316, - [SMALL_STATE(805)] = 20331, - [SMALL_STATE(806)] = 20346, - [SMALL_STATE(807)] = 20361, - [SMALL_STATE(808)] = 20376, - [SMALL_STATE(809)] = 20391, - [SMALL_STATE(810)] = 20406, - [SMALL_STATE(811)] = 20421, - [SMALL_STATE(812)] = 20436, - [SMALL_STATE(813)] = 20453, - [SMALL_STATE(814)] = 20468, - [SMALL_STATE(815)] = 20485, - [SMALL_STATE(816)] = 20500, - [SMALL_STATE(817)] = 20517, - [SMALL_STATE(818)] = 20532, - [SMALL_STATE(819)] = 20549, - [SMALL_STATE(820)] = 20564, - [SMALL_STATE(821)] = 20579, - [SMALL_STATE(822)] = 20594, - [SMALL_STATE(823)] = 20605, - [SMALL_STATE(824)] = 20620, - [SMALL_STATE(825)] = 20635, - [SMALL_STATE(826)] = 20652, - [SMALL_STATE(827)] = 20669, - [SMALL_STATE(828)] = 20686, - [SMALL_STATE(829)] = 20701, - [SMALL_STATE(830)] = 20718, - [SMALL_STATE(831)] = 20735, - [SMALL_STATE(832)] = 20750, - [SMALL_STATE(833)] = 20765, - [SMALL_STATE(834)] = 20782, - [SMALL_STATE(835)] = 20799, - [SMALL_STATE(836)] = 20814, - [SMALL_STATE(837)] = 20829, - [SMALL_STATE(838)] = 20844, - [SMALL_STATE(839)] = 20859, - [SMALL_STATE(840)] = 20876, - [SMALL_STATE(841)] = 20893, - [SMALL_STATE(842)] = 20908, - [SMALL_STATE(843)] = 20925, - [SMALL_STATE(844)] = 20942, - [SMALL_STATE(845)] = 20959, - [SMALL_STATE(846)] = 20976, - [SMALL_STATE(847)] = 20993, - [SMALL_STATE(848)] = 21010, - [SMALL_STATE(849)] = 21025, - [SMALL_STATE(850)] = 21036, - [SMALL_STATE(851)] = 21053, - [SMALL_STATE(852)] = 21068, - [SMALL_STATE(853)] = 21083, - [SMALL_STATE(854)] = 21100, - [SMALL_STATE(855)] = 21117, - [SMALL_STATE(856)] = 21134, - [SMALL_STATE(857)] = 21151, - [SMALL_STATE(858)] = 21166, - [SMALL_STATE(859)] = 21181, - [SMALL_STATE(860)] = 21198, - [SMALL_STATE(861)] = 21215, - [SMALL_STATE(862)] = 21232, - [SMALL_STATE(863)] = 21249, - [SMALL_STATE(864)] = 21266, - [SMALL_STATE(865)] = 21281, - [SMALL_STATE(866)] = 21292, - [SMALL_STATE(867)] = 21307, - [SMALL_STATE(868)] = 21324, - [SMALL_STATE(869)] = 21338, - [SMALL_STATE(870)] = 21352, - [SMALL_STATE(871)] = 21366, - [SMALL_STATE(872)] = 21380, - [SMALL_STATE(873)] = 21394, - [SMALL_STATE(874)] = 21408, - [SMALL_STATE(875)] = 21422, - [SMALL_STATE(876)] = 21436, - [SMALL_STATE(877)] = 21450, - [SMALL_STATE(878)] = 21464, - [SMALL_STATE(879)] = 21478, - [SMALL_STATE(880)] = 21492, - [SMALL_STATE(881)] = 21502, - [SMALL_STATE(882)] = 21516, - [SMALL_STATE(883)] = 21530, - [SMALL_STATE(884)] = 21544, - [SMALL_STATE(885)] = 21558, - [SMALL_STATE(886)] = 21572, - [SMALL_STATE(887)] = 21586, - [SMALL_STATE(888)] = 21600, - [SMALL_STATE(889)] = 21614, - [SMALL_STATE(890)] = 21628, - [SMALL_STATE(891)] = 21638, - [SMALL_STATE(892)] = 21648, - [SMALL_STATE(893)] = 21662, - [SMALL_STATE(894)] = 21672, - [SMALL_STATE(895)] = 21686, - [SMALL_STATE(896)] = 21700, - [SMALL_STATE(897)] = 21710, - [SMALL_STATE(898)] = 21724, - [SMALL_STATE(899)] = 21734, - [SMALL_STATE(900)] = 21748, - [SMALL_STATE(901)] = 21758, - [SMALL_STATE(902)] = 21770, - [SMALL_STATE(903)] = 21782, - [SMALL_STATE(904)] = 21796, - [SMALL_STATE(905)] = 21810, - [SMALL_STATE(906)] = 21822, - [SMALL_STATE(907)] = 21836, - [SMALL_STATE(908)] = 21850, - [SMALL_STATE(909)] = 21864, - [SMALL_STATE(910)] = 21878, - [SMALL_STATE(911)] = 21888, - [SMALL_STATE(912)] = 21902, - [SMALL_STATE(913)] = 21916, - [SMALL_STATE(914)] = 21930, - [SMALL_STATE(915)] = 21944, - [SMALL_STATE(916)] = 21958, - [SMALL_STATE(917)] = 21972, - [SMALL_STATE(918)] = 21986, - [SMALL_STATE(919)] = 21998, - [SMALL_STATE(920)] = 22012, - [SMALL_STATE(921)] = 22026, - [SMALL_STATE(922)] = 22040, - [SMALL_STATE(923)] = 22054, - [SMALL_STATE(924)] = 22068, - [SMALL_STATE(925)] = 22082, - [SMALL_STATE(926)] = 22094, - [SMALL_STATE(927)] = 22108, - [SMALL_STATE(928)] = 22122, - [SMALL_STATE(929)] = 22136, - [SMALL_STATE(930)] = 22150, - [SMALL_STATE(931)] = 22164, - [SMALL_STATE(932)] = 22176, - [SMALL_STATE(933)] = 22190, - [SMALL_STATE(934)] = 22204, - [SMALL_STATE(935)] = 22218, - [SMALL_STATE(936)] = 22228, - [SMALL_STATE(937)] = 22242, - [SMALL_STATE(938)] = 22252, - [SMALL_STATE(939)] = 22266, - [SMALL_STATE(940)] = 22276, - [SMALL_STATE(941)] = 22290, - [SMALL_STATE(942)] = 22304, - [SMALL_STATE(943)] = 22318, - [SMALL_STATE(944)] = 22332, - [SMALL_STATE(945)] = 22346, - [SMALL_STATE(946)] = 22360, - [SMALL_STATE(947)] = 22374, - [SMALL_STATE(948)] = 22388, - [SMALL_STATE(949)] = 22402, - [SMALL_STATE(950)] = 22416, - [SMALL_STATE(951)] = 22430, - [SMALL_STATE(952)] = 22444, - [SMALL_STATE(953)] = 22458, - [SMALL_STATE(954)] = 22472, - [SMALL_STATE(955)] = 22486, - [SMALL_STATE(956)] = 22500, - [SMALL_STATE(957)] = 22514, - [SMALL_STATE(958)] = 22528, - [SMALL_STATE(959)] = 22542, - [SMALL_STATE(960)] = 22556, - [SMALL_STATE(961)] = 22570, - [SMALL_STATE(962)] = 22584, - [SMALL_STATE(963)] = 22598, - [SMALL_STATE(964)] = 22612, - [SMALL_STATE(965)] = 22626, - [SMALL_STATE(966)] = 22640, - [SMALL_STATE(967)] = 22654, - [SMALL_STATE(968)] = 22668, - [SMALL_STATE(969)] = 22682, - [SMALL_STATE(970)] = 22696, - [SMALL_STATE(971)] = 22710, - [SMALL_STATE(972)] = 22724, - [SMALL_STATE(973)] = 22735, - [SMALL_STATE(974)] = 22746, - [SMALL_STATE(975)] = 22757, - [SMALL_STATE(976)] = 22768, - [SMALL_STATE(977)] = 22779, - [SMALL_STATE(978)] = 22788, - [SMALL_STATE(979)] = 22799, - [SMALL_STATE(980)] = 22810, - [SMALL_STATE(981)] = 22821, - [SMALL_STATE(982)] = 22832, - [SMALL_STATE(983)] = 22843, - [SMALL_STATE(984)] = 22854, - [SMALL_STATE(985)] = 22865, - [SMALL_STATE(986)] = 22876, - [SMALL_STATE(987)] = 22887, - [SMALL_STATE(988)] = 22898, - [SMALL_STATE(989)] = 22909, - [SMALL_STATE(990)] = 22918, - [SMALL_STATE(991)] = 22929, - [SMALL_STATE(992)] = 22940, - [SMALL_STATE(993)] = 22949, - [SMALL_STATE(994)] = 22958, - [SMALL_STATE(995)] = 22969, - [SMALL_STATE(996)] = 22978, - [SMALL_STATE(997)] = 22989, - [SMALL_STATE(998)] = 22998, - [SMALL_STATE(999)] = 23009, - [SMALL_STATE(1000)] = 23020, - [SMALL_STATE(1001)] = 23031, - [SMALL_STATE(1002)] = 23042, - [SMALL_STATE(1003)] = 23053, - [SMALL_STATE(1004)] = 23062, - [SMALL_STATE(1005)] = 23073, - [SMALL_STATE(1006)] = 23084, - [SMALL_STATE(1007)] = 23093, - [SMALL_STATE(1008)] = 23104, - [SMALL_STATE(1009)] = 23115, - [SMALL_STATE(1010)] = 23124, - [SMALL_STATE(1011)] = 23135, - [SMALL_STATE(1012)] = 23144, - [SMALL_STATE(1013)] = 23155, - [SMALL_STATE(1014)] = 23164, - [SMALL_STATE(1015)] = 23175, - [SMALL_STATE(1016)] = 23186, - [SMALL_STATE(1017)] = 23197, - [SMALL_STATE(1018)] = 23208, - [SMALL_STATE(1019)] = 23219, - [SMALL_STATE(1020)] = 23228, - [SMALL_STATE(1021)] = 23239, - [SMALL_STATE(1022)] = 23248, - [SMALL_STATE(1023)] = 23257, - [SMALL_STATE(1024)] = 23266, - [SMALL_STATE(1025)] = 23275, - [SMALL_STATE(1026)] = 23284, - [SMALL_STATE(1027)] = 23295, - [SMALL_STATE(1028)] = 23306, - [SMALL_STATE(1029)] = 23315, - [SMALL_STATE(1030)] = 23326, - [SMALL_STATE(1031)] = 23337, - [SMALL_STATE(1032)] = 23346, - [SMALL_STATE(1033)] = 23355, - [SMALL_STATE(1034)] = 23366, - [SMALL_STATE(1035)] = 23377, - [SMALL_STATE(1036)] = 23386, - [SMALL_STATE(1037)] = 23397, - [SMALL_STATE(1038)] = 23406, - [SMALL_STATE(1039)] = 23417, - [SMALL_STATE(1040)] = 23428, - [SMALL_STATE(1041)] = 23439, - [SMALL_STATE(1042)] = 23448, - [SMALL_STATE(1043)] = 23457, - [SMALL_STATE(1044)] = 23468, - [SMALL_STATE(1045)] = 23479, - [SMALL_STATE(1046)] = 23490, - [SMALL_STATE(1047)] = 23501, - [SMALL_STATE(1048)] = 23512, - [SMALL_STATE(1049)] = 23523, - [SMALL_STATE(1050)] = 23534, - [SMALL_STATE(1051)] = 23545, - [SMALL_STATE(1052)] = 23556, - [SMALL_STATE(1053)] = 23565, - [SMALL_STATE(1054)] = 23576, - [SMALL_STATE(1055)] = 23587, - [SMALL_STATE(1056)] = 23598, - [SMALL_STATE(1057)] = 23609, - [SMALL_STATE(1058)] = 23620, - [SMALL_STATE(1059)] = 23631, - [SMALL_STATE(1060)] = 23642, - [SMALL_STATE(1061)] = 23653, - [SMALL_STATE(1062)] = 23664, - [SMALL_STATE(1063)] = 23675, - [SMALL_STATE(1064)] = 23686, - [SMALL_STATE(1065)] = 23697, - [SMALL_STATE(1066)] = 23708, - [SMALL_STATE(1067)] = 23717, - [SMALL_STATE(1068)] = 23728, - [SMALL_STATE(1069)] = 23737, - [SMALL_STATE(1070)] = 23748, - [SMALL_STATE(1071)] = 23759, - [SMALL_STATE(1072)] = 23770, - [SMALL_STATE(1073)] = 23781, - [SMALL_STATE(1074)] = 23792, - [SMALL_STATE(1075)] = 23803, - [SMALL_STATE(1076)] = 23814, - [SMALL_STATE(1077)] = 23823, - [SMALL_STATE(1078)] = 23834, - [SMALL_STATE(1079)] = 23845, - [SMALL_STATE(1080)] = 23854, - [SMALL_STATE(1081)] = 23865, - [SMALL_STATE(1082)] = 23874, - [SMALL_STATE(1083)] = 23882, - [SMALL_STATE(1084)] = 23890, - [SMALL_STATE(1085)] = 23898, - [SMALL_STATE(1086)] = 23906, - [SMALL_STATE(1087)] = 23914, - [SMALL_STATE(1088)] = 23922, - [SMALL_STATE(1089)] = 23930, - [SMALL_STATE(1090)] = 23938, - [SMALL_STATE(1091)] = 23946, - [SMALL_STATE(1092)] = 23954, - [SMALL_STATE(1093)] = 23962, - [SMALL_STATE(1094)] = 23970, - [SMALL_STATE(1095)] = 23978, - [SMALL_STATE(1096)] = 23986, - [SMALL_STATE(1097)] = 23994, - [SMALL_STATE(1098)] = 24002, - [SMALL_STATE(1099)] = 24010, - [SMALL_STATE(1100)] = 24018, - [SMALL_STATE(1101)] = 24026, - [SMALL_STATE(1102)] = 24034, - [SMALL_STATE(1103)] = 24042, - [SMALL_STATE(1104)] = 24050, - [SMALL_STATE(1105)] = 24058, - [SMALL_STATE(1106)] = 24066, - [SMALL_STATE(1107)] = 24074, - [SMALL_STATE(1108)] = 24082, - [SMALL_STATE(1109)] = 24090, - [SMALL_STATE(1110)] = 24098, - [SMALL_STATE(1111)] = 24106, - [SMALL_STATE(1112)] = 24114, - [SMALL_STATE(1113)] = 24122, - [SMALL_STATE(1114)] = 24130, - [SMALL_STATE(1115)] = 24138, - [SMALL_STATE(1116)] = 24146, - [SMALL_STATE(1117)] = 24154, - [SMALL_STATE(1118)] = 24162, - [SMALL_STATE(1119)] = 24170, - [SMALL_STATE(1120)] = 24178, - [SMALL_STATE(1121)] = 24186, - [SMALL_STATE(1122)] = 24194, - [SMALL_STATE(1123)] = 24202, - [SMALL_STATE(1124)] = 24210, - [SMALL_STATE(1125)] = 24218, - [SMALL_STATE(1126)] = 24226, - [SMALL_STATE(1127)] = 24234, - [SMALL_STATE(1128)] = 24242, - [SMALL_STATE(1129)] = 24250, - [SMALL_STATE(1130)] = 24258, - [SMALL_STATE(1131)] = 24266, - [SMALL_STATE(1132)] = 24274, - [SMALL_STATE(1133)] = 24282, - [SMALL_STATE(1134)] = 24290, - [SMALL_STATE(1135)] = 24298, - [SMALL_STATE(1136)] = 24306, - [SMALL_STATE(1137)] = 24314, - [SMALL_STATE(1138)] = 24322, - [SMALL_STATE(1139)] = 24330, - [SMALL_STATE(1140)] = 24338, - [SMALL_STATE(1141)] = 24346, - [SMALL_STATE(1142)] = 24354, - [SMALL_STATE(1143)] = 24362, - [SMALL_STATE(1144)] = 24370, - [SMALL_STATE(1145)] = 24378, - [SMALL_STATE(1146)] = 24386, - [SMALL_STATE(1147)] = 24394, - [SMALL_STATE(1148)] = 24402, - [SMALL_STATE(1149)] = 24410, - [SMALL_STATE(1150)] = 24418, - [SMALL_STATE(1151)] = 24426, - [SMALL_STATE(1152)] = 24434, - [SMALL_STATE(1153)] = 24442, - [SMALL_STATE(1154)] = 24450, - [SMALL_STATE(1155)] = 24458, - [SMALL_STATE(1156)] = 24466, - [SMALL_STATE(1157)] = 24474, - [SMALL_STATE(1158)] = 24482, - [SMALL_STATE(1159)] = 24490, - [SMALL_STATE(1160)] = 24498, - [SMALL_STATE(1161)] = 24506, - [SMALL_STATE(1162)] = 24514, - [SMALL_STATE(1163)] = 24522, - [SMALL_STATE(1164)] = 24530, - [SMALL_STATE(1165)] = 24538, - [SMALL_STATE(1166)] = 24546, + [SMALL_STATE(346)] = 0, + [SMALL_STATE(347)] = 118, + [SMALL_STATE(348)] = 236, + [SMALL_STATE(349)] = 354, + [SMALL_STATE(350)] = 472, + [SMALL_STATE(351)] = 590, + [SMALL_STATE(352)] = 673, + [SMALL_STATE(353)] = 776, + [SMALL_STATE(354)] = 879, + [SMALL_STATE(355)] = 982, + [SMALL_STATE(356)] = 1072, + [SMALL_STATE(357)] = 1163, + [SMALL_STATE(358)] = 1254, + [SMALL_STATE(359)] = 1335, + [SMALL_STATE(360)] = 1416, + [SMALL_STATE(361)] = 1507, + [SMALL_STATE(362)] = 1567, + [SMALL_STATE(363)] = 1627, + [SMALL_STATE(364)] = 1687, + [SMALL_STATE(365)] = 1753, + [SMALL_STATE(366)] = 1813, + [SMALL_STATE(367)] = 1884, + [SMALL_STATE(368)] = 1938, + [SMALL_STATE(369)] = 1992, + [SMALL_STATE(370)] = 2066, + [SMALL_STATE(371)] = 2120, + [SMALL_STATE(372)] = 2177, + [SMALL_STATE(373)] = 2250, + [SMALL_STATE(374)] = 2314, + [SMALL_STATE(375)] = 2376, + [SMALL_STATE(376)] = 2439, + [SMALL_STATE(377)] = 2502, + [SMALL_STATE(378)] = 2565, + [SMALL_STATE(379)] = 2628, + [SMALL_STATE(380)] = 2678, + [SMALL_STATE(381)] = 2728, + [SMALL_STATE(382)] = 2782, + [SMALL_STATE(383)] = 2864, + [SMALL_STATE(384)] = 2921, + [SMALL_STATE(385)] = 2977, + [SMALL_STATE(386)] = 3051, + [SMALL_STATE(387)] = 3107, + [SMALL_STATE(388)] = 3164, + [SMALL_STATE(389)] = 3221, + [SMALL_STATE(390)] = 3294, + [SMALL_STATE(391)] = 3365, + [SMALL_STATE(392)] = 3417, + [SMALL_STATE(393)] = 3469, + [SMALL_STATE(394)] = 3515, + [SMALL_STATE(395)] = 3561, + [SMALL_STATE(396)] = 3609, + [SMALL_STATE(397)] = 3661, + [SMALL_STATE(398)] = 3709, + [SMALL_STATE(399)] = 3757, + [SMALL_STATE(400)] = 3809, + [SMALL_STATE(401)] = 3857, + [SMALL_STATE(402)] = 3900, + [SMALL_STATE(403)] = 3943, + [SMALL_STATE(404)] = 3986, + [SMALL_STATE(405)] = 4035, + [SMALL_STATE(406)] = 4078, + [SMALL_STATE(407)] = 4121, + [SMALL_STATE(408)] = 4164, + [SMALL_STATE(409)] = 4207, + [SMALL_STATE(410)] = 4250, + [SMALL_STATE(411)] = 4293, + [SMALL_STATE(412)] = 4336, + [SMALL_STATE(413)] = 4379, + [SMALL_STATE(414)] = 4422, + [SMALL_STATE(415)] = 4465, + [SMALL_STATE(416)] = 4508, + [SMALL_STATE(417)] = 4551, + [SMALL_STATE(418)] = 4594, + [SMALL_STATE(419)] = 4637, + [SMALL_STATE(420)] = 4680, + [SMALL_STATE(421)] = 4723, + [SMALL_STATE(422)] = 4766, + [SMALL_STATE(423)] = 4809, + [SMALL_STATE(424)] = 4852, + [SMALL_STATE(425)] = 4895, + [SMALL_STATE(426)] = 4938, + [SMALL_STATE(427)] = 4981, + [SMALL_STATE(428)] = 5024, + [SMALL_STATE(429)] = 5073, + [SMALL_STATE(430)] = 5116, + [SMALL_STATE(431)] = 5159, + [SMALL_STATE(432)] = 5201, + [SMALL_STATE(433)] = 5243, + [SMALL_STATE(434)] = 5285, + [SMALL_STATE(435)] = 5327, + [SMALL_STATE(436)] = 5369, + [SMALL_STATE(437)] = 5411, + [SMALL_STATE(438)] = 5459, + [SMALL_STATE(439)] = 5501, + [SMALL_STATE(440)] = 5543, + [SMALL_STATE(441)] = 5585, + [SMALL_STATE(442)] = 5627, + [SMALL_STATE(443)] = 5673, + [SMALL_STATE(444)] = 5715, + [SMALL_STATE(445)] = 5757, + [SMALL_STATE(446)] = 5799, + [SMALL_STATE(447)] = 5841, + [SMALL_STATE(448)] = 5883, + [SMALL_STATE(449)] = 5925, + [SMALL_STATE(450)] = 5967, + [SMALL_STATE(451)] = 6009, + [SMALL_STATE(452)] = 6051, + [SMALL_STATE(453)] = 6095, + [SMALL_STATE(454)] = 6137, + [SMALL_STATE(455)] = 6179, + [SMALL_STATE(456)] = 6221, + [SMALL_STATE(457)] = 6263, + [SMALL_STATE(458)] = 6305, + [SMALL_STATE(459)] = 6347, + [SMALL_STATE(460)] = 6389, + [SMALL_STATE(461)] = 6431, + [SMALL_STATE(462)] = 6473, + [SMALL_STATE(463)] = 6515, + [SMALL_STATE(464)] = 6557, + [SMALL_STATE(465)] = 6599, + [SMALL_STATE(466)] = 6641, + [SMALL_STATE(467)] = 6683, + [SMALL_STATE(468)] = 6725, + [SMALL_STATE(469)] = 6767, + [SMALL_STATE(470)] = 6809, + [SMALL_STATE(471)] = 6851, + [SMALL_STATE(472)] = 6893, + [SMALL_STATE(473)] = 6935, + [SMALL_STATE(474)] = 6977, + [SMALL_STATE(475)] = 7019, + [SMALL_STATE(476)] = 7061, + [SMALL_STATE(477)] = 7102, + [SMALL_STATE(478)] = 7143, + [SMALL_STATE(479)] = 7184, + [SMALL_STATE(480)] = 7225, + [SMALL_STATE(481)] = 7266, + [SMALL_STATE(482)] = 7311, + [SMALL_STATE(483)] = 7352, + [SMALL_STATE(484)] = 7396, + [SMALL_STATE(485)] = 7435, + [SMALL_STATE(486)] = 7474, + [SMALL_STATE(487)] = 7513, + [SMALL_STATE(488)] = 7552, + [SMALL_STATE(489)] = 7591, + [SMALL_STATE(490)] = 7630, + [SMALL_STATE(491)] = 7669, + [SMALL_STATE(492)] = 7708, + [SMALL_STATE(493)] = 7747, + [SMALL_STATE(494)] = 7786, + [SMALL_STATE(495)] = 7827, + [SMALL_STATE(496)] = 7868, + [SMALL_STATE(497)] = 7907, + [SMALL_STATE(498)] = 7946, + [SMALL_STATE(499)] = 7985, + [SMALL_STATE(500)] = 8024, + [SMALL_STATE(501)] = 8063, + [SMALL_STATE(502)] = 8102, + [SMALL_STATE(503)] = 8141, + [SMALL_STATE(504)] = 8180, + [SMALL_STATE(505)] = 8221, + [SMALL_STATE(506)] = 8260, + [SMALL_STATE(507)] = 8304, + [SMALL_STATE(508)] = 8348, + [SMALL_STATE(509)] = 8404, + [SMALL_STATE(510)] = 8454, + [SMALL_STATE(511)] = 8512, + [SMALL_STATE(512)] = 8580, + [SMALL_STATE(513)] = 8648, + [SMALL_STATE(514)] = 8716, + [SMALL_STATE(515)] = 8762, + [SMALL_STATE(516)] = 8806, + [SMALL_STATE(517)] = 8866, + [SMALL_STATE(518)] = 8928, + [SMALL_STATE(519)] = 8972, + [SMALL_STATE(520)] = 9036, + [SMALL_STATE(521)] = 9098, + [SMALL_STATE(522)] = 9142, + [SMALL_STATE(523)] = 9184, + [SMALL_STATE(524)] = 9252, + [SMALL_STATE(525)] = 9320, + [SMALL_STATE(526)] = 9357, + [SMALL_STATE(527)] = 9394, + [SMALL_STATE(528)] = 9436, + [SMALL_STATE(529)] = 9480, + [SMALL_STATE(530)] = 9524, + [SMALL_STATE(531)] = 9594, + [SMALL_STATE(532)] = 9660, + [SMALL_STATE(533)] = 9719, + [SMALL_STATE(534)] = 9766, + [SMALL_STATE(535)] = 9835, + [SMALL_STATE(536)] = 9904, + [SMALL_STATE(537)] = 9973, + [SMALL_STATE(538)] = 10042, + [SMALL_STATE(539)] = 10111, + [SMALL_STATE(540)] = 10180, + [SMALL_STATE(541)] = 10249, + [SMALL_STATE(542)] = 10318, + [SMALL_STATE(543)] = 10387, + [SMALL_STATE(544)] = 10456, + [SMALL_STATE(545)] = 10491, + [SMALL_STATE(546)] = 10526, + [SMALL_STATE(547)] = 10591, + [SMALL_STATE(548)] = 10656, + [SMALL_STATE(549)] = 10721, + [SMALL_STATE(550)] = 10786, + [SMALL_STATE(551)] = 10855, + [SMALL_STATE(552)] = 10890, + [SMALL_STATE(553)] = 10927, + [SMALL_STATE(554)] = 10982, + [SMALL_STATE(555)] = 11035, + [SMALL_STATE(556)] = 11078, + [SMALL_STATE(557)] = 11131, + [SMALL_STATE(558)] = 11190, + [SMALL_STATE(559)] = 11251, + [SMALL_STATE(560)] = 11292, + [SMALL_STATE(561)] = 11361, + [SMALL_STATE(562)] = 11418, + [SMALL_STATE(563)] = 11487, + [SMALL_STATE(564)] = 11556, + [SMALL_STATE(565)] = 11625, + [SMALL_STATE(566)] = 11690, + [SMALL_STATE(567)] = 11725, + [SMALL_STATE(568)] = 11794, + [SMALL_STATE(569)] = 11829, + [SMALL_STATE(570)] = 11864, + [SMALL_STATE(571)] = 11933, + [SMALL_STATE(572)] = 11992, + [SMALL_STATE(573)] = 12027, + [SMALL_STATE(574)] = 12096, + [SMALL_STATE(575)] = 12165, + [SMALL_STATE(576)] = 12234, + [SMALL_STATE(577)] = 12303, + [SMALL_STATE(578)] = 12338, + [SMALL_STATE(579)] = 12403, + [SMALL_STATE(580)] = 12468, + [SMALL_STATE(581)] = 12503, + [SMALL_STATE(582)] = 12568, + [SMALL_STATE(583)] = 12627, + [SMALL_STATE(584)] = 12683, + [SMALL_STATE(585)] = 12747, + [SMALL_STATE(586)] = 12811, + [SMALL_STATE(587)] = 12877, + [SMALL_STATE(588)] = 12915, + [SMALL_STATE(589)] = 12979, + [SMALL_STATE(590)] = 13043, + [SMALL_STATE(591)] = 13107, + [SMALL_STATE(592)] = 13157, + [SMALL_STATE(593)] = 13207, + [SMALL_STATE(594)] = 13271, + [SMALL_STATE(595)] = 13335, + [SMALL_STATE(596)] = 13398, + [SMALL_STATE(597)] = 13453, + [SMALL_STATE(598)] = 13516, + [SMALL_STATE(599)] = 13579, + [SMALL_STATE(600)] = 13642, + [SMALL_STATE(601)] = 13705, + [SMALL_STATE(602)] = 13768, + [SMALL_STATE(603)] = 13831, + [SMALL_STATE(604)] = 13894, + [SMALL_STATE(605)] = 13957, + [SMALL_STATE(606)] = 14012, + [SMALL_STATE(607)] = 14075, + [SMALL_STATE(608)] = 14138, + [SMALL_STATE(609)] = 14201, + [SMALL_STATE(610)] = 14264, + [SMALL_STATE(611)] = 14327, + [SMALL_STATE(612)] = 14390, + [SMALL_STATE(613)] = 14453, + [SMALL_STATE(614)] = 14508, + [SMALL_STATE(615)] = 14571, + [SMALL_STATE(616)] = 14634, + [SMALL_STATE(617)] = 14697, + [SMALL_STATE(618)] = 14760, + [SMALL_STATE(619)] = 14823, + [SMALL_STATE(620)] = 14878, + [SMALL_STATE(621)] = 14941, + [SMALL_STATE(622)] = 15004, + [SMALL_STATE(623)] = 15056, + [SMALL_STATE(624)] = 15114, + [SMALL_STATE(625)] = 15166, + [SMALL_STATE(626)] = 15218, + [SMALL_STATE(627)] = 15270, + [SMALL_STATE(628)] = 15322, + [SMALL_STATE(629)] = 15374, + [SMALL_STATE(630)] = 15426, + [SMALL_STATE(631)] = 15478, + [SMALL_STATE(632)] = 15509, + [SMALL_STATE(633)] = 15550, + [SMALL_STATE(634)] = 15581, + [SMALL_STATE(635)] = 15618, + [SMALL_STATE(636)] = 15655, + [SMALL_STATE(637)] = 15704, + [SMALL_STATE(638)] = 15752, + [SMALL_STATE(639)] = 15798, + [SMALL_STATE(640)] = 15844, + [SMALL_STATE(641)] = 15890, + [SMALL_STATE(642)] = 15936, + [SMALL_STATE(643)] = 15982, + [SMALL_STATE(644)] = 16030, + [SMALL_STATE(645)] = 16060, + [SMALL_STATE(646)] = 16090, + [SMALL_STATE(647)] = 16136, + [SMALL_STATE(648)] = 16182, + [SMALL_STATE(649)] = 16211, + [SMALL_STATE(650)] = 16240, + [SMALL_STATE(651)] = 16289, + [SMALL_STATE(652)] = 16318, + [SMALL_STATE(653)] = 16353, + [SMALL_STATE(654)] = 16382, + [SMALL_STATE(655)] = 16417, + [SMALL_STATE(656)] = 16466, + [SMALL_STATE(657)] = 16494, + [SMALL_STATE(658)] = 16522, + [SMALL_STATE(659)] = 16564, + [SMALL_STATE(660)] = 16592, + [SMALL_STATE(661)] = 16620, + [SMALL_STATE(662)] = 16662, + [SMALL_STATE(663)] = 16690, + [SMALL_STATE(664)] = 16718, + [SMALL_STATE(665)] = 16746, + [SMALL_STATE(666)] = 16774, + [SMALL_STATE(667)] = 16806, + [SMALL_STATE(668)] = 16834, + [SMALL_STATE(669)] = 16881, + [SMALL_STATE(670)] = 16910, + [SMALL_STATE(671)] = 16937, + [SMALL_STATE(672)] = 16964, + [SMALL_STATE(673)] = 17004, + [SMALL_STATE(674)] = 17038, + [SMALL_STATE(675)] = 17075, + [SMALL_STATE(676)] = 17112, + [SMALL_STATE(677)] = 17157, + [SMALL_STATE(678)] = 17194, + [SMALL_STATE(679)] = 17233, + [SMALL_STATE(680)] = 17266, + [SMALL_STATE(681)] = 17311, + [SMALL_STATE(682)] = 17356, + [SMALL_STATE(683)] = 17393, + [SMALL_STATE(684)] = 17430, + [SMALL_STATE(685)] = 17454, + [SMALL_STATE(686)] = 17496, + [SMALL_STATE(687)] = 17522, + [SMALL_STATE(688)] = 17564, + [SMALL_STATE(689)] = 17606, + [SMALL_STATE(690)] = 17648, + [SMALL_STATE(691)] = 17690, + [SMALL_STATE(692)] = 17732, + [SMALL_STATE(693)] = 17756, + [SMALL_STATE(694)] = 17798, + [SMALL_STATE(695)] = 17840, + [SMALL_STATE(696)] = 17879, + [SMALL_STATE(697)] = 17918, + [SMALL_STATE(698)] = 17957, + [SMALL_STATE(699)] = 17996, + [SMALL_STATE(700)] = 18035, + [SMALL_STATE(701)] = 18074, + [SMALL_STATE(702)] = 18113, + [SMALL_STATE(703)] = 18146, + [SMALL_STATE(704)] = 18182, + [SMALL_STATE(705)] = 18212, + [SMALL_STATE(706)] = 18246, + [SMALL_STATE(707)] = 18280, + [SMALL_STATE(708)] = 18308, + [SMALL_STATE(709)] = 18342, + [SMALL_STATE(710)] = 18378, + [SMALL_STATE(711)] = 18408, + [SMALL_STATE(712)] = 18444, + [SMALL_STATE(713)] = 18478, + [SMALL_STATE(714)] = 18512, + [SMALL_STATE(715)] = 18546, + [SMALL_STATE(716)] = 18582, + [SMALL_STATE(717)] = 18616, + [SMALL_STATE(718)] = 18652, + [SMALL_STATE(719)] = 18688, + [SMALL_STATE(720)] = 18724, + [SMALL_STATE(721)] = 18760, + [SMALL_STATE(722)] = 18796, + [SMALL_STATE(723)] = 18827, + [SMALL_STATE(724)] = 18860, + [SMALL_STATE(725)] = 18891, + [SMALL_STATE(726)] = 18922, + [SMALL_STATE(727)] = 18953, + [SMALL_STATE(728)] = 18984, + [SMALL_STATE(729)] = 19017, + [SMALL_STATE(730)] = 19048, + [SMALL_STATE(731)] = 19079, + [SMALL_STATE(732)] = 19112, + [SMALL_STATE(733)] = 19145, + [SMALL_STATE(734)] = 19178, + [SMALL_STATE(735)] = 19208, + [SMALL_STATE(736)] = 19238, + [SMALL_STATE(737)] = 19266, + [SMALL_STATE(738)] = 19288, + [SMALL_STATE(739)] = 19316, + [SMALL_STATE(740)] = 19348, + [SMALL_STATE(741)] = 19380, + [SMALL_STATE(742)] = 19410, + [SMALL_STATE(743)] = 19445, + [SMALL_STATE(744)] = 19474, + [SMALL_STATE(745)] = 19503, + [SMALL_STATE(746)] = 19530, + [SMALL_STATE(747)] = 19559, + [SMALL_STATE(748)] = 19586, + [SMALL_STATE(749)] = 19621, + [SMALL_STATE(750)] = 19650, + [SMALL_STATE(751)] = 19680, + [SMALL_STATE(752)] = 19710, + [SMALL_STATE(753)] = 19738, + [SMALL_STATE(754)] = 19754, + [SMALL_STATE(755)] = 19783, + [SMALL_STATE(756)] = 19810, + [SMALL_STATE(757)] = 19839, + [SMALL_STATE(758)] = 19868, + [SMALL_STATE(759)] = 19893, + [SMALL_STATE(760)] = 19922, + [SMALL_STATE(761)] = 19946, + [SMALL_STATE(762)] = 19966, + [SMALL_STATE(763)] = 19988, + [SMALL_STATE(764)] = 20010, + [SMALL_STATE(765)] = 20034, + [SMALL_STATE(766)] = 20058, + [SMALL_STATE(767)] = 20078, + [SMALL_STATE(768)] = 20098, + [SMALL_STATE(769)] = 20115, + [SMALL_STATE(770)] = 20132, + [SMALL_STATE(771)] = 20145, + [SMALL_STATE(772)] = 20168, + [SMALL_STATE(773)] = 20181, + [SMALL_STATE(774)] = 20194, + [SMALL_STATE(775)] = 20207, + [SMALL_STATE(776)] = 20220, + [SMALL_STATE(777)] = 20233, + [SMALL_STATE(778)] = 20250, + [SMALL_STATE(779)] = 20267, + [SMALL_STATE(780)] = 20280, + [SMALL_STATE(781)] = 20303, + [SMALL_STATE(782)] = 20316, + [SMALL_STATE(783)] = 20329, + [SMALL_STATE(784)] = 20342, + [SMALL_STATE(785)] = 20355, + [SMALL_STATE(786)] = 20368, + [SMALL_STATE(787)] = 20381, + [SMALL_STATE(788)] = 20394, + [SMALL_STATE(789)] = 20407, + [SMALL_STATE(790)] = 20420, + [SMALL_STATE(791)] = 20437, + [SMALL_STATE(792)] = 20454, + [SMALL_STATE(793)] = 20467, + [SMALL_STATE(794)] = 20490, + [SMALL_STATE(795)] = 20503, + [SMALL_STATE(796)] = 20516, + [SMALL_STATE(797)] = 20529, + [SMALL_STATE(798)] = 20542, + [SMALL_STATE(799)] = 20555, + [SMALL_STATE(800)] = 20576, + [SMALL_STATE(801)] = 20589, + [SMALL_STATE(802)] = 20606, + [SMALL_STATE(803)] = 20619, + [SMALL_STATE(804)] = 20632, + [SMALL_STATE(805)] = 20645, + [SMALL_STATE(806)] = 20658, + [SMALL_STATE(807)] = 20681, + [SMALL_STATE(808)] = 20698, + [SMALL_STATE(809)] = 20711, + [SMALL_STATE(810)] = 20734, + [SMALL_STATE(811)] = 20747, + [SMALL_STATE(812)] = 20764, + [SMALL_STATE(813)] = 20777, + [SMALL_STATE(814)] = 20800, + [SMALL_STATE(815)] = 20821, + [SMALL_STATE(816)] = 20838, + [SMALL_STATE(817)] = 20851, + [SMALL_STATE(818)] = 20864, + [SMALL_STATE(819)] = 20881, + [SMALL_STATE(820)] = 20894, + [SMALL_STATE(821)] = 20907, + [SMALL_STATE(822)] = 20920, + [SMALL_STATE(823)] = 20941, + [SMALL_STATE(824)] = 20954, + [SMALL_STATE(825)] = 20967, + [SMALL_STATE(826)] = 20980, + [SMALL_STATE(827)] = 20993, + [SMALL_STATE(828)] = 21010, + [SMALL_STATE(829)] = 21023, + [SMALL_STATE(830)] = 21040, + [SMALL_STATE(831)] = 21057, + [SMALL_STATE(832)] = 21070, + [SMALL_STATE(833)] = 21087, + [SMALL_STATE(834)] = 21103, + [SMALL_STATE(835)] = 21123, + [SMALL_STATE(836)] = 21143, + [SMALL_STATE(837)] = 21161, + [SMALL_STATE(838)] = 21177, + [SMALL_STATE(839)] = 21195, + [SMALL_STATE(840)] = 21207, + [SMALL_STATE(841)] = 21225, + [SMALL_STATE(842)] = 21237, + [SMALL_STATE(843)] = 21257, + [SMALL_STATE(844)] = 21275, + [SMALL_STATE(845)] = 21287, + [SMALL_STATE(846)] = 21307, + [SMALL_STATE(847)] = 21323, + [SMALL_STATE(848)] = 21341, + [SMALL_STATE(849)] = 21353, + [SMALL_STATE(850)] = 21369, + [SMALL_STATE(851)] = 21389, + [SMALL_STATE(852)] = 21405, + [SMALL_STATE(853)] = 21425, + [SMALL_STATE(854)] = 21441, + [SMALL_STATE(855)] = 21457, + [SMALL_STATE(856)] = 21473, + [SMALL_STATE(857)] = 21487, + [SMALL_STATE(858)] = 21502, + [SMALL_STATE(859)] = 21513, + [SMALL_STATE(860)] = 21528, + [SMALL_STATE(861)] = 21543, + [SMALL_STATE(862)] = 21560, + [SMALL_STATE(863)] = 21575, + [SMALL_STATE(864)] = 21590, + [SMALL_STATE(865)] = 21605, + [SMALL_STATE(866)] = 21622, + [SMALL_STATE(867)] = 21633, + [SMALL_STATE(868)] = 21648, + [SMALL_STATE(869)] = 21665, + [SMALL_STATE(870)] = 21680, + [SMALL_STATE(871)] = 21695, + [SMALL_STATE(872)] = 21710, + [SMALL_STATE(873)] = 21725, + [SMALL_STATE(874)] = 21740, + [SMALL_STATE(875)] = 21757, + [SMALL_STATE(876)] = 21772, + [SMALL_STATE(877)] = 21787, + [SMALL_STATE(878)] = 21804, + [SMALL_STATE(879)] = 21815, + [SMALL_STATE(880)] = 21830, + [SMALL_STATE(881)] = 21845, + [SMALL_STATE(882)] = 21862, + [SMALL_STATE(883)] = 21877, + [SMALL_STATE(884)] = 21894, + [SMALL_STATE(885)] = 21911, + [SMALL_STATE(886)] = 21928, + [SMALL_STATE(887)] = 21945, + [SMALL_STATE(888)] = 21962, + [SMALL_STATE(889)] = 21979, + [SMALL_STATE(890)] = 21996, + [SMALL_STATE(891)] = 22013, + [SMALL_STATE(892)] = 22030, + [SMALL_STATE(893)] = 22047, + [SMALL_STATE(894)] = 22064, + [SMALL_STATE(895)] = 22081, + [SMALL_STATE(896)] = 22098, + [SMALL_STATE(897)] = 22113, + [SMALL_STATE(898)] = 22128, + [SMALL_STATE(899)] = 22145, + [SMALL_STATE(900)] = 22160, + [SMALL_STATE(901)] = 22175, + [SMALL_STATE(902)] = 22192, + [SMALL_STATE(903)] = 22207, + [SMALL_STATE(904)] = 22220, + [SMALL_STATE(905)] = 22235, + [SMALL_STATE(906)] = 22246, + [SMALL_STATE(907)] = 22261, + [SMALL_STATE(908)] = 22276, + [SMALL_STATE(909)] = 22293, + [SMALL_STATE(910)] = 22308, + [SMALL_STATE(911)] = 22323, + [SMALL_STATE(912)] = 22340, + [SMALL_STATE(913)] = 22355, + [SMALL_STATE(914)] = 22370, + [SMALL_STATE(915)] = 22387, + [SMALL_STATE(916)] = 22402, + [SMALL_STATE(917)] = 22419, + [SMALL_STATE(918)] = 22436, + [SMALL_STATE(919)] = 22451, + [SMALL_STATE(920)] = 22466, + [SMALL_STATE(921)] = 22481, + [SMALL_STATE(922)] = 22498, + [SMALL_STATE(923)] = 22513, + [SMALL_STATE(924)] = 22528, + [SMALL_STATE(925)] = 22543, + [SMALL_STATE(926)] = 22558, + [SMALL_STATE(927)] = 22575, + [SMALL_STATE(928)] = 22590, + [SMALL_STATE(929)] = 22607, + [SMALL_STATE(930)] = 22622, + [SMALL_STATE(931)] = 22637, + [SMALL_STATE(932)] = 22652, + [SMALL_STATE(933)] = 22663, + [SMALL_STATE(934)] = 22680, + [SMALL_STATE(935)] = 22697, + [SMALL_STATE(936)] = 22712, + [SMALL_STATE(937)] = 22729, + [SMALL_STATE(938)] = 22744, + [SMALL_STATE(939)] = 22759, + [SMALL_STATE(940)] = 22769, + [SMALL_STATE(941)] = 22783, + [SMALL_STATE(942)] = 22797, + [SMALL_STATE(943)] = 22811, + [SMALL_STATE(944)] = 22825, + [SMALL_STATE(945)] = 22839, + [SMALL_STATE(946)] = 22853, + [SMALL_STATE(947)] = 22867, + [SMALL_STATE(948)] = 22881, + [SMALL_STATE(949)] = 22895, + [SMALL_STATE(950)] = 22909, + [SMALL_STATE(951)] = 22923, + [SMALL_STATE(952)] = 22937, + [SMALL_STATE(953)] = 22951, + [SMALL_STATE(954)] = 22965, + [SMALL_STATE(955)] = 22979, + [SMALL_STATE(956)] = 22993, + [SMALL_STATE(957)] = 23007, + [SMALL_STATE(958)] = 23021, + [SMALL_STATE(959)] = 23035, + [SMALL_STATE(960)] = 23049, + [SMALL_STATE(961)] = 23063, + [SMALL_STATE(962)] = 23077, + [SMALL_STATE(963)] = 23091, + [SMALL_STATE(964)] = 23105, + [SMALL_STATE(965)] = 23119, + [SMALL_STATE(966)] = 23133, + [SMALL_STATE(967)] = 23147, + [SMALL_STATE(968)] = 23161, + [SMALL_STATE(969)] = 23171, + [SMALL_STATE(970)] = 23185, + [SMALL_STATE(971)] = 23199, + [SMALL_STATE(972)] = 23213, + [SMALL_STATE(973)] = 23227, + [SMALL_STATE(974)] = 23241, + [SMALL_STATE(975)] = 23255, + [SMALL_STATE(976)] = 23269, + [SMALL_STATE(977)] = 23283, + [SMALL_STATE(978)] = 23297, + [SMALL_STATE(979)] = 23311, + [SMALL_STATE(980)] = 23325, + [SMALL_STATE(981)] = 23339, + [SMALL_STATE(982)] = 23353, + [SMALL_STATE(983)] = 23367, + [SMALL_STATE(984)] = 23379, + [SMALL_STATE(985)] = 23393, + [SMALL_STATE(986)] = 23407, + [SMALL_STATE(987)] = 23421, + [SMALL_STATE(988)] = 23435, + [SMALL_STATE(989)] = 23447, + [SMALL_STATE(990)] = 23459, + [SMALL_STATE(991)] = 23473, + [SMALL_STATE(992)] = 23487, + [SMALL_STATE(993)] = 23501, + [SMALL_STATE(994)] = 23515, + [SMALL_STATE(995)] = 23525, + [SMALL_STATE(996)] = 23539, + [SMALL_STATE(997)] = 23553, + [SMALL_STATE(998)] = 23563, + [SMALL_STATE(999)] = 23573, + [SMALL_STATE(1000)] = 23585, + [SMALL_STATE(1001)] = 23597, + [SMALL_STATE(1002)] = 23611, + [SMALL_STATE(1003)] = 23625, + [SMALL_STATE(1004)] = 23635, + [SMALL_STATE(1005)] = 23649, + [SMALL_STATE(1006)] = 23659, + [SMALL_STATE(1007)] = 23673, + [SMALL_STATE(1008)] = 23687, + [SMALL_STATE(1009)] = 23697, + [SMALL_STATE(1010)] = 23711, + [SMALL_STATE(1011)] = 23725, + [SMALL_STATE(1012)] = 23739, + [SMALL_STATE(1013)] = 23753, + [SMALL_STATE(1014)] = 23767, + [SMALL_STATE(1015)] = 23781, + [SMALL_STATE(1016)] = 23795, + [SMALL_STATE(1017)] = 23809, + [SMALL_STATE(1018)] = 23823, + [SMALL_STATE(1019)] = 23837, + [SMALL_STATE(1020)] = 23847, + [SMALL_STATE(1021)] = 23861, + [SMALL_STATE(1022)] = 23875, + [SMALL_STATE(1023)] = 23889, + [SMALL_STATE(1024)] = 23903, + [SMALL_STATE(1025)] = 23913, + [SMALL_STATE(1026)] = 23927, + [SMALL_STATE(1027)] = 23941, + [SMALL_STATE(1028)] = 23955, + [SMALL_STATE(1029)] = 23969, + [SMALL_STATE(1030)] = 23983, + [SMALL_STATE(1031)] = 23997, + [SMALL_STATE(1032)] = 24009, + [SMALL_STATE(1033)] = 24023, + [SMALL_STATE(1034)] = 24037, + [SMALL_STATE(1035)] = 24051, + [SMALL_STATE(1036)] = 24065, + [SMALL_STATE(1037)] = 24075, + [SMALL_STATE(1038)] = 24089, + [SMALL_STATE(1039)] = 24103, + [SMALL_STATE(1040)] = 24117, + [SMALL_STATE(1041)] = 24131, + [SMALL_STATE(1042)] = 24145, + [SMALL_STATE(1043)] = 24159, + [SMALL_STATE(1044)] = 24173, + [SMALL_STATE(1045)] = 24187, + [SMALL_STATE(1046)] = 24201, + [SMALL_STATE(1047)] = 24215, + [SMALL_STATE(1048)] = 24229, + [SMALL_STATE(1049)] = 24243, + [SMALL_STATE(1050)] = 24257, + [SMALL_STATE(1051)] = 24271, + [SMALL_STATE(1052)] = 24285, + [SMALL_STATE(1053)] = 24294, + [SMALL_STATE(1054)] = 24305, + [SMALL_STATE(1055)] = 24316, + [SMALL_STATE(1056)] = 24325, + [SMALL_STATE(1057)] = 24336, + [SMALL_STATE(1058)] = 24345, + [SMALL_STATE(1059)] = 24356, + [SMALL_STATE(1060)] = 24367, + [SMALL_STATE(1061)] = 24378, + [SMALL_STATE(1062)] = 24389, + [SMALL_STATE(1063)] = 24400, + [SMALL_STATE(1064)] = 24409, + [SMALL_STATE(1065)] = 24418, + [SMALL_STATE(1066)] = 24427, + [SMALL_STATE(1067)] = 24436, + [SMALL_STATE(1068)] = 24447, + [SMALL_STATE(1069)] = 24456, + [SMALL_STATE(1070)] = 24467, + [SMALL_STATE(1071)] = 24478, + [SMALL_STATE(1072)] = 24489, + [SMALL_STATE(1073)] = 24498, + [SMALL_STATE(1074)] = 24507, + [SMALL_STATE(1075)] = 24518, + [SMALL_STATE(1076)] = 24529, + [SMALL_STATE(1077)] = 24540, + [SMALL_STATE(1078)] = 24551, + [SMALL_STATE(1079)] = 24560, + [SMALL_STATE(1080)] = 24571, + [SMALL_STATE(1081)] = 24582, + [SMALL_STATE(1082)] = 24593, + [SMALL_STATE(1083)] = 24602, + [SMALL_STATE(1084)] = 24613, + [SMALL_STATE(1085)] = 24624, + [SMALL_STATE(1086)] = 24635, + [SMALL_STATE(1087)] = 24646, + [SMALL_STATE(1088)] = 24655, + [SMALL_STATE(1089)] = 24666, + [SMALL_STATE(1090)] = 24677, + [SMALL_STATE(1091)] = 24688, + [SMALL_STATE(1092)] = 24697, + [SMALL_STATE(1093)] = 24708, + [SMALL_STATE(1094)] = 24719, + [SMALL_STATE(1095)] = 24730, + [SMALL_STATE(1096)] = 24741, + [SMALL_STATE(1097)] = 24752, + [SMALL_STATE(1098)] = 24761, + [SMALL_STATE(1099)] = 24772, + [SMALL_STATE(1100)] = 24783, + [SMALL_STATE(1101)] = 24794, + [SMALL_STATE(1102)] = 24803, + [SMALL_STATE(1103)] = 24814, + [SMALL_STATE(1104)] = 24825, + [SMALL_STATE(1105)] = 24836, + [SMALL_STATE(1106)] = 24847, + [SMALL_STATE(1107)] = 24858, + [SMALL_STATE(1108)] = 24869, + [SMALL_STATE(1109)] = 24880, + [SMALL_STATE(1110)] = 24889, + [SMALL_STATE(1111)] = 24900, + [SMALL_STATE(1112)] = 24911, + [SMALL_STATE(1113)] = 24922, + [SMALL_STATE(1114)] = 24933, + [SMALL_STATE(1115)] = 24944, + [SMALL_STATE(1116)] = 24953, + [SMALL_STATE(1117)] = 24964, + [SMALL_STATE(1118)] = 24975, + [SMALL_STATE(1119)] = 24986, + [SMALL_STATE(1120)] = 24997, + [SMALL_STATE(1121)] = 25008, + [SMALL_STATE(1122)] = 25017, + [SMALL_STATE(1123)] = 25026, + [SMALL_STATE(1124)] = 25035, + [SMALL_STATE(1125)] = 25046, + [SMALL_STATE(1126)] = 25057, + [SMALL_STATE(1127)] = 25066, + [SMALL_STATE(1128)] = 25075, + [SMALL_STATE(1129)] = 25084, + [SMALL_STATE(1130)] = 25095, + [SMALL_STATE(1131)] = 25104, + [SMALL_STATE(1132)] = 25115, + [SMALL_STATE(1133)] = 25124, + [SMALL_STATE(1134)] = 25135, + [SMALL_STATE(1135)] = 25146, + [SMALL_STATE(1136)] = 25157, + [SMALL_STATE(1137)] = 25168, + [SMALL_STATE(1138)] = 25179, + [SMALL_STATE(1139)] = 25190, + [SMALL_STATE(1140)] = 25201, + [SMALL_STATE(1141)] = 25212, + [SMALL_STATE(1142)] = 25223, + [SMALL_STATE(1143)] = 25234, + [SMALL_STATE(1144)] = 25245, + [SMALL_STATE(1145)] = 25256, + [SMALL_STATE(1146)] = 25267, + [SMALL_STATE(1147)] = 25278, + [SMALL_STATE(1148)] = 25289, + [SMALL_STATE(1149)] = 25300, + [SMALL_STATE(1150)] = 25311, + [SMALL_STATE(1151)] = 25322, + [SMALL_STATE(1152)] = 25333, + [SMALL_STATE(1153)] = 25342, + [SMALL_STATE(1154)] = 25353, + [SMALL_STATE(1155)] = 25362, + [SMALL_STATE(1156)] = 25373, + [SMALL_STATE(1157)] = 25384, + [SMALL_STATE(1158)] = 25393, + [SMALL_STATE(1159)] = 25404, + [SMALL_STATE(1160)] = 25413, + [SMALL_STATE(1161)] = 25424, + [SMALL_STATE(1162)] = 25435, + [SMALL_STATE(1163)] = 25446, + [SMALL_STATE(1164)] = 25457, + [SMALL_STATE(1165)] = 25468, + [SMALL_STATE(1166)] = 25476, + [SMALL_STATE(1167)] = 25484, + [SMALL_STATE(1168)] = 25492, + [SMALL_STATE(1169)] = 25500, + [SMALL_STATE(1170)] = 25508, + [SMALL_STATE(1171)] = 25516, + [SMALL_STATE(1172)] = 25524, + [SMALL_STATE(1173)] = 25532, + [SMALL_STATE(1174)] = 25540, + [SMALL_STATE(1175)] = 25548, + [SMALL_STATE(1176)] = 25556, + [SMALL_STATE(1177)] = 25564, + [SMALL_STATE(1178)] = 25572, + [SMALL_STATE(1179)] = 25580, + [SMALL_STATE(1180)] = 25588, + [SMALL_STATE(1181)] = 25596, + [SMALL_STATE(1182)] = 25604, + [SMALL_STATE(1183)] = 25612, + [SMALL_STATE(1184)] = 25620, + [SMALL_STATE(1185)] = 25628, + [SMALL_STATE(1186)] = 25636, + [SMALL_STATE(1187)] = 25644, + [SMALL_STATE(1188)] = 25652, + [SMALL_STATE(1189)] = 25660, + [SMALL_STATE(1190)] = 25668, + [SMALL_STATE(1191)] = 25676, + [SMALL_STATE(1192)] = 25684, + [SMALL_STATE(1193)] = 25692, + [SMALL_STATE(1194)] = 25700, + [SMALL_STATE(1195)] = 25708, + [SMALL_STATE(1196)] = 25716, + [SMALL_STATE(1197)] = 25724, + [SMALL_STATE(1198)] = 25732, + [SMALL_STATE(1199)] = 25740, + [SMALL_STATE(1200)] = 25748, + [SMALL_STATE(1201)] = 25756, + [SMALL_STATE(1202)] = 25764, + [SMALL_STATE(1203)] = 25772, + [SMALL_STATE(1204)] = 25780, + [SMALL_STATE(1205)] = 25788, + [SMALL_STATE(1206)] = 25796, + [SMALL_STATE(1207)] = 25804, + [SMALL_STATE(1208)] = 25812, + [SMALL_STATE(1209)] = 25820, + [SMALL_STATE(1210)] = 25828, + [SMALL_STATE(1211)] = 25836, + [SMALL_STATE(1212)] = 25844, + [SMALL_STATE(1213)] = 25852, + [SMALL_STATE(1214)] = 25860, + [SMALL_STATE(1215)] = 25868, + [SMALL_STATE(1216)] = 25876, + [SMALL_STATE(1217)] = 25884, + [SMALL_STATE(1218)] = 25892, + [SMALL_STATE(1219)] = 25900, + [SMALL_STATE(1220)] = 25908, + [SMALL_STATE(1221)] = 25916, + [SMALL_STATE(1222)] = 25924, + [SMALL_STATE(1223)] = 25932, + [SMALL_STATE(1224)] = 25940, + [SMALL_STATE(1225)] = 25948, + [SMALL_STATE(1226)] = 25956, + [SMALL_STATE(1227)] = 25964, + [SMALL_STATE(1228)] = 25972, + [SMALL_STATE(1229)] = 25980, + [SMALL_STATE(1230)] = 25988, + [SMALL_STATE(1231)] = 25996, + [SMALL_STATE(1232)] = 26004, + [SMALL_STATE(1233)] = 26012, + [SMALL_STATE(1234)] = 26020, + [SMALL_STATE(1235)] = 26028, + [SMALL_STATE(1236)] = 26036, + [SMALL_STATE(1237)] = 26044, + [SMALL_STATE(1238)] = 26052, + [SMALL_STATE(1239)] = 26060, + [SMALL_STATE(1240)] = 26068, + [SMALL_STATE(1241)] = 26076, + [SMALL_STATE(1242)] = 26084, + [SMALL_STATE(1243)] = 26092, + [SMALL_STATE(1244)] = 26100, + [SMALL_STATE(1245)] = 26108, + [SMALL_STATE(1246)] = 26116, + [SMALL_STATE(1247)] = 26124, + [SMALL_STATE(1248)] = 26132, + [SMALL_STATE(1249)] = 26140, + [SMALL_STATE(1250)] = 26148, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -54425,1436 +61132,1489 @@ 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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(309), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(410), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(410), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(54), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(238), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(238), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(266), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(575), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1099), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(975), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(358), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(449), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(449), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(84), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(284), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(284), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(285), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(637), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1243), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1112), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(352), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(203), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(267), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(27), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(978), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(980), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(981), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(231), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(288), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(435), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(286), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(847), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(985), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1158), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(864), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(326), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(319), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(838), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(778), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1154), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(352), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1153), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1147), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(595), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(597), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(605), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(390), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1001), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(399), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(197), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(71), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1105), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1104), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1102), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(263), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(324), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(483), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(331), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(861), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1094), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1236), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(862), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(373), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(366), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(863), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(843), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1232), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(399), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1228), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1224), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(657), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(667), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(671), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(436), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1056), [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1101), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 168), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 168), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 96), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 96), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 86), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 86), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 61), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 61), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 61), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 61), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 61), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 61), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 120), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 120), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 169), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 169), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 119), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 119), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 63), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 63), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 103), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 103), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 104), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 104), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 105), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 105), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 151), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 151), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 149), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 149), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 105), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 105), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 57), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 57), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 189), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 189), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 54), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 54), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 118), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 118), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 117), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 117), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 142), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 142), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 138), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 138), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 167), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 167), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 141), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 141), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 84), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 84), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 85), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 85), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 86), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 86), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 87), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 87), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 133), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 133), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 56), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 56), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 165), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 165), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 166), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 166), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 224), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 224), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 62), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 62), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 177), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 177), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 178), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 178), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 179), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 179), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 109), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 109), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 108), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 108), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 62), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 62), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 91), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 91), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 192), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 192), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 193), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 193), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 194), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 194), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 195), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 195), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 196), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 196), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 197), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 197), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 217), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 217), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 218), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 218), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 219), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 219), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 159), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 159), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 90), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 90), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(246), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(993), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 68), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 68), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 62), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 62), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 176), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 176), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 123), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 123), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 175), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 175), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 174), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 174), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 60), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 60), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 124), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 124), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 190), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 190), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 171), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 171), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 223), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 223), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 216), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 216), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(676), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(694), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1099), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(12), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(352), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(300), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(864), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(398), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1154), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(352), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1164), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1153), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1147), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(595), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(597), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(605), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(520), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1057] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(700), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(585), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(694), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1099), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(352), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(307), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(864), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1154), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(352), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1153), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1147), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(595), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(597), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(605), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1117] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1084), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1123] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(700), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 99), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 99), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 98), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 98), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(585), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1099), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(352), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(864), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(352), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1153), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1147), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(595), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(597), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(605), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(179), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 67), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 67), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 52), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 52), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 58), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 58), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(284), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(796), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1122), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(796), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(351), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(864), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(351), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(509), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 170), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 170), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 115), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 115), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 80), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 80), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 110), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 110), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 68), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 68), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 145), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 145), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(509), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 144), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 144), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 83), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 83), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 111), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 111), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 112), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 112), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 82), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 82), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 101), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 101), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 163), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 163), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 72), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 72), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 65), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 65), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 66), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 66), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 100), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 100), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 134), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 134), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 135), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 135), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 64), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 64), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 164), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 164), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 77), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 77), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 76), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 76), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 75), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 75), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 74), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 74), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 68), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 68), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 73), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 73), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 214), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 214), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 102), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(455), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(796), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(455), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 215), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 215), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 212), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 212), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 220), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 220), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 221), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 221), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 222), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 222), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 225), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 225), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 188), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 188), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1093), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 71), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 154), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 150), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 121), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 92), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(789), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(688), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(809), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(810), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(811), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(813), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(759), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 116), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 79), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 128), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 128), SHIFT_REPEAT(772), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(246), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(993), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(257), - [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(993), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 187), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 186), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 185), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 184), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 183), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 182), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 181), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 180), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 183), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 182), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 181), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 180), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 200), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 202), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 203), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 204), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 200), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 202), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 203), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 204), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 207), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 209), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 210), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 211), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(796), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 161), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 160), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 130), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 129), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 130), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 126), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 127), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 131), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 43), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 129), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 94), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(615), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 37), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(563), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(569), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 81), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 114), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(556), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(287), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 78), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 146), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(250), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(340), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(137), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(776), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 70), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), SHIFT_REPEAT(560), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 155), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 155), SHIFT_REPEAT(282), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1083), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(529), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 40), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 148), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 147), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 95), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 162), - [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 208), SHIFT_REPEAT(836), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 208), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 206), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 205), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(162), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(695), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 201), SHIFT_REPEAT(801), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 201), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(298), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 199), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 198), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 132), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 93), SHIFT_REPEAT(271), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 93), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1058), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 113), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 146), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 81), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 78), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 69), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 43), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 42), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 79), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 114), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 125), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 152), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 122), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 213), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2964] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1218), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 121), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 121), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 98), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 98), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 107), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 107), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 141), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 141), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 142), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 142), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 64), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 64), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 166), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 166), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 87), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 87), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 167), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 167), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 168), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 168), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 120), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 120), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 119), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 119), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 169), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 169), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 170), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 170), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 190), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 190), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 85), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 85), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 87), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 87), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 88), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 88), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 150), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 150), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 152), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 152), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 92), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 92), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 219), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 219), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 176), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 176), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 110), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 110), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 177), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 177), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 178), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 178), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 179), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 179), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 30), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 30), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 180), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 180), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 174), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 174), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 125), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 125), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 192), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 192), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 109), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 109), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 193), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 193), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 194), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 194), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 195), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 195), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 160), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 160), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 196), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 196), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 124), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 124), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 197), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 197), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 198), + [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 198), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(335), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1097), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 218), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 218), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 175), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 175), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 220), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 220), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 30), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 30), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 225), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 225), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 30), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 30), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 91), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 91), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 29), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 29), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 69), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 69), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 191), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 191), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 172), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 172), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 217), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 217), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 224), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 224), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(746), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(767), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1243), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(399), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(348), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(862), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(442), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1232), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(399), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1237), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1228), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1224), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(657), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(667), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(671), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(571), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1097] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(815), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(654), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(767), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1243), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(399), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(352), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(862), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1232), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(399), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1228), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1224), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(657), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(667), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(671), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1157] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1165), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1163] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(815), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(654), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1243), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(399), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(862), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1232), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(399), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1228), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1224), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(657), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(667), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(671), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 32), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 32), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 99), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 99), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 100), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 100), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 68), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 68), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(247), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(234), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(318), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(899), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1174), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(899), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(396), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(862), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(396), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 111), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 111), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(582), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 171), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 171), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 84), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 84), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 83), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 83), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 146), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 146), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 112), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 112), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 113), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 113), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 145), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 145), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 81), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 81), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 69), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 69), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(582), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 164), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 164), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 165), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 165), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 101), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 101), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 102), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 102), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 73), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 73), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 67), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 67), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 77), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 77), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 76), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 76), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 75), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 75), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 136), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 136), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 135), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 135), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 65), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 65), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 69), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 69), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 28), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 28), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 222), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 222), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 223), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 223), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 226), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 226), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 189), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 189), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 213), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 213), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 215), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 215), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 221), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 221), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 216), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 216), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 74), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 74), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(507), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(899), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(507), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 103), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1195), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 72), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 151), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 155), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 93), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 122), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(875), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(807), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(758), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(872), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(871), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(870), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(869), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 80), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 117), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(335), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1097), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 129), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 129), SHIFT_REPEAT(841), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 161), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 162), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 127), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 128), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 130), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 131), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 130), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 131), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 187), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 132), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 188), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 211), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 210), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 208), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 205), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 204), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 203), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 201), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 205), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 204), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 203), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 201), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 212), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(282), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1097), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 186), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 185), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 184), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 183), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 182), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 181), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 184), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 183), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 182), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 181), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(899), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 95), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(629), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(675), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(291), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 115), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(332), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 79), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(625), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 82), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 147), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(632), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(200), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(344), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(166), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 163), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(390), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(766), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(630), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 94), SHIFT_REPEAT(296), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 94), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1208), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 199), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 200), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 202), SHIFT_REPEAT(857), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 202), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 149), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 206), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 207), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 209), SHIFT_REPEAT(938), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 209), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 133), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 148), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 156), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 156), SHIFT_REPEAT(306), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(583), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 96), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1110), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 71), SHIFT_REPEAT(847), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 71), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 115), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 126), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 147), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 70), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 80), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 82), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 114), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 79), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 153), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 123), + [3056] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 214), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 0fc1e5cef..677408dcc 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -596,6 +596,33 @@ enum HandSign { (enum_constant name: (identifier))))) +================= +enum declaration inside an interface +================= + +public @interface Foo { + enum HandSign { + SCISSOR, PAPER, STONE + } +} + +--- + + (program + (annotation_type_declaration + (modifiers) + name: (identifier) + body: (annotation_type_body + (enum_declaration + name: (identifier) + body: (enum_body + (enum_constant + name: (identifier)) + (enum_constant + name: (identifier)) + (enum_constant + name: (identifier))))))) + ================= record declaration ================= diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 85ba77191..b0e5b47d2 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -919,6 +919,58 @@ class Test { (decimal_integer_literal))))))))))))) ================================== +switch statement and pre-increment +================================== + +class Test { + int i; + static void foo(boolean bar) { + int ddsd; + switch(bar) { + default: + i = 3; + } + ++ddsd; + } +} + +--- + + (program + (class_declaration + (identifier) + (class_body + (field_declaration + (integral_type) + (variable_declarator + (identifier))) + (method_declaration + (modifiers) + (void_type) + (identifier) + (formal_parameters + (formal_parameter + (boolean_type) + (identifier))) + (block + (local_variable_declaration + (integral_type) + (variable_declarator + (identifier))) + (switch_expression + (parenthesized_expression + (identifier)) + (switch_block + (switch_block_statement_group + (switch_label) + (expression_statement + (assignment_expression + (identifier) + (decimal_integer_literal)))))) + (expression_statement + (update_expression + (identifier)))))))) +================================== type arguments ================================== From 72a9af08f4e501fad1252cc62f71469f247229f1 Mon Sep 17 00:00:00 2001 From: Bruno Mahe Date: Mon, 15 Aug 2022 09:52:49 -0700 Subject: [PATCH 05/23] Small improvements for records and instanceof (#117) * Support for record declarations as a top level declaration * Add support for generics in records * Add support for pattern matching for instanceof * Fix parse errors when 'record' is used as an identifier --- grammar.js | 8 +- .../target/classes/RunJavaParser.class | Bin 1697 -> 0 bytes src/grammar.json | 49 + src/node-types.json | 24 + src/parser.c | 67533 ++++++++-------- src/tree_sitter/parser.h | 1 + test/corpus/declarations.txt | 46 +- test/corpus/expressions.txt | 8 +- 8 files changed, 34369 insertions(+), 33300 deletions(-) delete mode 100644 script/run-javaparser/target/classes/RunJavaParser.class diff --git a/grammar.js b/grammar.js index 7ce644537..b25295bf3 100644 --- a/grammar.js +++ b/grammar.js @@ -227,7 +227,8 @@ module.exports = grammar({ instanceof_expression: $ => prec(PREC.REL, seq( field('left', $.expression), 'instanceof', - field('right', $._type) + field('right', $._type), + field('name', optional(choice($.identifier, $._reserved_identifier))) )), lambda_expression: $ => seq( @@ -635,6 +636,7 @@ module.exports = grammar({ $.package_declaration, $.import_declaration, $.class_declaration, + $.record_declaration, $.interface_declaration, $.annotation_type_declaration, $.enum_declaration, @@ -902,6 +904,7 @@ module.exports = grammar({ optional($.modifiers), 'record', field('name', $.identifier), + optional(field('type_parameters', $.type_parameters)), field('parameters', $.formal_parameters), field('body', $.class_body) ), @@ -1131,7 +1134,8 @@ module.exports = grammar({ _reserved_identifier: $ => alias(choice( 'open', - 'module' + 'module', + 'record' ), $.identifier), this: $ => 'this', diff --git a/script/run-javaparser/target/classes/RunJavaParser.class b/script/run-javaparser/target/classes/RunJavaParser.class deleted file mode 100644 index c724f97840b584ad777b2e86c59005bff8bf5e00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1697 zcmaJ>VN(-V6g@8qF06}aVgRwNAXPVsx~;XvNpyvbvqk$uvi*DNy zxM249sGV4AZWwOs|`Eay}~m6~E~uGdPb= zHC!-o5tjsV5$nUz1hlB4w#RgmXsc-`43`i!Oh*ZqHC!=p71jZ?N9^Zpv9&70tsbjv zIZVBr09!xW?tub^Fv!K{xTfI?gM$3>NEjt2hB1`1?zG#L?NA-32l0lH3iZkuZs4Yd zuMK>IvcOzKhq7vHDJ_LoHI!ac2F-=|OstXhwZ&&Q1!m%W4;v4Rn4*bqRrfgu=gfNL z!l3Jf2 zgTWi_fnuRc;c|CT2#w#DWp}`uUXALDw^w$Ex~ob=nB(qCaccr;wuI}F&mVZQ_{%O~ zq__w1H(yd%;!}MFG(6^ESaU{GBVNukAy#OZymKevRBlW)Jz5 z9ZX-jyo*nEasD0fBx3_Qp}B+km&Z8w$cZRWF$Tjbex!|t89YXnp_J7c)|pzK?=}3y zu%nTGoW@`DQ?<<(({EtzqqvXH?AI_iN;~*!54T?0JGfKY#og@vmr*TKn8s~_s7m96 zas)oj+dNf1$%Lk&gl1`@l6-;<`ki6gPf?E$=J7LA1AgH@xq6}zPvBRcQh4?jnAfOc diff --git a/src/grammar.json b/src/grammar.json index b2b718c51..ade82f646 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2017,6 +2017,31 @@ "type": "SYMBOL", "name": "_type" } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } } ] } @@ -4366,6 +4391,10 @@ "type": "SYMBOL", "name": "class_declaration" }, + { + "type": "SYMBOL", + "name": "record_declaration" + }, { "type": "SYMBOL", "name": "interface_declaration" @@ -5724,6 +5753,22 @@ "name": "identifier" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "SYMBOL", + "name": "type_parameters" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "parameters", @@ -6882,6 +6927,10 @@ { "type": "STRING", "value": "module" + }, + { + "type": "STRING", + "value": "record" } ] }, diff --git a/src/node-types.json b/src/node-types.json index f773c889f..d82ad0123 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -160,6 +160,10 @@ { "type": "package_declaration", "named": true + }, + { + "type": "record_declaration", + "named": true } ] }, @@ -2150,6 +2154,16 @@ } ] }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, "right": { "multiple": false, "required": true, @@ -2896,6 +2910,16 @@ "named": true } ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] } }, "children": { diff --git a/src/parser.c b/src/parser.c index 883f1ce39..506962543 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1147 -#define LARGE_STATE_COUNT 299 +#define STATE_COUNT 1158 +#define LARGE_STATE_COUNT 303 #define SYMBOL_COUNT 291 #define ALIAS_COUNT 1 #define TOKEN_COUNT 130 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 220 +#define PRODUCTION_ID_COUNT 224 enum { sym_identifier = 1, @@ -2215,162 +2215,166 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [57] = {.index = 80, .length = 2}, [58] = {.index = 82, .length = 2}, [59] = {.index = 82, .length = 2}, - [61] = {.index = 84, .length = 2}, - [62] = {.index = 86, .length = 3}, - [63] = {.index = 86, .length = 3}, - [65] = {.index = 89, .length = 2}, - [66] = {.index = 91, .length = 2}, - [67] = {.index = 93, .length = 1}, - [68] = {.index = 94, .length = 2}, - [69] = {.index = 96, .length = 3}, - [71] = {.index = 99, .length = 3}, - [73] = {.index = 102, .length = 2}, - [74] = {.index = 104, .length = 4}, - [75] = {.index = 108, .length = 4}, - [76] = {.index = 112, .length = 5}, - [77] = {.index = 117, .length = 6}, - [78] = {.index = 123, .length = 4}, - [79] = {.index = 127, .length = 4}, - [80] = {.index = 131, .length = 4}, - [81] = {.index = 135, .length = 4}, - [82] = {.index = 139, .length = 4}, - [83] = {.index = 143, .length = 4}, - [84] = {.index = 147, .length = 2}, - [85] = {.index = 149, .length = 3}, - [86] = {.index = 152, .length = 1}, + [61] = {.index = 84, .length = 3}, + [62] = {.index = 87, .length = 2}, + [63] = {.index = 89, .length = 3}, + [64] = {.index = 89, .length = 3}, + [66] = {.index = 92, .length = 3}, + [67] = {.index = 92, .length = 3}, + [68] = {.index = 95, .length = 2}, + [69] = {.index = 97, .length = 2}, + [70] = {.index = 99, .length = 1}, + [71] = {.index = 100, .length = 2}, + [72] = {.index = 102, .length = 3}, + [74] = {.index = 105, .length = 3}, + [76] = {.index = 108, .length = 2}, + [77] = {.index = 110, .length = 4}, + [78] = {.index = 114, .length = 4}, + [79] = {.index = 118, .length = 5}, + [80] = {.index = 123, .length = 6}, + [81] = {.index = 129, .length = 4}, + [82] = {.index = 133, .length = 4}, + [83] = {.index = 137, .length = 4}, + [84] = {.index = 141, .length = 4}, + [85] = {.index = 145, .length = 4}, + [86] = {.index = 149, .length = 4}, [87] = {.index = 153, .length = 2}, - [88] = {.index = 155, .length = 1}, - [89] = {.index = 156, .length = 2}, - [90] = {.index = 158, .length = 3}, - [91] = {.index = 161, .length = 3}, - [92] = {.index = 164, .length = 2}, - [93] = {.index = 164, .length = 2}, - [94] = {.index = 166, .length = 4}, - [95] = {.index = 166, .length = 4}, - [96] = {.index = 170, .length = 3}, - [97] = {.index = 173, .length = 3}, - [98] = {.index = 176, .length = 3}, - [99] = {.index = 179, .length = 3}, - [100] = {.index = 182, .length = 3}, - [101] = {.index = 185, .length = 2}, - [102] = {.index = 187, .length = 2}, - [103] = {.index = 187, .length = 2}, - [104] = {.index = 189, .length = 4}, - [105] = {.index = 193, .length = 5}, - [106] = {.index = 198, .length = 6}, - [107] = {.index = 204, .length = 3}, - [108] = {.index = 207, .length = 5}, - [109] = {.index = 212, .length = 4}, - [110] = {.index = 102, .length = 2}, - [111] = {.index = 216, .length = 5}, - [112] = {.index = 221, .length = 5}, - [113] = {.index = 226, .length = 5}, - [114] = {.index = 231, .length = 5}, - [115] = {.index = 236, .length = 4}, - [116] = {.index = 240, .length = 2}, - [117] = {.index = 242, .length = 1}, - [118] = {.index = 243, .length = 2}, - [119] = {.index = 245, .length = 2}, - [120] = {.index = 247, .length = 1}, - [121] = {.index = 247, .length = 1}, - [122] = {.index = 248, .length = 2}, - [123] = {.index = 250, .length = 1}, - [124] = {.index = 250, .length = 1}, - [125] = {.index = 54, .length = 1}, - [126] = {.index = 251, .length = 3}, - [127] = {.index = 254, .length = 4}, - [128] = {.index = 258, .length = 3}, - [129] = {.index = 258, .length = 3}, - [130] = {.index = 261, .length = 4}, - [131] = {.index = 265, .length = 4}, - [132] = {.index = 269, .length = 4}, - [133] = {.index = 273, .length = 4}, - [134] = {.index = 277, .length = 4}, - [135] = {.index = 281, .length = 4}, - [136] = {.index = 285, .length = 3}, - [137] = {.index = 288, .length = 3}, - [138] = {.index = 291, .length = 3}, - [139] = {.index = 294, .length = 4}, - [140] = {.index = 298, .length = 5}, - [141] = {.index = 303, .length = 3}, - [142] = {.index = 303, .length = 3}, - [143] = {.index = 306, .length = 6}, - [144] = {.index = 312, .length = 4}, - [145] = {.index = 316, .length = 1}, - [146] = {.index = 317, .length = 2}, - [147] = {.index = 319, .length = 2}, - [148] = {.index = 321, .length = 1}, - [149] = {.index = 322, .length = 2}, - [150] = {.index = 324, .length = 2}, - [151] = {.index = 326, .length = 2}, - [152] = {.index = 328, .length = 3}, - [153] = {.index = 331, .length = 3}, - [154] = {.index = 334, .length = 2}, - [155] = {.index = 334, .length = 2}, - [156] = {.index = 336, .length = 3}, - [157] = {.index = 339, .length = 4}, - [158] = {.index = 339, .length = 4}, - [159] = {.index = 343, .length = 5}, - [160] = {.index = 348, .length = 5}, - [161] = {.index = 353, .length = 5}, - [162] = {.index = 358, .length = 5}, - [163] = {.index = 363, .length = 4}, - [164] = {.index = 367, .length = 3}, - [165] = {.index = 370, .length = 2}, - [166] = {.index = 372, .length = 3}, - [167] = {.index = 375, .length = 3}, - [168] = {.index = 378, .length = 3}, - [169] = {.index = 381, .length = 3}, - [170] = {.index = 384, .length = 3}, - [171] = {.index = 387, .length = 5}, - [172] = {.index = 392, .length = 4}, - [173] = {.index = 396, .length = 4}, - [174] = {.index = 400, .length = 2}, - [175] = {.index = 400, .length = 2}, - [176] = {.index = 400, .length = 2}, - [177] = {.index = 400, .length = 2}, - [178] = {.index = 402, .length = 1}, - [179] = {.index = 402, .length = 1}, - [180] = {.index = 402, .length = 1}, - [181] = {.index = 402, .length = 1}, - [182] = {.index = 403, .length = 2}, - [183] = {.index = 405, .length = 6}, - [184] = {.index = 411, .length = 3}, - [185] = {.index = 414, .length = 4}, - [186] = {.index = 418, .length = 4}, - [187] = {.index = 422, .length = 4}, - [188] = {.index = 426, .length = 4}, - [189] = {.index = 430, .length = 4}, - [190] = {.index = 434, .length = 5}, - [191] = {.index = 439, .length = 5}, - [192] = {.index = 444, .length = 1}, - [193] = {.index = 444, .length = 1}, - [194] = {.index = 445, .length = 3}, - [195] = {.index = 448, .length = 2}, - [196] = {.index = 445, .length = 3}, - [197] = {.index = 445, .length = 3}, - [198] = {.index = 445, .length = 3}, - [199] = {.index = 450, .length = 1}, - [200] = {.index = 450, .length = 1}, - [201] = {.index = 451, .length = 2}, - [202] = {.index = 453, .length = 2}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 451, .length = 2}, - [205] = {.index = 451, .length = 2}, - [206] = {.index = 455, .length = 2}, - [207] = {.index = 457, .length = 1}, - [208] = {.index = 458, .length = 3}, - [209] = {.index = 461, .length = 3}, - [210] = {.index = 464, .length = 3}, - [211] = {.index = 467, .length = 5}, - [212] = {.index = 472, .length = 5}, - [213] = {.index = 477, .length = 5}, - [214] = {.index = 482, .length = 3}, - [215] = {.index = 485, .length = 3}, - [216] = {.index = 488, .length = 4}, - [217] = {.index = 492, .length = 4}, - [218] = {.index = 496, .length = 6}, - [219] = {.index = 502, .length = 4}, + [88] = {.index = 155, .length = 3}, + [89] = {.index = 158, .length = 1}, + [90] = {.index = 159, .length = 2}, + [91] = {.index = 161, .length = 1}, + [92] = {.index = 162, .length = 2}, + [93] = {.index = 164, .length = 4}, + [94] = {.index = 168, .length = 3}, + [95] = {.index = 171, .length = 3}, + [96] = {.index = 174, .length = 2}, + [97] = {.index = 174, .length = 2}, + [98] = {.index = 176, .length = 4}, + [99] = {.index = 176, .length = 4}, + [100] = {.index = 180, .length = 3}, + [101] = {.index = 183, .length = 3}, + [102] = {.index = 186, .length = 3}, + [103] = {.index = 189, .length = 3}, + [104] = {.index = 192, .length = 3}, + [105] = {.index = 195, .length = 3}, + [106] = {.index = 198, .length = 2}, + [107] = {.index = 200, .length = 2}, + [108] = {.index = 200, .length = 2}, + [109] = {.index = 202, .length = 4}, + [110] = {.index = 206, .length = 5}, + [111] = {.index = 211, .length = 6}, + [112] = {.index = 217, .length = 3}, + [113] = {.index = 220, .length = 5}, + [114] = {.index = 225, .length = 4}, + [115] = {.index = 108, .length = 2}, + [116] = {.index = 229, .length = 5}, + [117] = {.index = 234, .length = 5}, + [118] = {.index = 239, .length = 5}, + [119] = {.index = 244, .length = 5}, + [120] = {.index = 249, .length = 4}, + [121] = {.index = 253, .length = 2}, + [122] = {.index = 255, .length = 1}, + [123] = {.index = 256, .length = 2}, + [124] = {.index = 258, .length = 2}, + [125] = {.index = 260, .length = 1}, + [126] = {.index = 260, .length = 1}, + [127] = {.index = 261, .length = 2}, + [128] = {.index = 263, .length = 1}, + [129] = {.index = 263, .length = 1}, + [130] = {.index = 54, .length = 1}, + [131] = {.index = 264, .length = 3}, + [132] = {.index = 267, .length = 4}, + [133] = {.index = 271, .length = 3}, + [134] = {.index = 271, .length = 3}, + [135] = {.index = 274, .length = 4}, + [136] = {.index = 278, .length = 4}, + [137] = {.index = 282, .length = 4}, + [138] = {.index = 286, .length = 4}, + [139] = {.index = 290, .length = 4}, + [140] = {.index = 294, .length = 4}, + [141] = {.index = 298, .length = 4}, + [142] = {.index = 302, .length = 3}, + [143] = {.index = 305, .length = 3}, + [144] = {.index = 308, .length = 4}, + [145] = {.index = 312, .length = 5}, + [146] = {.index = 317, .length = 3}, + [147] = {.index = 317, .length = 3}, + [148] = {.index = 320, .length = 6}, + [149] = {.index = 326, .length = 4}, + [150] = {.index = 330, .length = 1}, + [151] = {.index = 331, .length = 2}, + [152] = {.index = 333, .length = 2}, + [153] = {.index = 335, .length = 1}, + [154] = {.index = 336, .length = 2}, + [155] = {.index = 338, .length = 2}, + [156] = {.index = 340, .length = 2}, + [157] = {.index = 342, .length = 3}, + [158] = {.index = 345, .length = 3}, + [159] = {.index = 348, .length = 2}, + [160] = {.index = 348, .length = 2}, + [161] = {.index = 350, .length = 3}, + [162] = {.index = 353, .length = 4}, + [163] = {.index = 353, .length = 4}, + [164] = {.index = 357, .length = 5}, + [165] = {.index = 362, .length = 5}, + [166] = {.index = 367, .length = 5}, + [167] = {.index = 372, .length = 5}, + [168] = {.index = 377, .length = 4}, + [169] = {.index = 381, .length = 2}, + [170] = {.index = 383, .length = 3}, + [171] = {.index = 386, .length = 3}, + [172] = {.index = 389, .length = 3}, + [173] = {.index = 392, .length = 3}, + [174] = {.index = 395, .length = 3}, + [175] = {.index = 398, .length = 5}, + [176] = {.index = 403, .length = 4}, + [177] = {.index = 407, .length = 4}, + [178] = {.index = 411, .length = 2}, + [179] = {.index = 411, .length = 2}, + [180] = {.index = 411, .length = 2}, + [181] = {.index = 411, .length = 2}, + [182] = {.index = 413, .length = 1}, + [183] = {.index = 413, .length = 1}, + [184] = {.index = 413, .length = 1}, + [185] = {.index = 413, .length = 1}, + [186] = {.index = 414, .length = 2}, + [187] = {.index = 416, .length = 6}, + [188] = {.index = 422, .length = 3}, + [189] = {.index = 425, .length = 4}, + [190] = {.index = 429, .length = 4}, + [191] = {.index = 433, .length = 4}, + [192] = {.index = 437, .length = 4}, + [193] = {.index = 441, .length = 4}, + [194] = {.index = 445, .length = 5}, + [195] = {.index = 450, .length = 5}, + [196] = {.index = 455, .length = 1}, + [197] = {.index = 455, .length = 1}, + [198] = {.index = 456, .length = 3}, + [199] = {.index = 459, .length = 2}, + [200] = {.index = 456, .length = 3}, + [201] = {.index = 456, .length = 3}, + [202] = {.index = 456, .length = 3}, + [203] = {.index = 461, .length = 1}, + [204] = {.index = 461, .length = 1}, + [205] = {.index = 462, .length = 2}, + [206] = {.index = 464, .length = 2}, + [207] = {.index = 462, .length = 2}, + [208] = {.index = 462, .length = 2}, + [209] = {.index = 462, .length = 2}, + [210] = {.index = 466, .length = 2}, + [211] = {.index = 468, .length = 1}, + [212] = {.index = 469, .length = 3}, + [213] = {.index = 472, .length = 3}, + [214] = {.index = 475, .length = 3}, + [215] = {.index = 478, .length = 5}, + [216] = {.index = 483, .length = 5}, + [217] = {.index = 488, .length = 5}, + [218] = {.index = 493, .length = 3}, + [219] = {.index = 496, .length = 3}, + [220] = {.index = 499, .length = 4}, + [221] = {.index = 503, .length = 4}, + [222] = {.index = 507, .length = 6}, + [223] = {.index = 513, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2500,551 +2504,565 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [84] = {field_body, 3}, {field_name, 1}, - [86] = + {field_parameters, 2}, + [87] = + {field_body, 3}, + {field_name, 1}, + [89] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [89] = + [92] = + {field_left, 0}, + {field_name, 3}, + {field_right, 2}, + [95] = {field_array, 0}, {field_index, 2}, - [91] = + [97] = {field_declarator, 2, .inherited = true}, {field_type, 1}, - [93] = + [99] = {field_declarator, 1}, - [94] = + [100] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [96] = + [102] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_value, 2}, - [99] = + [105] = {field_type, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [102] = + [108] = {field_name, 0}, {field_parameters, 1}, - [104] = + [110] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [108] = + [114] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0}, - [112] = + [118] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [117] = + [123] = {field_body, 1}, {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [123] = + [129] = {field_body, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [127] = + [133] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_type_parameters, 2}, - [131] = + [137] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_type_parameters, 2}, - [135] = + [141] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_superclass, 2}, - [139] = + [145] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_superclass, 2}, - [143] = + [149] = {field_body, 4}, {field_interfaces, 2}, {field_name, 1}, {field_permits, 3}, - [147] = + [153] = {field_body, 1}, {field_condition, 3}, - [149] = + [155] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [152] = + [158] = {field_init, 1}, - [153] = + [159] = {field_init, 0, .inherited = true}, {field_init, 1, .inherited = true}, - [155] = + [161] = {field_modifiers, 0}, - [156] = + [162] = {field_body, 1}, {field_name, 0}, - [158] = + [164] = {field_body, 4}, {field_name, 1}, + {field_parameters, 3}, {field_type_parameters, 2}, - [161] = + [168] = + {field_body, 4}, + {field_name, 1}, + {field_type_parameters, 2}, + [171] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, - [164] = + [174] = {field_field, 4}, {field_object, 0}, - [166] = + [176] = {field_arguments, 4}, {field_name, 3}, {field_object, 0}, {field_type_arguments, 2}, - [170] = + [180] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [173] = + [183] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [176] = + [186] = {field_body, 4}, {field_name, 2}, {field_superclass, 3}, - [179] = + [189] = {field_body, 4}, {field_interfaces, 3}, {field_name, 2}, - [182] = + [192] = {field_body, 4}, {field_name, 2}, {field_permits, 3}, - [185] = + [195] = + {field_body, 4}, + {field_name, 2}, + {field_parameters, 3}, + [198] = {field_body, 4}, {field_name, 2}, - [187] = + [200] = {field_body, 4}, {field_name, 3}, - [189] = + [202] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [193] = + [206] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [198] = + [211] = {field_body, 2}, {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [204] = + [217] = {field_name, 1}, {field_parameters, 2}, {field_type_parameters, 0}, - [207] = + [220] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1}, {field_type_parameters, 0}, - [212] = + [225] = {field_body, 2}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [216] = + [229] = {field_body, 5}, {field_interfaces, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [221] = + [234] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_superclass, 3}, {field_type_parameters, 2}, - [226] = + [239] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [231] = + [244] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_superclass, 2}, - [236] = + [249] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 0}, {field_value, 3}, - [240] = + [253] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [242] = + [255] = {field_body, 5}, - [243] = + [256] = {field_body, 5}, {field_init, 2}, - [245] = + [258] = {field_key, 0}, {field_value, 2}, - [247] = + [260] = {field_module, 1}, - [248] = + [261] = {field_modifiers, 0, .inherited = true}, {field_modifiers, 1, .inherited = true}, - [250] = + [263] = {field_package, 1}, - [251] = + [264] = {field_arguments, 1}, {field_body, 2}, {field_name, 0}, - [254] = + [267] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [258] = + [271] = {field_arguments, 5}, {field_name, 4}, {field_object, 0}, - [261] = + [274] = {field_body, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [265] = + [278] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_type_parameters, 3}, - [269] = + [282] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_type_parameters, 3}, - [273] = + [286] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_superclass, 3}, - [277] = + [290] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_superclass, 3}, - [281] = + [294] = {field_body, 5}, {field_interfaces, 3}, {field_name, 2}, {field_permits, 4}, - [285] = + [298] = + {field_body, 5}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [302] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [288] = + [305] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, - [291] = - {field_body, 3}, - {field_name, 1}, - {field_parameters, 2}, - [294] = + [308] = {field_body, 3}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [298] = + [312] = {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_parameters, 3, .inherited = true}, {field_type, 2}, {field_type_parameters, 0}, - [303] = + [317] = {field_dimensions, 2}, {field_name, 0}, {field_parameters, 1}, - [306] = + [320] = {field_body, 6}, {field_interfaces, 4}, {field_name, 1}, {field_permits, 5}, {field_superclass, 3}, {field_type_parameters, 2}, - [312] = + [326] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 1}, {field_value, 4}, - [316] = + [330] = {field_body, 4}, - [317] = + [331] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, - [319] = + [333] = {field_body, 6}, {field_update, 4}, - [321] = + [335] = {field_update, 1}, - [322] = + [336] = {field_update, 0, .inherited = true}, {field_update, 1, .inherited = true}, - [324] = + [338] = {field_body, 6}, {field_condition, 3}, - [326] = + [340] = {field_body, 6}, {field_init, 2}, - [328] = + [342] = {field_body, 6}, {field_init, 2}, {field_update, 4}, - [331] = + [345] = {field_body, 6}, {field_condition, 3}, {field_init, 2}, - [334] = + [348] = {field_modifiers, 1, .inherited = true}, {field_module, 2}, - [336] = + [350] = {field_arguments, 2}, {field_body, 3}, {field_name, 1}, - [339] = + [353] = {field_arguments, 6}, {field_name, 5}, {field_object, 0}, {field_type_arguments, 4}, - [343] = + [357] = {field_body, 6}, {field_interfaces, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [348] = + [362] = {field_body, 6}, {field_name, 2}, {field_permits, 5}, {field_superclass, 4}, {field_type_parameters, 3}, - [353] = + [367] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_type_parameters, 3}, - [358] = + [372] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_superclass, 3}, - [363] = + [377] = {field_body, 6}, {field_name, 2}, {field_permits, 5}, {field_type_parameters, 3}, - [367] = - {field_body, 4}, - {field_name, 2}, - {field_parameters, 3}, - [370] = + [381] = {field_arguments, 1}, {field_constructor, 0}, - [372] = + [383] = {field_body, 7}, {field_update, 4}, {field_update, 5, .inherited = true}, - [375] = + [386] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [378] = + [389] = {field_body, 7}, {field_init, 2}, {field_update, 5}, - [381] = + [392] = {field_body, 7}, {field_condition, 4}, {field_init, 2}, - [384] = + [395] = {field_body, 7}, {field_init, 2}, {field_init, 3, .inherited = true}, - [387] = + [398] = {field_body, 7}, {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_type, 2}, {field_value, 5}, - [392] = + [403] = {field_body, 7}, {field_init, 2}, {field_update, 4}, {field_update, 5, .inherited = true}, - [396] = + [407] = {field_body, 7}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, - [400] = + [411] = {field_modules, 3}, {field_package, 1}, - [402] = + [413] = {field_provided, 1}, - [403] = + [414] = {field_name, 1}, {field_type, 0}, - [405] = + [416] = {field_body, 7}, {field_interfaces, 5}, {field_name, 2}, {field_permits, 6}, {field_superclass, 4}, {field_type_parameters, 3}, - [411] = + [422] = {field_arguments, 2}, {field_constructor, 1}, {field_type_arguments, 0}, - [414] = + [425] = {field_body, 8}, {field_condition, 3}, {field_update, 5}, {field_update, 6, .inherited = true}, - [418] = + [429] = {field_body, 8}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [422] = + [433] = {field_body, 8}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, - [426] = + [437] = {field_body, 8}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, - [430] = + [441] = {field_body, 8}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, - [434] = + [445] = {field_body, 8}, {field_dimensions, 4, .inherited = true}, {field_name, 4, .inherited = true}, {field_type, 3}, {field_value, 6}, - [439] = + [450] = {field_body, 8}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [444] = + [455] = {field_modules, 1}, - [445] = + [456] = {field_modules, 3}, {field_modules, 4, .inherited = true}, {field_package, 1}, - [448] = + [459] = {field_modules, 0, .inherited = true}, {field_modules, 1, .inherited = true}, - [450] = + [461] = {field_provider, 1}, - [451] = + [462] = {field_provided, 1}, {field_provider, 4, .inherited = true}, - [453] = + [464] = {field_provider, 0, .inherited = true}, {field_provider, 1, .inherited = true}, - [455] = + [466] = {field_name, 2}, {field_type, 1}, - [457] = + [468] = {field_value, 1}, - [458] = + [469] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, - [461] = + [472] = {field_name, 1}, {field_type, 0}, {field_value, 4, .inherited = true}, - [464] = + [475] = {field_arguments, 3}, {field_constructor, 2}, {field_object, 0}, - [467] = + [478] = {field_body, 9}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, {field_update, 7, .inherited = true}, - [472] = + [483] = {field_body, 9}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, {field_update, 7, .inherited = true}, - [477] = + [488] = {field_body, 9}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, - [482] = + [493] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, - [485] = + [496] = {field_name, 2}, {field_type, 1}, {field_value, 5, .inherited = true}, - [488] = + [499] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, {field_value, 5, .inherited = true}, - [492] = + [503] = {field_arguments, 4}, {field_constructor, 3}, {field_object, 0}, {field_type_arguments, 2}, - [496] = + [507] = {field_body, 10}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, {field_update, 8, .inherited = true}, - [502] = + [513] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, @@ -3117,96 +3135,99 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [60] = { [2] = sym_identifier, }, - [62] = { + [63] = { [2] = sym_identifier, }, - [64] = { + [65] = { [0] = alias_sym_type_identifier, [3] = alias_sym_type_identifier, }, - [70] = { + [66] = { + [3] = sym_identifier, + }, + [73] = { [3] = alias_sym_type_identifier, }, - [72] = { + [75] = { [1] = alias_sym_type_identifier, }, - [92] = { + [96] = { [4] = sym_identifier, }, - [94] = { + [98] = { [3] = sym_identifier, }, - [102] = { + [107] = { [3] = sym_identifier, }, - [110] = { + [115] = { [0] = sym_identifier, }, - [120] = { + [125] = { [1] = sym_identifier, }, - [123] = { + [128] = { [1] = sym_identifier, }, - [125] = { + [130] = { [1] = sym_identifier, }, - [128] = { + [133] = { [4] = sym_identifier, }, - [141] = { + [146] = { [0] = sym_identifier, }, - [154] = { + [159] = { [2] = sym_identifier, }, - [157] = { + [162] = { [5] = sym_identifier, }, - [174] = { + [178] = { [1] = sym_identifier, [3] = sym_identifier, }, - [175] = { + [179] = { [1] = sym_identifier, }, - [176] = { + [180] = { [3] = sym_identifier, }, - [178] = { + [182] = { [1] = sym_identifier, [3] = sym_identifier, }, - [179] = { + [183] = { [1] = sym_identifier, }, - [180] = { + [184] = { [3] = sym_identifier, }, - [192] = { + [196] = { [1] = sym_identifier, }, - [194] = { + [198] = { [1] = sym_identifier, [3] = sym_identifier, }, - [196] = { + [200] = { [1] = sym_identifier, }, - [197] = { + [201] = { [3] = sym_identifier, }, - [199] = { + [203] = { [1] = sym_identifier, }, - [201] = { + [205] = { [1] = sym_identifier, [3] = sym_identifier, }, - [203] = { + [207] = { [1] = sym_identifier, }, - [204] = { + [208] = { [3] = sym_identifier, }, }; @@ -6798,9 +6819,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [47] = {.lex_state = 60}, [48] = {.lex_state = 60}, [49] = {.lex_state = 60}, - [50] = {.lex_state = 60}, + [50] = {.lex_state = 59}, [51] = {.lex_state = 60}, - [52] = {.lex_state = 59}, + [52] = {.lex_state = 60}, [53] = {.lex_state = 60}, [54] = {.lex_state = 4}, [55] = {.lex_state = 4}, @@ -6814,29 +6835,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 3}, [64] = {.lex_state = 3}, [65] = {.lex_state = 3}, - [66] = {.lex_state = 60}, + [66] = {.lex_state = 3}, [67] = {.lex_state = 60}, - [68] = {.lex_state = 60}, + [68] = {.lex_state = 3}, [69] = {.lex_state = 60}, [70] = {.lex_state = 60}, - [71] = {.lex_state = 60}, + [71] = {.lex_state = 3}, [72] = {.lex_state = 60}, [73] = {.lex_state = 60}, - [74] = {.lex_state = 60}, + [74] = {.lex_state = 3}, [75] = {.lex_state = 60}, [76] = {.lex_state = 60}, [77] = {.lex_state = 60}, [78] = {.lex_state = 60}, [79] = {.lex_state = 60}, - [80] = {.lex_state = 3}, + [80] = {.lex_state = 60}, [81] = {.lex_state = 60}, [82] = {.lex_state = 60}, [83] = {.lex_state = 60}, [84] = {.lex_state = 60}, - [85] = {.lex_state = 60}, + [85] = {.lex_state = 3}, [86] = {.lex_state = 60}, [87] = {.lex_state = 60}, - [88] = {.lex_state = 60}, + [88] = {.lex_state = 3}, [89] = {.lex_state = 60}, [90] = {.lex_state = 60}, [91] = {.lex_state = 60}, @@ -6846,7 +6867,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [95] = {.lex_state = 60}, [96] = {.lex_state = 60}, [97] = {.lex_state = 60}, - [98] = {.lex_state = 60}, + [98] = {.lex_state = 3}, [99] = {.lex_state = 60}, [100] = {.lex_state = 60}, [101] = {.lex_state = 60}, @@ -6855,8 +6876,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 60}, [105] = {.lex_state = 60}, [106] = {.lex_state = 60}, - [107] = {.lex_state = 60}, - [108] = {.lex_state = 3}, + [107] = {.lex_state = 3}, + [108] = {.lex_state = 60}, [109] = {.lex_state = 60}, [110] = {.lex_state = 60}, [111] = {.lex_state = 60}, @@ -6866,7 +6887,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [115] = {.lex_state = 60}, [116] = {.lex_state = 60}, [117] = {.lex_state = 60}, - [118] = {.lex_state = 3}, + [118] = {.lex_state = 60}, [119] = {.lex_state = 60}, [120] = {.lex_state = 60}, [121] = {.lex_state = 60}, @@ -6883,12 +6904,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [132] = {.lex_state = 60}, [133] = {.lex_state = 60}, [134] = {.lex_state = 60}, - [135] = {.lex_state = 3}, + [135] = {.lex_state = 60}, [136] = {.lex_state = 3}, - [137] = {.lex_state = 3}, - [138] = {.lex_state = 3}, - [139] = {.lex_state = 3}, - [140] = {.lex_state = 3}, + [137] = {.lex_state = 60}, + [138] = {.lex_state = 60}, + [139] = {.lex_state = 60}, + [140] = {.lex_state = 60}, [141] = {.lex_state = 60}, [142] = {.lex_state = 60}, [143] = {.lex_state = 60}, @@ -6896,12 +6917,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [145] = {.lex_state = 60}, [146] = {.lex_state = 60}, [147] = {.lex_state = 60}, - [148] = {.lex_state = 60}, + [148] = {.lex_state = 3}, [149] = {.lex_state = 60}, [150] = {.lex_state = 60}, [151] = {.lex_state = 60}, [152] = {.lex_state = 60}, - [153] = {.lex_state = 60}, + [153] = {.lex_state = 3}, [154] = {.lex_state = 60}, [155] = {.lex_state = 60}, [156] = {.lex_state = 60}, @@ -6916,11 +6937,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [165] = {.lex_state = 60}, [166] = {.lex_state = 60}, [167] = {.lex_state = 60}, - [168] = {.lex_state = 3}, + [168] = {.lex_state = 60}, [169] = {.lex_state = 60}, [170] = {.lex_state = 60}, [171] = {.lex_state = 60}, - [172] = {.lex_state = 60}, + [172] = {.lex_state = 3}, [173] = {.lex_state = 60}, [174] = {.lex_state = 60}, [175] = {.lex_state = 60}, @@ -6931,17 +6952,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [180] = {.lex_state = 60}, [181] = {.lex_state = 60}, [182] = {.lex_state = 60}, - [183] = {.lex_state = 3}, + [183] = {.lex_state = 60}, [184] = {.lex_state = 60}, [185] = {.lex_state = 60}, [186] = {.lex_state = 60}, - [187] = {.lex_state = 3}, + [187] = {.lex_state = 60}, [188] = {.lex_state = 60}, [189] = {.lex_state = 60}, [190] = {.lex_state = 60}, [191] = {.lex_state = 60}, [192] = {.lex_state = 60}, - [193] = {.lex_state = 3}, + [193] = {.lex_state = 60}, [194] = {.lex_state = 60}, [195] = {.lex_state = 60}, [196] = {.lex_state = 60}, @@ -6951,7 +6972,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 60}, [201] = {.lex_state = 60}, [202] = {.lex_state = 60}, - [203] = {.lex_state = 60}, + [203] = {.lex_state = 3}, [204] = {.lex_state = 60}, [205] = {.lex_state = 60}, [206] = {.lex_state = 60}, @@ -6966,10 +6987,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [215] = {.lex_state = 60}, [216] = {.lex_state = 60}, [217] = {.lex_state = 60}, - [218] = {.lex_state = 3}, - [219] = {.lex_state = 3}, - [220] = {.lex_state = 3}, - [221] = {.lex_state = 3}, + [218] = {.lex_state = 60}, + [219] = {.lex_state = 60}, + [220] = {.lex_state = 60}, + [221] = {.lex_state = 60}, [222] = {.lex_state = 3}, [223] = {.lex_state = 3}, [224] = {.lex_state = 3}, @@ -7020,12 +7041,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [269] = {.lex_state = 3}, [270] = {.lex_state = 3}, [271] = {.lex_state = 3}, - [272] = {.lex_state = 60}, + [272] = {.lex_state = 3}, [273] = {.lex_state = 3}, [274] = {.lex_state = 3}, [275] = {.lex_state = 3}, [276] = {.lex_state = 3}, - [277] = {.lex_state = 3}, + [277] = {.lex_state = 60}, [278] = {.lex_state = 3}, [279] = {.lex_state = 3}, [280] = {.lex_state = 3}, @@ -7039,114 +7060,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [288] = {.lex_state = 3}, [289] = {.lex_state = 3}, [290] = {.lex_state = 3}, - [291] = {.lex_state = 4}, - [292] = {.lex_state = 60}, - [293] = {.lex_state = 60}, - [294] = {.lex_state = 4}, - [295] = {.lex_state = 60}, + [291] = {.lex_state = 3}, + [292] = {.lex_state = 3}, + [293] = {.lex_state = 3}, + [294] = {.lex_state = 3}, + [295] = {.lex_state = 4}, [296] = {.lex_state = 60}, - [297] = {.lex_state = 4}, + [297] = {.lex_state = 60}, [298] = {.lex_state = 4}, - [299] = {.lex_state = 0}, - [300] = {.lex_state = 0}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 0}, + [299] = {.lex_state = 60}, + [300] = {.lex_state = 60}, + [301] = {.lex_state = 4}, + [302] = {.lex_state = 4}, [303] = {.lex_state = 0}, [304] = {.lex_state = 0}, - [305] = {.lex_state = 5}, + [305] = {.lex_state = 0}, [306] = {.lex_state = 0}, [307] = {.lex_state = 0}, [308] = {.lex_state = 5}, - [309] = {.lex_state = 5}, - [310] = {.lex_state = 5}, - [311] = {.lex_state = 5}, + [309] = {.lex_state = 0}, + [310] = {.lex_state = 0}, + [311] = {.lex_state = 0}, [312] = {.lex_state = 5}, [313] = {.lex_state = 5}, [314] = {.lex_state = 5}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 0}, - [317] = {.lex_state = 0}, + [315] = {.lex_state = 5}, + [316] = {.lex_state = 5}, + [317] = {.lex_state = 5}, [318] = {.lex_state = 5}, - [319] = {.lex_state = 5}, - [320] = {.lex_state = 5}, - [321] = {.lex_state = 5}, + [319] = {.lex_state = 0}, + [320] = {.lex_state = 0}, + [321] = {.lex_state = 0}, [322] = {.lex_state = 5}, [323] = {.lex_state = 5}, [324] = {.lex_state = 5}, [325] = {.lex_state = 5}, - [326] = {.lex_state = 6}, - [327] = {.lex_state = 6}, + [326] = {.lex_state = 5}, + [327] = {.lex_state = 5}, [328] = {.lex_state = 5}, - [329] = {.lex_state = 5}, - [330] = {.lex_state = 14}, - [331] = {.lex_state = 14}, - [332] = {.lex_state = 4}, - [333] = {.lex_state = 6}, - [334] = {.lex_state = 6}, - [335] = {.lex_state = 4}, + [329] = {.lex_state = 6}, + [330] = {.lex_state = 5}, + [331] = {.lex_state = 6}, + [332] = {.lex_state = 5}, + [333] = {.lex_state = 3}, + [334] = {.lex_state = 5}, + [335] = {.lex_state = 3}, [336] = {.lex_state = 6}, - [337] = {.lex_state = 3}, - [338] = {.lex_state = 4}, - [339] = {.lex_state = 3}, - [340] = {.lex_state = 4}, - [341] = {.lex_state = 14}, - [342] = {.lex_state = 14}, - [343] = {.lex_state = 3}, - [344] = {.lex_state = 3}, + [337] = {.lex_state = 6}, + [338] = {.lex_state = 14}, + [339] = {.lex_state = 5}, + [340] = {.lex_state = 14}, + [341] = {.lex_state = 4}, + [342] = {.lex_state = 6}, + [343] = {.lex_state = 4}, + [344] = {.lex_state = 6}, [345] = {.lex_state = 6}, - [346] = {.lex_state = 6}, - [347] = {.lex_state = 6}, - [348] = {.lex_state = 0}, - [349] = {.lex_state = 6}, - [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}, + [346] = {.lex_state = 3}, + [347] = {.lex_state = 4}, + [348] = {.lex_state = 6}, + [349] = {.lex_state = 3}, + [350] = {.lex_state = 6}, + [351] = {.lex_state = 4}, + [352] = {.lex_state = 6}, + [353] = {.lex_state = 6}, + [354] = {.lex_state = 14}, + [355] = {.lex_state = 14}, + [356] = {.lex_state = 6}, + [357] = {.lex_state = 6}, + [358] = {.lex_state = 6}, [359] = {.lex_state = 6}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 0}, + [360] = {.lex_state = 6}, + [361] = {.lex_state = 6}, [362] = {.lex_state = 6}, [363] = {.lex_state = 6}, - [364] = {.lex_state = 0}, - [365] = {.lex_state = 0}, - [366] = {.lex_state = 6}, - [367] = {.lex_state = 6}, + [364] = {.lex_state = 3}, + [365] = {.lex_state = 3}, + [366] = {.lex_state = 3}, + [367] = {.lex_state = 3}, [368] = {.lex_state = 6}, - [369] = {.lex_state = 0}, - [370] = {.lex_state = 0}, + [369] = {.lex_state = 6}, + [370] = {.lex_state = 6}, [371] = {.lex_state = 0}, - [372] = {.lex_state = 0}, - [373] = {.lex_state = 6}, + [372] = {.lex_state = 6}, + [373] = {.lex_state = 0}, [374] = {.lex_state = 0}, [375] = {.lex_state = 0}, [376] = {.lex_state = 0}, - [377] = {.lex_state = 0}, + [377] = {.lex_state = 3}, [378] = {.lex_state = 6}, [379] = {.lex_state = 0}, - [380] = {.lex_state = 6}, - [381] = {.lex_state = 6}, + [380] = {.lex_state = 0}, + [381] = {.lex_state = 0}, [382] = {.lex_state = 6}, - [383] = {.lex_state = 6}, - [384] = {.lex_state = 6}, - [385] = {.lex_state = 6}, - [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 6}, + [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 = 6}, [390] = {.lex_state = 6}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 6}, - [393] = {.lex_state = 6}, - [394] = {.lex_state = 6}, - [395] = {.lex_state = 6}, - [396] = {.lex_state = 6}, - [397] = {.lex_state = 6}, - [398] = {.lex_state = 6}, + [391] = {.lex_state = 3}, + [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 = 6}, [400] = {.lex_state = 6}, [401] = {.lex_state = 6}, @@ -7169,70 +7190,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [418] = {.lex_state = 6}, [419] = {.lex_state = 6}, [420] = {.lex_state = 6}, - [421] = {.lex_state = 0}, - [422] = {.lex_state = 3}, - [423] = {.lex_state = 0}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 3}, - [426] = {.lex_state = 3}, - [427] = {.lex_state = 0}, - [428] = {.lex_state = 3}, + [421] = {.lex_state = 6}, + [422] = {.lex_state = 6}, + [423] = {.lex_state = 6}, + [424] = {.lex_state = 6}, + [425] = {.lex_state = 6}, + [426] = {.lex_state = 6}, + [427] = {.lex_state = 6}, + [428] = {.lex_state = 6}, [429] = {.lex_state = 0}, - [430] = {.lex_state = 3}, - [431] = {.lex_state = 3}, - [432] = {.lex_state = 3}, - [433] = {.lex_state = 3}, - [434] = {.lex_state = 12}, - [435] = {.lex_state = 3}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 6}, + [432] = {.lex_state = 0}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 0}, + [435] = {.lex_state = 12}, [436] = {.lex_state = 12}, - [437] = {.lex_state = 3}, + [437] = {.lex_state = 12}, [438] = {.lex_state = 3}, [439] = {.lex_state = 3}, [440] = {.lex_state = 3}, [441] = {.lex_state = 3}, - [442] = {.lex_state = 12}, + [442] = {.lex_state = 3}, [443] = {.lex_state = 3}, [444] = {.lex_state = 3}, [445] = {.lex_state = 3}, [446] = {.lex_state = 3}, - [447] = {.lex_state = 4}, + [447] = {.lex_state = 3}, [448] = {.lex_state = 3}, - [449] = {.lex_state = 6}, + [449] = {.lex_state = 3}, [450] = {.lex_state = 3}, [451] = {.lex_state = 0}, [452] = {.lex_state = 3}, [453] = {.lex_state = 3}, - [454] = {.lex_state = 3}, + [454] = {.lex_state = 6}, [455] = {.lex_state = 3}, - [456] = {.lex_state = 3}, + [456] = {.lex_state = 0}, [457] = {.lex_state = 3}, - [458] = {.lex_state = 15}, - [459] = {.lex_state = 15}, - [460] = {.lex_state = 3}, - [461] = {.lex_state = 4}, + [458] = {.lex_state = 4}, + [459] = {.lex_state = 3}, + [460] = {.lex_state = 15}, + [461] = {.lex_state = 15}, [462] = {.lex_state = 0}, [463] = {.lex_state = 0}, - [464] = {.lex_state = 0}, - [465] = {.lex_state = 0}, - [466] = {.lex_state = 3}, + [464] = {.lex_state = 3}, + [465] = {.lex_state = 3}, + [466] = {.lex_state = 0}, [467] = {.lex_state = 0}, [468] = {.lex_state = 0}, [469] = {.lex_state = 0}, - [470] = {.lex_state = 15}, - [471] = {.lex_state = 15}, - [472] = {.lex_state = 6}, - [473] = {.lex_state = 12}, + [470] = {.lex_state = 3}, + [471] = {.lex_state = 3}, + [472] = {.lex_state = 4}, + [473] = {.lex_state = 3}, [474] = {.lex_state = 3}, - [475] = {.lex_state = 3}, + [475] = {.lex_state = 15}, [476] = {.lex_state = 12}, - [477] = {.lex_state = 4}, - [478] = {.lex_state = 4}, + [477] = {.lex_state = 15}, + [478] = {.lex_state = 12}, [479] = {.lex_state = 3}, [480] = {.lex_state = 3}, - [481] = {.lex_state = 3}, + [481] = {.lex_state = 6}, [482] = {.lex_state = 3}, - [483] = {.lex_state = 3}, - [484] = {.lex_state = 3}, + [483] = {.lex_state = 12}, + [484] = {.lex_state = 4}, [485] = {.lex_state = 3}, [486] = {.lex_state = 3}, [487] = {.lex_state = 3}, @@ -7240,45 +7261,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [489] = {.lex_state = 3}, [490] = {.lex_state = 3}, [491] = {.lex_state = 3}, - [492] = {.lex_state = 4}, - [493] = {.lex_state = 4}, - [494] = {.lex_state = 3}, + [492] = {.lex_state = 3}, + [493] = {.lex_state = 3}, + [494] = {.lex_state = 4}, [495] = {.lex_state = 3}, - [496] = {.lex_state = 3}, + [496] = {.lex_state = 4}, [497] = {.lex_state = 3}, - [498] = {.lex_state = 12}, + [498] = {.lex_state = 3}, [499] = {.lex_state = 3}, - [500] = {.lex_state = 4}, + [500] = {.lex_state = 3}, [501] = {.lex_state = 3}, - [502] = {.lex_state = 12}, - [503] = {.lex_state = 4}, - [504] = {.lex_state = 3}, + [502] = {.lex_state = 3}, + [503] = {.lex_state = 3}, + [504] = {.lex_state = 4}, [505] = {.lex_state = 4}, [506] = {.lex_state = 3}, - [507] = {.lex_state = 4}, + [507] = {.lex_state = 3}, [508] = {.lex_state = 3}, - [509] = {.lex_state = 3}, + [509] = {.lex_state = 4}, [510] = {.lex_state = 3}, - [511] = {.lex_state = 4}, - [512] = {.lex_state = 3}, - [513] = {.lex_state = 3}, + [511] = {.lex_state = 3}, + [512] = {.lex_state = 4}, + [513] = {.lex_state = 12}, [514] = {.lex_state = 3}, - [515] = {.lex_state = 4}, - [516] = {.lex_state = 3}, + [515] = {.lex_state = 3}, + [516] = {.lex_state = 4}, [517] = {.lex_state = 3}, [518] = {.lex_state = 3}, - [519] = {.lex_state = 3}, - [520] = {.lex_state = 22}, - [521] = {.lex_state = 3}, + [519] = {.lex_state = 4}, + [520] = {.lex_state = 3}, + [521] = {.lex_state = 4}, [522] = {.lex_state = 3}, - [523] = {.lex_state = 3}, + [523] = {.lex_state = 4}, [524] = {.lex_state = 3}, [525] = {.lex_state = 3}, - [526] = {.lex_state = 4}, + [526] = {.lex_state = 3}, [527] = {.lex_state = 4}, - [528] = {.lex_state = 4}, - [529] = {.lex_state = 3}, - [530] = {.lex_state = 3}, + [528] = {.lex_state = 3}, + [529] = {.lex_state = 4}, + [530] = {.lex_state = 22}, [531] = {.lex_state = 3}, [532] = {.lex_state = 3}, [533] = {.lex_state = 3}, @@ -7300,132 +7321,132 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [549] = {.lex_state = 3}, [550] = {.lex_state = 3}, [551] = {.lex_state = 3}, - [552] = {.lex_state = 22}, + [552] = {.lex_state = 3}, [553] = {.lex_state = 3}, [554] = {.lex_state = 3}, - [555] = {.lex_state = 3}, - [556] = {.lex_state = 3}, + [555] = {.lex_state = 12}, + [556] = {.lex_state = 12}, [557] = {.lex_state = 3}, [558] = {.lex_state = 3}, - [559] = {.lex_state = 4}, - [560] = {.lex_state = 12}, - [561] = {.lex_state = 5}, - [562] = {.lex_state = 5}, - [563] = {.lex_state = 12}, - [564] = {.lex_state = 3}, - [565] = {.lex_state = 5}, + [559] = {.lex_state = 3}, + [560] = {.lex_state = 3}, + [561] = {.lex_state = 3}, + [562] = {.lex_state = 3}, + [563] = {.lex_state = 3}, + [564] = {.lex_state = 22}, + [565] = {.lex_state = 3}, [566] = {.lex_state = 5}, - [567] = {.lex_state = 3}, - [568] = {.lex_state = 3}, + [567] = {.lex_state = 5}, + [568] = {.lex_state = 4}, [569] = {.lex_state = 3}, - [570] = {.lex_state = 3}, - [571] = {.lex_state = 3}, - [572] = {.lex_state = 3}, - [573] = {.lex_state = 3}, - [574] = {.lex_state = 12}, - [575] = {.lex_state = 12}, - [576] = {.lex_state = 12}, - [577] = {.lex_state = 12}, - [578] = {.lex_state = 22}, - [579] = {.lex_state = 12}, + [570] = {.lex_state = 12}, + [571] = {.lex_state = 5}, + [572] = {.lex_state = 12}, + [573] = {.lex_state = 12}, + [574] = {.lex_state = 3}, + [575] = {.lex_state = 3}, + [576] = {.lex_state = 3}, + [577] = {.lex_state = 3}, + [578] = {.lex_state = 12}, + [579] = {.lex_state = 3}, [580] = {.lex_state = 12}, [581] = {.lex_state = 3}, [582] = {.lex_state = 3}, - [583] = {.lex_state = 3}, + [583] = {.lex_state = 22}, [584] = {.lex_state = 12}, - [585] = {.lex_state = 3}, + [585] = {.lex_state = 5}, [586] = {.lex_state = 12}, [587] = {.lex_state = 12}, - [588] = {.lex_state = 3}, - [589] = {.lex_state = 22}, + [588] = {.lex_state = 12}, + [589] = {.lex_state = 12}, [590] = {.lex_state = 3}, - [591] = {.lex_state = 12}, + [591] = {.lex_state = 3}, [592] = {.lex_state = 5}, - [593] = {.lex_state = 12}, - [594] = {.lex_state = 12}, + [593] = {.lex_state = 3}, + [594] = {.lex_state = 3}, [595] = {.lex_state = 12}, [596] = {.lex_state = 12}, [597] = {.lex_state = 3}, - [598] = {.lex_state = 5}, - [599] = {.lex_state = 3}, - [600] = {.lex_state = 3}, - [601] = {.lex_state = 3}, - [602] = {.lex_state = 12}, - [603] = {.lex_state = 5}, - [604] = {.lex_state = 3}, + [598] = {.lex_state = 3}, + [599] = {.lex_state = 22}, + [600] = {.lex_state = 12}, + [601] = {.lex_state = 12}, + [602] = {.lex_state = 5}, + [603] = {.lex_state = 3}, + [604] = {.lex_state = 5}, [605] = {.lex_state = 3}, [606] = {.lex_state = 3}, [607] = {.lex_state = 3}, [608] = {.lex_state = 3}, [609] = {.lex_state = 3}, [610] = {.lex_state = 3}, - [611] = {.lex_state = 5}, + [611] = {.lex_state = 12}, [612] = {.lex_state = 3}, [613] = {.lex_state = 3}, [614] = {.lex_state = 3}, [615] = {.lex_state = 3}, - [616] = {.lex_state = 5}, - [617] = {.lex_state = 5}, - [618] = {.lex_state = 5}, + [616] = {.lex_state = 3}, + [617] = {.lex_state = 3}, + [618] = {.lex_state = 3}, [619] = {.lex_state = 3}, [620] = {.lex_state = 5}, - [621] = {.lex_state = 3}, - [622] = {.lex_state = 3}, + [621] = {.lex_state = 5}, + [622] = {.lex_state = 5}, [623] = {.lex_state = 3}, [624] = {.lex_state = 3}, - [625] = {.lex_state = 3}, - [626] = {.lex_state = 5}, + [625] = {.lex_state = 5}, + [626] = {.lex_state = 3}, [627] = {.lex_state = 3}, - [628] = {.lex_state = 3}, - [629] = {.lex_state = 5}, + [628] = {.lex_state = 5}, + [629] = {.lex_state = 3}, [630] = {.lex_state = 3}, - [631] = {.lex_state = 5}, - [632] = {.lex_state = 3}, - [633] = {.lex_state = 3}, - [634] = {.lex_state = 4}, - [635] = {.lex_state = 4}, + [631] = {.lex_state = 3}, + [632] = {.lex_state = 5}, + [633] = {.lex_state = 5}, + [634] = {.lex_state = 3}, + [635] = {.lex_state = 3}, [636] = {.lex_state = 3}, - [637] = {.lex_state = 5}, + [637] = {.lex_state = 4}, [638] = {.lex_state = 4}, - [639] = {.lex_state = 4}, - [640] = {.lex_state = 3}, - [641] = {.lex_state = 5}, - [642] = {.lex_state = 4}, - [643] = {.lex_state = 3}, + [639] = {.lex_state = 3}, + [640] = {.lex_state = 4}, + [641] = {.lex_state = 3}, + [642] = {.lex_state = 3}, + [643] = {.lex_state = 5}, [644] = {.lex_state = 4}, - [645] = {.lex_state = 4}, + [645] = {.lex_state = 3}, [646] = {.lex_state = 3}, [647] = {.lex_state = 3}, - [648] = {.lex_state = 4}, - [649] = {.lex_state = 3}, - [650] = {.lex_state = 5}, - [651] = {.lex_state = 3}, - [652] = {.lex_state = 5}, - [653] = {.lex_state = 3}, - [654] = {.lex_state = 3}, - [655] = {.lex_state = 3}, + [648] = {.lex_state = 3}, + [649] = {.lex_state = 5}, + [650] = {.lex_state = 4}, + [651] = {.lex_state = 4}, + [652] = {.lex_state = 4}, + [653] = {.lex_state = 5}, + [654] = {.lex_state = 5}, + [655] = {.lex_state = 4}, [656] = {.lex_state = 5}, [657] = {.lex_state = 5}, - [658] = {.lex_state = 3}, + [658] = {.lex_state = 5}, [659] = {.lex_state = 5}, - [660] = {.lex_state = 5}, + [660] = {.lex_state = 3}, [661] = {.lex_state = 3}, [662] = {.lex_state = 3}, [663] = {.lex_state = 3}, - [664] = {.lex_state = 3}, + [664] = {.lex_state = 5}, [665] = {.lex_state = 3}, - [666] = {.lex_state = 12}, + [666] = {.lex_state = 3}, [667] = {.lex_state = 3}, [668] = {.lex_state = 3}, [669] = {.lex_state = 3}, [670] = {.lex_state = 3}, [671] = {.lex_state = 3}, - [672] = {.lex_state = 3}, + [672] = {.lex_state = 12}, [673] = {.lex_state = 3}, - [674] = {.lex_state = 0}, + [674] = {.lex_state = 3}, [675] = {.lex_state = 3}, [676] = {.lex_state = 3}, - [677] = {.lex_state = 0}, + [677] = {.lex_state = 3}, [678] = {.lex_state = 3}, [679] = {.lex_state = 3}, [680] = {.lex_state = 3}, @@ -7433,19 +7454,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [682] = {.lex_state = 3}, [683] = {.lex_state = 3}, [684] = {.lex_state = 3}, - [685] = {.lex_state = 3}, - [686] = {.lex_state = 3}, + [685] = {.lex_state = 0}, + [686] = {.lex_state = 0}, [687] = {.lex_state = 3}, [688] = {.lex_state = 3}, [689] = {.lex_state = 3}, - [690] = {.lex_state = 3}, - [691] = {.lex_state = 4}, + [690] = {.lex_state = 4}, + [691] = {.lex_state = 3}, [692] = {.lex_state = 3}, [693] = {.lex_state = 3}, [694] = {.lex_state = 3}, [695] = {.lex_state = 3}, [696] = {.lex_state = 3}, - [697] = {.lex_state = 3}, + [697] = {.lex_state = 4}, [698] = {.lex_state = 3}, [699] = {.lex_state = 3}, [700] = {.lex_state = 3}, @@ -7459,7 +7480,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [708] = {.lex_state = 3}, [709] = {.lex_state = 3}, [710] = {.lex_state = 3}, - [711] = {.lex_state = 3}, + [711] = {.lex_state = 4}, [712] = {.lex_state = 3}, [713] = {.lex_state = 3}, [714] = {.lex_state = 3}, @@ -7467,22 +7488,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [716] = {.lex_state = 3}, [717] = {.lex_state = 3}, [718] = {.lex_state = 3}, - [719] = {.lex_state = 4}, + [719] = {.lex_state = 3}, [720] = {.lex_state = 3}, - [721] = {.lex_state = 4}, + [721] = {.lex_state = 3}, [722] = {.lex_state = 3}, [723] = {.lex_state = 3}, [724] = {.lex_state = 3}, [725] = {.lex_state = 3}, [726] = {.lex_state = 3}, - [727] = {.lex_state = 4}, + [727] = {.lex_state = 3}, [728] = {.lex_state = 3}, [729] = {.lex_state = 3}, [730] = {.lex_state = 3}, [731] = {.lex_state = 3}, [732] = {.lex_state = 3}, [733] = {.lex_state = 3}, - [734] = {.lex_state = 4}, + [734] = {.lex_state = 3}, [735] = {.lex_state = 3}, [736] = {.lex_state = 3}, [737] = {.lex_state = 3}, @@ -7494,383 +7515,383 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [743] = {.lex_state = 3}, [744] = {.lex_state = 3}, [745] = {.lex_state = 3}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 5}, - [748] = {.lex_state = 5}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 4}, + [748] = {.lex_state = 3}, [749] = {.lex_state = 3}, [750] = {.lex_state = 3}, - [751] = {.lex_state = 12}, - [752] = {.lex_state = 5}, - [753] = {.lex_state = 5}, + [751] = {.lex_state = 3}, + [752] = {.lex_state = 4}, + [753] = {.lex_state = 3}, [754] = {.lex_state = 3}, [755] = {.lex_state = 3}, - [756] = {.lex_state = 0}, + [756] = {.lex_state = 3}, [757] = {.lex_state = 3}, [758] = {.lex_state = 3}, [759] = {.lex_state = 3}, [760] = {.lex_state = 5}, [761] = {.lex_state = 0}, - [762] = {.lex_state = 3}, - [763] = {.lex_state = 5}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 12}, - [766] = {.lex_state = 0}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 3}, + [765] = {.lex_state = 5}, + [766] = {.lex_state = 5}, [767] = {.lex_state = 3}, - [768] = {.lex_state = 0}, + [768] = {.lex_state = 3}, [769] = {.lex_state = 3}, - [770] = {.lex_state = 0}, + [770] = {.lex_state = 3}, [771] = {.lex_state = 3}, - [772] = {.lex_state = 3}, + [772] = {.lex_state = 0}, [773] = {.lex_state = 3}, [774] = {.lex_state = 3}, [775] = {.lex_state = 3}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 3}, + [776] = {.lex_state = 3}, + [777] = {.lex_state = 0}, [778] = {.lex_state = 3}, [779] = {.lex_state = 3}, [780] = {.lex_state = 3}, - [781] = {.lex_state = 4}, + [781] = {.lex_state = 3}, [782] = {.lex_state = 3}, - [783] = {.lex_state = 0}, + [783] = {.lex_state = 3}, [784] = {.lex_state = 3}, - [785] = {.lex_state = 3}, - [786] = {.lex_state = 3}, + [785] = {.lex_state = 5}, + [786] = {.lex_state = 5}, [787] = {.lex_state = 3}, [788] = {.lex_state = 3}, - [789] = {.lex_state = 3}, + [789] = {.lex_state = 12}, [790] = {.lex_state = 3}, - [791] = {.lex_state = 0}, + [791] = {.lex_state = 12}, [792] = {.lex_state = 3}, [793] = {.lex_state = 3}, - [794] = {.lex_state = 0}, + [794] = {.lex_state = 3}, [795] = {.lex_state = 3}, - [796] = {.lex_state = 3}, - [797] = {.lex_state = 3}, - [798] = {.lex_state = 0}, + [796] = {.lex_state = 5}, + [797] = {.lex_state = 0}, + [798] = {.lex_state = 3}, [799] = {.lex_state = 3}, - [800] = {.lex_state = 5}, + [800] = {.lex_state = 3}, [801] = {.lex_state = 0}, [802] = {.lex_state = 3}, - [803] = {.lex_state = 3}, - [804] = {.lex_state = 5}, - [805] = {.lex_state = 5}, - [806] = {.lex_state = 3}, - [807] = {.lex_state = 3}, - [808] = {.lex_state = 5}, - [809] = {.lex_state = 5}, - [810] = {.lex_state = 5}, + [803] = {.lex_state = 0}, + [804] = {.lex_state = 3}, + [805] = {.lex_state = 3}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 0}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 0}, + [810] = {.lex_state = 0}, [811] = {.lex_state = 5}, - [812] = {.lex_state = 5}, - [813] = {.lex_state = 5}, - [814] = {.lex_state = 3}, - [815] = {.lex_state = 4}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 5}, - [818] = {.lex_state = 5}, - [819] = {.lex_state = 12}, - [820] = {.lex_state = 0}, + [812] = {.lex_state = 0}, + [813] = {.lex_state = 3}, + [814] = {.lex_state = 4}, + [815] = {.lex_state = 12}, + [816] = {.lex_state = 4}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 3}, + [819] = {.lex_state = 3}, + [820] = {.lex_state = 3}, [821] = {.lex_state = 3}, - [822] = {.lex_state = 3}, + [822] = {.lex_state = 12}, [823] = {.lex_state = 3}, - [824] = {.lex_state = 3}, + [824] = {.lex_state = 0}, [825] = {.lex_state = 3}, [826] = {.lex_state = 3}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 3}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 5}, + [827] = {.lex_state = 5}, + [828] = {.lex_state = 5}, + [829] = {.lex_state = 4}, + [830] = {.lex_state = 3}, [831] = {.lex_state = 3}, [832] = {.lex_state = 3}, - [833] = {.lex_state = 12}, + [833] = {.lex_state = 0}, [834] = {.lex_state = 3}, - [835] = {.lex_state = 0}, + [835] = {.lex_state = 3}, [836] = {.lex_state = 3}, - [837] = {.lex_state = 4}, + [837] = {.lex_state = 3}, [838] = {.lex_state = 3}, [839] = {.lex_state = 0}, [840] = {.lex_state = 3}, [841] = {.lex_state = 3}, - [842] = {.lex_state = 3}, - [843] = {.lex_state = 3}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 0}, [844] = {.lex_state = 0}, [845] = {.lex_state = 0}, - [846] = {.lex_state = 3}, + [846] = {.lex_state = 0}, [847] = {.lex_state = 0}, [848] = {.lex_state = 3}, - [849] = {.lex_state = 5}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 4}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 5}, - [861] = {.lex_state = 4}, + [849] = {.lex_state = 3}, + [850] = {.lex_state = 5}, + [851] = {.lex_state = 5}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 5}, + [854] = {.lex_state = 5}, + [855] = {.lex_state = 5}, + [856] = {.lex_state = 5}, + [857] = {.lex_state = 5}, + [858] = {.lex_state = 5}, + [859] = {.lex_state = 5}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 0}, [862] = {.lex_state = 0}, - [863] = {.lex_state = 5}, - [864] = {.lex_state = 0}, + [863] = {.lex_state = 4}, + [864] = {.lex_state = 3}, [865] = {.lex_state = 3}, - [866] = {.lex_state = 3}, + [866] = {.lex_state = 0}, [867] = {.lex_state = 0}, [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, [870] = {.lex_state = 0}, - [871] = {.lex_state = 5}, + [871] = {.lex_state = 0}, [872] = {.lex_state = 0}, [873] = {.lex_state = 0}, - [874] = {.lex_state = 5}, - [875] = {.lex_state = 5}, + [874] = {.lex_state = 4}, + [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 3}, - [879] = {.lex_state = 0}, + [877] = {.lex_state = 4}, + [878] = {.lex_state = 0}, + [879] = {.lex_state = 4}, [880] = {.lex_state = 0}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 3}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 0}, [883] = {.lex_state = 0}, [884] = {.lex_state = 0}, [885] = {.lex_state = 0}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 3}, - [888] = {.lex_state = 3}, - [889] = {.lex_state = 4}, - [890] = {.lex_state = 3}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 5}, - [893] = {.lex_state = 5}, - [894] = {.lex_state = 0}, + [887] = {.lex_state = 5}, + [888] = {.lex_state = 5}, + [889] = {.lex_state = 5}, + [890] = {.lex_state = 4}, + [891] = {.lex_state = 5}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0}, + [894] = {.lex_state = 5}, [895] = {.lex_state = 0}, - [896] = {.lex_state = 4}, - [897] = {.lex_state = 4}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 5}, + [896] = {.lex_state = 0}, + [897] = {.lex_state = 5}, + [898] = {.lex_state = 4}, + [899] = {.lex_state = 3}, + [900] = {.lex_state = 0}, [901] = {.lex_state = 0}, - [902] = {.lex_state = 5}, - [903] = {.lex_state = 0}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 5}, [904] = {.lex_state = 5}, [905] = {.lex_state = 5}, - [906] = {.lex_state = 0}, + [906] = {.lex_state = 3}, [907] = {.lex_state = 0}, [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 5}, + [909] = {.lex_state = 4}, + [910] = {.lex_state = 4}, + [911] = {.lex_state = 0}, [912] = {.lex_state = 0}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 5}, - [915] = {.lex_state = 5}, - [916] = {.lex_state = 5}, + [913] = {.lex_state = 5}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0}, [917] = {.lex_state = 3}, - [918] = {.lex_state = 0}, + [918] = {.lex_state = 4}, [919] = {.lex_state = 3}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 4}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, + [921] = {.lex_state = 5}, + [922] = {.lex_state = 5}, + [923] = {.lex_state = 3}, [924] = {.lex_state = 0}, - [925] = {.lex_state = 4}, + [925] = {.lex_state = 3}, [926] = {.lex_state = 0}, [927] = {.lex_state = 0}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 3}, - [930] = {.lex_state = 0}, + [928] = {.lex_state = 5}, + [929] = {.lex_state = 5}, + [930] = {.lex_state = 3}, [931] = {.lex_state = 0}, [932] = {.lex_state = 0}, [933] = {.lex_state = 0}, [934] = {.lex_state = 0}, - [935] = {.lex_state = 4}, - [936] = {.lex_state = 3}, - [937] = {.lex_state = 0}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 5}, + [937] = {.lex_state = 5}, [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, [941] = {.lex_state = 0}, - [942] = {.lex_state = 0}, + [942] = {.lex_state = 5}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 5}, - [945] = {.lex_state = 5}, - [946] = {.lex_state = 4}, - [947] = {.lex_state = 3}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, [949] = {.lex_state = 0}, [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, - [952] = {.lex_state = 0}, + [952] = {.lex_state = 5}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 5}, + [954] = {.lex_state = 0}, [955] = {.lex_state = 0}, - [956] = {.lex_state = 3}, + [956] = {.lex_state = 0}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, - [959] = {.lex_state = 0}, + [959] = {.lex_state = 3}, [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 0}, + [962] = {.lex_state = 5}, + [963] = {.lex_state = 4}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 3}, + [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, [968] = {.lex_state = 0}, - [969] = {.lex_state = 0}, + [969] = {.lex_state = 5}, [970] = {.lex_state = 0}, [971] = {.lex_state = 0}, [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, - [974] = {.lex_state = 3}, + [974] = {.lex_state = 5}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 5}, + [977] = {.lex_state = 5}, + [978] = {.lex_state = 5}, + [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 4}, + [981] = {.lex_state = 5}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, - [984] = {.lex_state = 0}, + [984] = {.lex_state = 5}, [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 0}, - [988] = {.lex_state = 4}, - [989] = {.lex_state = 0}, + [986] = {.lex_state = 3}, + [987] = {.lex_state = 3}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 3}, [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, - [992] = {.lex_state = 4}, - [993] = {.lex_state = 4}, + [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 = 3}, + [999] = {.lex_state = 4}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 5}, + [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 5}, + [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, + [1005] = {.lex_state = 4}, [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 5}, + [1007] = {.lex_state = 3}, [1008] = {.lex_state = 5}, [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 5}, + [1010] = {.lex_state = 0}, [1011] = {.lex_state = 5}, - [1012] = {.lex_state = 5}, + [1012] = {.lex_state = 0}, [1013] = {.lex_state = 5}, - [1014] = {.lex_state = 5}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 3}, + [1016] = {.lex_state = 5}, + [1017] = {.lex_state = 3}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 3}, + [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 3}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 5}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, + [1025] = {.lex_state = 3}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 5}, + [1028] = {.lex_state = 5}, + [1029] = {.lex_state = 4}, + [1030] = {.lex_state = 5}, + [1031] = {.lex_state = 4}, [1032] = {.lex_state = 4}, - [1033] = {.lex_state = 3}, + [1033] = {.lex_state = 0}, [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 3}, - [1037] = {.lex_state = 3}, + [1035] = {.lex_state = 3}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 5}, [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 4}, - [1042] = {.lex_state = 4}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 5}, - [1045] = {.lex_state = 0}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 4}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 5}, + [1047] = {.lex_state = 3}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 5}, - [1052] = {.lex_state = 5}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, [1054] = {.lex_state = 0}, [1055] = {.lex_state = 0}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 5}, + [1059] = {.lex_state = 5}, + [1060] = {.lex_state = 0}, [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 3}, + [1062] = {.lex_state = 5}, [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 3}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 5}, + [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 3}, + [1076] = {.lex_state = 3}, + [1077] = {.lex_state = 5}, + [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, + [1080] = {.lex_state = 3}, [1081] = {.lex_state = 3}, - [1082] = {.lex_state = 0}, + [1082] = {.lex_state = 3}, [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 3}, - [1088] = {.lex_state = 3}, + [1085] = {.lex_state = 3}, + [1086] = {.lex_state = 3}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, + [1090] = {.lex_state = 3}, [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 5}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 3}, + [1094] = {.lex_state = 3}, [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 3}, - [1099] = {.lex_state = 0}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 5}, [1100] = {.lex_state = 3}, - [1101] = {.lex_state = 3}, - [1102] = {.lex_state = 0}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 3}, [1103] = {.lex_state = 0}, [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, + [1108] = {.lex_state = 3}, + [1109] = {.lex_state = 3}, + [1110] = {.lex_state = 3}, + [1111] = {.lex_state = 3}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 3}, + [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 3}, + [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, [1119] = {.lex_state = 3}, - [1120] = {.lex_state = 3}, + [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, + [1122] = {.lex_state = 3}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, @@ -7880,21 +7901,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1129] = {.lex_state = 0}, [1130] = {.lex_state = 3}, [1131] = {.lex_state = 3}, - [1132] = {.lex_state = 3}, - [1133] = {.lex_state = 3}, - [1134] = {.lex_state = 3}, - [1135] = {.lex_state = 3}, + [1132] = {.lex_state = 0}, + [1133] = {.lex_state = 0}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 3}, + [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 3}, + [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 3}, + [1141] = {.lex_state = 0}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 3}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 3}, + [1145] = {.lex_state = 3}, [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 3}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 3}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8031,72 +8063,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1075), - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym_program] = STATE(1097), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(9), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(10), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -8154,90 +8187,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(472), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_type_arguments] = STATE(1033), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_type_arguments] = STATE(1015), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(6), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), + [sym_statement] = STATE(9), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), [sym_explicit_constructor_invocation] = STATE(7), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8252,7 +8287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -8263,7 +8298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(89), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -8296,90 +8331,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(91), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_switch_label] = STATE(1084), + [sym_switch_label] = STATE(1155), [sym_statement] = STATE(5), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), [aux_sym_program_repeat1] = STATE(5), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_switch_block_statement_group_repeat1] = STATE(165), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_switch_block_statement_group_repeat1] = STATE(190), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8404,9 +8441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_case] = ACTIONS(95), - [anon_sym_default] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_case] = ACTIONS(97), + [anon_sym_default] = ACTIONS(97), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -8438,229 +8475,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(97), - [sym_identifier] = ACTIONS(99), - [sym_decimal_integer_literal] = ACTIONS(102), - [sym_hex_integer_literal] = ACTIONS(102), - [sym_octal_integer_literal] = ACTIONS(105), - [sym_binary_integer_literal] = ACTIONS(105), - [sym_decimal_floating_point_literal] = ACTIONS(105), - [sym_hex_floating_point_literal] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_character_literal] = ACTIONS(105), - [sym_string_literal] = ACTIONS(102), - [sym_text_block] = ACTIONS(105), - [sym_null_literal] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(108), - [anon_sym_PLUS] = ACTIONS(111), - [anon_sym_DASH] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_new] = ACTIONS(120), - [anon_sym_class] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(97), - [anon_sym_case] = ACTIONS(132), - [anon_sym_default] = ACTIONS(134), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(140), - [anon_sym_do] = ACTIONS(143), - [anon_sym_while] = ACTIONS(146), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(152), - [anon_sym_return] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(158), - [anon_sym_synchronized] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(164), - [anon_sym_try] = ACTIONS(167), - [anon_sym_if] = ACTIONS(170), - [anon_sym_for] = ACTIONS(173), - [anon_sym_AT] = ACTIONS(176), - [anon_sym_open] = ACTIONS(179), - [anon_sym_module] = ACTIONS(182), - [anon_sym_static] = ACTIONS(134), - [anon_sym_package] = ACTIONS(185), - [anon_sym_import] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_public] = ACTIONS(134), - [anon_sym_protected] = ACTIONS(134), - [anon_sym_private] = ACTIONS(134), - [anon_sym_abstract] = ACTIONS(134), - [anon_sym_final] = ACTIONS(134), - [anon_sym_strictfp] = ACTIONS(134), - [anon_sym_native] = ACTIONS(134), - [anon_sym_transient] = ACTIONS(134), - [anon_sym_volatile] = ACTIONS(134), - [anon_sym_sealed] = ACTIONS(134), - [anon_sym_non_DASHsealed] = ACTIONS(194), - [anon_sym_ATinterface] = ACTIONS(197), - [anon_sym_interface] = ACTIONS(200), - [anon_sym_byte] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [anon_sym_int] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_char] = ACTIONS(203), - [anon_sym_float] = ACTIONS(206), - [anon_sym_double] = ACTIONS(206), - [sym_boolean_type] = ACTIONS(209), - [sym_void_type] = ACTIONS(209), - [sym_this] = ACTIONS(212), - [sym_super] = ACTIONS(215), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), + [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(107), + [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), + [sym_string_literal] = ACTIONS(104), + [sym_text_block] = ACTIONS(107), + [sym_null_literal] = ACTIONS(104), + [anon_sym_LPAREN] = ACTIONS(110), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(116), + [anon_sym_TILDE] = ACTIONS(116), + [anon_sym_PLUS_PLUS] = ACTIONS(119), + [anon_sym_DASH_DASH] = ACTIONS(119), + [anon_sym_new] = ACTIONS(122), + [anon_sym_class] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_case] = ACTIONS(134), + [anon_sym_default] = ACTIONS(136), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(142), + [anon_sym_do] = ACTIONS(145), + [anon_sym_while] = ACTIONS(148), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(154), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(160), + [anon_sym_synchronized] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(166), + [anon_sym_try] = ACTIONS(169), + [anon_sym_if] = ACTIONS(172), + [anon_sym_for] = ACTIONS(175), + [anon_sym_AT] = ACTIONS(178), + [anon_sym_open] = ACTIONS(181), + [anon_sym_module] = ACTIONS(184), + [anon_sym_static] = ACTIONS(136), + [anon_sym_package] = ACTIONS(187), + [anon_sym_import] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_public] = ACTIONS(136), + [anon_sym_protected] = ACTIONS(136), + [anon_sym_private] = ACTIONS(136), + [anon_sym_abstract] = ACTIONS(136), + [anon_sym_final] = ACTIONS(136), + [anon_sym_strictfp] = ACTIONS(136), + [anon_sym_native] = ACTIONS(136), + [anon_sym_transient] = ACTIONS(136), + [anon_sym_volatile] = ACTIONS(136), + [anon_sym_sealed] = ACTIONS(136), + [anon_sym_non_DASHsealed] = ACTIONS(196), + [anon_sym_record] = ACTIONS(199), + [anon_sym_ATinterface] = ACTIONS(202), + [anon_sym_interface] = ACTIONS(205), + [anon_sym_byte] = ACTIONS(208), + [anon_sym_short] = ACTIONS(208), + [anon_sym_int] = ACTIONS(208), + [anon_sym_long] = ACTIONS(208), + [anon_sym_char] = ACTIONS(208), + [anon_sym_float] = ACTIONS(211), + [anon_sym_double] = ACTIONS(211), + [sym_boolean_type] = ACTIONS(214), + [sym_void_type] = ACTIONS(214), + [sym_this] = ACTIONS(217), + [sym_super] = ACTIONS(220), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8685,9 +8726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_case] = ACTIONS(220), - [anon_sym_default] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_case] = ACTIONS(225), + [anon_sym_default] = ACTIONS(225), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -8719,88 +8760,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8825,7 +8868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(227), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -8858,88 +8901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(10), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(8), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8964,7 +9009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(229), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -8997,88 +9042,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9103,7 +9150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_RBRACE] = ACTIONS(231), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9136,89 +9183,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(226), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9243,6 +9291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(229), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9275,88 +9324,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), + [ts_builtin_sym_end] = ACTIONS(233), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9381,7 +9433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9414,88 +9465,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(8), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(6), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9520,7 +9573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(230), + [anon_sym_RBRACE] = ACTIONS(235), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9553,88 +9606,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(13), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9659,7 +9714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(232), + [anon_sym_RBRACE] = ACTIONS(237), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9692,88 +9747,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(12), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(4), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9798,7 +9855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(234), + [anon_sym_RBRACE] = ACTIONS(239), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9831,87 +9888,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(150), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(202), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9968,87 +10027,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(159), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(206), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10105,87 +10166,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(195), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(1076), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10242,87 +10305,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(1081), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(173), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10379,87 +10444,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(197), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(178), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10516,87 +10583,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(198), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(159), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10653,87 +10722,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(158), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(179), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10790,87 +10861,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(189), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(196), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10927,87 +11000,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(199), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(157), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11064,87 +11139,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(151), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(197), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11201,87 +11278,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(155), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(199), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11338,87 +11417,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(192), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(188), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11475,87 +11556,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(160), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(171), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11612,87 +11695,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(180), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(158), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11749,87 +11834,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(185), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(175), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11886,87 +11973,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(186), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(176), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12023,87 +12112,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(148), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(181), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12160,87 +12251,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(202), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(208), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12297,87 +12390,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(149), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(207), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12434,87 +12529,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(154), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(180), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12571,87 +12668,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(156), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(182), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12708,87 +12807,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(200), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(174), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12845,87 +12946,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(161), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(215), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12982,87 +13085,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(205), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(154), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13119,87 +13224,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(162), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(200), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13256,87 +13363,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(203), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(183), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13393,87 +13502,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(215), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(205), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13530,87 +13641,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(157), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(198), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13667,87 +13780,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(196), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(192), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13804,87 +13919,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(153), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(194), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13941,87 +14058,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(164), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_statement] = STATE(204), + [sym_block] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_assert_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_yield_statement] = STATE(212), + [sym_synchronized_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_try_with_resources_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_enhanced_for_statement] = STATE(212), + [sym__annotation] = STATE(430), + [sym_marker_annotation] = STATE(430), + [sym_annotation] = STATE(430), + [sym_declaration] = STATE(212), + [sym_module_declaration] = STATE(195), + [sym_package_declaration] = STATE(195), + [sym_import_declaration] = STATE(195), + [sym_enum_declaration] = STATE(195), + [sym_class_declaration] = STATE(195), + [sym_modifiers] = STATE(583), + [sym_record_declaration] = STATE(195), + [sym_annotation_type_declaration] = STATE(195), + [sym_interface_declaration] = STATE(195), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(604), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_local_variable_declaration] = STATE(212), + [aux_sym_dimensions_expr_repeat1] = STATE(538), + [aux_sym_modifiers_repeat1] = STATE(373), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14078,978 +14197,984 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(29), [anon_sym_sealed] = ACTIONS(29), [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [45] = { - [ts_builtin_sym_end] = ACTIONS(236), - [sym_identifier] = ACTIONS(238), - [sym_decimal_integer_literal] = ACTIONS(238), - [sym_hex_integer_literal] = ACTIONS(238), - [sym_octal_integer_literal] = ACTIONS(236), - [sym_binary_integer_literal] = ACTIONS(236), - [sym_decimal_floating_point_literal] = ACTIONS(236), - [sym_hex_floating_point_literal] = ACTIONS(238), - [sym_true] = ACTIONS(238), - [sym_false] = ACTIONS(238), - [sym_character_literal] = ACTIONS(236), - [sym_string_literal] = ACTIONS(238), - [sym_text_block] = ACTIONS(236), - [sym_null_literal] = ACTIONS(238), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_AMP_AMP] = ACTIONS(236), - [anon_sym_PIPE_PIPE] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_STAR] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_GT_GT_GT] = ACTIONS(236), - [anon_sym_instanceof] = ACTIONS(238), - [anon_sym_DASH_GT] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_QMARK] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(238), - [anon_sym_BANG] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(236), - [anon_sym_PLUS_PLUS] = ACTIONS(236), - [anon_sym_DASH_DASH] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(238), - [anon_sym_class] = ACTIONS(238), - [anon_sym_COLON_COLON] = ACTIONS(236), - [anon_sym_switch] = ACTIONS(238), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), - [anon_sym_case] = ACTIONS(238), - [anon_sym_default] = ACTIONS(238), - [anon_sym_SEMI] = ACTIONS(236), - [anon_sym_assert] = ACTIONS(238), - [anon_sym_do] = ACTIONS(238), - [anon_sym_while] = ACTIONS(238), - [anon_sym_break] = ACTIONS(238), - [anon_sym_continue] = ACTIONS(238), - [anon_sym_return] = ACTIONS(238), - [anon_sym_yield] = ACTIONS(238), - [anon_sym_synchronized] = ACTIONS(238), - [anon_sym_throw] = ACTIONS(238), - [anon_sym_try] = ACTIONS(238), - [anon_sym_if] = ACTIONS(238), - [anon_sym_else] = ACTIONS(238), - [anon_sym_for] = ACTIONS(238), - [anon_sym_AT] = ACTIONS(238), - [anon_sym_open] = ACTIONS(238), - [anon_sym_module] = ACTIONS(238), - [anon_sym_static] = ACTIONS(238), - [anon_sym_package] = ACTIONS(238), - [anon_sym_import] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(238), - [anon_sym_public] = ACTIONS(238), - [anon_sym_protected] = ACTIONS(238), - [anon_sym_private] = ACTIONS(238), - [anon_sym_abstract] = ACTIONS(238), - [anon_sym_final] = ACTIONS(238), - [anon_sym_strictfp] = ACTIONS(238), - [anon_sym_native] = ACTIONS(238), - [anon_sym_transient] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_sealed] = ACTIONS(238), - [anon_sym_non_DASHsealed] = ACTIONS(236), - [anon_sym_record] = ACTIONS(238), - [anon_sym_ATinterface] = ACTIONS(236), - [anon_sym_interface] = ACTIONS(238), - [anon_sym_byte] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_int] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_char] = ACTIONS(238), - [anon_sym_float] = ACTIONS(238), - [anon_sym_double] = ACTIONS(238), - [sym_boolean_type] = ACTIONS(238), - [sym_void_type] = ACTIONS(238), - [sym_this] = ACTIONS(238), - [sym_super] = ACTIONS(238), + [ts_builtin_sym_end] = ACTIONS(241), + [sym_identifier] = ACTIONS(243), + [sym_decimal_integer_literal] = ACTIONS(243), + [sym_hex_integer_literal] = ACTIONS(243), + [sym_octal_integer_literal] = ACTIONS(241), + [sym_binary_integer_literal] = ACTIONS(241), + [sym_decimal_floating_point_literal] = ACTIONS(241), + [sym_hex_floating_point_literal] = ACTIONS(243), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_character_literal] = ACTIONS(241), + [sym_string_literal] = ACTIONS(243), + [sym_text_block] = ACTIONS(241), + [sym_null_literal] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT_EQ] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(241), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(241), + [anon_sym_AMP_AMP] = ACTIONS(241), + [anon_sym_PIPE_PIPE] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(241), + [anon_sym_PERCENT] = ACTIONS(241), + [anon_sym_LT_LT] = ACTIONS(241), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_GT_GT_GT] = ACTIONS(241), + [anon_sym_instanceof] = ACTIONS(243), + [anon_sym_DASH_GT] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_BANG] = ACTIONS(243), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_PLUS_PLUS] = ACTIONS(241), + [anon_sym_DASH_DASH] = ACTIONS(241), + [anon_sym_new] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(241), + [anon_sym_DOT] = ACTIONS(243), + [anon_sym_class] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_switch] = ACTIONS(243), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_case] = ACTIONS(243), + [anon_sym_default] = ACTIONS(243), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_assert] = ACTIONS(243), + [anon_sym_do] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_break] = ACTIONS(243), + [anon_sym_continue] = ACTIONS(243), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(243), + [anon_sym_synchronized] = ACTIONS(243), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_try] = ACTIONS(243), + [anon_sym_if] = ACTIONS(243), + [anon_sym_else] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(243), + [anon_sym_open] = ACTIONS(243), + [anon_sym_module] = ACTIONS(243), + [anon_sym_static] = ACTIONS(243), + [anon_sym_package] = ACTIONS(243), + [anon_sym_import] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(243), + [anon_sym_public] = ACTIONS(243), + [anon_sym_protected] = ACTIONS(243), + [anon_sym_private] = ACTIONS(243), + [anon_sym_abstract] = ACTIONS(243), + [anon_sym_final] = ACTIONS(243), + [anon_sym_strictfp] = ACTIONS(243), + [anon_sym_native] = ACTIONS(243), + [anon_sym_transient] = ACTIONS(243), + [anon_sym_volatile] = ACTIONS(243), + [anon_sym_sealed] = ACTIONS(243), + [anon_sym_non_DASHsealed] = ACTIONS(241), + [anon_sym_record] = ACTIONS(243), + [anon_sym_ATinterface] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_byte] = ACTIONS(243), + [anon_sym_short] = ACTIONS(243), + [anon_sym_int] = ACTIONS(243), + [anon_sym_long] = ACTIONS(243), + [anon_sym_char] = ACTIONS(243), + [anon_sym_float] = ACTIONS(243), + [anon_sym_double] = ACTIONS(243), + [sym_boolean_type] = ACTIONS(243), + [sym_void_type] = ACTIONS(243), + [sym_this] = ACTIONS(243), + [sym_super] = ACTIONS(243), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(240), - [sym_identifier] = ACTIONS(242), - [sym_decimal_integer_literal] = ACTIONS(242), - [sym_hex_integer_literal] = ACTIONS(242), - [sym_octal_integer_literal] = ACTIONS(240), - [sym_binary_integer_literal] = ACTIONS(240), - [sym_decimal_floating_point_literal] = ACTIONS(240), - [sym_hex_floating_point_literal] = ACTIONS(242), - [sym_true] = ACTIONS(242), - [sym_false] = ACTIONS(242), - [sym_character_literal] = ACTIONS(240), - [sym_string_literal] = ACTIONS(242), - [sym_text_block] = ACTIONS(240), - [sym_null_literal] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(242), - [anon_sym_STAR] = ACTIONS(240), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(242), - [anon_sym_GT_GT_GT] = ACTIONS(240), - [anon_sym_instanceof] = ACTIONS(242), - [anon_sym_DASH_GT] = ACTIONS(240), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_COLON] = ACTIONS(242), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_PLUS_PLUS] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(242), - [anon_sym_LBRACK] = ACTIONS(240), - [anon_sym_RBRACK] = ACTIONS(240), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_class] = ACTIONS(242), - [anon_sym_COLON_COLON] = ACTIONS(240), - [anon_sym_switch] = ACTIONS(242), - [anon_sym_LBRACE] = ACTIONS(240), - [anon_sym_RBRACE] = ACTIONS(240), - [anon_sym_case] = ACTIONS(242), - [anon_sym_default] = ACTIONS(242), - [anon_sym_SEMI] = ACTIONS(240), - [anon_sym_assert] = ACTIONS(242), - [anon_sym_do] = ACTIONS(242), - [anon_sym_while] = ACTIONS(242), - [anon_sym_break] = ACTIONS(242), - [anon_sym_continue] = ACTIONS(242), - [anon_sym_return] = ACTIONS(242), - [anon_sym_yield] = ACTIONS(242), - [anon_sym_synchronized] = ACTIONS(242), - [anon_sym_throw] = ACTIONS(242), - [anon_sym_try] = ACTIONS(242), - [anon_sym_if] = ACTIONS(242), - [anon_sym_else] = ACTIONS(242), - [anon_sym_for] = ACTIONS(242), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_open] = ACTIONS(242), - [anon_sym_module] = ACTIONS(242), - [anon_sym_static] = ACTIONS(242), - [anon_sym_package] = ACTIONS(242), - [anon_sym_import] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(242), - [anon_sym_public] = ACTIONS(242), - [anon_sym_protected] = ACTIONS(242), - [anon_sym_private] = ACTIONS(242), - [anon_sym_abstract] = ACTIONS(242), - [anon_sym_final] = ACTIONS(242), - [anon_sym_strictfp] = ACTIONS(242), - [anon_sym_native] = ACTIONS(242), - [anon_sym_transient] = ACTIONS(242), - [anon_sym_volatile] = ACTIONS(242), - [anon_sym_sealed] = ACTIONS(242), - [anon_sym_non_DASHsealed] = ACTIONS(240), - [anon_sym_record] = ACTIONS(242), - [anon_sym_ATinterface] = ACTIONS(240), - [anon_sym_interface] = ACTIONS(242), - [anon_sym_byte] = ACTIONS(242), - [anon_sym_short] = ACTIONS(242), - [anon_sym_int] = ACTIONS(242), - [anon_sym_long] = ACTIONS(242), - [anon_sym_char] = ACTIONS(242), - [anon_sym_float] = ACTIONS(242), - [anon_sym_double] = ACTIONS(242), - [sym_boolean_type] = ACTIONS(242), - [sym_void_type] = ACTIONS(242), - [sym_this] = ACTIONS(242), - [sym_super] = ACTIONS(242), + [ts_builtin_sym_end] = ACTIONS(245), + [sym_identifier] = ACTIONS(247), + [sym_decimal_integer_literal] = ACTIONS(247), + [sym_hex_integer_literal] = ACTIONS(247), + [sym_octal_integer_literal] = ACTIONS(245), + [sym_binary_integer_literal] = ACTIONS(245), + [sym_decimal_floating_point_literal] = ACTIONS(245), + [sym_hex_floating_point_literal] = ACTIONS(247), + [sym_true] = ACTIONS(247), + [sym_false] = ACTIONS(247), + [sym_character_literal] = ACTIONS(245), + [sym_string_literal] = ACTIONS(247), + [sym_text_block] = ACTIONS(245), + [sym_null_literal] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(247), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(247), + [anon_sym_LT] = ACTIONS(247), + [anon_sym_GT_EQ] = ACTIONS(245), + [anon_sym_LT_EQ] = ACTIONS(245), + [anon_sym_EQ_EQ] = ACTIONS(245), + [anon_sym_BANG_EQ] = ACTIONS(245), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_SLASH] = ACTIONS(247), + [anon_sym_PIPE] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_PERCENT] = ACTIONS(245), + [anon_sym_LT_LT] = ACTIONS(245), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_GT_GT_GT] = ACTIONS(245), + [anon_sym_instanceof] = ACTIONS(247), + [anon_sym_DASH_GT] = ACTIONS(245), + [anon_sym_COMMA] = ACTIONS(245), + [anon_sym_QMARK] = ACTIONS(245), + [anon_sym_COLON] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(245), + [anon_sym_DASH_DASH] = ACTIONS(245), + [anon_sym_new] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(245), + [anon_sym_RBRACK] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_class] = ACTIONS(247), + [anon_sym_COLON_COLON] = ACTIONS(245), + [anon_sym_switch] = ACTIONS(247), + [anon_sym_LBRACE] = ACTIONS(245), + [anon_sym_RBRACE] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_default] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_do] = ACTIONS(247), + [anon_sym_while] = ACTIONS(247), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(247), + [anon_sym_return] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(247), + [anon_sym_synchronized] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_try] = ACTIONS(247), + [anon_sym_if] = ACTIONS(247), + [anon_sym_else] = ACTIONS(247), + [anon_sym_for] = ACTIONS(247), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_open] = ACTIONS(247), + [anon_sym_module] = ACTIONS(247), + [anon_sym_static] = ACTIONS(247), + [anon_sym_package] = ACTIONS(247), + [anon_sym_import] = ACTIONS(247), + [anon_sym_enum] = ACTIONS(247), + [anon_sym_public] = ACTIONS(247), + [anon_sym_protected] = ACTIONS(247), + [anon_sym_private] = ACTIONS(247), + [anon_sym_abstract] = ACTIONS(247), + [anon_sym_final] = ACTIONS(247), + [anon_sym_strictfp] = ACTIONS(247), + [anon_sym_native] = ACTIONS(247), + [anon_sym_transient] = ACTIONS(247), + [anon_sym_volatile] = ACTIONS(247), + [anon_sym_sealed] = ACTIONS(247), + [anon_sym_non_DASHsealed] = ACTIONS(245), + [anon_sym_record] = ACTIONS(247), + [anon_sym_ATinterface] = ACTIONS(245), + [anon_sym_interface] = ACTIONS(247), + [anon_sym_byte] = ACTIONS(247), + [anon_sym_short] = ACTIONS(247), + [anon_sym_int] = ACTIONS(247), + [anon_sym_long] = ACTIONS(247), + [anon_sym_char] = ACTIONS(247), + [anon_sym_float] = ACTIONS(247), + [anon_sym_double] = ACTIONS(247), + [sym_boolean_type] = ACTIONS(247), + [sym_void_type] = ACTIONS(247), + [sym_this] = ACTIONS(247), + [sym_super] = ACTIONS(247), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [sym_decimal_integer_literal] = ACTIONS(246), - [sym_hex_integer_literal] = ACTIONS(246), - [sym_octal_integer_literal] = ACTIONS(244), - [sym_binary_integer_literal] = ACTIONS(244), - [sym_decimal_floating_point_literal] = ACTIONS(244), - [sym_hex_floating_point_literal] = ACTIONS(246), - [sym_true] = ACTIONS(246), - [sym_false] = ACTIONS(246), - [sym_character_literal] = ACTIONS(244), - [sym_string_literal] = ACTIONS(246), - [sym_text_block] = ACTIONS(244), - [sym_null_literal] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_AMP] = ACTIONS(246), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(244), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(246), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(244), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_GT_GT_GT] = ACTIONS(244), - [anon_sym_instanceof] = ACTIONS(246), - [anon_sym_DASH_GT] = ACTIONS(244), - [anon_sym_COMMA] = ACTIONS(244), - [anon_sym_QMARK] = ACTIONS(244), - [anon_sym_COLON] = ACTIONS(244), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_new] = ACTIONS(246), - [anon_sym_RBRACK] = ACTIONS(244), - [anon_sym_class] = ACTIONS(246), - [anon_sym_switch] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(246), - [anon_sym_default] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(244), - [anon_sym_assert] = ACTIONS(246), - [anon_sym_do] = ACTIONS(246), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(246), - [anon_sym_continue] = ACTIONS(246), - [anon_sym_return] = ACTIONS(246), - [anon_sym_yield] = ACTIONS(246), - [anon_sym_synchronized] = ACTIONS(246), - [anon_sym_throw] = ACTIONS(246), - [anon_sym_try] = ACTIONS(246), - [anon_sym_if] = ACTIONS(246), - [anon_sym_else] = ACTIONS(246), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(246), - [anon_sym_open] = ACTIONS(246), - [anon_sym_module] = ACTIONS(246), - [anon_sym_static] = ACTIONS(246), - [anon_sym_package] = ACTIONS(246), - [anon_sym_import] = ACTIONS(246), - [anon_sym_enum] = ACTIONS(246), - [anon_sym_public] = ACTIONS(246), - [anon_sym_protected] = ACTIONS(246), - [anon_sym_private] = ACTIONS(246), - [anon_sym_abstract] = ACTIONS(246), - [anon_sym_final] = ACTIONS(246), - [anon_sym_strictfp] = ACTIONS(246), - [anon_sym_native] = ACTIONS(246), - [anon_sym_transient] = ACTIONS(246), - [anon_sym_volatile] = ACTIONS(246), - [anon_sym_sealed] = ACTIONS(246), - [anon_sym_non_DASHsealed] = ACTIONS(244), - [anon_sym_record] = ACTIONS(246), - [anon_sym_ATinterface] = ACTIONS(244), - [anon_sym_interface] = ACTIONS(246), - [anon_sym_byte] = ACTIONS(246), - [anon_sym_short] = ACTIONS(246), - [anon_sym_int] = ACTIONS(246), - [anon_sym_long] = ACTIONS(246), - [anon_sym_char] = ACTIONS(246), - [anon_sym_float] = ACTIONS(246), - [anon_sym_double] = ACTIONS(246), - [sym_boolean_type] = ACTIONS(246), - [sym_void_type] = ACTIONS(246), - [sym_this] = ACTIONS(246), - [sym_super] = ACTIONS(246), + [ts_builtin_sym_end] = ACTIONS(249), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(251), + [sym_hex_integer_literal] = ACTIONS(251), + [sym_octal_integer_literal] = ACTIONS(249), + [sym_binary_integer_literal] = ACTIONS(249), + [sym_decimal_floating_point_literal] = ACTIONS(249), + [sym_hex_floating_point_literal] = ACTIONS(251), + [sym_true] = ACTIONS(251), + [sym_false] = ACTIONS(251), + [sym_character_literal] = ACTIONS(249), + [sym_string_literal] = ACTIONS(251), + [sym_text_block] = ACTIONS(249), + [sym_null_literal] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT_EQ] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_AMP_AMP] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_GT_GT_GT] = ACTIONS(249), + [anon_sym_instanceof] = ACTIONS(251), + [anon_sym_DASH_GT] = ACTIONS(249), + [anon_sym_COMMA] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_RBRACK] = ACTIONS(249), + [anon_sym_class] = ACTIONS(251), + [anon_sym_switch] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(249), + [anon_sym_RBRACE] = ACTIONS(249), + [anon_sym_case] = ACTIONS(251), + [anon_sym_default] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_assert] = ACTIONS(251), + [anon_sym_do] = ACTIONS(251), + [anon_sym_while] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_return] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(251), + [anon_sym_synchronized] = ACTIONS(251), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_try] = ACTIONS(251), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(251), + [anon_sym_for] = ACTIONS(251), + [anon_sym_AT] = ACTIONS(251), + [anon_sym_open] = ACTIONS(251), + [anon_sym_module] = ACTIONS(251), + [anon_sym_static] = ACTIONS(251), + [anon_sym_package] = ACTIONS(251), + [anon_sym_import] = ACTIONS(251), + [anon_sym_enum] = ACTIONS(251), + [anon_sym_public] = ACTIONS(251), + [anon_sym_protected] = ACTIONS(251), + [anon_sym_private] = ACTIONS(251), + [anon_sym_abstract] = ACTIONS(251), + [anon_sym_final] = ACTIONS(251), + [anon_sym_strictfp] = ACTIONS(251), + [anon_sym_native] = ACTIONS(251), + [anon_sym_transient] = ACTIONS(251), + [anon_sym_volatile] = ACTIONS(251), + [anon_sym_sealed] = ACTIONS(251), + [anon_sym_non_DASHsealed] = ACTIONS(249), + [anon_sym_record] = ACTIONS(251), + [anon_sym_ATinterface] = ACTIONS(249), + [anon_sym_interface] = ACTIONS(251), + [anon_sym_byte] = ACTIONS(251), + [anon_sym_short] = ACTIONS(251), + [anon_sym_int] = ACTIONS(251), + [anon_sym_long] = ACTIONS(251), + [anon_sym_char] = ACTIONS(251), + [anon_sym_float] = ACTIONS(251), + [anon_sym_double] = ACTIONS(251), + [sym_boolean_type] = ACTIONS(251), + [sym_void_type] = ACTIONS(251), + [sym_this] = ACTIONS(251), + [sym_super] = ACTIONS(251), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(248), - [sym_identifier] = ACTIONS(250), - [sym_decimal_integer_literal] = ACTIONS(250), - [sym_hex_integer_literal] = ACTIONS(250), - [sym_octal_integer_literal] = ACTIONS(248), - [sym_binary_integer_literal] = ACTIONS(248), - [sym_decimal_floating_point_literal] = ACTIONS(248), - [sym_hex_floating_point_literal] = ACTIONS(250), - [sym_true] = ACTIONS(250), - [sym_false] = ACTIONS(250), - [sym_character_literal] = ACTIONS(248), - [sym_string_literal] = ACTIONS(250), - [sym_text_block] = ACTIONS(248), - [sym_null_literal] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_AMP] = ACTIONS(250), - [anon_sym_RPAREN] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(250), - [anon_sym_GT_EQ] = ACTIONS(248), - [anon_sym_LT_EQ] = ACTIONS(248), - [anon_sym_EQ_EQ] = ACTIONS(248), - [anon_sym_BANG_EQ] = ACTIONS(248), - [anon_sym_AMP_AMP] = ACTIONS(248), - [anon_sym_PIPE_PIPE] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_STAR] = ACTIONS(248), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(250), - [anon_sym_CARET] = ACTIONS(248), - [anon_sym_PERCENT] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_GT_GT_GT] = ACTIONS(248), - [anon_sym_instanceof] = ACTIONS(250), - [anon_sym_DASH_GT] = ACTIONS(248), - [anon_sym_COMMA] = ACTIONS(248), - [anon_sym_QMARK] = ACTIONS(248), - [anon_sym_COLON] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(248), - [anon_sym_DASH_DASH] = ACTIONS(248), - [anon_sym_new] = ACTIONS(250), - [anon_sym_RBRACK] = ACTIONS(248), - [anon_sym_class] = ACTIONS(250), - [anon_sym_switch] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(248), - [anon_sym_case] = ACTIONS(250), - [anon_sym_default] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(248), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(250), - [anon_sym_return] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(250), - [anon_sym_synchronized] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_else] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_open] = ACTIONS(250), - [anon_sym_module] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_package] = ACTIONS(250), - [anon_sym_import] = ACTIONS(250), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_final] = ACTIONS(250), - [anon_sym_strictfp] = ACTIONS(250), - [anon_sym_native] = ACTIONS(250), - [anon_sym_transient] = ACTIONS(250), - [anon_sym_volatile] = ACTIONS(250), - [anon_sym_sealed] = ACTIONS(250), - [anon_sym_non_DASHsealed] = ACTIONS(248), - [anon_sym_record] = ACTIONS(250), - [anon_sym_ATinterface] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(250), - [anon_sym_byte] = ACTIONS(250), - [anon_sym_short] = ACTIONS(250), - [anon_sym_int] = ACTIONS(250), - [anon_sym_long] = ACTIONS(250), - [anon_sym_char] = ACTIONS(250), - [anon_sym_float] = ACTIONS(250), - [anon_sym_double] = ACTIONS(250), - [sym_boolean_type] = ACTIONS(250), - [sym_void_type] = ACTIONS(250), - [sym_this] = ACTIONS(250), - [sym_super] = ACTIONS(250), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [sym_decimal_integer_literal] = ACTIONS(255), + [sym_hex_integer_literal] = ACTIONS(255), + [sym_octal_integer_literal] = ACTIONS(253), + [sym_binary_integer_literal] = ACTIONS(253), + [sym_decimal_floating_point_literal] = ACTIONS(253), + [sym_hex_floating_point_literal] = ACTIONS(255), + [sym_true] = ACTIONS(255), + [sym_false] = ACTIONS(255), + [sym_character_literal] = ACTIONS(253), + [sym_string_literal] = ACTIONS(255), + [sym_text_block] = ACTIONS(253), + [sym_null_literal] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(255), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_PERCENT] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(253), + [anon_sym_GT_GT] = ACTIONS(255), + [anon_sym_GT_GT_GT] = ACTIONS(253), + [anon_sym_instanceof] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(253), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_PLUS_PLUS] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(253), + [anon_sym_new] = ACTIONS(255), + [anon_sym_RBRACK] = ACTIONS(253), + [anon_sym_class] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_case] = ACTIONS(255), + [anon_sym_default] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_assert] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_yield] = ACTIONS(255), + [anon_sym_synchronized] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(255), + [anon_sym_try] = ACTIONS(255), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(255), + [anon_sym_open] = ACTIONS(255), + [anon_sym_module] = ACTIONS(255), + [anon_sym_static] = ACTIONS(255), + [anon_sym_package] = ACTIONS(255), + [anon_sym_import] = ACTIONS(255), + [anon_sym_enum] = ACTIONS(255), + [anon_sym_public] = ACTIONS(255), + [anon_sym_protected] = ACTIONS(255), + [anon_sym_private] = ACTIONS(255), + [anon_sym_abstract] = ACTIONS(255), + [anon_sym_final] = ACTIONS(255), + [anon_sym_strictfp] = ACTIONS(255), + [anon_sym_native] = ACTIONS(255), + [anon_sym_transient] = ACTIONS(255), + [anon_sym_volatile] = ACTIONS(255), + [anon_sym_sealed] = ACTIONS(255), + [anon_sym_non_DASHsealed] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [anon_sym_ATinterface] = ACTIONS(253), + [anon_sym_interface] = ACTIONS(255), + [anon_sym_byte] = ACTIONS(255), + [anon_sym_short] = ACTIONS(255), + [anon_sym_int] = ACTIONS(255), + [anon_sym_long] = ACTIONS(255), + [anon_sym_char] = ACTIONS(255), + [anon_sym_float] = ACTIONS(255), + [anon_sym_double] = ACTIONS(255), + [sym_boolean_type] = ACTIONS(255), + [sym_void_type] = ACTIONS(255), + [sym_this] = ACTIONS(255), + [sym_super] = ACTIONS(255), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(252), - [sym_identifier] = ACTIONS(254), - [sym_decimal_integer_literal] = ACTIONS(254), - [sym_hex_integer_literal] = ACTIONS(254), - [sym_octal_integer_literal] = ACTIONS(252), - [sym_binary_integer_literal] = ACTIONS(252), - [sym_decimal_floating_point_literal] = ACTIONS(252), - [sym_hex_floating_point_literal] = ACTIONS(254), - [sym_true] = ACTIONS(254), - [sym_false] = ACTIONS(254), - [sym_character_literal] = ACTIONS(252), - [sym_string_literal] = ACTIONS(254), - [sym_text_block] = ACTIONS(252), - [sym_null_literal] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(254), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PLUS] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_instanceof] = ACTIONS(254), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_COMMA] = ACTIONS(252), - [anon_sym_QMARK] = ACTIONS(252), - [anon_sym_COLON] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_new] = ACTIONS(254), - [anon_sym_RBRACK] = ACTIONS(252), - [anon_sym_class] = ACTIONS(254), - [anon_sym_switch] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_default] = ACTIONS(254), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [anon_sym_break] = ACTIONS(254), - [anon_sym_continue] = ACTIONS(254), - [anon_sym_return] = ACTIONS(254), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_synchronized] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_if] = ACTIONS(254), - [anon_sym_else] = ACTIONS(254), - [anon_sym_for] = ACTIONS(254), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_open] = ACTIONS(254), - [anon_sym_module] = ACTIONS(254), - [anon_sym_static] = ACTIONS(254), - [anon_sym_package] = ACTIONS(254), - [anon_sym_import] = ACTIONS(254), - [anon_sym_enum] = ACTIONS(254), - [anon_sym_public] = ACTIONS(254), - [anon_sym_protected] = ACTIONS(254), - [anon_sym_private] = ACTIONS(254), - [anon_sym_abstract] = ACTIONS(254), - [anon_sym_final] = ACTIONS(254), - [anon_sym_strictfp] = ACTIONS(254), - [anon_sym_native] = ACTIONS(254), - [anon_sym_transient] = ACTIONS(254), - [anon_sym_volatile] = ACTIONS(254), - [anon_sym_sealed] = ACTIONS(254), - [anon_sym_non_DASHsealed] = ACTIONS(252), - [anon_sym_ATinterface] = ACTIONS(252), - [anon_sym_interface] = ACTIONS(254), - [anon_sym_byte] = ACTIONS(254), - [anon_sym_short] = ACTIONS(254), - [anon_sym_int] = ACTIONS(254), - [anon_sym_long] = ACTIONS(254), - [anon_sym_char] = ACTIONS(254), - [anon_sym_float] = ACTIONS(254), - [anon_sym_double] = ACTIONS(254), - [sym_boolean_type] = ACTIONS(254), - [sym_void_type] = ACTIONS(254), - [sym_this] = ACTIONS(254), - [sym_super] = ACTIONS(254), + [ts_builtin_sym_end] = ACTIONS(257), + [sym_identifier] = ACTIONS(259), + [sym_decimal_integer_literal] = ACTIONS(259), + [sym_hex_integer_literal] = ACTIONS(259), + [sym_octal_integer_literal] = ACTIONS(257), + [sym_binary_integer_literal] = ACTIONS(257), + [sym_decimal_floating_point_literal] = ACTIONS(257), + [sym_hex_floating_point_literal] = ACTIONS(259), + [sym_true] = ACTIONS(259), + [sym_false] = ACTIONS(259), + [sym_character_literal] = ACTIONS(257), + [sym_string_literal] = ACTIONS(259), + [sym_text_block] = ACTIONS(257), + [sym_null_literal] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_AMP_AMP] = ACTIONS(257), + [anon_sym_PIPE_PIPE] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_GT_GT_GT] = ACTIONS(257), + [anon_sym_instanceof] = ACTIONS(259), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_QMARK] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_new] = ACTIONS(259), + [anon_sym_RBRACK] = ACTIONS(257), + [anon_sym_class] = ACTIONS(259), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_assert] = ACTIONS(259), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_synchronized] = ACTIONS(259), + [anon_sym_throw] = ACTIONS(259), + [anon_sym_try] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_open] = ACTIONS(259), + [anon_sym_module] = ACTIONS(259), + [anon_sym_static] = ACTIONS(259), + [anon_sym_package] = ACTIONS(259), + [anon_sym_import] = ACTIONS(259), + [anon_sym_enum] = ACTIONS(259), + [anon_sym_public] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_abstract] = ACTIONS(259), + [anon_sym_final] = ACTIONS(259), + [anon_sym_strictfp] = ACTIONS(259), + [anon_sym_native] = ACTIONS(259), + [anon_sym_transient] = ACTIONS(259), + [anon_sym_volatile] = ACTIONS(259), + [anon_sym_sealed] = ACTIONS(259), + [anon_sym_non_DASHsealed] = ACTIONS(257), + [anon_sym_record] = ACTIONS(259), + [anon_sym_ATinterface] = ACTIONS(257), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_byte] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_int] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_char] = ACTIONS(259), + [anon_sym_float] = ACTIONS(259), + [anon_sym_double] = ACTIONS(259), + [sym_boolean_type] = ACTIONS(259), + [sym_void_type] = ACTIONS(259), + [sym_this] = ACTIONS(259), + [sym_super] = ACTIONS(259), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_decimal_integer_literal] = ACTIONS(258), - [sym_hex_integer_literal] = ACTIONS(258), - [sym_octal_integer_literal] = ACTIONS(256), - [sym_binary_integer_literal] = ACTIONS(256), - [sym_decimal_floating_point_literal] = ACTIONS(256), - [sym_hex_floating_point_literal] = ACTIONS(258), - [sym_true] = ACTIONS(258), - [sym_false] = ACTIONS(258), - [sym_character_literal] = ACTIONS(256), - [sym_string_literal] = ACTIONS(258), - [sym_text_block] = ACTIONS(256), - [sym_null_literal] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_STAR] = ACTIONS(256), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(256), - [anon_sym_PERCENT] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_GT_GT_GT] = ACTIONS(256), - [anon_sym_instanceof] = ACTIONS(258), - [anon_sym_DASH_GT] = ACTIONS(256), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_QMARK] = ACTIONS(256), - [anon_sym_COLON] = ACTIONS(256), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(256), - [anon_sym_DASH_DASH] = ACTIONS(256), - [anon_sym_new] = ACTIONS(258), - [anon_sym_RBRACK] = ACTIONS(256), - [anon_sym_class] = ACTIONS(258), - [anon_sym_switch] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(256), - [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(258), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_assert] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [anon_sym_break] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(258), - [anon_sym_synchronized] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_open] = ACTIONS(258), - [anon_sym_module] = ACTIONS(258), - [anon_sym_static] = ACTIONS(258), - [anon_sym_package] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_enum] = ACTIONS(258), - [anon_sym_public] = ACTIONS(258), - [anon_sym_protected] = ACTIONS(258), - [anon_sym_private] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_final] = ACTIONS(258), - [anon_sym_strictfp] = ACTIONS(258), - [anon_sym_native] = ACTIONS(258), - [anon_sym_transient] = ACTIONS(258), - [anon_sym_volatile] = ACTIONS(258), - [anon_sym_sealed] = ACTIONS(258), - [anon_sym_non_DASHsealed] = ACTIONS(256), - [anon_sym_ATinterface] = ACTIONS(256), - [anon_sym_interface] = ACTIONS(258), - [anon_sym_byte] = ACTIONS(258), - [anon_sym_short] = ACTIONS(258), - [anon_sym_int] = ACTIONS(258), - [anon_sym_long] = ACTIONS(258), - [anon_sym_char] = ACTIONS(258), - [anon_sym_float] = ACTIONS(258), - [anon_sym_double] = ACTIONS(258), - [sym_boolean_type] = ACTIONS(258), - [sym_void_type] = ACTIONS(258), - [sym_this] = ACTIONS(258), - [sym_super] = ACTIONS(258), + [sym_identifier] = ACTIONS(261), + [sym_decimal_integer_literal] = ACTIONS(261), + [sym_hex_integer_literal] = ACTIONS(261), + [sym_octal_integer_literal] = ACTIONS(263), + [sym_binary_integer_literal] = ACTIONS(263), + [sym_decimal_floating_point_literal] = ACTIONS(263), + [sym_hex_floating_point_literal] = ACTIONS(261), + [sym_true] = ACTIONS(261), + [sym_false] = ACTIONS(261), + [sym_character_literal] = ACTIONS(263), + [sym_string_literal] = ACTIONS(261), + [sym_text_block] = ACTIONS(263), + [sym_null_literal] = ACTIONS(261), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_RPAREN] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_GT_EQ] = ACTIONS(263), + [anon_sym_LT_EQ] = ACTIONS(263), + [anon_sym_EQ_EQ] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(263), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_CARET] = ACTIONS(263), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(261), + [anon_sym_GT_GT_GT] = ACTIONS(263), + [anon_sym_instanceof] = ACTIONS(261), + [anon_sym_DASH_GT] = ACTIONS(263), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_QMARK] = ACTIONS(263), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_TILDE] = ACTIONS(263), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_DASH_DASH] = ACTIONS(263), + [anon_sym_new] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_RBRACK] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(261), + [anon_sym_class] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_default] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(261), + [anon_sym_do] = ACTIONS(261), + [anon_sym_while] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_return] = ACTIONS(261), + [anon_sym_yield] = ACTIONS(261), + [anon_sym_synchronized] = ACTIONS(261), + [anon_sym_throw] = ACTIONS(261), + [anon_sym_try] = ACTIONS(261), + [anon_sym_if] = ACTIONS(261), + [anon_sym_for] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [anon_sym_open] = ACTIONS(261), + [anon_sym_module] = ACTIONS(261), + [anon_sym_static] = ACTIONS(261), + [anon_sym_package] = ACTIONS(261), + [anon_sym_import] = ACTIONS(261), + [anon_sym_enum] = ACTIONS(261), + [anon_sym_public] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_abstract] = ACTIONS(261), + [anon_sym_final] = ACTIONS(261), + [anon_sym_strictfp] = ACTIONS(261), + [anon_sym_native] = ACTIONS(261), + [anon_sym_transient] = ACTIONS(261), + [anon_sym_volatile] = ACTIONS(261), + [anon_sym_sealed] = ACTIONS(261), + [anon_sym_non_DASHsealed] = ACTIONS(263), + [anon_sym_record] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(263), + [anon_sym_interface] = ACTIONS(261), + [anon_sym_byte] = ACTIONS(261), + [anon_sym_short] = ACTIONS(261), + [anon_sym_int] = ACTIONS(261), + [anon_sym_long] = ACTIONS(261), + [anon_sym_char] = ACTIONS(261), + [anon_sym_float] = ACTIONS(261), + [anon_sym_double] = ACTIONS(261), + [sym_boolean_type] = ACTIONS(261), + [sym_void_type] = ACTIONS(261), + [sym_this] = ACTIONS(261), + [sym_super] = ACTIONS(261), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(260), - [sym_identifier] = ACTIONS(262), - [sym_decimal_integer_literal] = ACTIONS(262), - [sym_hex_integer_literal] = ACTIONS(262), - [sym_octal_integer_literal] = ACTIONS(260), - [sym_binary_integer_literal] = ACTIONS(260), - [sym_decimal_floating_point_literal] = ACTIONS(260), - [sym_hex_floating_point_literal] = ACTIONS(262), - [sym_true] = ACTIONS(262), - [sym_false] = ACTIONS(262), - [sym_character_literal] = ACTIONS(260), - [sym_string_literal] = ACTIONS(262), - [sym_text_block] = ACTIONS(260), - [sym_null_literal] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_GT] = ACTIONS(262), - [anon_sym_LT] = ACTIONS(262), - [anon_sym_GT_EQ] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(260), - [anon_sym_EQ_EQ] = ACTIONS(260), - [anon_sym_BANG_EQ] = ACTIONS(260), - [anon_sym_AMP_AMP] = ACTIONS(260), - [anon_sym_PIPE_PIPE] = ACTIONS(260), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(260), - [anon_sym_instanceof] = ACTIONS(262), - [anon_sym_DASH_GT] = ACTIONS(260), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_QMARK] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(262), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_PLUS_PLUS] = ACTIONS(260), - [anon_sym_DASH_DASH] = ACTIONS(260), - [anon_sym_new] = ACTIONS(262), - [anon_sym_RBRACK] = ACTIONS(260), - [anon_sym_class] = ACTIONS(262), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(262), - [anon_sym_SEMI] = ACTIONS(260), - [anon_sym_assert] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [anon_sym_break] = ACTIONS(262), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_yield] = ACTIONS(262), - [anon_sym_synchronized] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_if] = ACTIONS(262), - [anon_sym_else] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_open] = ACTIONS(262), - [anon_sym_module] = ACTIONS(262), - [anon_sym_static] = ACTIONS(262), - [anon_sym_package] = ACTIONS(262), - [anon_sym_import] = ACTIONS(262), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_public] = ACTIONS(262), - [anon_sym_protected] = ACTIONS(262), - [anon_sym_private] = ACTIONS(262), - [anon_sym_abstract] = ACTIONS(262), - [anon_sym_final] = ACTIONS(262), - [anon_sym_strictfp] = ACTIONS(262), - [anon_sym_native] = ACTIONS(262), - [anon_sym_transient] = ACTIONS(262), - [anon_sym_volatile] = ACTIONS(262), - [anon_sym_sealed] = ACTIONS(262), - [anon_sym_non_DASHsealed] = ACTIONS(260), - [anon_sym_ATinterface] = ACTIONS(260), - [anon_sym_interface] = ACTIONS(262), - [anon_sym_byte] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_int] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_char] = ACTIONS(262), - [anon_sym_float] = ACTIONS(262), - [anon_sym_double] = ACTIONS(262), - [sym_boolean_type] = ACTIONS(262), - [sym_void_type] = ACTIONS(262), - [sym_this] = ACTIONS(262), - [sym_super] = ACTIONS(262), + [ts_builtin_sym_end] = ACTIONS(265), + [sym_identifier] = ACTIONS(267), + [sym_decimal_integer_literal] = ACTIONS(267), + [sym_hex_integer_literal] = ACTIONS(267), + [sym_octal_integer_literal] = ACTIONS(265), + [sym_binary_integer_literal] = ACTIONS(265), + [sym_decimal_floating_point_literal] = ACTIONS(265), + [sym_hex_floating_point_literal] = ACTIONS(267), + [sym_true] = ACTIONS(267), + [sym_false] = ACTIONS(267), + [sym_character_literal] = ACTIONS(265), + [sym_string_literal] = ACTIONS(267), + [sym_text_block] = ACTIONS(265), + [sym_null_literal] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(265), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(265), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_DASH_GT] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_QMARK] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(265), + [anon_sym_new] = ACTIONS(267), + [anon_sym_RBRACK] = ACTIONS(265), + [anon_sym_class] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_case] = ACTIONS(267), + [anon_sym_default] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_return] = ACTIONS(267), + [anon_sym_yield] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + [anon_sym_throw] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_open] = ACTIONS(267), + [anon_sym_module] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_import] = ACTIONS(267), + [anon_sym_enum] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_abstract] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_strictfp] = ACTIONS(267), + [anon_sym_native] = ACTIONS(267), + [anon_sym_transient] = ACTIONS(267), + [anon_sym_volatile] = ACTIONS(267), + [anon_sym_sealed] = ACTIONS(267), + [anon_sym_non_DASHsealed] = ACTIONS(265), + [anon_sym_record] = ACTIONS(267), + [anon_sym_ATinterface] = ACTIONS(265), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_byte] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [sym_boolean_type] = ACTIONS(267), + [sym_void_type] = ACTIONS(267), + [sym_this] = ACTIONS(267), + [sym_super] = ACTIONS(267), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_identifier] = ACTIONS(264), - [sym_decimal_integer_literal] = ACTIONS(264), - [sym_hex_integer_literal] = ACTIONS(264), - [sym_octal_integer_literal] = ACTIONS(266), - [sym_binary_integer_literal] = ACTIONS(266), - [sym_decimal_floating_point_literal] = ACTIONS(266), - [sym_hex_floating_point_literal] = ACTIONS(264), - [sym_true] = ACTIONS(264), - [sym_false] = ACTIONS(264), - [sym_character_literal] = ACTIONS(266), - [sym_string_literal] = ACTIONS(264), - [sym_text_block] = ACTIONS(266), - [sym_null_literal] = ACTIONS(264), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(264), - [anon_sym_LT] = ACTIONS(264), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_AMP_AMP] = ACTIONS(266), - [anon_sym_PIPE_PIPE] = ACTIONS(266), - [anon_sym_PLUS] = ACTIONS(264), - [anon_sym_DASH] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_SLASH] = ACTIONS(264), - [anon_sym_PIPE] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_GT_GT] = ACTIONS(264), - [anon_sym_GT_GT_GT] = ACTIONS(266), - [anon_sym_instanceof] = ACTIONS(264), - [anon_sym_DASH_GT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(266), - [anon_sym_COLON] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(264), - [anon_sym_TILDE] = ACTIONS(266), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [anon_sym_new] = ACTIONS(264), - [anon_sym_LBRACK] = ACTIONS(266), - [anon_sym_RBRACK] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(264), - [anon_sym_class] = ACTIONS(264), - [anon_sym_COLON_COLON] = ACTIONS(266), - [anon_sym_switch] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(266), - [anon_sym_RBRACE] = ACTIONS(266), - [anon_sym_default] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_assert] = ACTIONS(264), - [anon_sym_do] = ACTIONS(264), - [anon_sym_while] = ACTIONS(264), - [anon_sym_break] = ACTIONS(264), - [anon_sym_continue] = ACTIONS(264), - [anon_sym_return] = ACTIONS(264), - [anon_sym_yield] = ACTIONS(264), - [anon_sym_synchronized] = ACTIONS(264), - [anon_sym_throw] = ACTIONS(264), - [anon_sym_try] = ACTIONS(264), - [anon_sym_if] = ACTIONS(264), - [anon_sym_for] = ACTIONS(264), - [anon_sym_AT] = ACTIONS(264), - [anon_sym_open] = ACTIONS(264), - [anon_sym_module] = ACTIONS(264), - [anon_sym_static] = ACTIONS(264), - [anon_sym_package] = ACTIONS(264), - [anon_sym_import] = ACTIONS(264), - [anon_sym_enum] = ACTIONS(264), - [anon_sym_public] = ACTIONS(264), - [anon_sym_protected] = ACTIONS(264), - [anon_sym_private] = ACTIONS(264), - [anon_sym_abstract] = ACTIONS(264), - [anon_sym_final] = ACTIONS(264), - [anon_sym_strictfp] = ACTIONS(264), - [anon_sym_native] = ACTIONS(264), - [anon_sym_transient] = ACTIONS(264), - [anon_sym_volatile] = ACTIONS(264), - [anon_sym_sealed] = ACTIONS(264), - [anon_sym_non_DASHsealed] = ACTIONS(266), - [anon_sym_ATinterface] = ACTIONS(266), - [anon_sym_interface] = ACTIONS(264), - [anon_sym_byte] = ACTIONS(264), - [anon_sym_short] = ACTIONS(264), - [anon_sym_int] = ACTIONS(264), - [anon_sym_long] = ACTIONS(264), - [anon_sym_char] = ACTIONS(264), - [anon_sym_float] = ACTIONS(264), - [anon_sym_double] = ACTIONS(264), - [sym_boolean_type] = ACTIONS(264), - [sym_void_type] = ACTIONS(264), - [sym_this] = ACTIONS(264), - [sym_super] = ACTIONS(264), + [ts_builtin_sym_end] = ACTIONS(269), + [sym_identifier] = ACTIONS(271), + [sym_decimal_integer_literal] = ACTIONS(271), + [sym_hex_integer_literal] = ACTIONS(271), + [sym_octal_integer_literal] = ACTIONS(269), + [sym_binary_integer_literal] = ACTIONS(269), + [sym_decimal_floating_point_literal] = ACTIONS(269), + [sym_hex_floating_point_literal] = ACTIONS(271), + [sym_true] = ACTIONS(271), + [sym_false] = ACTIONS(271), + [sym_character_literal] = ACTIONS(269), + [sym_string_literal] = ACTIONS(271), + [sym_text_block] = ACTIONS(269), + [sym_null_literal] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(269), + [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_DASH_GT] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_QMARK] = ACTIONS(269), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_new] = ACTIONS(271), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_class] = ACTIONS(271), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + [anon_sym_throw] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_open] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_enum] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_abstract] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_strictfp] = ACTIONS(271), + [anon_sym_native] = ACTIONS(271), + [anon_sym_transient] = ACTIONS(271), + [anon_sym_volatile] = ACTIONS(271), + [anon_sym_sealed] = ACTIONS(271), + [anon_sym_non_DASHsealed] = ACTIONS(269), + [anon_sym_record] = ACTIONS(271), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_byte] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [sym_boolean_type] = ACTIONS(271), + [sym_void_type] = ACTIONS(271), + [sym_this] = ACTIONS(271), + [sym_super] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_decimal_integer_literal] = ACTIONS(270), - [sym_hex_integer_literal] = ACTIONS(270), - [sym_octal_integer_literal] = ACTIONS(268), - [sym_binary_integer_literal] = ACTIONS(268), - [sym_decimal_floating_point_literal] = ACTIONS(268), - [sym_hex_floating_point_literal] = ACTIONS(270), - [sym_true] = ACTIONS(270), - [sym_false] = ACTIONS(270), - [sym_character_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(270), - [sym_text_block] = ACTIONS(268), - [sym_null_literal] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(274), - [anon_sym_BANG_EQ] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(274), - [anon_sym_PIPE_PIPE] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PIPE] = ACTIONS(272), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_GT_GT_GT] = ACTIONS(274), - [anon_sym_instanceof] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_new] = ACTIONS(270), - [anon_sym_class] = ACTIONS(270), - [anon_sym_switch] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_case] = ACTIONS(270), - [anon_sym_default] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [anon_sym_break] = ACTIONS(270), - [anon_sym_continue] = ACTIONS(270), - [anon_sym_return] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(270), - [anon_sym_synchronized] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_for] = ACTIONS(270), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_open] = ACTIONS(270), - [anon_sym_module] = ACTIONS(270), - [anon_sym_static] = ACTIONS(270), - [anon_sym_package] = ACTIONS(270), - [anon_sym_import] = ACTIONS(270), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_public] = ACTIONS(270), - [anon_sym_protected] = ACTIONS(270), - [anon_sym_private] = ACTIONS(270), - [anon_sym_abstract] = ACTIONS(270), - [anon_sym_final] = ACTIONS(270), - [anon_sym_strictfp] = ACTIONS(270), - [anon_sym_native] = ACTIONS(270), - [anon_sym_transient] = ACTIONS(270), - [anon_sym_volatile] = ACTIONS(270), - [anon_sym_sealed] = ACTIONS(270), - [anon_sym_non_DASHsealed] = ACTIONS(268), - [anon_sym_ATinterface] = ACTIONS(268), - [anon_sym_interface] = ACTIONS(270), - [anon_sym_byte] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_int] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_char] = ACTIONS(270), - [anon_sym_float] = ACTIONS(270), - [anon_sym_double] = ACTIONS(270), - [sym_boolean_type] = ACTIONS(270), - [sym_void_type] = ACTIONS(270), - [sym_this] = ACTIONS(270), - [sym_super] = ACTIONS(270), + [ts_builtin_sym_end] = ACTIONS(273), + [sym_identifier] = ACTIONS(275), + [sym_decimal_integer_literal] = ACTIONS(275), + [sym_hex_integer_literal] = ACTIONS(275), + [sym_octal_integer_literal] = ACTIONS(273), + [sym_binary_integer_literal] = ACTIONS(273), + [sym_decimal_floating_point_literal] = ACTIONS(273), + [sym_hex_floating_point_literal] = ACTIONS(275), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_character_literal] = ACTIONS(273), + [sym_string_literal] = ACTIONS(275), + [sym_text_block] = ACTIONS(273), + [sym_null_literal] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(277), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_GT_GT_GT] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(279), + [anon_sym_DASH_DASH] = ACTIONS(279), + [anon_sym_new] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_yield] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_throw] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_open] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_abstract] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_strictfp] = ACTIONS(275), + [anon_sym_native] = ACTIONS(275), + [anon_sym_transient] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_sealed] = ACTIONS(275), + [anon_sym_non_DASHsealed] = ACTIONS(273), + [anon_sym_record] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_byte] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [sym_boolean_type] = ACTIONS(275), + [sym_void_type] = ACTIONS(275), + [sym_this] = ACTIONS(275), + [sym_super] = ACTIONS(275), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(601), - [sym__type] = STATE(820), + [sym__literal] = STATE(407), + [sym_expression] = STATE(551), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(523), + [sym_marker_annotation] = STATE(523), + [sym_annotation] = STATE(523), + [sym_modifiers] = STATE(615), + [sym__type] = STATE(846), [sym__unannotated_type] = STATE(592), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_formal_parameter] = STATE(950), - [sym_receiver_parameter] = STATE(335), - [sym_spread_parameter] = STATE(950), - [aux_sym_dimensions_expr_repeat1] = STATE(573), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(276), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_formal_parameter] = STATE(861), + [sym_receiver_parameter] = STATE(343), + [sym_spread_parameter] = STATE(861), + [aux_sym_dimensions_expr_repeat1] = STATE(577), + [aux_sym_modifiers_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(281), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15063,7 +15188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(283), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15072,79 +15197,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_default] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_static] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(291), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(601), - [sym__type] = STATE(845), + [sym__literal] = STATE(407), + [sym_expression] = STATE(551), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(523), + [sym_marker_annotation] = STATE(523), + [sym_annotation] = STATE(523), + [sym_modifiers] = STATE(615), + [sym__type] = STATE(810), [sym__unannotated_type] = STATE(592), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_formal_parameter] = STATE(950), - [sym_receiver_parameter] = STATE(335), - [sym_spread_parameter] = STATE(950), - [aux_sym_dimensions_expr_repeat1] = STATE(573), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(276), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [sym_formal_parameter] = STATE(861), + [sym_receiver_parameter] = STATE(343), + [sym_spread_parameter] = STATE(861), + [aux_sym_dimensions_expr_repeat1] = STATE(577), + [aux_sym_modifiers_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(281), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15158,7 +15284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(283), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15167,77 +15293,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_default] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_static] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(291), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(604), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(603), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), + [sym__literal] = STATE(407), + [sym_expression] = STATE(487), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(523), + [sym_marker_annotation] = STATE(523), + [sym_annotation] = STATE(523), + [sym_modifiers] = STATE(610), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(602), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), [sym_local_variable_declaration] = STATE(233), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(288), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15259,405 +15386,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_default] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_static] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(291), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [57] = { [sym_catch_clause] = STATE(60), - [sym_finally_clause] = STATE(191), + [sym_finally_clause] = STATE(145), [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(292), - [sym_identifier] = ACTIONS(294), - [sym_decimal_integer_literal] = ACTIONS(294), - [sym_hex_integer_literal] = ACTIONS(294), - [sym_octal_integer_literal] = ACTIONS(292), - [sym_binary_integer_literal] = ACTIONS(292), - [sym_decimal_floating_point_literal] = ACTIONS(292), - [sym_hex_floating_point_literal] = ACTIONS(294), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_character_literal] = ACTIONS(292), - [sym_string_literal] = ACTIONS(294), - [sym_text_block] = ACTIONS(292), - [sym_null_literal] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(292), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(292), - [anon_sym_new] = ACTIONS(294), - [anon_sym_class] = ACTIONS(294), - [anon_sym_switch] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(292), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_case] = ACTIONS(294), - [anon_sym_default] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(294), - [anon_sym_do] = ACTIONS(294), - [anon_sym_while] = ACTIONS(294), - [anon_sym_break] = ACTIONS(294), - [anon_sym_continue] = ACTIONS(294), - [anon_sym_return] = ACTIONS(294), - [anon_sym_yield] = ACTIONS(294), - [anon_sym_synchronized] = ACTIONS(294), - [anon_sym_throw] = ACTIONS(294), - [anon_sym_try] = ACTIONS(294), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(294), - [anon_sym_else] = ACTIONS(294), - [anon_sym_for] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(294), - [anon_sym_open] = ACTIONS(294), - [anon_sym_module] = ACTIONS(294), - [anon_sym_static] = ACTIONS(294), - [anon_sym_package] = ACTIONS(294), - [anon_sym_import] = ACTIONS(294), - [anon_sym_enum] = ACTIONS(294), - [anon_sym_public] = ACTIONS(294), - [anon_sym_protected] = ACTIONS(294), - [anon_sym_private] = ACTIONS(294), - [anon_sym_abstract] = ACTIONS(294), - [anon_sym_final] = ACTIONS(294), - [anon_sym_strictfp] = ACTIONS(294), - [anon_sym_native] = ACTIONS(294), - [anon_sym_transient] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_sealed] = ACTIONS(294), - [anon_sym_non_DASHsealed] = ACTIONS(292), - [anon_sym_ATinterface] = ACTIONS(292), - [anon_sym_interface] = ACTIONS(294), - [anon_sym_byte] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_int] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_char] = ACTIONS(294), - [anon_sym_float] = ACTIONS(294), - [anon_sym_double] = ACTIONS(294), - [sym_boolean_type] = ACTIONS(294), - [sym_void_type] = ACTIONS(294), - [sym_this] = ACTIONS(294), - [sym_super] = ACTIONS(294), + [ts_builtin_sym_end] = ACTIONS(297), + [sym_identifier] = ACTIONS(299), + [sym_decimal_integer_literal] = ACTIONS(299), + [sym_hex_integer_literal] = ACTIONS(299), + [sym_octal_integer_literal] = ACTIONS(297), + [sym_binary_integer_literal] = ACTIONS(297), + [sym_decimal_floating_point_literal] = ACTIONS(297), + [sym_hex_floating_point_literal] = ACTIONS(299), + [sym_true] = ACTIONS(299), + [sym_false] = ACTIONS(299), + [sym_character_literal] = ACTIONS(297), + [sym_string_literal] = ACTIONS(299), + [sym_text_block] = ACTIONS(297), + [sym_null_literal] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(297), + [anon_sym_PLUS_PLUS] = ACTIONS(297), + [anon_sym_DASH_DASH] = ACTIONS(297), + [anon_sym_new] = ACTIONS(299), + [anon_sym_class] = ACTIONS(299), + [anon_sym_switch] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(297), + [anon_sym_assert] = ACTIONS(299), + [anon_sym_do] = ACTIONS(299), + [anon_sym_while] = ACTIONS(299), + [anon_sym_break] = ACTIONS(299), + [anon_sym_continue] = ACTIONS(299), + [anon_sym_return] = ACTIONS(299), + [anon_sym_yield] = ACTIONS(299), + [anon_sym_synchronized] = ACTIONS(299), + [anon_sym_throw] = ACTIONS(299), + [anon_sym_try] = ACTIONS(299), + [anon_sym_catch] = ACTIONS(301), + [anon_sym_finally] = ACTIONS(303), + [anon_sym_if] = ACTIONS(299), + [anon_sym_else] = ACTIONS(299), + [anon_sym_for] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(299), + [anon_sym_open] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_static] = ACTIONS(299), + [anon_sym_package] = ACTIONS(299), + [anon_sym_import] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(299), + [anon_sym_public] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_abstract] = ACTIONS(299), + [anon_sym_final] = ACTIONS(299), + [anon_sym_strictfp] = ACTIONS(299), + [anon_sym_native] = ACTIONS(299), + [anon_sym_transient] = ACTIONS(299), + [anon_sym_volatile] = ACTIONS(299), + [anon_sym_sealed] = ACTIONS(299), + [anon_sym_non_DASHsealed] = ACTIONS(297), + [anon_sym_record] = ACTIONS(299), + [anon_sym_ATinterface] = ACTIONS(297), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_byte] = ACTIONS(299), + [anon_sym_short] = ACTIONS(299), + [anon_sym_int] = ACTIONS(299), + [anon_sym_long] = ACTIONS(299), + [anon_sym_char] = ACTIONS(299), + [anon_sym_float] = ACTIONS(299), + [anon_sym_double] = ACTIONS(299), + [sym_boolean_type] = ACTIONS(299), + [sym_void_type] = ACTIONS(299), + [sym_this] = ACTIONS(299), + [sym_super] = ACTIONS(299), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym_catch_clause] = STATE(60), - [sym_finally_clause] = STATE(146), - [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(300), - [sym_identifier] = ACTIONS(302), - [sym_decimal_integer_literal] = ACTIONS(302), - [sym_hex_integer_literal] = ACTIONS(302), - [sym_octal_integer_literal] = ACTIONS(300), - [sym_binary_integer_literal] = ACTIONS(300), - [sym_decimal_floating_point_literal] = ACTIONS(300), - [sym_hex_floating_point_literal] = ACTIONS(302), - [sym_true] = ACTIONS(302), - [sym_false] = ACTIONS(302), - [sym_character_literal] = ACTIONS(300), - [sym_string_literal] = ACTIONS(302), - [sym_text_block] = ACTIONS(300), - [sym_null_literal] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_PLUS_PLUS] = ACTIONS(300), - [anon_sym_DASH_DASH] = ACTIONS(300), - [anon_sym_new] = ACTIONS(302), - [anon_sym_class] = ACTIONS(302), - [anon_sym_switch] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_assert] = ACTIONS(302), - [anon_sym_do] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_synchronized] = ACTIONS(302), - [anon_sym_throw] = ACTIONS(302), - [anon_sym_try] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_AT] = ACTIONS(302), - [anon_sym_open] = ACTIONS(302), - [anon_sym_module] = ACTIONS(302), - [anon_sym_static] = ACTIONS(302), - [anon_sym_package] = ACTIONS(302), - [anon_sym_import] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_public] = ACTIONS(302), - [anon_sym_protected] = ACTIONS(302), - [anon_sym_private] = ACTIONS(302), - [anon_sym_abstract] = ACTIONS(302), - [anon_sym_final] = ACTIONS(302), - [anon_sym_strictfp] = ACTIONS(302), - [anon_sym_native] = ACTIONS(302), - [anon_sym_transient] = ACTIONS(302), - [anon_sym_volatile] = ACTIONS(302), - [anon_sym_sealed] = ACTIONS(302), - [anon_sym_non_DASHsealed] = ACTIONS(300), - [anon_sym_ATinterface] = ACTIONS(300), - [anon_sym_interface] = ACTIONS(302), - [anon_sym_byte] = ACTIONS(302), - [anon_sym_short] = ACTIONS(302), - [anon_sym_int] = ACTIONS(302), - [anon_sym_long] = ACTIONS(302), - [anon_sym_char] = ACTIONS(302), - [anon_sym_float] = ACTIONS(302), - [anon_sym_double] = ACTIONS(302), - [sym_boolean_type] = ACTIONS(302), - [sym_void_type] = ACTIONS(302), - [sym_this] = ACTIONS(302), - [sym_super] = ACTIONS(302), + [sym_catch_clause] = STATE(59), + [sym_finally_clause] = STATE(151), + [aux_sym_try_statement_repeat1] = STATE(59), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(307), + [sym_hex_integer_literal] = ACTIONS(307), + [sym_octal_integer_literal] = ACTIONS(305), + [sym_binary_integer_literal] = ACTIONS(305), + [sym_decimal_floating_point_literal] = ACTIONS(305), + [sym_hex_floating_point_literal] = ACTIONS(307), + [sym_true] = ACTIONS(307), + [sym_false] = ACTIONS(307), + [sym_character_literal] = ACTIONS(305), + [sym_string_literal] = ACTIONS(307), + [sym_text_block] = ACTIONS(305), + [sym_null_literal] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_new] = ACTIONS(307), + [anon_sym_class] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_case] = ACTIONS(307), + [anon_sym_default] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_do] = ACTIONS(307), + [anon_sym_while] = ACTIONS(307), + [anon_sym_break] = ACTIONS(307), + [anon_sym_continue] = ACTIONS(307), + [anon_sym_return] = ACTIONS(307), + [anon_sym_yield] = ACTIONS(307), + [anon_sym_synchronized] = ACTIONS(307), + [anon_sym_throw] = ACTIONS(307), + [anon_sym_try] = ACTIONS(307), + [anon_sym_catch] = ACTIONS(301), + [anon_sym_finally] = ACTIONS(303), + [anon_sym_if] = ACTIONS(307), + [anon_sym_else] = ACTIONS(307), + [anon_sym_for] = ACTIONS(307), + [anon_sym_AT] = ACTIONS(307), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_static] = ACTIONS(307), + [anon_sym_package] = ACTIONS(307), + [anon_sym_import] = ACTIONS(307), + [anon_sym_enum] = ACTIONS(307), + [anon_sym_public] = ACTIONS(307), + [anon_sym_protected] = ACTIONS(307), + [anon_sym_private] = ACTIONS(307), + [anon_sym_abstract] = ACTIONS(307), + [anon_sym_final] = ACTIONS(307), + [anon_sym_strictfp] = ACTIONS(307), + [anon_sym_native] = ACTIONS(307), + [anon_sym_transient] = ACTIONS(307), + [anon_sym_volatile] = ACTIONS(307), + [anon_sym_sealed] = ACTIONS(307), + [anon_sym_non_DASHsealed] = ACTIONS(305), + [anon_sym_record] = ACTIONS(307), + [anon_sym_ATinterface] = ACTIONS(305), + [anon_sym_interface] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(307), + [anon_sym_short] = ACTIONS(307), + [anon_sym_int] = ACTIONS(307), + [anon_sym_long] = ACTIONS(307), + [anon_sym_char] = ACTIONS(307), + [anon_sym_float] = ACTIONS(307), + [anon_sym_double] = ACTIONS(307), + [sym_boolean_type] = ACTIONS(307), + [sym_void_type] = ACTIONS(307), + [sym_this] = ACTIONS(307), + [sym_super] = ACTIONS(307), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym_catch_clause] = STATE(57), - [sym_finally_clause] = STATE(147), - [aux_sym_try_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(304), - [sym_identifier] = ACTIONS(306), - [sym_decimal_integer_literal] = ACTIONS(306), - [sym_hex_integer_literal] = ACTIONS(306), - [sym_octal_integer_literal] = ACTIONS(304), - [sym_binary_integer_literal] = ACTIONS(304), - [sym_decimal_floating_point_literal] = ACTIONS(304), - [sym_hex_floating_point_literal] = ACTIONS(306), - [sym_true] = ACTIONS(306), - [sym_false] = ACTIONS(306), - [sym_character_literal] = ACTIONS(304), - [sym_string_literal] = ACTIONS(306), - [sym_text_block] = ACTIONS(304), - [sym_null_literal] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_new] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(304), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [anon_sym_break] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(306), - [anon_sym_synchronized] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_open] = ACTIONS(306), - [anon_sym_module] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_protected] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_strictfp] = ACTIONS(306), - [anon_sym_native] = ACTIONS(306), - [anon_sym_transient] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym_sealed] = ACTIONS(306), - [anon_sym_non_DASHsealed] = ACTIONS(304), - [anon_sym_ATinterface] = ACTIONS(304), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_byte] = ACTIONS(306), - [anon_sym_short] = ACTIONS(306), - [anon_sym_int] = ACTIONS(306), - [anon_sym_long] = ACTIONS(306), - [anon_sym_char] = ACTIONS(306), - [anon_sym_float] = ACTIONS(306), - [anon_sym_double] = ACTIONS(306), - [sym_boolean_type] = ACTIONS(306), - [sym_void_type] = ACTIONS(306), - [sym_this] = ACTIONS(306), - [sym_super] = ACTIONS(306), + [sym_catch_clause] = STATE(60), + [sym_finally_clause] = STATE(177), + [aux_sym_try_statement_repeat1] = STATE(60), + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_decimal_integer_literal] = ACTIONS(311), + [sym_hex_integer_literal] = ACTIONS(311), + [sym_octal_integer_literal] = ACTIONS(309), + [sym_binary_integer_literal] = ACTIONS(309), + [sym_decimal_floating_point_literal] = ACTIONS(309), + [sym_hex_floating_point_literal] = ACTIONS(311), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_character_literal] = ACTIONS(309), + [sym_string_literal] = ACTIONS(311), + [sym_text_block] = ACTIONS(309), + [sym_null_literal] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_PLUS_PLUS] = ACTIONS(309), + [anon_sym_DASH_DASH] = ACTIONS(309), + [anon_sym_new] = ACTIONS(311), + [anon_sym_class] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_do] = ACTIONS(311), + [anon_sym_while] = ACTIONS(311), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_return] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(311), + [anon_sym_synchronized] = ACTIONS(311), + [anon_sym_throw] = ACTIONS(311), + [anon_sym_try] = ACTIONS(311), + [anon_sym_catch] = ACTIONS(301), + [anon_sym_finally] = ACTIONS(303), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), + [anon_sym_for] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_static] = ACTIONS(311), + [anon_sym_package] = ACTIONS(311), + [anon_sym_import] = ACTIONS(311), + [anon_sym_enum] = ACTIONS(311), + [anon_sym_public] = ACTIONS(311), + [anon_sym_protected] = ACTIONS(311), + [anon_sym_private] = ACTIONS(311), + [anon_sym_abstract] = ACTIONS(311), + [anon_sym_final] = ACTIONS(311), + [anon_sym_strictfp] = ACTIONS(311), + [anon_sym_native] = ACTIONS(311), + [anon_sym_transient] = ACTIONS(311), + [anon_sym_volatile] = ACTIONS(311), + [anon_sym_sealed] = ACTIONS(311), + [anon_sym_non_DASHsealed] = ACTIONS(309), + [anon_sym_record] = ACTIONS(311), + [anon_sym_ATinterface] = ACTIONS(309), + [anon_sym_interface] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(311), + [anon_sym_short] = ACTIONS(311), + [anon_sym_int] = ACTIONS(311), + [anon_sym_long] = ACTIONS(311), + [anon_sym_char] = ACTIONS(311), + [anon_sym_float] = ACTIONS(311), + [anon_sym_double] = ACTIONS(311), + [sym_boolean_type] = ACTIONS(311), + [sym_void_type] = ACTIONS(311), + [sym_this] = ACTIONS(311), + [sym_super] = ACTIONS(311), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [60] = { [sym_catch_clause] = STATE(60), [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(308), - [sym_identifier] = ACTIONS(310), - [sym_decimal_integer_literal] = ACTIONS(310), - [sym_hex_integer_literal] = ACTIONS(310), - [sym_octal_integer_literal] = ACTIONS(308), - [sym_binary_integer_literal] = ACTIONS(308), - [sym_decimal_floating_point_literal] = ACTIONS(308), - [sym_hex_floating_point_literal] = ACTIONS(310), - [sym_true] = ACTIONS(310), - [sym_false] = ACTIONS(310), - [sym_character_literal] = ACTIONS(308), - [sym_string_literal] = ACTIONS(310), - [sym_text_block] = ACTIONS(308), - [sym_null_literal] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_new] = ACTIONS(310), - [anon_sym_class] = ACTIONS(310), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(308), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_case] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_SEMI] = ACTIONS(308), - [anon_sym_assert] = ACTIONS(310), - [anon_sym_do] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(310), - [anon_sym_synchronized] = ACTIONS(310), - [anon_sym_throw] = ACTIONS(310), - [anon_sym_try] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(312), - [anon_sym_finally] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(310), - [anon_sym_open] = ACTIONS(310), - [anon_sym_module] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_package] = ACTIONS(310), - [anon_sym_import] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_public] = ACTIONS(310), - [anon_sym_protected] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_abstract] = ACTIONS(310), - [anon_sym_final] = ACTIONS(310), - [anon_sym_strictfp] = ACTIONS(310), - [anon_sym_native] = ACTIONS(310), - [anon_sym_transient] = ACTIONS(310), - [anon_sym_volatile] = ACTIONS(310), - [anon_sym_sealed] = ACTIONS(310), - [anon_sym_non_DASHsealed] = ACTIONS(308), - [anon_sym_ATinterface] = ACTIONS(308), - [anon_sym_interface] = ACTIONS(310), - [anon_sym_byte] = ACTIONS(310), - [anon_sym_short] = ACTIONS(310), - [anon_sym_int] = ACTIONS(310), - [anon_sym_long] = ACTIONS(310), - [anon_sym_char] = ACTIONS(310), - [anon_sym_float] = ACTIONS(310), - [anon_sym_double] = ACTIONS(310), - [sym_boolean_type] = ACTIONS(310), - [sym_void_type] = ACTIONS(310), - [sym_this] = ACTIONS(310), - [sym_super] = ACTIONS(310), + [ts_builtin_sym_end] = ACTIONS(313), + [sym_identifier] = ACTIONS(315), + [sym_decimal_integer_literal] = ACTIONS(315), + [sym_hex_integer_literal] = ACTIONS(315), + [sym_octal_integer_literal] = ACTIONS(313), + [sym_binary_integer_literal] = ACTIONS(313), + [sym_decimal_floating_point_literal] = ACTIONS(313), + [sym_hex_floating_point_literal] = ACTIONS(315), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_character_literal] = ACTIONS(313), + [sym_string_literal] = ACTIONS(315), + [sym_text_block] = ACTIONS(313), + [sym_null_literal] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(313), + [anon_sym_TILDE] = ACTIONS(313), + [anon_sym_PLUS_PLUS] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(313), + [anon_sym_new] = ACTIONS(315), + [anon_sym_class] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_assert] = ACTIONS(315), + [anon_sym_do] = ACTIONS(315), + [anon_sym_while] = ACTIONS(315), + [anon_sym_break] = ACTIONS(315), + [anon_sym_continue] = ACTIONS(315), + [anon_sym_return] = ACTIONS(315), + [anon_sym_yield] = ACTIONS(315), + [anon_sym_synchronized] = ACTIONS(315), + [anon_sym_throw] = ACTIONS(315), + [anon_sym_try] = ACTIONS(315), + [anon_sym_catch] = ACTIONS(317), + [anon_sym_finally] = ACTIONS(315), + [anon_sym_if] = ACTIONS(315), + [anon_sym_else] = ACTIONS(315), + [anon_sym_for] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(315), + [anon_sym_open] = ACTIONS(315), + [anon_sym_module] = ACTIONS(315), + [anon_sym_static] = ACTIONS(315), + [anon_sym_package] = ACTIONS(315), + [anon_sym_import] = ACTIONS(315), + [anon_sym_enum] = ACTIONS(315), + [anon_sym_public] = ACTIONS(315), + [anon_sym_protected] = ACTIONS(315), + [anon_sym_private] = ACTIONS(315), + [anon_sym_abstract] = ACTIONS(315), + [anon_sym_final] = ACTIONS(315), + [anon_sym_strictfp] = ACTIONS(315), + [anon_sym_native] = ACTIONS(315), + [anon_sym_transient] = ACTIONS(315), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym_sealed] = ACTIONS(315), + [anon_sym_non_DASHsealed] = ACTIONS(313), + [anon_sym_record] = ACTIONS(315), + [anon_sym_ATinterface] = ACTIONS(313), + [anon_sym_interface] = ACTIONS(315), + [anon_sym_byte] = ACTIONS(315), + [anon_sym_short] = ACTIONS(315), + [anon_sym_int] = ACTIONS(315), + [anon_sym_long] = ACTIONS(315), + [anon_sym_char] = ACTIONS(315), + [anon_sym_float] = ACTIONS(315), + [anon_sym_double] = ACTIONS(315), + [sym_boolean_type] = ACTIONS(315), + [sym_void_type] = ACTIONS(315), + [sym_this] = ACTIONS(315), + [sym_super] = ACTIONS(315), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(951), - [sym__element_value] = STATE(1080), - [sym_element_value_array_initializer] = STATE(1080), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(315), + [sym__literal] = STATE(407), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym_block] = STATE(930), + [sym_expression_statement] = STATE(930), + [sym_throw_statement] = STATE(930), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15671,7 +15803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15680,64 +15811,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [62] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(876), - [sym__element_value] = STATE(1136), - [sym_element_value_array_initializer] = STATE(1136), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(315), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym__element_value] = STATE(884), + [sym_element_value_array_initializer] = STATE(884), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15751,73 +15883,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(323), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(322), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(884), - [sym__element_value] = STATE(1129), - [sym_element_value_array_initializer] = STATE(1129), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(315), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym_element_value_pair] = STATE(935), + [sym__element_value] = STATE(1133), + [sym_element_value_array_initializer] = STATE(1133), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(328), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15831,7 +15965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(330), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15840,64 +15974,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(936), - [sym_expression_statement] = STATE(936), - [sym_throw_statement] = STATE(936), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym_element_value_pair] = STATE(867), + [sym__element_value] = STATE(1147), + [sym_element_value_array_initializer] = STATE(1147), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(328), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15911,6 +16046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(332), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -15919,64 +16055,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(854), - [sym_element_value_array_initializer] = STATE(854), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym_element_value_pair] = STATE(872), + [sym__element_value] = STATE(1140), + [sym_element_value_array_initializer] = STATE(1140), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(328), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15990,1179 +16127,1579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(334), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(327), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [66] = { - [ts_builtin_sym_end] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_decimal_integer_literal] = ACTIONS(333), - [sym_hex_integer_literal] = ACTIONS(333), - [sym_octal_integer_literal] = ACTIONS(331), - [sym_binary_integer_literal] = ACTIONS(331), - [sym_decimal_floating_point_literal] = ACTIONS(331), - [sym_hex_floating_point_literal] = ACTIONS(333), - [sym_true] = ACTIONS(333), - [sym_false] = ACTIONS(333), - [sym_character_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(333), - [sym_text_block] = ACTIONS(331), - [sym_null_literal] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_BANG] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(331), - [anon_sym_PLUS_PLUS] = ACTIONS(331), - [anon_sym_DASH_DASH] = ACTIONS(331), - [anon_sym_new] = ACTIONS(333), - [anon_sym_class] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_case] = ACTIONS(333), - [anon_sym_default] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_assert] = ACTIONS(333), - [anon_sym_do] = ACTIONS(333), - [anon_sym_while] = ACTIONS(333), - [anon_sym_break] = ACTIONS(333), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_return] = ACTIONS(333), - [anon_sym_yield] = ACTIONS(333), - [anon_sym_synchronized] = ACTIONS(333), - [anon_sym_throw] = ACTIONS(333), - [anon_sym_try] = ACTIONS(333), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(333), - [anon_sym_for] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [anon_sym_open] = ACTIONS(333), - [anon_sym_module] = ACTIONS(333), - [anon_sym_static] = ACTIONS(333), - [anon_sym_package] = ACTIONS(333), - [anon_sym_import] = ACTIONS(333), - [anon_sym_enum] = ACTIONS(333), - [anon_sym_public] = ACTIONS(333), - [anon_sym_protected] = ACTIONS(333), - [anon_sym_private] = ACTIONS(333), - [anon_sym_abstract] = ACTIONS(333), - [anon_sym_final] = ACTIONS(333), - [anon_sym_strictfp] = ACTIONS(333), - [anon_sym_native] = ACTIONS(333), - [anon_sym_transient] = ACTIONS(333), - [anon_sym_volatile] = ACTIONS(333), - [anon_sym_sealed] = ACTIONS(333), - [anon_sym_non_DASHsealed] = ACTIONS(331), - [anon_sym_record] = ACTIONS(333), - [anon_sym_ATinterface] = ACTIONS(331), - [anon_sym_interface] = ACTIONS(333), - [anon_sym_byte] = ACTIONS(333), - [anon_sym_short] = ACTIONS(333), - [anon_sym_int] = ACTIONS(333), - [anon_sym_long] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_float] = ACTIONS(333), - [anon_sym_double] = ACTIONS(333), - [sym_boolean_type] = ACTIONS(333), - [sym_void_type] = ACTIONS(333), - [sym_this] = ACTIONS(333), - [sym_super] = ACTIONS(333), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym__element_value] = STATE(1018), + [sym_element_value_array_initializer] = STATE(1018), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [67] = { - [ts_builtin_sym_end] = ACTIONS(335), - [sym_identifier] = ACTIONS(337), - [sym_decimal_integer_literal] = ACTIONS(337), - [sym_hex_integer_literal] = ACTIONS(337), - [sym_octal_integer_literal] = ACTIONS(335), - [sym_binary_integer_literal] = ACTIONS(335), - [sym_decimal_floating_point_literal] = ACTIONS(335), - [sym_hex_floating_point_literal] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_character_literal] = ACTIONS(335), - [sym_string_literal] = ACTIONS(337), - [sym_text_block] = ACTIONS(335), - [sym_null_literal] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_TILDE] = ACTIONS(335), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_new] = ACTIONS(337), - [anon_sym_class] = ACTIONS(337), - [anon_sym_switch] = ACTIONS(337), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(337), - [anon_sym_SEMI] = ACTIONS(335), - [anon_sym_assert] = ACTIONS(337), - [anon_sym_do] = ACTIONS(337), - [anon_sym_while] = ACTIONS(337), - [anon_sym_break] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(337), - [anon_sym_return] = ACTIONS(337), - [anon_sym_yield] = ACTIONS(337), - [anon_sym_synchronized] = ACTIONS(337), - [anon_sym_throw] = ACTIONS(337), - [anon_sym_try] = ACTIONS(337), - [anon_sym_if] = ACTIONS(337), - [anon_sym_else] = ACTIONS(337), - [anon_sym_for] = ACTIONS(337), - [anon_sym_AT] = ACTIONS(337), - [anon_sym_open] = ACTIONS(337), - [anon_sym_module] = ACTIONS(337), - [anon_sym_static] = ACTIONS(337), - [anon_sym_package] = ACTIONS(337), - [anon_sym_import] = ACTIONS(337), - [anon_sym_enum] = ACTIONS(337), - [anon_sym_public] = ACTIONS(337), - [anon_sym_protected] = ACTIONS(337), - [anon_sym_private] = ACTIONS(337), - [anon_sym_abstract] = ACTIONS(337), - [anon_sym_final] = ACTIONS(337), - [anon_sym_strictfp] = ACTIONS(337), - [anon_sym_native] = ACTIONS(337), - [anon_sym_transient] = ACTIONS(337), - [anon_sym_volatile] = ACTIONS(337), - [anon_sym_sealed] = ACTIONS(337), - [anon_sym_non_DASHsealed] = ACTIONS(335), - [anon_sym_record] = ACTIONS(337), - [anon_sym_ATinterface] = ACTIONS(335), - [anon_sym_interface] = ACTIONS(337), - [anon_sym_byte] = ACTIONS(337), - [anon_sym_short] = ACTIONS(337), - [anon_sym_int] = ACTIONS(337), - [anon_sym_long] = ACTIONS(337), - [anon_sym_char] = ACTIONS(337), - [anon_sym_float] = ACTIONS(337), - [anon_sym_double] = ACTIONS(337), - [sym_boolean_type] = ACTIONS(337), - [sym_void_type] = ACTIONS(337), - [sym_this] = ACTIONS(337), - [sym_super] = ACTIONS(337), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(340), + [sym_decimal_integer_literal] = ACTIONS(340), + [sym_hex_integer_literal] = ACTIONS(340), + [sym_octal_integer_literal] = ACTIONS(338), + [sym_binary_integer_literal] = ACTIONS(338), + [sym_decimal_floating_point_literal] = ACTIONS(338), + [sym_hex_floating_point_literal] = ACTIONS(340), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_character_literal] = ACTIONS(338), + [sym_string_literal] = ACTIONS(340), + [sym_text_block] = ACTIONS(338), + [sym_null_literal] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym_new] = ACTIONS(340), + [anon_sym_class] = ACTIONS(340), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_case] = ACTIONS(340), + [anon_sym_default] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_assert] = ACTIONS(340), + [anon_sym_do] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_break] = ACTIONS(340), + [anon_sym_continue] = ACTIONS(340), + [anon_sym_return] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(340), + [anon_sym_synchronized] = ACTIONS(340), + [anon_sym_throw] = ACTIONS(340), + [anon_sym_try] = ACTIONS(340), + [anon_sym_catch] = ACTIONS(340), + [anon_sym_finally] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_else] = ACTIONS(340), + [anon_sym_for] = ACTIONS(340), + [anon_sym_AT] = ACTIONS(340), + [anon_sym_open] = ACTIONS(340), + [anon_sym_module] = ACTIONS(340), + [anon_sym_static] = ACTIONS(340), + [anon_sym_package] = ACTIONS(340), + [anon_sym_import] = ACTIONS(340), + [anon_sym_enum] = ACTIONS(340), + [anon_sym_public] = ACTIONS(340), + [anon_sym_protected] = ACTIONS(340), + [anon_sym_private] = ACTIONS(340), + [anon_sym_abstract] = ACTIONS(340), + [anon_sym_final] = ACTIONS(340), + [anon_sym_strictfp] = ACTIONS(340), + [anon_sym_native] = ACTIONS(340), + [anon_sym_transient] = ACTIONS(340), + [anon_sym_volatile] = ACTIONS(340), + [anon_sym_sealed] = ACTIONS(340), + [anon_sym_non_DASHsealed] = ACTIONS(338), + [anon_sym_record] = ACTIONS(340), + [anon_sym_ATinterface] = ACTIONS(338), + [anon_sym_interface] = ACTIONS(340), + [anon_sym_byte] = ACTIONS(340), + [anon_sym_short] = ACTIONS(340), + [anon_sym_int] = ACTIONS(340), + [anon_sym_long] = ACTIONS(340), + [anon_sym_char] = ACTIONS(340), + [anon_sym_float] = ACTIONS(340), + [anon_sym_double] = ACTIONS(340), + [sym_boolean_type] = ACTIONS(340), + [sym_void_type] = ACTIONS(340), + [sym_this] = ACTIONS(340), + [sym_super] = ACTIONS(340), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [68] = { - [ts_builtin_sym_end] = ACTIONS(339), - [sym_identifier] = ACTIONS(341), - [sym_decimal_integer_literal] = ACTIONS(341), - [sym_hex_integer_literal] = ACTIONS(341), - [sym_octal_integer_literal] = ACTIONS(339), - [sym_binary_integer_literal] = ACTIONS(339), - [sym_decimal_floating_point_literal] = ACTIONS(339), - [sym_hex_floating_point_literal] = ACTIONS(341), - [sym_true] = ACTIONS(341), - [sym_false] = ACTIONS(341), - [sym_character_literal] = ACTIONS(339), - [sym_string_literal] = ACTIONS(341), - [sym_text_block] = ACTIONS(339), - [sym_null_literal] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_LT] = ACTIONS(339), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_new] = ACTIONS(341), - [anon_sym_class] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(339), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_case] = ACTIONS(341), - [anon_sym_default] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_do] = ACTIONS(341), - [anon_sym_while] = ACTIONS(341), - [anon_sym_break] = ACTIONS(341), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_return] = ACTIONS(341), - [anon_sym_yield] = ACTIONS(341), - [anon_sym_synchronized] = ACTIONS(341), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_try] = ACTIONS(341), - [anon_sym_if] = ACTIONS(341), - [anon_sym_else] = ACTIONS(341), - [anon_sym_for] = ACTIONS(341), - [anon_sym_AT] = ACTIONS(341), - [anon_sym_open] = ACTIONS(341), - [anon_sym_module] = ACTIONS(341), - [anon_sym_static] = ACTIONS(341), - [anon_sym_package] = ACTIONS(341), - [anon_sym_import] = ACTIONS(341), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_public] = ACTIONS(341), - [anon_sym_protected] = ACTIONS(341), - [anon_sym_private] = ACTIONS(341), - [anon_sym_abstract] = ACTIONS(341), - [anon_sym_final] = ACTIONS(341), - [anon_sym_strictfp] = ACTIONS(341), - [anon_sym_native] = ACTIONS(341), - [anon_sym_transient] = ACTIONS(341), - [anon_sym_volatile] = ACTIONS(341), - [anon_sym_sealed] = ACTIONS(341), - [anon_sym_non_DASHsealed] = ACTIONS(339), - [anon_sym_record] = ACTIONS(341), - [anon_sym_ATinterface] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(341), - [anon_sym_byte] = ACTIONS(341), - [anon_sym_short] = ACTIONS(341), - [anon_sym_int] = ACTIONS(341), - [anon_sym_long] = ACTIONS(341), - [anon_sym_char] = ACTIONS(341), - [anon_sym_float] = ACTIONS(341), - [anon_sym_double] = ACTIONS(341), - [sym_boolean_type] = ACTIONS(341), - [sym_void_type] = ACTIONS(341), - [sym_this] = ACTIONS(341), - [sym_super] = ACTIONS(341), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym__element_value] = STATE(1018), + [sym_element_value_array_initializer] = STATE(1018), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [69] = { - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(345), - [sym_decimal_integer_literal] = ACTIONS(345), - [sym_hex_integer_literal] = ACTIONS(345), - [sym_octal_integer_literal] = ACTIONS(343), - [sym_binary_integer_literal] = ACTIONS(343), - [sym_decimal_floating_point_literal] = ACTIONS(343), - [sym_hex_floating_point_literal] = ACTIONS(345), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [sym_character_literal] = ACTIONS(343), - [sym_string_literal] = ACTIONS(345), - [sym_text_block] = ACTIONS(343), - [sym_null_literal] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS_PLUS] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(343), - [anon_sym_new] = ACTIONS(345), - [anon_sym_class] = ACTIONS(345), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_case] = ACTIONS(345), - [anon_sym_default] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_assert] = ACTIONS(345), - [anon_sym_do] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [anon_sym_break] = ACTIONS(345), - [anon_sym_continue] = ACTIONS(345), - [anon_sym_return] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(345), - [anon_sym_synchronized] = ACTIONS(345), - [anon_sym_throw] = ACTIONS(345), - [anon_sym_try] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_else] = ACTIONS(345), - [anon_sym_for] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(345), - [anon_sym_open] = ACTIONS(345), - [anon_sym_module] = ACTIONS(345), - [anon_sym_static] = ACTIONS(345), - [anon_sym_package] = ACTIONS(345), - [anon_sym_import] = ACTIONS(345), - [anon_sym_enum] = ACTIONS(345), - [anon_sym_public] = ACTIONS(345), - [anon_sym_protected] = ACTIONS(345), - [anon_sym_private] = ACTIONS(345), - [anon_sym_abstract] = ACTIONS(345), - [anon_sym_final] = ACTIONS(345), - [anon_sym_strictfp] = ACTIONS(345), - [anon_sym_native] = ACTIONS(345), - [anon_sym_transient] = ACTIONS(345), - [anon_sym_volatile] = ACTIONS(345), - [anon_sym_sealed] = ACTIONS(345), - [anon_sym_non_DASHsealed] = ACTIONS(343), - [anon_sym_record] = ACTIONS(345), - [anon_sym_ATinterface] = ACTIONS(343), - [anon_sym_interface] = ACTIONS(345), - [anon_sym_byte] = ACTIONS(345), - [anon_sym_short] = ACTIONS(345), - [anon_sym_int] = ACTIONS(345), - [anon_sym_long] = ACTIONS(345), - [anon_sym_char] = ACTIONS(345), - [anon_sym_float] = ACTIONS(345), - [anon_sym_double] = ACTIONS(345), - [sym_boolean_type] = ACTIONS(345), - [sym_void_type] = ACTIONS(345), - [sym_this] = ACTIONS(345), - [sym_super] = ACTIONS(345), + [ts_builtin_sym_end] = ACTIONS(269), + [sym_identifier] = ACTIONS(271), + [sym_decimal_integer_literal] = ACTIONS(271), + [sym_hex_integer_literal] = ACTIONS(271), + [sym_octal_integer_literal] = ACTIONS(269), + [sym_binary_integer_literal] = ACTIONS(269), + [sym_decimal_floating_point_literal] = ACTIONS(269), + [sym_hex_floating_point_literal] = ACTIONS(271), + [sym_true] = ACTIONS(271), + [sym_false] = ACTIONS(271), + [sym_character_literal] = ACTIONS(269), + [sym_string_literal] = ACTIONS(271), + [sym_text_block] = ACTIONS(269), + [sym_null_literal] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(269), + [anon_sym_new] = ACTIONS(271), + [anon_sym_class] = ACTIONS(271), + [anon_sym_switch] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(271), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_assert] = ACTIONS(271), + [anon_sym_do] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(271), + [anon_sym_synchronized] = ACTIONS(271), + [anon_sym_throw] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_open] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_static] = ACTIONS(271), + [anon_sym_package] = ACTIONS(271), + [anon_sym_import] = ACTIONS(271), + [anon_sym_enum] = ACTIONS(271), + [anon_sym_public] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_abstract] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), + [anon_sym_strictfp] = ACTIONS(271), + [anon_sym_native] = ACTIONS(271), + [anon_sym_transient] = ACTIONS(271), + [anon_sym_volatile] = ACTIONS(271), + [anon_sym_sealed] = ACTIONS(271), + [anon_sym_non_DASHsealed] = ACTIONS(269), + [anon_sym_record] = ACTIONS(271), + [anon_sym_ATinterface] = ACTIONS(269), + [anon_sym_interface] = ACTIONS(271), + [anon_sym_byte] = ACTIONS(271), + [anon_sym_short] = ACTIONS(271), + [anon_sym_int] = ACTIONS(271), + [anon_sym_long] = ACTIONS(271), + [anon_sym_char] = ACTIONS(271), + [anon_sym_float] = ACTIONS(271), + [anon_sym_double] = ACTIONS(271), + [sym_boolean_type] = ACTIONS(271), + [sym_void_type] = ACTIONS(271), + [sym_this] = ACTIONS(271), + [sym_super] = ACTIONS(271), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [70] = { - [ts_builtin_sym_end] = ACTIONS(347), - [sym_identifier] = ACTIONS(349), - [sym_decimal_integer_literal] = ACTIONS(349), - [sym_hex_integer_literal] = ACTIONS(349), - [sym_octal_integer_literal] = ACTIONS(347), - [sym_binary_integer_literal] = ACTIONS(347), - [sym_decimal_floating_point_literal] = ACTIONS(347), - [sym_hex_floating_point_literal] = ACTIONS(349), - [sym_true] = ACTIONS(349), - [sym_false] = ACTIONS(349), - [sym_character_literal] = ACTIONS(347), - [sym_string_literal] = ACTIONS(349), - [sym_text_block] = ACTIONS(347), - [sym_null_literal] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(349), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_new] = ACTIONS(349), - [anon_sym_class] = ACTIONS(349), - [anon_sym_switch] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_case] = ACTIONS(349), - [anon_sym_default] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(349), - [anon_sym_do] = ACTIONS(349), - [anon_sym_while] = ACTIONS(349), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(349), - [anon_sym_return] = ACTIONS(349), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_synchronized] = ACTIONS(349), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_try] = ACTIONS(349), - [anon_sym_if] = ACTIONS(349), - [anon_sym_else] = ACTIONS(349), - [anon_sym_for] = ACTIONS(349), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_open] = ACTIONS(349), - [anon_sym_module] = ACTIONS(349), - [anon_sym_static] = ACTIONS(349), - [anon_sym_package] = ACTIONS(349), - [anon_sym_import] = ACTIONS(349), - [anon_sym_enum] = ACTIONS(349), - [anon_sym_public] = ACTIONS(349), - [anon_sym_protected] = ACTIONS(349), - [anon_sym_private] = ACTIONS(349), - [anon_sym_abstract] = ACTIONS(349), - [anon_sym_final] = ACTIONS(349), - [anon_sym_strictfp] = ACTIONS(349), - [anon_sym_native] = ACTIONS(349), - [anon_sym_transient] = ACTIONS(349), - [anon_sym_volatile] = ACTIONS(349), - [anon_sym_sealed] = ACTIONS(349), - [anon_sym_non_DASHsealed] = ACTIONS(347), - [anon_sym_record] = ACTIONS(349), - [anon_sym_ATinterface] = ACTIONS(347), - [anon_sym_interface] = ACTIONS(349), - [anon_sym_byte] = ACTIONS(349), - [anon_sym_short] = ACTIONS(349), - [anon_sym_int] = ACTIONS(349), - [anon_sym_long] = ACTIONS(349), - [anon_sym_char] = ACTIONS(349), - [anon_sym_float] = ACTIONS(349), - [anon_sym_double] = ACTIONS(349), - [sym_boolean_type] = ACTIONS(349), - [sym_void_type] = ACTIONS(349), - [sym_this] = ACTIONS(349), - [sym_super] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [sym_decimal_integer_literal] = ACTIONS(255), + [sym_hex_integer_literal] = ACTIONS(255), + [sym_octal_integer_literal] = ACTIONS(253), + [sym_binary_integer_literal] = ACTIONS(253), + [sym_decimal_floating_point_literal] = ACTIONS(253), + [sym_hex_floating_point_literal] = ACTIONS(255), + [sym_true] = ACTIONS(255), + [sym_false] = ACTIONS(255), + [sym_character_literal] = ACTIONS(253), + [sym_string_literal] = ACTIONS(255), + [sym_text_block] = ACTIONS(253), + [sym_null_literal] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_PLUS_PLUS] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(253), + [anon_sym_new] = ACTIONS(255), + [anon_sym_class] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_case] = ACTIONS(255), + [anon_sym_default] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_assert] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_yield] = ACTIONS(255), + [anon_sym_synchronized] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(255), + [anon_sym_try] = ACTIONS(255), + [anon_sym_catch] = ACTIONS(255), + [anon_sym_finally] = ACTIONS(255), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(255), + [anon_sym_open] = ACTIONS(255), + [anon_sym_module] = ACTIONS(255), + [anon_sym_static] = ACTIONS(255), + [anon_sym_package] = ACTIONS(255), + [anon_sym_import] = ACTIONS(255), + [anon_sym_enum] = ACTIONS(255), + [anon_sym_public] = ACTIONS(255), + [anon_sym_protected] = ACTIONS(255), + [anon_sym_private] = ACTIONS(255), + [anon_sym_abstract] = ACTIONS(255), + [anon_sym_final] = ACTIONS(255), + [anon_sym_strictfp] = ACTIONS(255), + [anon_sym_native] = ACTIONS(255), + [anon_sym_transient] = ACTIONS(255), + [anon_sym_volatile] = ACTIONS(255), + [anon_sym_sealed] = ACTIONS(255), + [anon_sym_non_DASHsealed] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [anon_sym_ATinterface] = ACTIONS(253), + [anon_sym_interface] = ACTIONS(255), + [anon_sym_byte] = ACTIONS(255), + [anon_sym_short] = ACTIONS(255), + [anon_sym_int] = ACTIONS(255), + [anon_sym_long] = ACTIONS(255), + [anon_sym_char] = ACTIONS(255), + [anon_sym_float] = ACTIONS(255), + [anon_sym_double] = ACTIONS(255), + [sym_boolean_type] = ACTIONS(255), + [sym_void_type] = ACTIONS(255), + [sym_this] = ACTIONS(255), + [sym_super] = ACTIONS(255), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(351), - [sym_identifier] = ACTIONS(353), - [sym_decimal_integer_literal] = ACTIONS(353), - [sym_hex_integer_literal] = ACTIONS(353), - [sym_octal_integer_literal] = ACTIONS(351), - [sym_binary_integer_literal] = ACTIONS(351), - [sym_decimal_floating_point_literal] = ACTIONS(351), - [sym_hex_floating_point_literal] = ACTIONS(353), - [sym_true] = ACTIONS(353), - [sym_false] = ACTIONS(353), - [sym_character_literal] = ACTIONS(351), - [sym_string_literal] = ACTIONS(353), - [sym_text_block] = ACTIONS(351), - [sym_null_literal] = ACTIONS(353), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(351), - [anon_sym_TILDE] = ACTIONS(351), - [anon_sym_PLUS_PLUS] = ACTIONS(351), - [anon_sym_DASH_DASH] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_class] = ACTIONS(353), - [anon_sym_switch] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(351), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_case] = ACTIONS(353), - [anon_sym_default] = ACTIONS(353), - [anon_sym_SEMI] = ACTIONS(351), - [anon_sym_assert] = ACTIONS(353), - [anon_sym_do] = ACTIONS(353), - [anon_sym_while] = ACTIONS(353), - [anon_sym_break] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(353), - [anon_sym_return] = ACTIONS(353), - [anon_sym_yield] = ACTIONS(353), - [anon_sym_synchronized] = ACTIONS(353), - [anon_sym_throw] = ACTIONS(353), - [anon_sym_try] = ACTIONS(353), - [anon_sym_if] = ACTIONS(353), - [anon_sym_else] = ACTIONS(353), - [anon_sym_for] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(353), - [anon_sym_open] = ACTIONS(353), - [anon_sym_module] = ACTIONS(353), - [anon_sym_static] = ACTIONS(353), - [anon_sym_package] = ACTIONS(353), - [anon_sym_import] = ACTIONS(353), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_public] = ACTIONS(353), - [anon_sym_protected] = ACTIONS(353), - [anon_sym_private] = ACTIONS(353), - [anon_sym_abstract] = ACTIONS(353), - [anon_sym_final] = ACTIONS(353), - [anon_sym_strictfp] = ACTIONS(353), - [anon_sym_native] = ACTIONS(353), - [anon_sym_transient] = ACTIONS(353), - [anon_sym_volatile] = ACTIONS(353), - [anon_sym_sealed] = ACTIONS(353), - [anon_sym_non_DASHsealed] = ACTIONS(351), - [anon_sym_record] = ACTIONS(353), - [anon_sym_ATinterface] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(353), - [anon_sym_byte] = ACTIONS(353), - [anon_sym_short] = ACTIONS(353), - [anon_sym_int] = ACTIONS(353), - [anon_sym_long] = ACTIONS(353), - [anon_sym_char] = ACTIONS(353), - [anon_sym_float] = ACTIONS(353), - [anon_sym_double] = ACTIONS(353), - [sym_boolean_type] = ACTIONS(353), - [sym_void_type] = ACTIONS(353), - [sym_this] = ACTIONS(353), - [sym_super] = ACTIONS(353), + [sym__literal] = STATE(407), + [sym_expression] = STATE(520), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(868), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(344), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_RBRACE] = ACTIONS(348), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(355), - [sym_identifier] = ACTIONS(357), - [sym_decimal_integer_literal] = ACTIONS(357), - [sym_hex_integer_literal] = ACTIONS(357), - [sym_octal_integer_literal] = ACTIONS(355), - [sym_binary_integer_literal] = ACTIONS(355), - [sym_decimal_floating_point_literal] = ACTIONS(355), - [sym_hex_floating_point_literal] = ACTIONS(357), - [sym_true] = ACTIONS(357), - [sym_false] = ACTIONS(357), - [sym_character_literal] = ACTIONS(355), - [sym_string_literal] = ACTIONS(357), - [sym_text_block] = ACTIONS(355), - [sym_null_literal] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_PLUS] = ACTIONS(357), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_PLUS_PLUS] = ACTIONS(355), - [anon_sym_DASH_DASH] = ACTIONS(355), - [anon_sym_new] = ACTIONS(357), - [anon_sym_class] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_case] = ACTIONS(357), - [anon_sym_default] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_do] = ACTIONS(357), - [anon_sym_while] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_return] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_synchronized] = ACTIONS(357), - [anon_sym_throw] = ACTIONS(357), - [anon_sym_try] = ACTIONS(357), - [anon_sym_if] = ACTIONS(357), - [anon_sym_else] = ACTIONS(357), - [anon_sym_for] = ACTIONS(357), - [anon_sym_AT] = ACTIONS(357), - [anon_sym_open] = ACTIONS(357), - [anon_sym_module] = ACTIONS(357), - [anon_sym_static] = ACTIONS(357), - [anon_sym_package] = ACTIONS(357), - [anon_sym_import] = ACTIONS(357), - [anon_sym_enum] = ACTIONS(357), - [anon_sym_public] = ACTIONS(357), - [anon_sym_protected] = ACTIONS(357), - [anon_sym_private] = ACTIONS(357), - [anon_sym_abstract] = ACTIONS(357), - [anon_sym_final] = ACTIONS(357), - [anon_sym_strictfp] = ACTIONS(357), - [anon_sym_native] = ACTIONS(357), - [anon_sym_transient] = ACTIONS(357), - [anon_sym_volatile] = ACTIONS(357), - [anon_sym_sealed] = ACTIONS(357), - [anon_sym_non_DASHsealed] = ACTIONS(355), - [anon_sym_record] = ACTIONS(357), - [anon_sym_ATinterface] = ACTIONS(355), - [anon_sym_interface] = ACTIONS(357), - [anon_sym_byte] = ACTIONS(357), - [anon_sym_short] = ACTIONS(357), - [anon_sym_int] = ACTIONS(357), - [anon_sym_long] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_float] = ACTIONS(357), - [anon_sym_double] = ACTIONS(357), - [sym_boolean_type] = ACTIONS(357), - [sym_void_type] = ACTIONS(357), - [sym_this] = ACTIONS(357), - [sym_super] = ACTIONS(357), + [ts_builtin_sym_end] = ACTIONS(350), + [sym_identifier] = ACTIONS(352), + [sym_decimal_integer_literal] = ACTIONS(352), + [sym_hex_integer_literal] = ACTIONS(352), + [sym_octal_integer_literal] = ACTIONS(350), + [sym_binary_integer_literal] = ACTIONS(350), + [sym_decimal_floating_point_literal] = ACTIONS(350), + [sym_hex_floating_point_literal] = ACTIONS(352), + [sym_true] = ACTIONS(352), + [sym_false] = ACTIONS(352), + [sym_character_literal] = ACTIONS(350), + [sym_string_literal] = ACTIONS(352), + [sym_text_block] = ACTIONS(350), + [sym_null_literal] = ACTIONS(352), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(350), + [anon_sym_PLUS] = ACTIONS(352), + [anon_sym_DASH] = ACTIONS(352), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_new] = ACTIONS(352), + [anon_sym_class] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(350), + [anon_sym_RBRACE] = ACTIONS(350), + [anon_sym_case] = ACTIONS(352), + [anon_sym_default] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(350), + [anon_sym_assert] = ACTIONS(352), + [anon_sym_do] = ACTIONS(352), + [anon_sym_while] = ACTIONS(352), + [anon_sym_break] = ACTIONS(352), + [anon_sym_continue] = ACTIONS(352), + [anon_sym_return] = ACTIONS(352), + [anon_sym_yield] = ACTIONS(352), + [anon_sym_synchronized] = ACTIONS(352), + [anon_sym_throw] = ACTIONS(352), + [anon_sym_try] = ACTIONS(352), + [anon_sym_if] = ACTIONS(352), + [anon_sym_else] = ACTIONS(352), + [anon_sym_for] = ACTIONS(352), + [anon_sym_AT] = ACTIONS(352), + [anon_sym_open] = ACTIONS(352), + [anon_sym_module] = ACTIONS(352), + [anon_sym_static] = ACTIONS(352), + [anon_sym_package] = ACTIONS(352), + [anon_sym_import] = ACTIONS(352), + [anon_sym_enum] = ACTIONS(352), + [anon_sym_public] = ACTIONS(352), + [anon_sym_protected] = ACTIONS(352), + [anon_sym_private] = ACTIONS(352), + [anon_sym_abstract] = ACTIONS(352), + [anon_sym_final] = ACTIONS(352), + [anon_sym_strictfp] = ACTIONS(352), + [anon_sym_native] = ACTIONS(352), + [anon_sym_transient] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(352), + [anon_sym_sealed] = ACTIONS(352), + [anon_sym_non_DASHsealed] = ACTIONS(350), + [anon_sym_record] = ACTIONS(352), + [anon_sym_ATinterface] = ACTIONS(350), + [anon_sym_interface] = ACTIONS(352), + [anon_sym_byte] = ACTIONS(352), + [anon_sym_short] = ACTIONS(352), + [anon_sym_int] = ACTIONS(352), + [anon_sym_long] = ACTIONS(352), + [anon_sym_char] = ACTIONS(352), + [anon_sym_float] = ACTIONS(352), + [anon_sym_double] = ACTIONS(352), + [sym_boolean_type] = ACTIONS(352), + [sym_void_type] = ACTIONS(352), + [sym_this] = ACTIONS(352), + [sym_super] = ACTIONS(352), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [73] = { - [ts_builtin_sym_end] = ACTIONS(359), - [sym_identifier] = ACTIONS(361), - [sym_decimal_integer_literal] = ACTIONS(361), - [sym_hex_integer_literal] = ACTIONS(361), - [sym_octal_integer_literal] = ACTIONS(359), - [sym_binary_integer_literal] = ACTIONS(359), - [sym_decimal_floating_point_literal] = ACTIONS(359), - [sym_hex_floating_point_literal] = ACTIONS(361), - [sym_true] = ACTIONS(361), - [sym_false] = ACTIONS(361), - [sym_character_literal] = ACTIONS(359), - [sym_string_literal] = ACTIONS(361), - [sym_text_block] = ACTIONS(359), - [sym_null_literal] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_DASH] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(359), - [anon_sym_new] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(359), - [anon_sym_RBRACE] = ACTIONS(359), - [anon_sym_case] = ACTIONS(361), - [anon_sym_default] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_assert] = ACTIONS(361), - [anon_sym_do] = ACTIONS(361), - [anon_sym_while] = ACTIONS(361), - [anon_sym_break] = ACTIONS(361), - [anon_sym_continue] = ACTIONS(361), - [anon_sym_return] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(361), - [anon_sym_synchronized] = ACTIONS(361), - [anon_sym_throw] = ACTIONS(361), - [anon_sym_try] = ACTIONS(361), - [anon_sym_if] = ACTIONS(361), - [anon_sym_else] = ACTIONS(361), - [anon_sym_for] = ACTIONS(361), - [anon_sym_AT] = ACTIONS(361), - [anon_sym_open] = ACTIONS(361), - [anon_sym_module] = ACTIONS(361), - [anon_sym_static] = ACTIONS(361), - [anon_sym_package] = ACTIONS(361), - [anon_sym_import] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(361), - [anon_sym_public] = ACTIONS(361), - [anon_sym_protected] = ACTIONS(361), - [anon_sym_private] = ACTIONS(361), - [anon_sym_abstract] = ACTIONS(361), - [anon_sym_final] = ACTIONS(361), - [anon_sym_strictfp] = ACTIONS(361), - [anon_sym_native] = ACTIONS(361), - [anon_sym_transient] = ACTIONS(361), - [anon_sym_volatile] = ACTIONS(361), - [anon_sym_sealed] = ACTIONS(361), - [anon_sym_non_DASHsealed] = ACTIONS(359), - [anon_sym_record] = ACTIONS(361), - [anon_sym_ATinterface] = ACTIONS(359), - [anon_sym_interface] = ACTIONS(361), - [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(361), - [anon_sym_double] = ACTIONS(361), - [sym_boolean_type] = ACTIONS(361), - [sym_void_type] = ACTIONS(361), - [sym_this] = ACTIONS(361), - [sym_super] = ACTIONS(361), + [ts_builtin_sym_end] = ACTIONS(354), + [sym_identifier] = ACTIONS(356), + [sym_decimal_integer_literal] = ACTIONS(356), + [sym_hex_integer_literal] = ACTIONS(356), + [sym_octal_integer_literal] = ACTIONS(354), + [sym_binary_integer_literal] = ACTIONS(354), + [sym_decimal_floating_point_literal] = ACTIONS(354), + [sym_hex_floating_point_literal] = ACTIONS(356), + [sym_true] = ACTIONS(356), + [sym_false] = ACTIONS(356), + [sym_character_literal] = ACTIONS(354), + [sym_string_literal] = ACTIONS(356), + [sym_text_block] = ACTIONS(354), + [sym_null_literal] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(354), + [anon_sym_LT] = ACTIONS(354), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_TILDE] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(354), + [anon_sym_DASH_DASH] = ACTIONS(354), + [anon_sym_new] = ACTIONS(356), + [anon_sym_class] = ACTIONS(356), + [anon_sym_switch] = ACTIONS(356), + [anon_sym_LBRACE] = ACTIONS(354), + [anon_sym_RBRACE] = ACTIONS(354), + [anon_sym_case] = ACTIONS(356), + [anon_sym_default] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_assert] = ACTIONS(356), + [anon_sym_do] = ACTIONS(356), + [anon_sym_while] = ACTIONS(356), + [anon_sym_break] = ACTIONS(356), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_return] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(356), + [anon_sym_synchronized] = ACTIONS(356), + [anon_sym_throw] = ACTIONS(356), + [anon_sym_try] = ACTIONS(356), + [anon_sym_if] = ACTIONS(356), + [anon_sym_else] = ACTIONS(356), + [anon_sym_for] = ACTIONS(356), + [anon_sym_AT] = ACTIONS(356), + [anon_sym_open] = ACTIONS(356), + [anon_sym_module] = ACTIONS(356), + [anon_sym_static] = ACTIONS(356), + [anon_sym_package] = ACTIONS(356), + [anon_sym_import] = ACTIONS(356), + [anon_sym_enum] = ACTIONS(356), + [anon_sym_public] = ACTIONS(356), + [anon_sym_protected] = ACTIONS(356), + [anon_sym_private] = ACTIONS(356), + [anon_sym_abstract] = ACTIONS(356), + [anon_sym_final] = ACTIONS(356), + [anon_sym_strictfp] = ACTIONS(356), + [anon_sym_native] = ACTIONS(356), + [anon_sym_transient] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(356), + [anon_sym_sealed] = ACTIONS(356), + [anon_sym_non_DASHsealed] = ACTIONS(354), + [anon_sym_record] = ACTIONS(356), + [anon_sym_ATinterface] = ACTIONS(354), + [anon_sym_interface] = ACTIONS(356), + [anon_sym_byte] = ACTIONS(356), + [anon_sym_short] = ACTIONS(356), + [anon_sym_int] = ACTIONS(356), + [anon_sym_long] = ACTIONS(356), + [anon_sym_char] = ACTIONS(356), + [anon_sym_float] = ACTIONS(356), + [anon_sym_double] = ACTIONS(356), + [sym_boolean_type] = ACTIONS(356), + [sym_void_type] = ACTIONS(356), + [sym_this] = ACTIONS(356), + [sym_super] = ACTIONS(356), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(363), - [sym_identifier] = ACTIONS(365), - [sym_decimal_integer_literal] = ACTIONS(365), - [sym_hex_integer_literal] = ACTIONS(365), - [sym_octal_integer_literal] = ACTIONS(363), - [sym_binary_integer_literal] = ACTIONS(363), - [sym_decimal_floating_point_literal] = ACTIONS(363), - [sym_hex_floating_point_literal] = ACTIONS(365), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [sym_character_literal] = ACTIONS(363), - [sym_string_literal] = ACTIONS(365), - [sym_text_block] = ACTIONS(363), - [sym_null_literal] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(363), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_PLUS_PLUS] = ACTIONS(363), - [anon_sym_DASH_DASH] = ACTIONS(363), - [anon_sym_new] = ACTIONS(365), - [anon_sym_class] = ACTIONS(365), - [anon_sym_switch] = ACTIONS(365), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_case] = ACTIONS(365), - [anon_sym_default] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_assert] = ACTIONS(365), - [anon_sym_do] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(365), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_synchronized] = ACTIONS(365), - [anon_sym_throw] = ACTIONS(365), - [anon_sym_try] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_else] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(365), - [anon_sym_open] = ACTIONS(365), - [anon_sym_module] = ACTIONS(365), - [anon_sym_static] = ACTIONS(365), - [anon_sym_package] = ACTIONS(365), - [anon_sym_import] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_public] = ACTIONS(365), - [anon_sym_protected] = ACTIONS(365), - [anon_sym_private] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(365), - [anon_sym_final] = ACTIONS(365), - [anon_sym_strictfp] = ACTIONS(365), - [anon_sym_native] = ACTIONS(365), - [anon_sym_transient] = ACTIONS(365), - [anon_sym_volatile] = ACTIONS(365), - [anon_sym_sealed] = ACTIONS(365), - [anon_sym_non_DASHsealed] = ACTIONS(363), - [anon_sym_record] = ACTIONS(365), - [anon_sym_ATinterface] = ACTIONS(363), - [anon_sym_interface] = ACTIONS(365), - [anon_sym_byte] = ACTIONS(365), - [anon_sym_short] = ACTIONS(365), - [anon_sym_int] = ACTIONS(365), - [anon_sym_long] = ACTIONS(365), - [anon_sym_char] = ACTIONS(365), - [anon_sym_float] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [sym_boolean_type] = ACTIONS(365), - [sym_void_type] = ACTIONS(365), - [sym_this] = ACTIONS(365), - [sym_super] = ACTIONS(365), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym__element_value] = STATE(1112), + [sym_element_value_array_initializer] = STATE(1112), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(367), - [sym_identifier] = ACTIONS(369), - [sym_decimal_integer_literal] = ACTIONS(369), - [sym_hex_integer_literal] = ACTIONS(369), - [sym_octal_integer_literal] = ACTIONS(367), - [sym_binary_integer_literal] = ACTIONS(367), - [sym_decimal_floating_point_literal] = ACTIONS(367), - [sym_hex_floating_point_literal] = ACTIONS(369), - [sym_true] = ACTIONS(369), - [sym_false] = ACTIONS(369), - [sym_character_literal] = ACTIONS(367), - [sym_string_literal] = ACTIONS(369), - [sym_text_block] = ACTIONS(367), - [sym_null_literal] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_PLUS] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(369), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_TILDE] = ACTIONS(367), - [anon_sym_PLUS_PLUS] = ACTIONS(367), - [anon_sym_DASH_DASH] = ACTIONS(367), - [anon_sym_new] = ACTIONS(369), - [anon_sym_class] = ACTIONS(369), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(367), - [anon_sym_case] = ACTIONS(369), - [anon_sym_default] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(367), - [anon_sym_assert] = ACTIONS(369), - [anon_sym_do] = ACTIONS(369), - [anon_sym_while] = ACTIONS(369), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(369), - [anon_sym_return] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(369), - [anon_sym_synchronized] = ACTIONS(369), - [anon_sym_throw] = ACTIONS(369), - [anon_sym_try] = ACTIONS(369), - [anon_sym_if] = ACTIONS(369), - [anon_sym_else] = ACTIONS(369), - [anon_sym_for] = ACTIONS(369), - [anon_sym_AT] = ACTIONS(369), - [anon_sym_open] = ACTIONS(369), - [anon_sym_module] = ACTIONS(369), - [anon_sym_static] = ACTIONS(369), - [anon_sym_package] = ACTIONS(369), - [anon_sym_import] = ACTIONS(369), - [anon_sym_enum] = ACTIONS(369), - [anon_sym_public] = ACTIONS(369), - [anon_sym_protected] = ACTIONS(369), - [anon_sym_private] = ACTIONS(369), - [anon_sym_abstract] = ACTIONS(369), - [anon_sym_final] = ACTIONS(369), - [anon_sym_strictfp] = ACTIONS(369), - [anon_sym_native] = ACTIONS(369), - [anon_sym_transient] = ACTIONS(369), - [anon_sym_volatile] = ACTIONS(369), - [anon_sym_sealed] = ACTIONS(369), - [anon_sym_non_DASHsealed] = ACTIONS(367), - [anon_sym_record] = ACTIONS(369), - [anon_sym_ATinterface] = ACTIONS(367), - [anon_sym_interface] = ACTIONS(369), - [anon_sym_byte] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_int] = ACTIONS(369), - [anon_sym_long] = ACTIONS(369), - [anon_sym_char] = ACTIONS(369), - [anon_sym_float] = ACTIONS(369), - [anon_sym_double] = ACTIONS(369), - [sym_boolean_type] = ACTIONS(369), - [sym_void_type] = ACTIONS(369), - [sym_this] = ACTIONS(369), - [sym_super] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(358), + [sym_identifier] = ACTIONS(360), + [sym_decimal_integer_literal] = ACTIONS(360), + [sym_hex_integer_literal] = ACTIONS(360), + [sym_octal_integer_literal] = ACTIONS(358), + [sym_binary_integer_literal] = ACTIONS(358), + [sym_decimal_floating_point_literal] = ACTIONS(358), + [sym_hex_floating_point_literal] = ACTIONS(360), + [sym_true] = ACTIONS(360), + [sym_false] = ACTIONS(360), + [sym_character_literal] = ACTIONS(358), + [sym_string_literal] = ACTIONS(360), + [sym_text_block] = ACTIONS(358), + [sym_null_literal] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_PLUS] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(360), + [anon_sym_BANG] = ACTIONS(358), + [anon_sym_TILDE] = ACTIONS(358), + [anon_sym_PLUS_PLUS] = ACTIONS(358), + [anon_sym_DASH_DASH] = ACTIONS(358), + [anon_sym_new] = ACTIONS(360), + [anon_sym_class] = ACTIONS(360), + [anon_sym_switch] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(358), + [anon_sym_case] = ACTIONS(360), + [anon_sym_default] = ACTIONS(360), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_assert] = ACTIONS(360), + [anon_sym_do] = ACTIONS(360), + [anon_sym_while] = ACTIONS(360), + [anon_sym_break] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(360), + [anon_sym_return] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_synchronized] = ACTIONS(360), + [anon_sym_throw] = ACTIONS(360), + [anon_sym_try] = ACTIONS(360), + [anon_sym_if] = ACTIONS(360), + [anon_sym_else] = ACTIONS(360), + [anon_sym_for] = ACTIONS(360), + [anon_sym_AT] = ACTIONS(360), + [anon_sym_open] = ACTIONS(360), + [anon_sym_module] = ACTIONS(360), + [anon_sym_static] = ACTIONS(360), + [anon_sym_package] = ACTIONS(360), + [anon_sym_import] = ACTIONS(360), + [anon_sym_enum] = ACTIONS(360), + [anon_sym_public] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_strictfp] = ACTIONS(360), + [anon_sym_native] = ACTIONS(360), + [anon_sym_transient] = ACTIONS(360), + [anon_sym_volatile] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_non_DASHsealed] = ACTIONS(358), + [anon_sym_record] = ACTIONS(360), + [anon_sym_ATinterface] = ACTIONS(358), + [anon_sym_interface] = ACTIONS(360), + [anon_sym_byte] = ACTIONS(360), + [anon_sym_short] = ACTIONS(360), + [anon_sym_int] = ACTIONS(360), + [anon_sym_long] = ACTIONS(360), + [anon_sym_char] = ACTIONS(360), + [anon_sym_float] = ACTIONS(360), + [anon_sym_double] = ACTIONS(360), + [sym_boolean_type] = ACTIONS(360), + [sym_void_type] = ACTIONS(360), + [sym_this] = ACTIONS(360), + [sym_super] = ACTIONS(360), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [76] = { - [ts_builtin_sym_end] = ACTIONS(371), - [sym_identifier] = ACTIONS(373), - [sym_decimal_integer_literal] = ACTIONS(373), - [sym_hex_integer_literal] = ACTIONS(373), - [sym_octal_integer_literal] = ACTIONS(371), - [sym_binary_integer_literal] = ACTIONS(371), - [sym_decimal_floating_point_literal] = ACTIONS(371), - [sym_hex_floating_point_literal] = ACTIONS(373), - [sym_true] = ACTIONS(373), - [sym_false] = ACTIONS(373), - [sym_character_literal] = ACTIONS(371), - [sym_string_literal] = ACTIONS(373), - [sym_text_block] = ACTIONS(371), - [sym_null_literal] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_BANG] = ACTIONS(371), - [anon_sym_TILDE] = ACTIONS(371), - [anon_sym_PLUS_PLUS] = ACTIONS(371), - [anon_sym_DASH_DASH] = ACTIONS(371), - [anon_sym_new] = ACTIONS(373), - [anon_sym_class] = ACTIONS(373), - [anon_sym_switch] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_case] = ACTIONS(373), - [anon_sym_default] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_assert] = ACTIONS(373), - [anon_sym_do] = ACTIONS(373), - [anon_sym_while] = ACTIONS(373), - [anon_sym_break] = ACTIONS(373), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_return] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_synchronized] = ACTIONS(373), - [anon_sym_throw] = ACTIONS(373), - [anon_sym_try] = ACTIONS(373), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(373), - [anon_sym_for] = ACTIONS(373), - [anon_sym_AT] = ACTIONS(373), - [anon_sym_open] = ACTIONS(373), - [anon_sym_module] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_package] = ACTIONS(373), - [anon_sym_import] = ACTIONS(373), - [anon_sym_enum] = ACTIONS(373), - [anon_sym_public] = ACTIONS(373), - [anon_sym_protected] = ACTIONS(373), - [anon_sym_private] = ACTIONS(373), - [anon_sym_abstract] = ACTIONS(373), - [anon_sym_final] = ACTIONS(373), - [anon_sym_strictfp] = ACTIONS(373), - [anon_sym_native] = ACTIONS(373), - [anon_sym_transient] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sealed] = ACTIONS(373), - [anon_sym_non_DASHsealed] = ACTIONS(371), - [anon_sym_record] = ACTIONS(373), - [anon_sym_ATinterface] = ACTIONS(371), - [anon_sym_interface] = ACTIONS(373), - [anon_sym_byte] = ACTIONS(373), - [anon_sym_short] = ACTIONS(373), - [anon_sym_int] = ACTIONS(373), - [anon_sym_long] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_float] = ACTIONS(373), - [anon_sym_double] = ACTIONS(373), - [sym_boolean_type] = ACTIONS(373), - [sym_void_type] = ACTIONS(373), - [sym_this] = ACTIONS(373), - [sym_super] = ACTIONS(373), + [ts_builtin_sym_end] = ACTIONS(362), + [sym_identifier] = ACTIONS(364), + [sym_decimal_integer_literal] = ACTIONS(364), + [sym_hex_integer_literal] = ACTIONS(364), + [sym_octal_integer_literal] = ACTIONS(362), + [sym_binary_integer_literal] = ACTIONS(362), + [sym_decimal_floating_point_literal] = ACTIONS(362), + [sym_hex_floating_point_literal] = ACTIONS(364), + [sym_true] = ACTIONS(364), + [sym_false] = ACTIONS(364), + [sym_character_literal] = ACTIONS(362), + [sym_string_literal] = ACTIONS(364), + [sym_text_block] = ACTIONS(362), + [sym_null_literal] = ACTIONS(364), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(362), + [anon_sym_PLUS] = ACTIONS(364), + [anon_sym_DASH] = ACTIONS(364), + [anon_sym_BANG] = ACTIONS(362), + [anon_sym_TILDE] = ACTIONS(362), + [anon_sym_PLUS_PLUS] = ACTIONS(362), + [anon_sym_DASH_DASH] = ACTIONS(362), + [anon_sym_new] = ACTIONS(364), + [anon_sym_class] = ACTIONS(364), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_RBRACE] = ACTIONS(362), + [anon_sym_case] = ACTIONS(364), + [anon_sym_default] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(362), + [anon_sym_assert] = ACTIONS(364), + [anon_sym_do] = ACTIONS(364), + [anon_sym_while] = ACTIONS(364), + [anon_sym_break] = ACTIONS(364), + [anon_sym_continue] = ACTIONS(364), + [anon_sym_return] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(364), + [anon_sym_synchronized] = ACTIONS(364), + [anon_sym_throw] = ACTIONS(364), + [anon_sym_try] = ACTIONS(364), + [anon_sym_if] = ACTIONS(364), + [anon_sym_else] = ACTIONS(364), + [anon_sym_for] = ACTIONS(364), + [anon_sym_AT] = ACTIONS(364), + [anon_sym_open] = ACTIONS(364), + [anon_sym_module] = ACTIONS(364), + [anon_sym_static] = ACTIONS(364), + [anon_sym_package] = ACTIONS(364), + [anon_sym_import] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(364), + [anon_sym_public] = ACTIONS(364), + [anon_sym_protected] = ACTIONS(364), + [anon_sym_private] = ACTIONS(364), + [anon_sym_abstract] = ACTIONS(364), + [anon_sym_final] = ACTIONS(364), + [anon_sym_strictfp] = ACTIONS(364), + [anon_sym_native] = ACTIONS(364), + [anon_sym_transient] = ACTIONS(364), + [anon_sym_volatile] = ACTIONS(364), + [anon_sym_sealed] = ACTIONS(364), + [anon_sym_non_DASHsealed] = ACTIONS(362), + [anon_sym_record] = ACTIONS(364), + [anon_sym_ATinterface] = ACTIONS(362), + [anon_sym_interface] = ACTIONS(364), + [anon_sym_byte] = ACTIONS(364), + [anon_sym_short] = ACTIONS(364), + [anon_sym_int] = ACTIONS(364), + [anon_sym_long] = ACTIONS(364), + [anon_sym_char] = ACTIONS(364), + [anon_sym_float] = ACTIONS(364), + [anon_sym_double] = ACTIONS(364), + [sym_boolean_type] = ACTIONS(364), + [sym_void_type] = ACTIONS(364), + [sym_this] = ACTIONS(364), + [sym_super] = ACTIONS(364), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(375), - [sym_identifier] = ACTIONS(377), - [sym_decimal_integer_literal] = ACTIONS(377), - [sym_hex_integer_literal] = ACTIONS(377), - [sym_octal_integer_literal] = ACTIONS(375), - [sym_binary_integer_literal] = ACTIONS(375), - [sym_decimal_floating_point_literal] = ACTIONS(375), - [sym_hex_floating_point_literal] = ACTIONS(377), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [sym_character_literal] = ACTIONS(375), - [sym_string_literal] = ACTIONS(377), - [sym_text_block] = ACTIONS(375), - [sym_null_literal] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(375), - [anon_sym_PLUS_PLUS] = ACTIONS(375), - [anon_sym_DASH_DASH] = ACTIONS(375), - [anon_sym_new] = ACTIONS(377), - [anon_sym_class] = ACTIONS(377), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_case] = ACTIONS(377), - [anon_sym_default] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_assert] = ACTIONS(377), - [anon_sym_do] = ACTIONS(377), - [anon_sym_while] = ACTIONS(377), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(377), - [anon_sym_return] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(377), - [anon_sym_synchronized] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_try] = ACTIONS(377), - [anon_sym_if] = ACTIONS(377), - [anon_sym_else] = ACTIONS(377), - [anon_sym_for] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(377), - [anon_sym_open] = ACTIONS(377), - [anon_sym_module] = ACTIONS(377), - [anon_sym_static] = ACTIONS(377), - [anon_sym_package] = ACTIONS(377), - [anon_sym_import] = ACTIONS(377), - [anon_sym_enum] = ACTIONS(377), - [anon_sym_public] = ACTIONS(377), - [anon_sym_protected] = ACTIONS(377), - [anon_sym_private] = ACTIONS(377), - [anon_sym_abstract] = ACTIONS(377), - [anon_sym_final] = ACTIONS(377), - [anon_sym_strictfp] = ACTIONS(377), - [anon_sym_native] = ACTIONS(377), - [anon_sym_transient] = ACTIONS(377), - [anon_sym_volatile] = ACTIONS(377), - [anon_sym_sealed] = ACTIONS(377), - [anon_sym_non_DASHsealed] = ACTIONS(375), - [anon_sym_record] = ACTIONS(377), - [anon_sym_ATinterface] = ACTIONS(375), - [anon_sym_interface] = ACTIONS(377), - [anon_sym_byte] = ACTIONS(377), - [anon_sym_short] = ACTIONS(377), - [anon_sym_int] = ACTIONS(377), - [anon_sym_long] = ACTIONS(377), - [anon_sym_char] = ACTIONS(377), - [anon_sym_float] = ACTIONS(377), - [anon_sym_double] = ACTIONS(377), - [sym_boolean_type] = ACTIONS(377), - [sym_void_type] = ACTIONS(377), - [sym_this] = ACTIONS(377), - [sym_super] = ACTIONS(377), + [ts_builtin_sym_end] = ACTIONS(366), + [sym_identifier] = ACTIONS(368), + [sym_decimal_integer_literal] = ACTIONS(368), + [sym_hex_integer_literal] = ACTIONS(368), + [sym_octal_integer_literal] = ACTIONS(366), + [sym_binary_integer_literal] = ACTIONS(366), + [sym_decimal_floating_point_literal] = ACTIONS(366), + [sym_hex_floating_point_literal] = ACTIONS(368), + [sym_true] = ACTIONS(368), + [sym_false] = ACTIONS(368), + [sym_character_literal] = ACTIONS(366), + [sym_string_literal] = ACTIONS(368), + [sym_text_block] = ACTIONS(366), + [sym_null_literal] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_new] = ACTIONS(368), + [anon_sym_class] = ACTIONS(368), + [anon_sym_switch] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_RBRACE] = ACTIONS(366), + [anon_sym_case] = ACTIONS(368), + [anon_sym_default] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(366), + [anon_sym_assert] = ACTIONS(368), + [anon_sym_do] = ACTIONS(368), + [anon_sym_while] = ACTIONS(368), + [anon_sym_break] = ACTIONS(368), + [anon_sym_continue] = ACTIONS(368), + [anon_sym_return] = ACTIONS(368), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_synchronized] = ACTIONS(368), + [anon_sym_throw] = ACTIONS(368), + [anon_sym_try] = ACTIONS(368), + [anon_sym_if] = ACTIONS(368), + [anon_sym_else] = ACTIONS(368), + [anon_sym_for] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(368), + [anon_sym_open] = ACTIONS(368), + [anon_sym_module] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_package] = ACTIONS(368), + [anon_sym_import] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [anon_sym_public] = ACTIONS(368), + [anon_sym_protected] = ACTIONS(368), + [anon_sym_private] = ACTIONS(368), + [anon_sym_abstract] = ACTIONS(368), + [anon_sym_final] = ACTIONS(368), + [anon_sym_strictfp] = ACTIONS(368), + [anon_sym_native] = ACTIONS(368), + [anon_sym_transient] = ACTIONS(368), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_sealed] = ACTIONS(368), + [anon_sym_non_DASHsealed] = ACTIONS(366), + [anon_sym_record] = ACTIONS(368), + [anon_sym_ATinterface] = ACTIONS(366), + [anon_sym_interface] = ACTIONS(368), + [anon_sym_byte] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_int] = ACTIONS(368), + [anon_sym_long] = ACTIONS(368), + [anon_sym_char] = ACTIONS(368), + [anon_sym_float] = ACTIONS(368), + [anon_sym_double] = ACTIONS(368), + [sym_boolean_type] = ACTIONS(368), + [sym_void_type] = ACTIONS(368), + [sym_this] = ACTIONS(368), + [sym_super] = ACTIONS(368), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(379), - [sym_identifier] = ACTIONS(381), - [sym_decimal_integer_literal] = ACTIONS(381), - [sym_hex_integer_literal] = ACTIONS(381), - [sym_octal_integer_literal] = ACTIONS(379), - [sym_binary_integer_literal] = ACTIONS(379), - [sym_decimal_floating_point_literal] = ACTIONS(379), - [sym_hex_floating_point_literal] = ACTIONS(381), - [sym_true] = ACTIONS(381), - [sym_false] = ACTIONS(381), - [sym_character_literal] = ACTIONS(379), - [sym_string_literal] = ACTIONS(381), - [sym_text_block] = ACTIONS(379), - [sym_null_literal] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(379), - [anon_sym_TILDE] = ACTIONS(379), - [anon_sym_PLUS_PLUS] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_class] = ACTIONS(381), - [anon_sym_switch] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_RBRACE] = ACTIONS(379), - [anon_sym_case] = ACTIONS(381), - [anon_sym_default] = ACTIONS(381), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_assert] = ACTIONS(381), - [anon_sym_do] = ACTIONS(381), - [anon_sym_while] = ACTIONS(381), - [anon_sym_break] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(381), - [anon_sym_return] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(381), - [anon_sym_synchronized] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(381), - [anon_sym_try] = ACTIONS(381), - [anon_sym_if] = ACTIONS(381), - [anon_sym_else] = ACTIONS(381), - [anon_sym_for] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(381), - [anon_sym_open] = ACTIONS(381), - [anon_sym_module] = ACTIONS(381), - [anon_sym_static] = ACTIONS(381), - [anon_sym_package] = ACTIONS(381), - [anon_sym_import] = ACTIONS(381), - [anon_sym_enum] = ACTIONS(381), - [anon_sym_public] = ACTIONS(381), - [anon_sym_protected] = ACTIONS(381), - [anon_sym_private] = ACTIONS(381), - [anon_sym_abstract] = ACTIONS(381), - [anon_sym_final] = ACTIONS(381), - [anon_sym_strictfp] = ACTIONS(381), - [anon_sym_native] = ACTIONS(381), - [anon_sym_transient] = ACTIONS(381), - [anon_sym_volatile] = ACTIONS(381), - [anon_sym_sealed] = ACTIONS(381), - [anon_sym_non_DASHsealed] = ACTIONS(379), - [anon_sym_record] = ACTIONS(381), - [anon_sym_ATinterface] = ACTIONS(379), - [anon_sym_interface] = ACTIONS(381), - [anon_sym_byte] = ACTIONS(381), - [anon_sym_short] = ACTIONS(381), - [anon_sym_int] = ACTIONS(381), - [anon_sym_long] = ACTIONS(381), - [anon_sym_char] = ACTIONS(381), - [anon_sym_float] = ACTIONS(381), - [anon_sym_double] = ACTIONS(381), - [sym_boolean_type] = ACTIONS(381), - [sym_void_type] = ACTIONS(381), - [sym_this] = ACTIONS(381), - [sym_super] = ACTIONS(381), + [ts_builtin_sym_end] = ACTIONS(370), + [sym_identifier] = ACTIONS(372), + [sym_decimal_integer_literal] = ACTIONS(372), + [sym_hex_integer_literal] = ACTIONS(372), + [sym_octal_integer_literal] = ACTIONS(370), + [sym_binary_integer_literal] = ACTIONS(370), + [sym_decimal_floating_point_literal] = ACTIONS(370), + [sym_hex_floating_point_literal] = ACTIONS(372), + [sym_true] = ACTIONS(372), + [sym_false] = ACTIONS(372), + [sym_character_literal] = ACTIONS(370), + [sym_string_literal] = ACTIONS(372), + [sym_text_block] = ACTIONS(370), + [sym_null_literal] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_PLUS] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(372), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_PLUS_PLUS] = ACTIONS(370), + [anon_sym_DASH_DASH] = ACTIONS(370), + [anon_sym_new] = ACTIONS(372), + [anon_sym_class] = ACTIONS(372), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_RBRACE] = ACTIONS(370), + [anon_sym_case] = ACTIONS(372), + [anon_sym_default] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym_assert] = ACTIONS(372), + [anon_sym_do] = ACTIONS(372), + [anon_sym_while] = ACTIONS(372), + [anon_sym_break] = ACTIONS(372), + [anon_sym_continue] = ACTIONS(372), + [anon_sym_return] = ACTIONS(372), + [anon_sym_yield] = ACTIONS(372), + [anon_sym_synchronized] = ACTIONS(372), + [anon_sym_throw] = ACTIONS(372), + [anon_sym_try] = ACTIONS(372), + [anon_sym_if] = ACTIONS(372), + [anon_sym_else] = ACTIONS(372), + [anon_sym_for] = ACTIONS(372), + [anon_sym_AT] = ACTIONS(372), + [anon_sym_open] = ACTIONS(372), + [anon_sym_module] = ACTIONS(372), + [anon_sym_static] = ACTIONS(372), + [anon_sym_package] = ACTIONS(372), + [anon_sym_import] = ACTIONS(372), + [anon_sym_enum] = ACTIONS(372), + [anon_sym_public] = ACTIONS(372), + [anon_sym_protected] = ACTIONS(372), + [anon_sym_private] = ACTIONS(372), + [anon_sym_abstract] = ACTIONS(372), + [anon_sym_final] = ACTIONS(372), + [anon_sym_strictfp] = ACTIONS(372), + [anon_sym_native] = ACTIONS(372), + [anon_sym_transient] = ACTIONS(372), + [anon_sym_volatile] = ACTIONS(372), + [anon_sym_sealed] = ACTIONS(372), + [anon_sym_non_DASHsealed] = ACTIONS(370), + [anon_sym_record] = ACTIONS(372), + [anon_sym_ATinterface] = ACTIONS(370), + [anon_sym_interface] = ACTIONS(372), + [anon_sym_byte] = ACTIONS(372), + [anon_sym_short] = ACTIONS(372), + [anon_sym_int] = ACTIONS(372), + [anon_sym_long] = ACTIONS(372), + [anon_sym_char] = ACTIONS(372), + [anon_sym_float] = ACTIONS(372), + [anon_sym_double] = ACTIONS(372), + [sym_boolean_type] = ACTIONS(372), + [sym_void_type] = ACTIONS(372), + [sym_this] = ACTIONS(372), + [sym_super] = ACTIONS(372), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(383), - [sym_identifier] = ACTIONS(385), - [sym_decimal_integer_literal] = ACTIONS(385), - [sym_hex_integer_literal] = ACTIONS(385), - [sym_octal_integer_literal] = ACTIONS(383), - [sym_binary_integer_literal] = ACTIONS(383), - [sym_decimal_floating_point_literal] = ACTIONS(383), - [sym_hex_floating_point_literal] = ACTIONS(385), - [sym_true] = ACTIONS(385), - [sym_false] = ACTIONS(385), - [sym_character_literal] = ACTIONS(383), - [sym_string_literal] = ACTIONS(385), - [sym_text_block] = ACTIONS(383), - [sym_null_literal] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(383), - [anon_sym_new] = ACTIONS(385), - [anon_sym_class] = ACTIONS(385), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(383), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_case] = ACTIONS(385), - [anon_sym_default] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_assert] = ACTIONS(385), - [anon_sym_do] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_synchronized] = ACTIONS(385), - [anon_sym_throw] = ACTIONS(385), - [anon_sym_try] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_open] = ACTIONS(385), - [anon_sym_module] = ACTIONS(385), - [anon_sym_static] = ACTIONS(385), - [anon_sym_package] = ACTIONS(385), - [anon_sym_import] = ACTIONS(385), - [anon_sym_enum] = ACTIONS(385), - [anon_sym_public] = ACTIONS(385), - [anon_sym_protected] = ACTIONS(385), - [anon_sym_private] = ACTIONS(385), - [anon_sym_abstract] = ACTIONS(385), - [anon_sym_final] = ACTIONS(385), - [anon_sym_strictfp] = ACTIONS(385), - [anon_sym_native] = ACTIONS(385), - [anon_sym_transient] = ACTIONS(385), - [anon_sym_volatile] = ACTIONS(385), - [anon_sym_sealed] = ACTIONS(385), - [anon_sym_non_DASHsealed] = ACTIONS(383), - [anon_sym_record] = ACTIONS(385), - [anon_sym_ATinterface] = ACTIONS(383), - [anon_sym_interface] = ACTIONS(385), - [anon_sym_byte] = ACTIONS(385), - [anon_sym_short] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_long] = ACTIONS(385), - [anon_sym_char] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_double] = ACTIONS(385), - [sym_boolean_type] = ACTIONS(385), - [sym_void_type] = ACTIONS(385), - [sym_this] = ACTIONS(385), - [sym_super] = ACTIONS(385), + [ts_builtin_sym_end] = ACTIONS(374), + [sym_identifier] = ACTIONS(376), + [sym_decimal_integer_literal] = ACTIONS(376), + [sym_hex_integer_literal] = ACTIONS(376), + [sym_octal_integer_literal] = ACTIONS(374), + [sym_binary_integer_literal] = ACTIONS(374), + [sym_decimal_floating_point_literal] = ACTIONS(374), + [sym_hex_floating_point_literal] = ACTIONS(376), + [sym_true] = ACTIONS(376), + [sym_false] = ACTIONS(376), + [sym_character_literal] = ACTIONS(374), + [sym_string_literal] = ACTIONS(376), + [sym_text_block] = ACTIONS(374), + [sym_null_literal] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(374), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(374), + [anon_sym_TILDE] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(374), + [anon_sym_new] = ACTIONS(376), + [anon_sym_class] = ACTIONS(376), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(374), + [anon_sym_case] = ACTIONS(376), + [anon_sym_default] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(374), + [anon_sym_assert] = ACTIONS(376), + [anon_sym_do] = ACTIONS(376), + [anon_sym_while] = ACTIONS(376), + [anon_sym_break] = ACTIONS(376), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_return] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_synchronized] = ACTIONS(376), + [anon_sym_throw] = ACTIONS(376), + [anon_sym_try] = ACTIONS(376), + [anon_sym_if] = ACTIONS(376), + [anon_sym_else] = ACTIONS(376), + [anon_sym_for] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(376), + [anon_sym_open] = ACTIONS(376), + [anon_sym_module] = ACTIONS(376), + [anon_sym_static] = ACTIONS(376), + [anon_sym_package] = ACTIONS(376), + [anon_sym_import] = ACTIONS(376), + [anon_sym_enum] = ACTIONS(376), + [anon_sym_public] = ACTIONS(376), + [anon_sym_protected] = ACTIONS(376), + [anon_sym_private] = ACTIONS(376), + [anon_sym_abstract] = ACTIONS(376), + [anon_sym_final] = ACTIONS(376), + [anon_sym_strictfp] = ACTIONS(376), + [anon_sym_native] = ACTIONS(376), + [anon_sym_transient] = ACTIONS(376), + [anon_sym_volatile] = ACTIONS(376), + [anon_sym_sealed] = ACTIONS(376), + [anon_sym_non_DASHsealed] = ACTIONS(374), + [anon_sym_record] = ACTIONS(376), + [anon_sym_ATinterface] = ACTIONS(374), + [anon_sym_interface] = ACTIONS(376), + [anon_sym_byte] = ACTIONS(376), + [anon_sym_short] = ACTIONS(376), + [anon_sym_int] = ACTIONS(376), + [anon_sym_long] = ACTIONS(376), + [anon_sym_char] = ACTIONS(376), + [anon_sym_float] = ACTIONS(376), + [anon_sym_double] = ACTIONS(376), + [sym_boolean_type] = ACTIONS(376), + [sym_void_type] = ACTIONS(376), + [sym_this] = ACTIONS(376), + [sym_super] = ACTIONS(376), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [80] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [ts_builtin_sym_end] = ACTIONS(378), + [sym_identifier] = ACTIONS(380), + [sym_decimal_integer_literal] = ACTIONS(380), + [sym_hex_integer_literal] = ACTIONS(380), + [sym_octal_integer_literal] = ACTIONS(378), + [sym_binary_integer_literal] = ACTIONS(378), + [sym_decimal_floating_point_literal] = ACTIONS(378), + [sym_hex_floating_point_literal] = ACTIONS(380), + [sym_true] = ACTIONS(380), + [sym_false] = ACTIONS(380), + [sym_character_literal] = ACTIONS(378), + [sym_string_literal] = ACTIONS(380), + [sym_text_block] = ACTIONS(378), + [sym_null_literal] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(378), + [anon_sym_PLUS] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(380), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym_new] = ACTIONS(380), + [anon_sym_class] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(378), + [anon_sym_case] = ACTIONS(380), + [anon_sym_default] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(378), + [anon_sym_assert] = ACTIONS(380), + [anon_sym_do] = ACTIONS(380), + [anon_sym_while] = ACTIONS(380), + [anon_sym_break] = ACTIONS(380), + [anon_sym_continue] = ACTIONS(380), + [anon_sym_return] = ACTIONS(380), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_synchronized] = ACTIONS(380), + [anon_sym_throw] = ACTIONS(380), + [anon_sym_try] = ACTIONS(380), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(380), + [anon_sym_for] = ACTIONS(380), + [anon_sym_AT] = ACTIONS(380), + [anon_sym_open] = ACTIONS(380), + [anon_sym_module] = ACTIONS(380), + [anon_sym_static] = ACTIONS(380), + [anon_sym_package] = ACTIONS(380), + [anon_sym_import] = ACTIONS(380), + [anon_sym_enum] = ACTIONS(380), + [anon_sym_public] = ACTIONS(380), + [anon_sym_protected] = ACTIONS(380), + [anon_sym_private] = ACTIONS(380), + [anon_sym_abstract] = ACTIONS(380), + [anon_sym_final] = ACTIONS(380), + [anon_sym_strictfp] = ACTIONS(380), + [anon_sym_native] = ACTIONS(380), + [anon_sym_transient] = ACTIONS(380), + [anon_sym_volatile] = ACTIONS(380), + [anon_sym_sealed] = ACTIONS(380), + [anon_sym_non_DASHsealed] = ACTIONS(378), + [anon_sym_record] = ACTIONS(380), + [anon_sym_ATinterface] = ACTIONS(378), + [anon_sym_interface] = ACTIONS(380), + [anon_sym_byte] = ACTIONS(380), + [anon_sym_short] = ACTIONS(380), + [anon_sym_int] = ACTIONS(380), + [anon_sym_long] = ACTIONS(380), + [anon_sym_char] = ACTIONS(380), + [anon_sym_float] = ACTIONS(380), + [anon_sym_double] = ACTIONS(380), + [sym_boolean_type] = ACTIONS(380), + [sym_void_type] = ACTIONS(380), + [sym_this] = ACTIONS(380), + [sym_super] = ACTIONS(380), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [81] = { + [ts_builtin_sym_end] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_decimal_integer_literal] = ACTIONS(384), + [sym_hex_integer_literal] = ACTIONS(384), + [sym_octal_integer_literal] = ACTIONS(382), + [sym_binary_integer_literal] = ACTIONS(382), + [sym_decimal_floating_point_literal] = ACTIONS(382), + [sym_hex_floating_point_literal] = ACTIONS(384), + [sym_true] = ACTIONS(384), + [sym_false] = ACTIONS(384), + [sym_character_literal] = ACTIONS(382), + [sym_string_literal] = ACTIONS(384), + [sym_text_block] = ACTIONS(382), + [sym_null_literal] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_PLUS_PLUS] = ACTIONS(382), + [anon_sym_DASH_DASH] = ACTIONS(382), + [anon_sym_new] = ACTIONS(384), + [anon_sym_class] = ACTIONS(384), + [anon_sym_switch] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(382), + [anon_sym_RBRACE] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(382), + [anon_sym_assert] = ACTIONS(384), + [anon_sym_do] = ACTIONS(384), + [anon_sym_while] = ACTIONS(384), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_return] = ACTIONS(384), + [anon_sym_yield] = ACTIONS(384), + [anon_sym_synchronized] = ACTIONS(384), + [anon_sym_throw] = ACTIONS(384), + [anon_sym_try] = ACTIONS(384), + [anon_sym_if] = ACTIONS(384), + [anon_sym_else] = ACTIONS(384), + [anon_sym_for] = ACTIONS(384), + [anon_sym_AT] = ACTIONS(384), + [anon_sym_open] = ACTIONS(384), + [anon_sym_module] = ACTIONS(384), + [anon_sym_static] = ACTIONS(384), + [anon_sym_package] = ACTIONS(384), + [anon_sym_import] = ACTIONS(384), + [anon_sym_enum] = ACTIONS(384), + [anon_sym_public] = ACTIONS(384), + [anon_sym_protected] = ACTIONS(384), + [anon_sym_private] = ACTIONS(384), + [anon_sym_abstract] = ACTIONS(384), + [anon_sym_final] = ACTIONS(384), + [anon_sym_strictfp] = ACTIONS(384), + [anon_sym_native] = ACTIONS(384), + [anon_sym_transient] = ACTIONS(384), + [anon_sym_volatile] = ACTIONS(384), + [anon_sym_sealed] = ACTIONS(384), + [anon_sym_non_DASHsealed] = ACTIONS(382), + [anon_sym_record] = ACTIONS(384), + [anon_sym_ATinterface] = ACTIONS(382), + [anon_sym_interface] = ACTIONS(384), + [anon_sym_byte] = ACTIONS(384), + [anon_sym_short] = ACTIONS(384), + [anon_sym_int] = ACTIONS(384), + [anon_sym_long] = ACTIONS(384), + [anon_sym_char] = ACTIONS(384), + [anon_sym_float] = ACTIONS(384), + [anon_sym_double] = ACTIONS(384), + [sym_boolean_type] = ACTIONS(384), + [sym_void_type] = ACTIONS(384), + [sym_this] = ACTIONS(384), + [sym_super] = ACTIONS(384), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(386), + [sym_identifier] = ACTIONS(388), + [sym_decimal_integer_literal] = ACTIONS(388), + [sym_hex_integer_literal] = ACTIONS(388), + [sym_octal_integer_literal] = ACTIONS(386), + [sym_binary_integer_literal] = ACTIONS(386), + [sym_decimal_floating_point_literal] = ACTIONS(386), + [sym_hex_floating_point_literal] = ACTIONS(388), + [sym_true] = ACTIONS(388), + [sym_false] = ACTIONS(388), + [sym_character_literal] = ACTIONS(386), + [sym_string_literal] = ACTIONS(388), + [sym_text_block] = ACTIONS(386), + [sym_null_literal] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_TILDE] = ACTIONS(386), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(388), + [anon_sym_class] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_RBRACE] = ACTIONS(386), + [anon_sym_case] = ACTIONS(388), + [anon_sym_default] = ACTIONS(388), + [anon_sym_SEMI] = ACTIONS(386), + [anon_sym_assert] = ACTIONS(388), + [anon_sym_do] = ACTIONS(388), + [anon_sym_while] = ACTIONS(388), + [anon_sym_break] = ACTIONS(388), + [anon_sym_continue] = ACTIONS(388), + [anon_sym_return] = ACTIONS(388), + [anon_sym_yield] = ACTIONS(388), + [anon_sym_synchronized] = ACTIONS(388), + [anon_sym_throw] = ACTIONS(388), + [anon_sym_try] = ACTIONS(388), + [anon_sym_if] = ACTIONS(388), + [anon_sym_else] = ACTIONS(388), + [anon_sym_for] = ACTIONS(388), + [anon_sym_AT] = ACTIONS(388), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_static] = ACTIONS(388), + [anon_sym_package] = ACTIONS(388), + [anon_sym_import] = ACTIONS(388), + [anon_sym_enum] = ACTIONS(388), + [anon_sym_public] = ACTIONS(388), + [anon_sym_protected] = ACTIONS(388), + [anon_sym_private] = ACTIONS(388), + [anon_sym_abstract] = ACTIONS(388), + [anon_sym_final] = ACTIONS(388), + [anon_sym_strictfp] = ACTIONS(388), + [anon_sym_native] = ACTIONS(388), + [anon_sym_transient] = ACTIONS(388), + [anon_sym_volatile] = ACTIONS(388), + [anon_sym_sealed] = ACTIONS(388), + [anon_sym_non_DASHsealed] = ACTIONS(386), + [anon_sym_record] = ACTIONS(388), + [anon_sym_ATinterface] = ACTIONS(386), + [anon_sym_interface] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(388), + [anon_sym_short] = ACTIONS(388), + [anon_sym_int] = ACTIONS(388), + [anon_sym_long] = ACTIONS(388), + [anon_sym_char] = ACTIONS(388), + [anon_sym_float] = ACTIONS(388), + [anon_sym_double] = ACTIONS(388), + [sym_boolean_type] = ACTIONS(388), + [sym_void_type] = ACTIONS(388), + [sym_this] = ACTIONS(388), + [sym_super] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(392), + [sym_decimal_integer_literal] = ACTIONS(392), + [sym_hex_integer_literal] = ACTIONS(392), + [sym_octal_integer_literal] = ACTIONS(390), + [sym_binary_integer_literal] = ACTIONS(390), + [sym_decimal_floating_point_literal] = ACTIONS(390), + [sym_hex_floating_point_literal] = ACTIONS(392), + [sym_true] = ACTIONS(392), + [sym_false] = ACTIONS(392), + [sym_character_literal] = ACTIONS(390), + [sym_string_literal] = ACTIONS(392), + [sym_text_block] = ACTIONS(390), + [sym_null_literal] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(390), + [anon_sym_DASH_DASH] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_class] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(392), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_assert] = ACTIONS(392), + [anon_sym_do] = ACTIONS(392), + [anon_sym_while] = ACTIONS(392), + [anon_sym_break] = ACTIONS(392), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_return] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(392), + [anon_sym_synchronized] = ACTIONS(392), + [anon_sym_throw] = ACTIONS(392), + [anon_sym_try] = ACTIONS(392), + [anon_sym_if] = ACTIONS(392), + [anon_sym_else] = ACTIONS(392), + [anon_sym_for] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_open] = ACTIONS(392), + [anon_sym_module] = ACTIONS(392), + [anon_sym_static] = ACTIONS(392), + [anon_sym_package] = ACTIONS(392), + [anon_sym_import] = ACTIONS(392), + [anon_sym_enum] = ACTIONS(392), + [anon_sym_public] = ACTIONS(392), + [anon_sym_protected] = ACTIONS(392), + [anon_sym_private] = ACTIONS(392), + [anon_sym_abstract] = ACTIONS(392), + [anon_sym_final] = ACTIONS(392), + [anon_sym_strictfp] = ACTIONS(392), + [anon_sym_native] = ACTIONS(392), + [anon_sym_transient] = ACTIONS(392), + [anon_sym_volatile] = ACTIONS(392), + [anon_sym_sealed] = ACTIONS(392), + [anon_sym_non_DASHsealed] = ACTIONS(390), + [anon_sym_record] = ACTIONS(392), + [anon_sym_ATinterface] = ACTIONS(390), + [anon_sym_interface] = ACTIONS(392), + [anon_sym_byte] = ACTIONS(392), + [anon_sym_short] = ACTIONS(392), + [anon_sym_int] = ACTIONS(392), + [anon_sym_long] = ACTIONS(392), + [anon_sym_char] = ACTIONS(392), + [anon_sym_float] = ACTIONS(392), + [anon_sym_double] = ACTIONS(392), + [sym_boolean_type] = ACTIONS(392), + [sym_void_type] = ACTIONS(392), + [sym_this] = ACTIONS(392), + [sym_super] = ACTIONS(392), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [ts_builtin_sym_end] = ACTIONS(394), + [sym_identifier] = ACTIONS(396), + [sym_decimal_integer_literal] = ACTIONS(396), + [sym_hex_integer_literal] = ACTIONS(396), + [sym_octal_integer_literal] = ACTIONS(394), + [sym_binary_integer_literal] = ACTIONS(394), + [sym_decimal_floating_point_literal] = ACTIONS(394), + [sym_hex_floating_point_literal] = ACTIONS(396), + [sym_true] = ACTIONS(396), + [sym_false] = ACTIONS(396), + [sym_character_literal] = ACTIONS(394), + [sym_string_literal] = ACTIONS(396), + [sym_text_block] = ACTIONS(394), + [sym_null_literal] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(396), + [anon_sym_class] = ACTIONS(396), + [anon_sym_switch] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_assert] = ACTIONS(396), + [anon_sym_do] = ACTIONS(396), + [anon_sym_while] = ACTIONS(396), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_return] = ACTIONS(396), + [anon_sym_yield] = ACTIONS(396), + [anon_sym_synchronized] = ACTIONS(396), + [anon_sym_throw] = ACTIONS(396), + [anon_sym_try] = ACTIONS(396), + [anon_sym_if] = ACTIONS(396), + [anon_sym_else] = ACTIONS(396), + [anon_sym_for] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), + [anon_sym_open] = ACTIONS(396), + [anon_sym_module] = ACTIONS(396), + [anon_sym_static] = ACTIONS(396), + [anon_sym_package] = ACTIONS(396), + [anon_sym_import] = ACTIONS(396), + [anon_sym_enum] = ACTIONS(396), + [anon_sym_public] = ACTIONS(396), + [anon_sym_protected] = ACTIONS(396), + [anon_sym_private] = ACTIONS(396), + [anon_sym_abstract] = ACTIONS(396), + [anon_sym_final] = ACTIONS(396), + [anon_sym_strictfp] = ACTIONS(396), + [anon_sym_native] = ACTIONS(396), + [anon_sym_transient] = ACTIONS(396), + [anon_sym_volatile] = ACTIONS(396), + [anon_sym_sealed] = ACTIONS(396), + [anon_sym_non_DASHsealed] = ACTIONS(394), + [anon_sym_record] = ACTIONS(396), + [anon_sym_ATinterface] = ACTIONS(394), + [anon_sym_interface] = ACTIONS(396), + [anon_sym_byte] = ACTIONS(396), + [anon_sym_short] = ACTIONS(396), + [anon_sym_int] = ACTIONS(396), + [anon_sym_long] = ACTIONS(396), + [anon_sym_char] = ACTIONS(396), + [anon_sym_float] = ACTIONS(396), + [anon_sym_double] = ACTIONS(396), + [sym_boolean_type] = ACTIONS(396), + [sym_void_type] = ACTIONS(396), + [sym_this] = ACTIONS(396), + [sym_super] = ACTIONS(396), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(1046), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17184,2196 +17721,1724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(391), - [sym_decimal_integer_literal] = ACTIONS(391), - [sym_hex_integer_literal] = ACTIONS(391), - [sym_octal_integer_literal] = ACTIONS(389), - [sym_binary_integer_literal] = ACTIONS(389), - [sym_decimal_floating_point_literal] = ACTIONS(389), - [sym_hex_floating_point_literal] = ACTIONS(391), - [sym_true] = ACTIONS(391), - [sym_false] = ACTIONS(391), - [sym_character_literal] = ACTIONS(389), - [sym_string_literal] = ACTIONS(391), - [sym_text_block] = ACTIONS(389), - [sym_null_literal] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_new] = ACTIONS(391), - [anon_sym_class] = ACTIONS(391), - [anon_sym_switch] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_case] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_assert] = ACTIONS(391), - [anon_sym_do] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_return] = ACTIONS(391), - [anon_sym_yield] = ACTIONS(391), - [anon_sym_synchronized] = ACTIONS(391), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_try] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_else] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_AT] = ACTIONS(391), - [anon_sym_open] = ACTIONS(391), - [anon_sym_module] = ACTIONS(391), - [anon_sym_static] = ACTIONS(391), - [anon_sym_package] = ACTIONS(391), - [anon_sym_import] = ACTIONS(391), - [anon_sym_enum] = ACTIONS(391), - [anon_sym_public] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(391), - [anon_sym_final] = ACTIONS(391), - [anon_sym_strictfp] = ACTIONS(391), - [anon_sym_native] = ACTIONS(391), - [anon_sym_transient] = ACTIONS(391), - [anon_sym_volatile] = ACTIONS(391), - [anon_sym_sealed] = ACTIONS(391), - [anon_sym_non_DASHsealed] = ACTIONS(389), - [anon_sym_record] = ACTIONS(391), - [anon_sym_ATinterface] = ACTIONS(389), - [anon_sym_interface] = ACTIONS(391), - [anon_sym_byte] = ACTIONS(391), - [anon_sym_short] = ACTIONS(391), - [anon_sym_int] = ACTIONS(391), - [anon_sym_long] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_float] = ACTIONS(391), - [anon_sym_double] = ACTIONS(391), - [sym_boolean_type] = ACTIONS(391), - [sym_void_type] = ACTIONS(391), - [sym_this] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(395), - [sym_decimal_integer_literal] = ACTIONS(395), - [sym_hex_integer_literal] = ACTIONS(395), - [sym_octal_integer_literal] = ACTIONS(393), - [sym_binary_integer_literal] = ACTIONS(393), - [sym_decimal_floating_point_literal] = ACTIONS(393), - [sym_hex_floating_point_literal] = ACTIONS(395), - [sym_true] = ACTIONS(395), - [sym_false] = ACTIONS(395), - [sym_character_literal] = ACTIONS(393), - [sym_string_literal] = ACTIONS(395), - [sym_text_block] = ACTIONS(393), - [sym_null_literal] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_new] = ACTIONS(395), - [anon_sym_class] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_case] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_do] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_return] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_synchronized] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(395), - [anon_sym_try] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_open] = ACTIONS(395), - [anon_sym_module] = ACTIONS(395), - [anon_sym_static] = ACTIONS(395), - [anon_sym_package] = ACTIONS(395), - [anon_sym_import] = ACTIONS(395), - [anon_sym_enum] = ACTIONS(395), - [anon_sym_public] = ACTIONS(395), - [anon_sym_protected] = ACTIONS(395), - [anon_sym_private] = ACTIONS(395), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_final] = ACTIONS(395), - [anon_sym_strictfp] = ACTIONS(395), - [anon_sym_native] = ACTIONS(395), - [anon_sym_transient] = ACTIONS(395), - [anon_sym_volatile] = ACTIONS(395), - [anon_sym_sealed] = ACTIONS(395), - [anon_sym_non_DASHsealed] = ACTIONS(393), - [anon_sym_record] = ACTIONS(395), - [anon_sym_ATinterface] = ACTIONS(393), - [anon_sym_interface] = ACTIONS(395), - [anon_sym_byte] = ACTIONS(395), - [anon_sym_short] = ACTIONS(395), - [anon_sym_int] = ACTIONS(395), - [anon_sym_long] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_float] = ACTIONS(395), - [anon_sym_double] = ACTIONS(395), - [sym_boolean_type] = ACTIONS(395), - [sym_void_type] = ACTIONS(395), - [sym_this] = ACTIONS(395), - [sym_super] = ACTIONS(395), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_decimal_integer_literal] = ACTIONS(399), - [sym_hex_integer_literal] = ACTIONS(399), - [sym_octal_integer_literal] = ACTIONS(397), - [sym_binary_integer_literal] = ACTIONS(397), - [sym_decimal_floating_point_literal] = ACTIONS(397), - [sym_hex_floating_point_literal] = ACTIONS(399), - [sym_true] = ACTIONS(399), - [sym_false] = ACTIONS(399), - [sym_character_literal] = ACTIONS(397), - [sym_string_literal] = ACTIONS(399), - [sym_text_block] = ACTIONS(397), - [sym_null_literal] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_new] = ACTIONS(399), - [anon_sym_class] = ACTIONS(399), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_assert] = ACTIONS(399), - [anon_sym_do] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_synchronized] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(399), - [anon_sym_try] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_else] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_open] = ACTIONS(399), - [anon_sym_module] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_package] = ACTIONS(399), - [anon_sym_import] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_public] = ACTIONS(399), - [anon_sym_protected] = ACTIONS(399), - [anon_sym_private] = ACTIONS(399), - [anon_sym_abstract] = ACTIONS(399), - [anon_sym_final] = ACTIONS(399), - [anon_sym_strictfp] = ACTIONS(399), - [anon_sym_native] = ACTIONS(399), - [anon_sym_transient] = ACTIONS(399), - [anon_sym_volatile] = ACTIONS(399), - [anon_sym_sealed] = ACTIONS(399), - [anon_sym_non_DASHsealed] = ACTIONS(397), - [anon_sym_record] = ACTIONS(399), - [anon_sym_ATinterface] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_byte] = ACTIONS(399), - [anon_sym_short] = ACTIONS(399), - [anon_sym_int] = ACTIONS(399), - [anon_sym_long] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_float] = ACTIONS(399), - [anon_sym_double] = ACTIONS(399), - [sym_boolean_type] = ACTIONS(399), - [sym_void_type] = ACTIONS(399), - [sym_this] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(401), - [sym_identifier] = ACTIONS(403), - [sym_decimal_integer_literal] = ACTIONS(403), - [sym_hex_integer_literal] = ACTIONS(403), - [sym_octal_integer_literal] = ACTIONS(401), - [sym_binary_integer_literal] = ACTIONS(401), - [sym_decimal_floating_point_literal] = ACTIONS(401), - [sym_hex_floating_point_literal] = ACTIONS(403), - [sym_true] = ACTIONS(403), - [sym_false] = ACTIONS(403), - [sym_character_literal] = ACTIONS(401), - [sym_string_literal] = ACTIONS(403), - [sym_text_block] = ACTIONS(401), - [sym_null_literal] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_TILDE] = ACTIONS(401), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_new] = ACTIONS(403), - [anon_sym_class] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_case] = ACTIONS(403), - [anon_sym_default] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(403), - [anon_sym_do] = ACTIONS(403), - [anon_sym_while] = ACTIONS(403), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_return] = ACTIONS(403), - [anon_sym_yield] = ACTIONS(403), - [anon_sym_synchronized] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(403), - [anon_sym_try] = ACTIONS(403), - [anon_sym_if] = ACTIONS(403), - [anon_sym_else] = ACTIONS(403), - [anon_sym_for] = ACTIONS(403), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_open] = ACTIONS(403), - [anon_sym_module] = ACTIONS(403), - [anon_sym_static] = ACTIONS(403), - [anon_sym_package] = ACTIONS(403), - [anon_sym_import] = ACTIONS(403), - [anon_sym_enum] = ACTIONS(403), - [anon_sym_public] = ACTIONS(403), - [anon_sym_protected] = ACTIONS(403), - [anon_sym_private] = ACTIONS(403), - [anon_sym_abstract] = ACTIONS(403), - [anon_sym_final] = ACTIONS(403), - [anon_sym_strictfp] = ACTIONS(403), - [anon_sym_native] = ACTIONS(403), - [anon_sym_transient] = ACTIONS(403), - [anon_sym_volatile] = ACTIONS(403), - [anon_sym_sealed] = ACTIONS(403), - [anon_sym_non_DASHsealed] = ACTIONS(401), - [anon_sym_record] = ACTIONS(403), - [anon_sym_ATinterface] = ACTIONS(401), - [anon_sym_interface] = ACTIONS(403), - [anon_sym_byte] = ACTIONS(403), - [anon_sym_short] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_long] = ACTIONS(403), - [anon_sym_char] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_double] = ACTIONS(403), - [sym_boolean_type] = ACTIONS(403), - [sym_void_type] = ACTIONS(403), - [sym_this] = ACTIONS(403), - [sym_super] = ACTIONS(403), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [sym_decimal_integer_literal] = ACTIONS(246), - [sym_hex_integer_literal] = ACTIONS(246), - [sym_octal_integer_literal] = ACTIONS(244), - [sym_binary_integer_literal] = ACTIONS(244), - [sym_decimal_floating_point_literal] = ACTIONS(244), - [sym_hex_floating_point_literal] = ACTIONS(246), - [sym_true] = ACTIONS(246), - [sym_false] = ACTIONS(246), - [sym_character_literal] = ACTIONS(244), - [sym_string_literal] = ACTIONS(246), - [sym_text_block] = ACTIONS(244), - [sym_null_literal] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_new] = ACTIONS(246), - [anon_sym_class] = ACTIONS(246), - [anon_sym_switch] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(246), - [anon_sym_default] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(244), - [anon_sym_assert] = ACTIONS(246), - [anon_sym_do] = ACTIONS(246), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(246), - [anon_sym_continue] = ACTIONS(246), - [anon_sym_return] = ACTIONS(246), - [anon_sym_yield] = ACTIONS(246), - [anon_sym_synchronized] = ACTIONS(246), - [anon_sym_throw] = ACTIONS(246), - [anon_sym_try] = ACTIONS(246), - [anon_sym_catch] = ACTIONS(246), - [anon_sym_finally] = ACTIONS(246), - [anon_sym_if] = ACTIONS(246), - [anon_sym_else] = ACTIONS(246), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(246), - [anon_sym_open] = ACTIONS(246), - [anon_sym_module] = ACTIONS(246), - [anon_sym_static] = ACTIONS(246), - [anon_sym_package] = ACTIONS(246), - [anon_sym_import] = ACTIONS(246), - [anon_sym_enum] = ACTIONS(246), - [anon_sym_public] = ACTIONS(246), - [anon_sym_protected] = ACTIONS(246), - [anon_sym_private] = ACTIONS(246), - [anon_sym_abstract] = ACTIONS(246), - [anon_sym_final] = ACTIONS(246), - [anon_sym_strictfp] = ACTIONS(246), - [anon_sym_native] = ACTIONS(246), - [anon_sym_transient] = ACTIONS(246), - [anon_sym_volatile] = ACTIONS(246), - [anon_sym_sealed] = ACTIONS(246), - [anon_sym_non_DASHsealed] = ACTIONS(244), - [anon_sym_ATinterface] = ACTIONS(244), - [anon_sym_interface] = ACTIONS(246), - [anon_sym_byte] = ACTIONS(246), - [anon_sym_short] = ACTIONS(246), - [anon_sym_int] = ACTIONS(246), - [anon_sym_long] = ACTIONS(246), - [anon_sym_char] = ACTIONS(246), - [anon_sym_float] = ACTIONS(246), - [anon_sym_double] = ACTIONS(246), - [sym_boolean_type] = ACTIONS(246), - [sym_void_type] = ACTIONS(246), - [sym_this] = ACTIONS(246), - [sym_super] = ACTIONS(246), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_RBRACE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [86] = { - [ts_builtin_sym_end] = ACTIONS(405), - [sym_identifier] = ACTIONS(407), - [sym_decimal_integer_literal] = ACTIONS(407), - [sym_hex_integer_literal] = ACTIONS(407), - [sym_octal_integer_literal] = ACTIONS(405), - [sym_binary_integer_literal] = ACTIONS(405), - [sym_decimal_floating_point_literal] = ACTIONS(405), - [sym_hex_floating_point_literal] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [sym_character_literal] = ACTIONS(405), - [sym_string_literal] = ACTIONS(407), - [sym_text_block] = ACTIONS(405), - [sym_null_literal] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(405), - [anon_sym_TILDE] = ACTIONS(405), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [anon_sym_new] = ACTIONS(407), - [anon_sym_class] = ACTIONS(407), - [anon_sym_switch] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(405), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(405), - [anon_sym_assert] = ACTIONS(407), - [anon_sym_do] = ACTIONS(407), - [anon_sym_while] = ACTIONS(407), - [anon_sym_break] = ACTIONS(407), - [anon_sym_continue] = ACTIONS(407), - [anon_sym_return] = ACTIONS(407), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_synchronized] = ACTIONS(407), - [anon_sym_throw] = ACTIONS(407), - [anon_sym_try] = ACTIONS(407), - [anon_sym_if] = ACTIONS(407), - [anon_sym_else] = ACTIONS(407), - [anon_sym_for] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_open] = ACTIONS(407), - [anon_sym_module] = ACTIONS(407), - [anon_sym_static] = ACTIONS(407), - [anon_sym_package] = ACTIONS(407), - [anon_sym_import] = ACTIONS(407), - [anon_sym_enum] = ACTIONS(407), - [anon_sym_public] = ACTIONS(407), - [anon_sym_protected] = ACTIONS(407), - [anon_sym_private] = ACTIONS(407), - [anon_sym_abstract] = ACTIONS(407), - [anon_sym_final] = ACTIONS(407), - [anon_sym_strictfp] = ACTIONS(407), - [anon_sym_native] = ACTIONS(407), - [anon_sym_transient] = ACTIONS(407), - [anon_sym_volatile] = ACTIONS(407), - [anon_sym_sealed] = ACTIONS(407), - [anon_sym_non_DASHsealed] = ACTIONS(405), - [anon_sym_record] = ACTIONS(407), - [anon_sym_ATinterface] = ACTIONS(405), - [anon_sym_interface] = ACTIONS(407), - [anon_sym_byte] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [anon_sym_int] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_char] = ACTIONS(407), - [anon_sym_float] = ACTIONS(407), - [anon_sym_double] = ACTIONS(407), - [sym_boolean_type] = ACTIONS(407), - [sym_void_type] = ACTIONS(407), - [sym_this] = ACTIONS(407), - [sym_super] = ACTIONS(407), + [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(400), + [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), + [sym_string_literal] = ACTIONS(402), + [sym_text_block] = ACTIONS(400), + [sym_null_literal] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_TILDE] = ACTIONS(400), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(402), + [anon_sym_class] = ACTIONS(402), + [anon_sym_switch] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_RBRACE] = ACTIONS(400), + [anon_sym_case] = ACTIONS(402), + [anon_sym_default] = 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_final] = 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), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym_decimal_integer_literal] = ACTIONS(411), - [sym_hex_integer_literal] = ACTIONS(411), - [sym_octal_integer_literal] = ACTIONS(409), - [sym_binary_integer_literal] = ACTIONS(409), - [sym_decimal_floating_point_literal] = ACTIONS(409), - [sym_hex_floating_point_literal] = ACTIONS(411), - [sym_true] = ACTIONS(411), - [sym_false] = ACTIONS(411), - [sym_character_literal] = ACTIONS(409), - [sym_string_literal] = ACTIONS(411), - [sym_text_block] = ACTIONS(409), - [sym_null_literal] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(409), - [anon_sym_PLUS_PLUS] = ACTIONS(409), - [anon_sym_DASH_DASH] = ACTIONS(409), - [anon_sym_new] = ACTIONS(411), - [anon_sym_class] = ACTIONS(411), - [anon_sym_switch] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_case] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_assert] = ACTIONS(411), - [anon_sym_do] = ACTIONS(411), - [anon_sym_while] = ACTIONS(411), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_return] = ACTIONS(411), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_synchronized] = ACTIONS(411), - [anon_sym_throw] = ACTIONS(411), - [anon_sym_try] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_else] = ACTIONS(411), - [anon_sym_for] = ACTIONS(411), - [anon_sym_AT] = ACTIONS(411), - [anon_sym_open] = ACTIONS(411), - [anon_sym_module] = ACTIONS(411), - [anon_sym_static] = ACTIONS(411), - [anon_sym_package] = ACTIONS(411), - [anon_sym_import] = ACTIONS(411), - [anon_sym_enum] = ACTIONS(411), - [anon_sym_public] = ACTIONS(411), - [anon_sym_protected] = ACTIONS(411), - [anon_sym_private] = ACTIONS(411), - [anon_sym_abstract] = ACTIONS(411), - [anon_sym_final] = ACTIONS(411), - [anon_sym_strictfp] = ACTIONS(411), - [anon_sym_native] = ACTIONS(411), - [anon_sym_transient] = ACTIONS(411), - [anon_sym_volatile] = ACTIONS(411), - [anon_sym_sealed] = ACTIONS(411), - [anon_sym_non_DASHsealed] = ACTIONS(409), - [anon_sym_record] = ACTIONS(411), - [anon_sym_ATinterface] = ACTIONS(409), - [anon_sym_interface] = ACTIONS(411), - [anon_sym_byte] = ACTIONS(411), - [anon_sym_short] = ACTIONS(411), - [anon_sym_int] = ACTIONS(411), - [anon_sym_long] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_float] = ACTIONS(411), - [anon_sym_double] = ACTIONS(411), - [sym_boolean_type] = ACTIONS(411), - [sym_void_type] = ACTIONS(411), - [sym_this] = ACTIONS(411), - [sym_super] = ACTIONS(411), + [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(404), + [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), + [sym_string_literal] = ACTIONS(406), + [sym_text_block] = ACTIONS(404), + [sym_null_literal] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_TILDE] = ACTIONS(404), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_new] = ACTIONS(406), + [anon_sym_class] = ACTIONS(406), + [anon_sym_switch] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_case] = ACTIONS(406), + [anon_sym_default] = 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_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_final] = 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), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), - [sym_decimal_integer_literal] = ACTIONS(415), - [sym_hex_integer_literal] = ACTIONS(415), - [sym_octal_integer_literal] = ACTIONS(413), - [sym_binary_integer_literal] = ACTIONS(413), - [sym_decimal_floating_point_literal] = ACTIONS(413), - [sym_hex_floating_point_literal] = ACTIONS(415), - [sym_true] = ACTIONS(415), - [sym_false] = ACTIONS(415), - [sym_character_literal] = ACTIONS(413), - [sym_string_literal] = ACTIONS(415), - [sym_text_block] = ACTIONS(413), - [sym_null_literal] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_TILDE] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(413), - [anon_sym_new] = ACTIONS(415), - [anon_sym_class] = ACTIONS(415), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_case] = ACTIONS(415), - [anon_sym_default] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_assert] = ACTIONS(415), - [anon_sym_do] = ACTIONS(415), - [anon_sym_while] = ACTIONS(415), - [anon_sym_break] = ACTIONS(415), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_return] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(415), - [anon_sym_synchronized] = ACTIONS(415), - [anon_sym_throw] = ACTIONS(415), - [anon_sym_try] = ACTIONS(415), - [anon_sym_if] = ACTIONS(415), - [anon_sym_else] = ACTIONS(415), - [anon_sym_for] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_open] = ACTIONS(415), - [anon_sym_module] = ACTIONS(415), - [anon_sym_static] = ACTIONS(415), - [anon_sym_package] = ACTIONS(415), - [anon_sym_import] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(415), - [anon_sym_public] = ACTIONS(415), - [anon_sym_protected] = ACTIONS(415), - [anon_sym_private] = ACTIONS(415), - [anon_sym_abstract] = ACTIONS(415), - [anon_sym_final] = ACTIONS(415), - [anon_sym_strictfp] = ACTIONS(415), - [anon_sym_native] = ACTIONS(415), - [anon_sym_transient] = ACTIONS(415), - [anon_sym_volatile] = ACTIONS(415), - [anon_sym_sealed] = ACTIONS(415), - [anon_sym_non_DASHsealed] = ACTIONS(413), - [anon_sym_record] = ACTIONS(415), - [anon_sym_ATinterface] = ACTIONS(413), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_byte] = ACTIONS(415), - [anon_sym_short] = ACTIONS(415), - [anon_sym_int] = ACTIONS(415), - [anon_sym_long] = ACTIONS(415), - [anon_sym_char] = ACTIONS(415), - [anon_sym_float] = ACTIONS(415), - [anon_sym_double] = ACTIONS(415), - [sym_boolean_type] = ACTIONS(415), - [sym_void_type] = ACTIONS(415), - [sym_this] = ACTIONS(415), - [sym_super] = ACTIONS(415), + [sym__literal] = STATE(407), + [sym_expression] = STATE(524), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym__element_value] = STATE(964), + [sym_element_value_array_initializer] = STATE(964), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [sym_decimal_integer_literal] = ACTIONS(419), - [sym_hex_integer_literal] = ACTIONS(419), - [sym_octal_integer_literal] = ACTIONS(417), - [sym_binary_integer_literal] = ACTIONS(417), - [sym_decimal_floating_point_literal] = ACTIONS(417), - [sym_hex_floating_point_literal] = ACTIONS(419), - [sym_true] = ACTIONS(419), - [sym_false] = ACTIONS(419), - [sym_character_literal] = ACTIONS(417), - [sym_string_literal] = ACTIONS(419), - [sym_text_block] = ACTIONS(417), - [sym_null_literal] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_class] = ACTIONS(419), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_case] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_assert] = ACTIONS(419), - [anon_sym_do] = ACTIONS(419), - [anon_sym_while] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_yield] = ACTIONS(419), - [anon_sym_synchronized] = ACTIONS(419), - [anon_sym_throw] = ACTIONS(419), - [anon_sym_try] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_else] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_AT] = ACTIONS(419), - [anon_sym_open] = ACTIONS(419), - [anon_sym_module] = ACTIONS(419), - [anon_sym_static] = ACTIONS(419), - [anon_sym_package] = ACTIONS(419), - [anon_sym_import] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(419), - [anon_sym_public] = ACTIONS(419), - [anon_sym_protected] = ACTIONS(419), - [anon_sym_private] = ACTIONS(419), - [anon_sym_abstract] = ACTIONS(419), - [anon_sym_final] = ACTIONS(419), - [anon_sym_strictfp] = ACTIONS(419), - [anon_sym_native] = ACTIONS(419), - [anon_sym_transient] = ACTIONS(419), - [anon_sym_volatile] = ACTIONS(419), - [anon_sym_sealed] = ACTIONS(419), - [anon_sym_non_DASHsealed] = ACTIONS(417), - [anon_sym_record] = ACTIONS(419), - [anon_sym_ATinterface] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_byte] = ACTIONS(419), - [anon_sym_short] = ACTIONS(419), - [anon_sym_int] = ACTIONS(419), - [anon_sym_long] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_float] = ACTIONS(419), - [anon_sym_double] = ACTIONS(419), - [sym_boolean_type] = ACTIONS(419), - [sym_void_type] = ACTIONS(419), - [sym_this] = ACTIONS(419), - [sym_super] = ACTIONS(419), + [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(408), + [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), + [sym_string_literal] = ACTIONS(410), + [sym_text_block] = ACTIONS(408), + [sym_null_literal] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_TILDE] = ACTIONS(408), + [anon_sym_PLUS_PLUS] = ACTIONS(408), + [anon_sym_DASH_DASH] = ACTIONS(408), + [anon_sym_new] = ACTIONS(410), + [anon_sym_class] = ACTIONS(410), + [anon_sym_switch] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(408), + [anon_sym_case] = ACTIONS(410), + [anon_sym_default] = 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_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_final] = 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), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(421), - [sym_identifier] = ACTIONS(423), - [sym_decimal_integer_literal] = ACTIONS(423), - [sym_hex_integer_literal] = ACTIONS(423), - [sym_octal_integer_literal] = ACTIONS(421), - [sym_binary_integer_literal] = ACTIONS(421), - [sym_decimal_floating_point_literal] = ACTIONS(421), - [sym_hex_floating_point_literal] = ACTIONS(423), - [sym_true] = ACTIONS(423), - [sym_false] = ACTIONS(423), - [sym_character_literal] = ACTIONS(421), - [sym_string_literal] = ACTIONS(423), - [sym_text_block] = ACTIONS(421), - [sym_null_literal] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [anon_sym_PLUS_PLUS] = ACTIONS(421), - [anon_sym_DASH_DASH] = ACTIONS(421), - [anon_sym_new] = ACTIONS(423), - [anon_sym_class] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_case] = ACTIONS(423), - [anon_sym_default] = ACTIONS(423), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_do] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_synchronized] = ACTIONS(423), - [anon_sym_throw] = ACTIONS(423), - [anon_sym_try] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(423), - [anon_sym_open] = ACTIONS(423), - [anon_sym_module] = ACTIONS(423), - [anon_sym_static] = ACTIONS(423), - [anon_sym_package] = ACTIONS(423), - [anon_sym_import] = ACTIONS(423), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_public] = ACTIONS(423), - [anon_sym_protected] = ACTIONS(423), - [anon_sym_private] = ACTIONS(423), - [anon_sym_abstract] = ACTIONS(423), - [anon_sym_final] = ACTIONS(423), - [anon_sym_strictfp] = ACTIONS(423), - [anon_sym_native] = ACTIONS(423), - [anon_sym_transient] = ACTIONS(423), - [anon_sym_volatile] = ACTIONS(423), - [anon_sym_sealed] = ACTIONS(423), - [anon_sym_non_DASHsealed] = ACTIONS(421), - [anon_sym_record] = ACTIONS(423), - [anon_sym_ATinterface] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(423), - [anon_sym_byte] = ACTIONS(423), - [anon_sym_short] = ACTIONS(423), - [anon_sym_int] = ACTIONS(423), - [anon_sym_long] = ACTIONS(423), - [anon_sym_char] = ACTIONS(423), - [anon_sym_float] = ACTIONS(423), - [anon_sym_double] = ACTIONS(423), - [sym_boolean_type] = ACTIONS(423), - [sym_void_type] = ACTIONS(423), - [sym_this] = ACTIONS(423), - [sym_super] = ACTIONS(423), + [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(412), + [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), + [sym_string_literal] = ACTIONS(414), + [sym_text_block] = ACTIONS(412), + [sym_null_literal] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_new] = ACTIONS(414), + [anon_sym_class] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_case] = ACTIONS(414), + [anon_sym_default] = 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_final] = 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), }, [91] = { - [ts_builtin_sym_end] = ACTIONS(425), - [sym_identifier] = ACTIONS(427), - [sym_decimal_integer_literal] = ACTIONS(427), - [sym_hex_integer_literal] = ACTIONS(427), - [sym_octal_integer_literal] = ACTIONS(425), - [sym_binary_integer_literal] = ACTIONS(425), - [sym_decimal_floating_point_literal] = ACTIONS(425), - [sym_hex_floating_point_literal] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_character_literal] = ACTIONS(425), - [sym_string_literal] = ACTIONS(427), - [sym_text_block] = ACTIONS(425), - [sym_null_literal] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(427), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(425), - [anon_sym_PLUS_PLUS] = ACTIONS(425), - [anon_sym_DASH_DASH] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_class] = ACTIONS(427), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_case] = ACTIONS(427), - [anon_sym_default] = ACTIONS(427), - [anon_sym_SEMI] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(427), - [anon_sym_do] = ACTIONS(427), - [anon_sym_while] = ACTIONS(427), - [anon_sym_break] = ACTIONS(427), - [anon_sym_continue] = ACTIONS(427), - [anon_sym_return] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_synchronized] = ACTIONS(427), - [anon_sym_throw] = ACTIONS(427), - [anon_sym_try] = ACTIONS(427), - [anon_sym_if] = ACTIONS(427), - [anon_sym_else] = ACTIONS(427), - [anon_sym_for] = ACTIONS(427), - [anon_sym_AT] = ACTIONS(427), - [anon_sym_open] = ACTIONS(427), - [anon_sym_module] = ACTIONS(427), - [anon_sym_static] = ACTIONS(427), - [anon_sym_package] = ACTIONS(427), - [anon_sym_import] = ACTIONS(427), - [anon_sym_enum] = ACTIONS(427), - [anon_sym_public] = ACTIONS(427), - [anon_sym_protected] = ACTIONS(427), - [anon_sym_private] = ACTIONS(427), - [anon_sym_abstract] = ACTIONS(427), - [anon_sym_final] = ACTIONS(427), - [anon_sym_strictfp] = ACTIONS(427), - [anon_sym_native] = ACTIONS(427), - [anon_sym_transient] = ACTIONS(427), - [anon_sym_volatile] = ACTIONS(427), - [anon_sym_sealed] = ACTIONS(427), - [anon_sym_non_DASHsealed] = ACTIONS(425), - [anon_sym_record] = ACTIONS(427), - [anon_sym_ATinterface] = ACTIONS(425), - [anon_sym_interface] = ACTIONS(427), - [anon_sym_byte] = ACTIONS(427), - [anon_sym_short] = ACTIONS(427), - [anon_sym_int] = ACTIONS(427), - [anon_sym_long] = ACTIONS(427), - [anon_sym_char] = ACTIONS(427), - [anon_sym_float] = ACTIONS(427), - [anon_sym_double] = ACTIONS(427), - [sym_boolean_type] = ACTIONS(427), - [sym_void_type] = ACTIONS(427), - [sym_this] = ACTIONS(427), - [sym_super] = ACTIONS(427), + [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(416), + [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), + [sym_string_literal] = ACTIONS(418), + [sym_text_block] = ACTIONS(416), + [sym_null_literal] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(416), + [anon_sym_TILDE] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), + [anon_sym_new] = ACTIONS(418), + [anon_sym_class] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_default] = 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_final] = 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), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(429), - [sym_identifier] = ACTIONS(431), - [sym_decimal_integer_literal] = ACTIONS(431), - [sym_hex_integer_literal] = ACTIONS(431), - [sym_octal_integer_literal] = ACTIONS(429), - [sym_binary_integer_literal] = ACTIONS(429), - [sym_decimal_floating_point_literal] = ACTIONS(429), - [sym_hex_floating_point_literal] = ACTIONS(431), - [sym_true] = ACTIONS(431), - [sym_false] = ACTIONS(431), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(431), - [sym_text_block] = ACTIONS(429), - [sym_null_literal] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_PLUS] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_new] = ACTIONS(431), - [anon_sym_class] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_case] = ACTIONS(431), - [anon_sym_default] = ACTIONS(431), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(431), - [anon_sym_do] = ACTIONS(431), - [anon_sym_while] = ACTIONS(431), - [anon_sym_break] = ACTIONS(431), - [anon_sym_continue] = ACTIONS(431), - [anon_sym_return] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(431), - [anon_sym_synchronized] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(431), - [anon_sym_try] = ACTIONS(431), - [anon_sym_if] = ACTIONS(431), - [anon_sym_else] = ACTIONS(431), - [anon_sym_for] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(431), - [anon_sym_open] = ACTIONS(431), - [anon_sym_module] = ACTIONS(431), - [anon_sym_static] = ACTIONS(431), - [anon_sym_package] = ACTIONS(431), - [anon_sym_import] = ACTIONS(431), - [anon_sym_enum] = ACTIONS(431), - [anon_sym_public] = ACTIONS(431), - [anon_sym_protected] = ACTIONS(431), - [anon_sym_private] = ACTIONS(431), - [anon_sym_abstract] = ACTIONS(431), - [anon_sym_final] = ACTIONS(431), - [anon_sym_strictfp] = ACTIONS(431), - [anon_sym_native] = ACTIONS(431), - [anon_sym_transient] = ACTIONS(431), - [anon_sym_volatile] = ACTIONS(431), - [anon_sym_sealed] = ACTIONS(431), - [anon_sym_non_DASHsealed] = ACTIONS(429), - [anon_sym_record] = ACTIONS(431), - [anon_sym_ATinterface] = ACTIONS(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_byte] = ACTIONS(431), - [anon_sym_short] = ACTIONS(431), - [anon_sym_int] = ACTIONS(431), - [anon_sym_long] = ACTIONS(431), - [anon_sym_char] = ACTIONS(431), - [anon_sym_float] = ACTIONS(431), - [anon_sym_double] = ACTIONS(431), - [sym_boolean_type] = ACTIONS(431), - [sym_void_type] = ACTIONS(431), - [sym_this] = ACTIONS(431), - [sym_super] = ACTIONS(431), + [ts_builtin_sym_end] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), + [sym_decimal_integer_literal] = ACTIONS(422), + [sym_hex_integer_literal] = ACTIONS(422), + [sym_octal_integer_literal] = ACTIONS(420), + [sym_binary_integer_literal] = ACTIONS(420), + [sym_decimal_floating_point_literal] = ACTIONS(420), + [sym_hex_floating_point_literal] = ACTIONS(422), + [sym_true] = ACTIONS(422), + [sym_false] = ACTIONS(422), + [sym_character_literal] = ACTIONS(420), + [sym_string_literal] = ACTIONS(422), + [sym_text_block] = ACTIONS(420), + [sym_null_literal] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_BANG] = ACTIONS(420), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [anon_sym_new] = ACTIONS(422), + [anon_sym_class] = ACTIONS(422), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_LBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_case] = ACTIONS(422), + [anon_sym_default] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_assert] = ACTIONS(422), + [anon_sym_do] = ACTIONS(422), + [anon_sym_while] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_return] = ACTIONS(422), + [anon_sym_yield] = ACTIONS(422), + [anon_sym_synchronized] = ACTIONS(422), + [anon_sym_throw] = ACTIONS(422), + [anon_sym_try] = ACTIONS(422), + [anon_sym_if] = ACTIONS(422), + [anon_sym_else] = ACTIONS(422), + [anon_sym_for] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(422), + [anon_sym_open] = ACTIONS(422), + [anon_sym_module] = ACTIONS(422), + [anon_sym_static] = ACTIONS(422), + [anon_sym_package] = ACTIONS(422), + [anon_sym_import] = ACTIONS(422), + [anon_sym_enum] = ACTIONS(422), + [anon_sym_public] = ACTIONS(422), + [anon_sym_protected] = ACTIONS(422), + [anon_sym_private] = ACTIONS(422), + [anon_sym_abstract] = ACTIONS(422), + [anon_sym_final] = ACTIONS(422), + [anon_sym_strictfp] = ACTIONS(422), + [anon_sym_native] = ACTIONS(422), + [anon_sym_transient] = ACTIONS(422), + [anon_sym_volatile] = ACTIONS(422), + [anon_sym_sealed] = ACTIONS(422), + [anon_sym_non_DASHsealed] = ACTIONS(420), + [anon_sym_record] = ACTIONS(422), + [anon_sym_ATinterface] = ACTIONS(420), + [anon_sym_interface] = ACTIONS(422), + [anon_sym_byte] = ACTIONS(422), + [anon_sym_short] = ACTIONS(422), + [anon_sym_int] = ACTIONS(422), + [anon_sym_long] = ACTIONS(422), + [anon_sym_char] = ACTIONS(422), + [anon_sym_float] = ACTIONS(422), + [anon_sym_double] = ACTIONS(422), + [sym_boolean_type] = ACTIONS(422), + [sym_void_type] = ACTIONS(422), + [sym_this] = ACTIONS(422), + [sym_super] = ACTIONS(422), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(248), - [sym_identifier] = ACTIONS(250), - [sym_decimal_integer_literal] = ACTIONS(250), - [sym_hex_integer_literal] = ACTIONS(250), - [sym_octal_integer_literal] = ACTIONS(248), - [sym_binary_integer_literal] = ACTIONS(248), - [sym_decimal_floating_point_literal] = ACTIONS(248), - [sym_hex_floating_point_literal] = ACTIONS(250), - [sym_true] = ACTIONS(250), - [sym_false] = ACTIONS(250), - [sym_character_literal] = ACTIONS(248), - [sym_string_literal] = ACTIONS(250), - [sym_text_block] = ACTIONS(248), - [sym_null_literal] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(248), - [anon_sym_DASH_DASH] = ACTIONS(248), - [anon_sym_new] = ACTIONS(250), - [anon_sym_class] = ACTIONS(250), - [anon_sym_switch] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(248), - [anon_sym_case] = ACTIONS(250), - [anon_sym_default] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(248), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(250), - [anon_sym_return] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(250), - [anon_sym_synchronized] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_catch] = ACTIONS(250), - [anon_sym_finally] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_else] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_open] = ACTIONS(250), - [anon_sym_module] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_package] = ACTIONS(250), - [anon_sym_import] = ACTIONS(250), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_final] = ACTIONS(250), - [anon_sym_strictfp] = ACTIONS(250), - [anon_sym_native] = ACTIONS(250), - [anon_sym_transient] = ACTIONS(250), - [anon_sym_volatile] = ACTIONS(250), - [anon_sym_sealed] = ACTIONS(250), - [anon_sym_non_DASHsealed] = ACTIONS(248), - [anon_sym_ATinterface] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(250), - [anon_sym_byte] = ACTIONS(250), - [anon_sym_short] = ACTIONS(250), - [anon_sym_int] = ACTIONS(250), - [anon_sym_long] = ACTIONS(250), - [anon_sym_char] = ACTIONS(250), - [anon_sym_float] = ACTIONS(250), - [anon_sym_double] = ACTIONS(250), - [sym_boolean_type] = ACTIONS(250), - [sym_void_type] = ACTIONS(250), - [sym_this] = ACTIONS(250), - [sym_super] = ACTIONS(250), + [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(424), + [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), + [sym_string_literal] = ACTIONS(426), + [sym_text_block] = ACTIONS(424), + [sym_null_literal] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(424), + [anon_sym_DASH_DASH] = ACTIONS(424), + [anon_sym_new] = ACTIONS(426), + [anon_sym_class] = ACTIONS(426), + [anon_sym_switch] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_case] = ACTIONS(426), + [anon_sym_default] = 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_final] = 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), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(433), - [sym_identifier] = ACTIONS(435), - [sym_decimal_integer_literal] = ACTIONS(435), - [sym_hex_integer_literal] = ACTIONS(435), - [sym_octal_integer_literal] = ACTIONS(433), - [sym_binary_integer_literal] = ACTIONS(433), - [sym_decimal_floating_point_literal] = ACTIONS(433), - [sym_hex_floating_point_literal] = ACTIONS(435), - [sym_true] = ACTIONS(435), - [sym_false] = ACTIONS(435), - [sym_character_literal] = ACTIONS(433), - [sym_string_literal] = ACTIONS(435), - [sym_text_block] = ACTIONS(433), - [sym_null_literal] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(433), - [anon_sym_DASH_DASH] = ACTIONS(433), - [anon_sym_new] = ACTIONS(435), - [anon_sym_class] = ACTIONS(435), - [anon_sym_switch] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_case] = ACTIONS(435), - [anon_sym_default] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(433), - [anon_sym_assert] = ACTIONS(435), - [anon_sym_do] = ACTIONS(435), - [anon_sym_while] = ACTIONS(435), - [anon_sym_break] = ACTIONS(435), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_return] = ACTIONS(435), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_synchronized] = ACTIONS(435), - [anon_sym_throw] = ACTIONS(435), - [anon_sym_try] = ACTIONS(435), - [anon_sym_if] = ACTIONS(435), - [anon_sym_else] = ACTIONS(435), - [anon_sym_for] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(435), - [anon_sym_open] = ACTIONS(435), - [anon_sym_module] = ACTIONS(435), - [anon_sym_static] = ACTIONS(435), - [anon_sym_package] = ACTIONS(435), - [anon_sym_import] = ACTIONS(435), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_public] = ACTIONS(435), - [anon_sym_protected] = ACTIONS(435), - [anon_sym_private] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(435), - [anon_sym_final] = ACTIONS(435), - [anon_sym_strictfp] = ACTIONS(435), - [anon_sym_native] = ACTIONS(435), - [anon_sym_transient] = ACTIONS(435), - [anon_sym_volatile] = ACTIONS(435), - [anon_sym_sealed] = ACTIONS(435), - [anon_sym_non_DASHsealed] = ACTIONS(433), - [anon_sym_record] = ACTIONS(435), - [anon_sym_ATinterface] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_byte] = ACTIONS(435), - [anon_sym_short] = ACTIONS(435), - [anon_sym_int] = ACTIONS(435), - [anon_sym_long] = ACTIONS(435), - [anon_sym_char] = ACTIONS(435), - [anon_sym_float] = ACTIONS(435), - [anon_sym_double] = ACTIONS(435), - [sym_boolean_type] = ACTIONS(435), - [sym_void_type] = ACTIONS(435), - [sym_this] = ACTIONS(435), - [sym_super] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(428), + [sym_identifier] = ACTIONS(430), + [sym_decimal_integer_literal] = ACTIONS(430), + [sym_hex_integer_literal] = ACTIONS(430), + [sym_octal_integer_literal] = ACTIONS(428), + [sym_binary_integer_literal] = ACTIONS(428), + [sym_decimal_floating_point_literal] = ACTIONS(428), + [sym_hex_floating_point_literal] = ACTIONS(430), + [sym_true] = ACTIONS(430), + [sym_false] = ACTIONS(430), + [sym_character_literal] = ACTIONS(428), + [sym_string_literal] = ACTIONS(430), + [sym_text_block] = ACTIONS(428), + [sym_null_literal] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_PLUS_PLUS] = ACTIONS(428), + [anon_sym_DASH_DASH] = ACTIONS(428), + [anon_sym_new] = ACTIONS(430), + [anon_sym_class] = ACTIONS(430), + [anon_sym_switch] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_case] = ACTIONS(430), + [anon_sym_default] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_do] = ACTIONS(430), + [anon_sym_while] = ACTIONS(430), + [anon_sym_break] = ACTIONS(430), + [anon_sym_continue] = ACTIONS(430), + [anon_sym_return] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(430), + [anon_sym_synchronized] = ACTIONS(430), + [anon_sym_throw] = ACTIONS(430), + [anon_sym_try] = ACTIONS(430), + [anon_sym_if] = ACTIONS(430), + [anon_sym_else] = ACTIONS(430), + [anon_sym_for] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_open] = ACTIONS(430), + [anon_sym_module] = ACTIONS(430), + [anon_sym_static] = ACTIONS(430), + [anon_sym_package] = ACTIONS(430), + [anon_sym_import] = ACTIONS(430), + [anon_sym_enum] = ACTIONS(430), + [anon_sym_public] = ACTIONS(430), + [anon_sym_protected] = ACTIONS(430), + [anon_sym_private] = ACTIONS(430), + [anon_sym_abstract] = ACTIONS(430), + [anon_sym_final] = ACTIONS(430), + [anon_sym_strictfp] = ACTIONS(430), + [anon_sym_native] = ACTIONS(430), + [anon_sym_transient] = ACTIONS(430), + [anon_sym_volatile] = ACTIONS(430), + [anon_sym_sealed] = ACTIONS(430), + [anon_sym_non_DASHsealed] = ACTIONS(428), + [anon_sym_record] = ACTIONS(430), + [anon_sym_ATinterface] = ACTIONS(428), + [anon_sym_interface] = ACTIONS(430), + [anon_sym_byte] = ACTIONS(430), + [anon_sym_short] = ACTIONS(430), + [anon_sym_int] = ACTIONS(430), + [anon_sym_long] = ACTIONS(430), + [anon_sym_char] = ACTIONS(430), + [anon_sym_float] = ACTIONS(430), + [anon_sym_double] = ACTIONS(430), + [sym_boolean_type] = ACTIONS(430), + [sym_void_type] = ACTIONS(430), + [sym_this] = ACTIONS(430), + [sym_super] = ACTIONS(430), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(437), - [sym_identifier] = ACTIONS(439), - [sym_decimal_integer_literal] = ACTIONS(439), - [sym_hex_integer_literal] = ACTIONS(439), - [sym_octal_integer_literal] = ACTIONS(437), - [sym_binary_integer_literal] = ACTIONS(437), - [sym_decimal_floating_point_literal] = ACTIONS(437), - [sym_hex_floating_point_literal] = ACTIONS(439), - [sym_true] = ACTIONS(439), - [sym_false] = ACTIONS(439), - [sym_character_literal] = ACTIONS(437), - [sym_string_literal] = ACTIONS(439), - [sym_text_block] = ACTIONS(437), - [sym_null_literal] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_PLUS_PLUS] = ACTIONS(437), - [anon_sym_DASH_DASH] = ACTIONS(437), - [anon_sym_new] = ACTIONS(439), - [anon_sym_class] = ACTIONS(439), - [anon_sym_switch] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_case] = ACTIONS(439), - [anon_sym_default] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_assert] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_while] = ACTIONS(439), - [anon_sym_break] = ACTIONS(439), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_return] = ACTIONS(439), - [anon_sym_yield] = ACTIONS(439), - [anon_sym_synchronized] = ACTIONS(439), - [anon_sym_throw] = ACTIONS(439), - [anon_sym_try] = ACTIONS(439), - [anon_sym_if] = ACTIONS(439), - [anon_sym_else] = ACTIONS(439), - [anon_sym_for] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(439), - [anon_sym_open] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), - [anon_sym_static] = ACTIONS(439), - [anon_sym_package] = ACTIONS(439), - [anon_sym_import] = ACTIONS(439), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), - [anon_sym_protected] = ACTIONS(439), - [anon_sym_private] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(439), - [anon_sym_final] = ACTIONS(439), - [anon_sym_strictfp] = ACTIONS(439), - [anon_sym_native] = ACTIONS(439), - [anon_sym_transient] = ACTIONS(439), - [anon_sym_volatile] = ACTIONS(439), - [anon_sym_sealed] = ACTIONS(439), - [anon_sym_non_DASHsealed] = ACTIONS(437), - [anon_sym_record] = ACTIONS(439), - [anon_sym_ATinterface] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(439), - [anon_sym_byte] = ACTIONS(439), - [anon_sym_short] = ACTIONS(439), - [anon_sym_int] = ACTIONS(439), - [anon_sym_long] = ACTIONS(439), - [anon_sym_char] = ACTIONS(439), - [anon_sym_float] = ACTIONS(439), - [anon_sym_double] = ACTIONS(439), - [sym_boolean_type] = ACTIONS(439), - [sym_void_type] = ACTIONS(439), - [sym_this] = ACTIONS(439), - [sym_super] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_decimal_integer_literal] = ACTIONS(434), + [sym_hex_integer_literal] = ACTIONS(434), + [sym_octal_integer_literal] = ACTIONS(432), + [sym_binary_integer_literal] = ACTIONS(432), + [sym_decimal_floating_point_literal] = ACTIONS(432), + [sym_hex_floating_point_literal] = ACTIONS(434), + [sym_true] = ACTIONS(434), + [sym_false] = ACTIONS(434), + [sym_character_literal] = ACTIONS(432), + [sym_string_literal] = ACTIONS(434), + [sym_text_block] = ACTIONS(432), + [sym_null_literal] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(432), + [anon_sym_DASH_DASH] = ACTIONS(432), + [anon_sym_new] = ACTIONS(434), + [anon_sym_class] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_case] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_assert] = ACTIONS(434), + [anon_sym_do] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [anon_sym_break] = ACTIONS(434), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_return] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(434), + [anon_sym_synchronized] = ACTIONS(434), + [anon_sym_throw] = ACTIONS(434), + [anon_sym_try] = ACTIONS(434), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(434), + [anon_sym_for] = ACTIONS(434), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_open] = ACTIONS(434), + [anon_sym_module] = ACTIONS(434), + [anon_sym_static] = ACTIONS(434), + [anon_sym_package] = ACTIONS(434), + [anon_sym_import] = ACTIONS(434), + [anon_sym_enum] = ACTIONS(434), + [anon_sym_public] = ACTIONS(434), + [anon_sym_protected] = ACTIONS(434), + [anon_sym_private] = ACTIONS(434), + [anon_sym_abstract] = ACTIONS(434), + [anon_sym_final] = ACTIONS(434), + [anon_sym_strictfp] = ACTIONS(434), + [anon_sym_native] = ACTIONS(434), + [anon_sym_transient] = ACTIONS(434), + [anon_sym_volatile] = ACTIONS(434), + [anon_sym_sealed] = ACTIONS(434), + [anon_sym_non_DASHsealed] = ACTIONS(432), + [anon_sym_record] = ACTIONS(434), + [anon_sym_ATinterface] = ACTIONS(432), + [anon_sym_interface] = ACTIONS(434), + [anon_sym_byte] = ACTIONS(434), + [anon_sym_short] = ACTIONS(434), + [anon_sym_int] = ACTIONS(434), + [anon_sym_long] = ACTIONS(434), + [anon_sym_char] = ACTIONS(434), + [anon_sym_float] = ACTIONS(434), + [anon_sym_double] = ACTIONS(434), + [sym_boolean_type] = ACTIONS(434), + [sym_void_type] = ACTIONS(434), + [sym_this] = ACTIONS(434), + [sym_super] = ACTIONS(434), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(441), - [sym_identifier] = ACTIONS(443), - [sym_decimal_integer_literal] = ACTIONS(443), - [sym_hex_integer_literal] = ACTIONS(443), - [sym_octal_integer_literal] = ACTIONS(441), - [sym_binary_integer_literal] = ACTIONS(441), - [sym_decimal_floating_point_literal] = ACTIONS(441), - [sym_hex_floating_point_literal] = ACTIONS(443), - [sym_true] = ACTIONS(443), - [sym_false] = ACTIONS(443), - [sym_character_literal] = ACTIONS(441), - [sym_string_literal] = ACTIONS(443), - [sym_text_block] = ACTIONS(441), - [sym_null_literal] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(443), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_PLUS_PLUS] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(441), - [anon_sym_new] = ACTIONS(443), - [anon_sym_class] = ACTIONS(443), - [anon_sym_switch] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_case] = ACTIONS(443), - [anon_sym_default] = ACTIONS(443), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_assert] = ACTIONS(443), - [anon_sym_do] = ACTIONS(443), - [anon_sym_while] = ACTIONS(443), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_return] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(443), - [anon_sym_synchronized] = ACTIONS(443), - [anon_sym_throw] = ACTIONS(443), - [anon_sym_try] = ACTIONS(443), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(443), - [anon_sym_for] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(443), - [anon_sym_open] = ACTIONS(443), - [anon_sym_module] = ACTIONS(443), - [anon_sym_static] = ACTIONS(443), - [anon_sym_package] = ACTIONS(443), - [anon_sym_import] = ACTIONS(443), - [anon_sym_enum] = ACTIONS(443), - [anon_sym_public] = ACTIONS(443), - [anon_sym_protected] = ACTIONS(443), - [anon_sym_private] = ACTIONS(443), - [anon_sym_abstract] = ACTIONS(443), - [anon_sym_final] = ACTIONS(443), - [anon_sym_strictfp] = ACTIONS(443), - [anon_sym_native] = ACTIONS(443), - [anon_sym_transient] = ACTIONS(443), - [anon_sym_volatile] = ACTIONS(443), - [anon_sym_sealed] = ACTIONS(443), - [anon_sym_non_DASHsealed] = ACTIONS(441), - [anon_sym_record] = ACTIONS(443), - [anon_sym_ATinterface] = ACTIONS(441), - [anon_sym_interface] = ACTIONS(443), - [anon_sym_byte] = ACTIONS(443), - [anon_sym_short] = ACTIONS(443), - [anon_sym_int] = ACTIONS(443), - [anon_sym_long] = ACTIONS(443), - [anon_sym_char] = ACTIONS(443), - [anon_sym_float] = ACTIONS(443), - [anon_sym_double] = ACTIONS(443), - [sym_boolean_type] = ACTIONS(443), - [sym_void_type] = ACTIONS(443), - [sym_this] = ACTIONS(443), - [sym_super] = ACTIONS(443), + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [sym_decimal_integer_literal] = ACTIONS(438), + [sym_hex_integer_literal] = ACTIONS(438), + [sym_octal_integer_literal] = ACTIONS(436), + [sym_binary_integer_literal] = ACTIONS(436), + [sym_decimal_floating_point_literal] = ACTIONS(436), + [sym_hex_floating_point_literal] = ACTIONS(438), + [sym_true] = ACTIONS(438), + [sym_false] = ACTIONS(438), + [sym_character_literal] = ACTIONS(436), + [sym_string_literal] = ACTIONS(438), + [sym_text_block] = ACTIONS(436), + [sym_null_literal] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_new] = ACTIONS(438), + [anon_sym_class] = ACTIONS(438), + [anon_sym_switch] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_assert] = ACTIONS(438), + [anon_sym_do] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_synchronized] = ACTIONS(438), + [anon_sym_throw] = ACTIONS(438), + [anon_sym_try] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_open] = ACTIONS(438), + [anon_sym_module] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_package] = ACTIONS(438), + [anon_sym_import] = ACTIONS(438), + [anon_sym_enum] = ACTIONS(438), + [anon_sym_public] = ACTIONS(438), + [anon_sym_protected] = ACTIONS(438), + [anon_sym_private] = ACTIONS(438), + [anon_sym_abstract] = ACTIONS(438), + [anon_sym_final] = ACTIONS(438), + [anon_sym_strictfp] = ACTIONS(438), + [anon_sym_native] = ACTIONS(438), + [anon_sym_transient] = ACTIONS(438), + [anon_sym_volatile] = ACTIONS(438), + [anon_sym_sealed] = ACTIONS(438), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_record] = ACTIONS(438), + [anon_sym_ATinterface] = ACTIONS(436), + [anon_sym_interface] = ACTIONS(438), + [anon_sym_byte] = ACTIONS(438), + [anon_sym_short] = ACTIONS(438), + [anon_sym_int] = ACTIONS(438), + [anon_sym_long] = ACTIONS(438), + [anon_sym_char] = ACTIONS(438), + [anon_sym_float] = ACTIONS(438), + [anon_sym_double] = ACTIONS(438), + [sym_boolean_type] = ACTIONS(438), + [sym_void_type] = ACTIONS(438), + [sym_this] = ACTIONS(438), + [sym_super] = ACTIONS(438), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [97] = { - [ts_builtin_sym_end] = ACTIONS(445), - [sym_identifier] = ACTIONS(447), - [sym_decimal_integer_literal] = ACTIONS(447), - [sym_hex_integer_literal] = ACTIONS(447), - [sym_octal_integer_literal] = ACTIONS(445), - [sym_binary_integer_literal] = ACTIONS(445), - [sym_decimal_floating_point_literal] = ACTIONS(445), - [sym_hex_floating_point_literal] = ACTIONS(447), - [sym_true] = ACTIONS(447), - [sym_false] = ACTIONS(447), - [sym_character_literal] = ACTIONS(445), - [sym_string_literal] = ACTIONS(447), - [sym_text_block] = ACTIONS(445), - [sym_null_literal] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_TILDE] = ACTIONS(445), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), - [anon_sym_new] = ACTIONS(447), - [anon_sym_class] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_case] = ACTIONS(447), - [anon_sym_default] = ACTIONS(447), - [anon_sym_SEMI] = ACTIONS(445), - [anon_sym_assert] = ACTIONS(447), - [anon_sym_do] = ACTIONS(447), - [anon_sym_while] = ACTIONS(447), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_return] = ACTIONS(447), - [anon_sym_yield] = ACTIONS(447), - [anon_sym_synchronized] = ACTIONS(447), - [anon_sym_throw] = ACTIONS(447), - [anon_sym_try] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_AT] = ACTIONS(447), - [anon_sym_open] = ACTIONS(447), - [anon_sym_module] = ACTIONS(447), - [anon_sym_static] = ACTIONS(447), - [anon_sym_package] = ACTIONS(447), - [anon_sym_import] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(447), - [anon_sym_public] = ACTIONS(447), - [anon_sym_protected] = ACTIONS(447), - [anon_sym_private] = ACTIONS(447), - [anon_sym_abstract] = ACTIONS(447), - [anon_sym_final] = ACTIONS(447), - [anon_sym_strictfp] = ACTIONS(447), - [anon_sym_native] = ACTIONS(447), - [anon_sym_transient] = ACTIONS(447), - [anon_sym_volatile] = ACTIONS(447), - [anon_sym_sealed] = ACTIONS(447), - [anon_sym_non_DASHsealed] = ACTIONS(445), - [anon_sym_record] = ACTIONS(447), - [anon_sym_ATinterface] = ACTIONS(445), - [anon_sym_interface] = ACTIONS(447), - [anon_sym_byte] = ACTIONS(447), - [anon_sym_short] = ACTIONS(447), - [anon_sym_int] = ACTIONS(447), - [anon_sym_long] = ACTIONS(447), - [anon_sym_char] = ACTIONS(447), - [anon_sym_float] = ACTIONS(447), - [anon_sym_double] = ACTIONS(447), - [sym_boolean_type] = ACTIONS(447), - [sym_void_type] = ACTIONS(447), - [sym_this] = ACTIONS(447), - [sym_super] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_identifier] = ACTIONS(442), + [sym_decimal_integer_literal] = ACTIONS(442), + [sym_hex_integer_literal] = ACTIONS(442), + [sym_octal_integer_literal] = ACTIONS(440), + [sym_binary_integer_literal] = ACTIONS(440), + [sym_decimal_floating_point_literal] = ACTIONS(440), + [sym_hex_floating_point_literal] = ACTIONS(442), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_character_literal] = ACTIONS(440), + [sym_string_literal] = ACTIONS(442), + [sym_text_block] = ACTIONS(440), + [sym_null_literal] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_TILDE] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_new] = ACTIONS(442), + [anon_sym_class] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_case] = ACTIONS(442), + [anon_sym_default] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_assert] = ACTIONS(442), + [anon_sym_do] = ACTIONS(442), + [anon_sym_while] = ACTIONS(442), + [anon_sym_break] = ACTIONS(442), + [anon_sym_continue] = ACTIONS(442), + [anon_sym_return] = ACTIONS(442), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_synchronized] = ACTIONS(442), + [anon_sym_throw] = ACTIONS(442), + [anon_sym_try] = ACTIONS(442), + [anon_sym_if] = ACTIONS(442), + [anon_sym_else] = ACTIONS(442), + [anon_sym_for] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(442), + [anon_sym_open] = ACTIONS(442), + [anon_sym_module] = ACTIONS(442), + [anon_sym_static] = ACTIONS(442), + [anon_sym_package] = ACTIONS(442), + [anon_sym_import] = ACTIONS(442), + [anon_sym_enum] = ACTIONS(442), + [anon_sym_public] = ACTIONS(442), + [anon_sym_protected] = ACTIONS(442), + [anon_sym_private] = ACTIONS(442), + [anon_sym_abstract] = ACTIONS(442), + [anon_sym_final] = ACTIONS(442), + [anon_sym_strictfp] = ACTIONS(442), + [anon_sym_native] = ACTIONS(442), + [anon_sym_transient] = ACTIONS(442), + [anon_sym_volatile] = ACTIONS(442), + [anon_sym_sealed] = ACTIONS(442), + [anon_sym_non_DASHsealed] = ACTIONS(440), + [anon_sym_record] = ACTIONS(442), + [anon_sym_ATinterface] = ACTIONS(440), + [anon_sym_interface] = ACTIONS(442), + [anon_sym_byte] = ACTIONS(442), + [anon_sym_short] = ACTIONS(442), + [anon_sym_int] = ACTIONS(442), + [anon_sym_long] = ACTIONS(442), + [anon_sym_char] = ACTIONS(442), + [anon_sym_float] = ACTIONS(442), + [anon_sym_double] = ACTIONS(442), + [sym_boolean_type] = ACTIONS(442), + [sym_void_type] = ACTIONS(442), + [sym_this] = ACTIONS(442), + [sym_super] = ACTIONS(442), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [98] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [sym_decimal_integer_literal] = ACTIONS(451), - [sym_hex_integer_literal] = ACTIONS(451), - [sym_octal_integer_literal] = ACTIONS(449), - [sym_binary_integer_literal] = ACTIONS(449), - [sym_decimal_floating_point_literal] = ACTIONS(449), - [sym_hex_floating_point_literal] = ACTIONS(451), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [sym_character_literal] = ACTIONS(449), - [sym_string_literal] = ACTIONS(451), - [sym_text_block] = ACTIONS(449), - [sym_null_literal] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(449), - [anon_sym_new] = ACTIONS(451), - [anon_sym_class] = ACTIONS(451), - [anon_sym_switch] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(449), - [anon_sym_assert] = ACTIONS(451), - [anon_sym_do] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_synchronized] = ACTIONS(451), - [anon_sym_throw] = ACTIONS(451), - [anon_sym_try] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_AT] = ACTIONS(451), - [anon_sym_open] = ACTIONS(451), - [anon_sym_module] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_package] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_public] = ACTIONS(451), - [anon_sym_protected] = ACTIONS(451), - [anon_sym_private] = ACTIONS(451), - [anon_sym_abstract] = ACTIONS(451), - [anon_sym_final] = ACTIONS(451), - [anon_sym_strictfp] = ACTIONS(451), - [anon_sym_native] = ACTIONS(451), - [anon_sym_transient] = ACTIONS(451), - [anon_sym_volatile] = ACTIONS(451), - [anon_sym_sealed] = ACTIONS(451), - [anon_sym_non_DASHsealed] = ACTIONS(449), - [anon_sym_record] = ACTIONS(451), - [anon_sym_ATinterface] = ACTIONS(449), - [anon_sym_interface] = ACTIONS(451), - [anon_sym_byte] = ACTIONS(451), - [anon_sym_short] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_long] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_double] = ACTIONS(451), - [sym_boolean_type] = ACTIONS(451), - [sym_void_type] = ACTIONS(451), - [sym_this] = ACTIONS(451), - [sym_super] = ACTIONS(451), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym__element_value] = STATE(1018), + [sym_element_value_array_initializer] = STATE(1018), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [99] = { - [ts_builtin_sym_end] = ACTIONS(453), - [sym_identifier] = ACTIONS(455), - [sym_decimal_integer_literal] = ACTIONS(455), - [sym_hex_integer_literal] = ACTIONS(455), - [sym_octal_integer_literal] = ACTIONS(453), - [sym_binary_integer_literal] = ACTIONS(453), - [sym_decimal_floating_point_literal] = ACTIONS(453), - [sym_hex_floating_point_literal] = ACTIONS(455), - [sym_true] = ACTIONS(455), - [sym_false] = ACTIONS(455), - [sym_character_literal] = ACTIONS(453), - [sym_string_literal] = ACTIONS(455), - [sym_text_block] = ACTIONS(453), - [sym_null_literal] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_PLUS_PLUS] = ACTIONS(453), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_class] = ACTIONS(455), - [anon_sym_switch] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_case] = ACTIONS(455), - [anon_sym_default] = ACTIONS(455), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_assert] = ACTIONS(455), - [anon_sym_do] = ACTIONS(455), - [anon_sym_while] = ACTIONS(455), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_return] = ACTIONS(455), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_synchronized] = ACTIONS(455), - [anon_sym_throw] = ACTIONS(455), - [anon_sym_try] = ACTIONS(455), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(455), - [anon_sym_for] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(455), - [anon_sym_open] = ACTIONS(455), - [anon_sym_module] = ACTIONS(455), - [anon_sym_static] = ACTIONS(455), - [anon_sym_package] = ACTIONS(455), - [anon_sym_import] = ACTIONS(455), - [anon_sym_enum] = ACTIONS(455), - [anon_sym_public] = ACTIONS(455), - [anon_sym_protected] = ACTIONS(455), - [anon_sym_private] = ACTIONS(455), - [anon_sym_abstract] = ACTIONS(455), - [anon_sym_final] = ACTIONS(455), - [anon_sym_strictfp] = ACTIONS(455), - [anon_sym_native] = ACTIONS(455), - [anon_sym_transient] = ACTIONS(455), - [anon_sym_volatile] = ACTIONS(455), - [anon_sym_sealed] = ACTIONS(455), - [anon_sym_non_DASHsealed] = ACTIONS(453), - [anon_sym_record] = ACTIONS(455), - [anon_sym_ATinterface] = ACTIONS(453), - [anon_sym_interface] = ACTIONS(455), - [anon_sym_byte] = ACTIONS(455), - [anon_sym_short] = ACTIONS(455), - [anon_sym_int] = ACTIONS(455), - [anon_sym_long] = ACTIONS(455), - [anon_sym_char] = ACTIONS(455), - [anon_sym_float] = ACTIONS(455), - [anon_sym_double] = ACTIONS(455), - [sym_boolean_type] = ACTIONS(455), - [sym_void_type] = ACTIONS(455), - [sym_this] = ACTIONS(455), - [sym_super] = ACTIONS(455), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_decimal_integer_literal] = ACTIONS(446), + [sym_hex_integer_literal] = ACTIONS(446), + [sym_octal_integer_literal] = ACTIONS(444), + [sym_binary_integer_literal] = ACTIONS(444), + [sym_decimal_floating_point_literal] = ACTIONS(444), + [sym_hex_floating_point_literal] = ACTIONS(446), + [sym_true] = ACTIONS(446), + [sym_false] = ACTIONS(446), + [sym_character_literal] = ACTIONS(444), + [sym_string_literal] = ACTIONS(446), + [sym_text_block] = ACTIONS(444), + [sym_null_literal] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(444), + [anon_sym_new] = ACTIONS(446), + [anon_sym_class] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_assert] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_break] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_yield] = ACTIONS(446), + [anon_sym_synchronized] = ACTIONS(446), + [anon_sym_throw] = ACTIONS(446), + [anon_sym_try] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_AT] = ACTIONS(446), + [anon_sym_open] = ACTIONS(446), + [anon_sym_module] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_package] = ACTIONS(446), + [anon_sym_import] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_public] = ACTIONS(446), + [anon_sym_protected] = ACTIONS(446), + [anon_sym_private] = ACTIONS(446), + [anon_sym_abstract] = ACTIONS(446), + [anon_sym_final] = ACTIONS(446), + [anon_sym_strictfp] = ACTIONS(446), + [anon_sym_native] = ACTIONS(446), + [anon_sym_transient] = ACTIONS(446), + [anon_sym_volatile] = ACTIONS(446), + [anon_sym_sealed] = ACTIONS(446), + [anon_sym_non_DASHsealed] = ACTIONS(444), + [anon_sym_record] = ACTIONS(446), + [anon_sym_ATinterface] = ACTIONS(444), + [anon_sym_interface] = ACTIONS(446), + [anon_sym_byte] = ACTIONS(446), + [anon_sym_short] = ACTIONS(446), + [anon_sym_int] = ACTIONS(446), + [anon_sym_long] = ACTIONS(446), + [anon_sym_char] = ACTIONS(446), + [anon_sym_float] = ACTIONS(446), + [anon_sym_double] = ACTIONS(446), + [sym_boolean_type] = ACTIONS(446), + [sym_void_type] = ACTIONS(446), + [sym_this] = ACTIONS(446), + [sym_super] = ACTIONS(446), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [100] = { - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(459), - [sym_decimal_integer_literal] = ACTIONS(459), - [sym_hex_integer_literal] = ACTIONS(459), - [sym_octal_integer_literal] = ACTIONS(457), - [sym_binary_integer_literal] = ACTIONS(457), - [sym_decimal_floating_point_literal] = ACTIONS(457), - [sym_hex_floating_point_literal] = ACTIONS(459), - [sym_true] = ACTIONS(459), - [sym_false] = ACTIONS(459), - [sym_character_literal] = ACTIONS(457), - [sym_string_literal] = ACTIONS(459), - [sym_text_block] = ACTIONS(457), - [sym_null_literal] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_class] = ACTIONS(459), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_case] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_assert] = ACTIONS(459), - [anon_sym_do] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_yield] = ACTIONS(459), - [anon_sym_synchronized] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(459), - [anon_sym_try] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_AT] = ACTIONS(459), - [anon_sym_open] = ACTIONS(459), - [anon_sym_module] = ACTIONS(459), - [anon_sym_static] = ACTIONS(459), - [anon_sym_package] = ACTIONS(459), - [anon_sym_import] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_public] = ACTIONS(459), - [anon_sym_protected] = ACTIONS(459), - [anon_sym_private] = ACTIONS(459), - [anon_sym_abstract] = ACTIONS(459), - [anon_sym_final] = ACTIONS(459), - [anon_sym_strictfp] = ACTIONS(459), - [anon_sym_native] = ACTIONS(459), - [anon_sym_transient] = ACTIONS(459), - [anon_sym_volatile] = ACTIONS(459), - [anon_sym_sealed] = ACTIONS(459), - [anon_sym_non_DASHsealed] = ACTIONS(457), - [anon_sym_record] = ACTIONS(459), - [anon_sym_ATinterface] = ACTIONS(457), - [anon_sym_interface] = ACTIONS(459), - [anon_sym_byte] = ACTIONS(459), - [anon_sym_short] = ACTIONS(459), - [anon_sym_int] = ACTIONS(459), - [anon_sym_long] = ACTIONS(459), - [anon_sym_char] = ACTIONS(459), - [anon_sym_float] = ACTIONS(459), - [anon_sym_double] = ACTIONS(459), - [sym_boolean_type] = ACTIONS(459), - [sym_void_type] = ACTIONS(459), - [sym_this] = ACTIONS(459), - [sym_super] = ACTIONS(459), + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(450), + [sym_decimal_integer_literal] = ACTIONS(450), + [sym_hex_integer_literal] = ACTIONS(450), + [sym_octal_integer_literal] = ACTIONS(448), + [sym_binary_integer_literal] = ACTIONS(448), + [sym_decimal_floating_point_literal] = ACTIONS(448), + [sym_hex_floating_point_literal] = ACTIONS(450), + [sym_true] = ACTIONS(450), + [sym_false] = ACTIONS(450), + [sym_character_literal] = ACTIONS(448), + [sym_string_literal] = ACTIONS(450), + [sym_text_block] = ACTIONS(448), + [sym_null_literal] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(448), + [anon_sym_TILDE] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_new] = ACTIONS(450), + [anon_sym_class] = ACTIONS(450), + [anon_sym_switch] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(448), + [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_else] = 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_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_final] = 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(448), + [anon_sym_record] = ACTIONS(450), + [anon_sym_ATinterface] = ACTIONS(448), + [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), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(461), - [sym_identifier] = ACTIONS(463), - [sym_decimal_integer_literal] = ACTIONS(463), - [sym_hex_integer_literal] = ACTIONS(463), - [sym_octal_integer_literal] = ACTIONS(461), - [sym_binary_integer_literal] = ACTIONS(461), - [sym_decimal_floating_point_literal] = ACTIONS(461), - [sym_hex_floating_point_literal] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [sym_character_literal] = ACTIONS(461), - [sym_string_literal] = ACTIONS(463), - [sym_text_block] = ACTIONS(461), - [sym_null_literal] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_new] = ACTIONS(463), - [anon_sym_class] = ACTIONS(463), - [anon_sym_switch] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_case] = ACTIONS(463), - [anon_sym_default] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_assert] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_while] = ACTIONS(463), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(463), - [anon_sym_return] = ACTIONS(463), - [anon_sym_yield] = ACTIONS(463), - [anon_sym_synchronized] = ACTIONS(463), - [anon_sym_throw] = ACTIONS(463), - [anon_sym_try] = ACTIONS(463), - [anon_sym_if] = ACTIONS(463), - [anon_sym_else] = ACTIONS(463), - [anon_sym_for] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(463), - [anon_sym_open] = ACTIONS(463), - [anon_sym_module] = ACTIONS(463), - [anon_sym_static] = ACTIONS(463), - [anon_sym_package] = ACTIONS(463), - [anon_sym_import] = ACTIONS(463), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_public] = ACTIONS(463), - [anon_sym_protected] = ACTIONS(463), - [anon_sym_private] = ACTIONS(463), - [anon_sym_abstract] = ACTIONS(463), - [anon_sym_final] = ACTIONS(463), - [anon_sym_strictfp] = ACTIONS(463), - [anon_sym_native] = ACTIONS(463), - [anon_sym_transient] = ACTIONS(463), - [anon_sym_volatile] = ACTIONS(463), - [anon_sym_sealed] = ACTIONS(463), - [anon_sym_non_DASHsealed] = ACTIONS(461), - [anon_sym_record] = ACTIONS(463), - [anon_sym_ATinterface] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(463), - [anon_sym_byte] = ACTIONS(463), - [anon_sym_short] = ACTIONS(463), - [anon_sym_int] = ACTIONS(463), - [anon_sym_long] = ACTIONS(463), - [anon_sym_char] = ACTIONS(463), - [anon_sym_float] = ACTIONS(463), - [anon_sym_double] = ACTIONS(463), - [sym_boolean_type] = ACTIONS(463), - [sym_void_type] = ACTIONS(463), - [sym_this] = ACTIONS(463), - [sym_super] = ACTIONS(463), + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(454), + [sym_hex_integer_literal] = ACTIONS(454), + [sym_octal_integer_literal] = ACTIONS(452), + [sym_binary_integer_literal] = ACTIONS(452), + [sym_decimal_floating_point_literal] = ACTIONS(452), + [sym_hex_floating_point_literal] = ACTIONS(454), + [sym_true] = ACTIONS(454), + [sym_false] = ACTIONS(454), + [sym_character_literal] = ACTIONS(452), + [sym_string_literal] = ACTIONS(454), + [sym_text_block] = ACTIONS(452), + [sym_null_literal] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(452), + [anon_sym_DASH_DASH] = ACTIONS(452), + [anon_sym_new] = ACTIONS(454), + [anon_sym_class] = ACTIONS(454), + [anon_sym_switch] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_case] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_assert] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [anon_sym_break] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_synchronized] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_if] = ACTIONS(454), + [anon_sym_else] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_open] = ACTIONS(454), + [anon_sym_module] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_package] = ACTIONS(454), + [anon_sym_import] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_public] = ACTIONS(454), + [anon_sym_protected] = ACTIONS(454), + [anon_sym_private] = ACTIONS(454), + [anon_sym_abstract] = ACTIONS(454), + [anon_sym_final] = ACTIONS(454), + [anon_sym_strictfp] = ACTIONS(454), + [anon_sym_native] = ACTIONS(454), + [anon_sym_transient] = ACTIONS(454), + [anon_sym_volatile] = ACTIONS(454), + [anon_sym_sealed] = ACTIONS(454), + [anon_sym_non_DASHsealed] = ACTIONS(452), + [anon_sym_record] = ACTIONS(454), + [anon_sym_ATinterface] = ACTIONS(452), + [anon_sym_interface] = ACTIONS(454), + [anon_sym_byte] = ACTIONS(454), + [anon_sym_short] = ACTIONS(454), + [anon_sym_int] = ACTIONS(454), + [anon_sym_long] = ACTIONS(454), + [anon_sym_char] = ACTIONS(454), + [anon_sym_float] = ACTIONS(454), + [anon_sym_double] = ACTIONS(454), + [sym_boolean_type] = ACTIONS(454), + [sym_void_type] = ACTIONS(454), + [sym_this] = ACTIONS(454), + [sym_super] = ACTIONS(454), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [102] = { - [ts_builtin_sym_end] = ACTIONS(465), - [sym_identifier] = ACTIONS(467), - [sym_decimal_integer_literal] = ACTIONS(467), - [sym_hex_integer_literal] = ACTIONS(467), - [sym_octal_integer_literal] = ACTIONS(465), - [sym_binary_integer_literal] = ACTIONS(465), - [sym_decimal_floating_point_literal] = ACTIONS(465), - [sym_hex_floating_point_literal] = ACTIONS(467), - [sym_true] = ACTIONS(467), - [sym_false] = ACTIONS(467), - [sym_character_literal] = ACTIONS(465), - [sym_string_literal] = ACTIONS(467), - [sym_text_block] = ACTIONS(465), - [sym_null_literal] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_new] = ACTIONS(467), - [anon_sym_class] = ACTIONS(467), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_case] = ACTIONS(467), - [anon_sym_default] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(467), - [anon_sym_do] = ACTIONS(467), - [anon_sym_while] = ACTIONS(467), - [anon_sym_break] = ACTIONS(467), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_return] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(467), - [anon_sym_synchronized] = ACTIONS(467), - [anon_sym_throw] = ACTIONS(467), - [anon_sym_try] = ACTIONS(467), - [anon_sym_if] = ACTIONS(467), - [anon_sym_else] = ACTIONS(467), - [anon_sym_for] = ACTIONS(467), - [anon_sym_AT] = ACTIONS(467), - [anon_sym_open] = ACTIONS(467), - [anon_sym_module] = ACTIONS(467), - [anon_sym_static] = ACTIONS(467), - [anon_sym_package] = ACTIONS(467), - [anon_sym_import] = ACTIONS(467), - [anon_sym_enum] = ACTIONS(467), - [anon_sym_public] = ACTIONS(467), - [anon_sym_protected] = ACTIONS(467), - [anon_sym_private] = ACTIONS(467), - [anon_sym_abstract] = ACTIONS(467), - [anon_sym_final] = ACTIONS(467), - [anon_sym_strictfp] = ACTIONS(467), - [anon_sym_native] = ACTIONS(467), - [anon_sym_transient] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(467), - [anon_sym_sealed] = ACTIONS(467), - [anon_sym_non_DASHsealed] = ACTIONS(465), - [anon_sym_record] = ACTIONS(467), - [anon_sym_ATinterface] = ACTIONS(465), - [anon_sym_interface] = ACTIONS(467), - [anon_sym_byte] = ACTIONS(467), - [anon_sym_short] = ACTIONS(467), - [anon_sym_int] = ACTIONS(467), - [anon_sym_long] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_float] = ACTIONS(467), - [anon_sym_double] = ACTIONS(467), - [sym_boolean_type] = ACTIONS(467), - [sym_void_type] = ACTIONS(467), - [sym_this] = ACTIONS(467), - [sym_super] = ACTIONS(467), + [ts_builtin_sym_end] = ACTIONS(456), + [sym_identifier] = ACTIONS(458), + [sym_decimal_integer_literal] = ACTIONS(458), + [sym_hex_integer_literal] = ACTIONS(458), + [sym_octal_integer_literal] = ACTIONS(456), + [sym_binary_integer_literal] = ACTIONS(456), + [sym_decimal_floating_point_literal] = ACTIONS(456), + [sym_hex_floating_point_literal] = ACTIONS(458), + [sym_true] = ACTIONS(458), + [sym_false] = ACTIONS(458), + [sym_character_literal] = ACTIONS(456), + [sym_string_literal] = ACTIONS(458), + [sym_text_block] = ACTIONS(456), + [sym_null_literal] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_PLUS] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), + [anon_sym_new] = ACTIONS(458), + [anon_sym_class] = ACTIONS(458), + [anon_sym_switch] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(458), + [anon_sym_default] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_assert] = ACTIONS(458), + [anon_sym_do] = ACTIONS(458), + [anon_sym_while] = ACTIONS(458), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(458), + [anon_sym_return] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(458), + [anon_sym_synchronized] = ACTIONS(458), + [anon_sym_throw] = ACTIONS(458), + [anon_sym_try] = ACTIONS(458), + [anon_sym_if] = ACTIONS(458), + [anon_sym_else] = ACTIONS(458), + [anon_sym_for] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(458), + [anon_sym_open] = ACTIONS(458), + [anon_sym_module] = ACTIONS(458), + [anon_sym_static] = ACTIONS(458), + [anon_sym_package] = ACTIONS(458), + [anon_sym_import] = ACTIONS(458), + [anon_sym_enum] = ACTIONS(458), + [anon_sym_public] = ACTIONS(458), + [anon_sym_protected] = ACTIONS(458), + [anon_sym_private] = ACTIONS(458), + [anon_sym_abstract] = ACTIONS(458), + [anon_sym_final] = ACTIONS(458), + [anon_sym_strictfp] = ACTIONS(458), + [anon_sym_native] = ACTIONS(458), + [anon_sym_transient] = ACTIONS(458), + [anon_sym_volatile] = ACTIONS(458), + [anon_sym_sealed] = ACTIONS(458), + [anon_sym_non_DASHsealed] = ACTIONS(456), + [anon_sym_record] = ACTIONS(458), + [anon_sym_ATinterface] = ACTIONS(456), + [anon_sym_interface] = ACTIONS(458), + [anon_sym_byte] = ACTIONS(458), + [anon_sym_short] = ACTIONS(458), + [anon_sym_int] = ACTIONS(458), + [anon_sym_long] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_float] = ACTIONS(458), + [anon_sym_double] = ACTIONS(458), + [sym_boolean_type] = ACTIONS(458), + [sym_void_type] = ACTIONS(458), + [sym_this] = ACTIONS(458), + [sym_super] = ACTIONS(458), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [103] = { - [ts_builtin_sym_end] = ACTIONS(469), - [sym_identifier] = ACTIONS(471), - [sym_decimal_integer_literal] = ACTIONS(471), - [sym_hex_integer_literal] = ACTIONS(471), - [sym_octal_integer_literal] = ACTIONS(469), - [sym_binary_integer_literal] = ACTIONS(469), - [sym_decimal_floating_point_literal] = ACTIONS(469), - [sym_hex_floating_point_literal] = ACTIONS(471), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_character_literal] = ACTIONS(469), - [sym_string_literal] = ACTIONS(471), - [sym_text_block] = ACTIONS(469), - [sym_null_literal] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_PLUS] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_TILDE] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(469), - [anon_sym_DASH_DASH] = ACTIONS(469), - [anon_sym_new] = ACTIONS(471), - [anon_sym_class] = ACTIONS(471), - [anon_sym_switch] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_case] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_assert] = ACTIONS(471), - [anon_sym_do] = ACTIONS(471), - [anon_sym_while] = ACTIONS(471), - [anon_sym_break] = ACTIONS(471), - [anon_sym_continue] = ACTIONS(471), - [anon_sym_return] = ACTIONS(471), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_synchronized] = ACTIONS(471), - [anon_sym_throw] = ACTIONS(471), - [anon_sym_try] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(471), - [anon_sym_for] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(471), - [anon_sym_open] = ACTIONS(471), - [anon_sym_module] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_import] = ACTIONS(471), - [anon_sym_enum] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_protected] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_strictfp] = ACTIONS(471), - [anon_sym_native] = ACTIONS(471), - [anon_sym_transient] = ACTIONS(471), - [anon_sym_volatile] = ACTIONS(471), - [anon_sym_sealed] = ACTIONS(471), - [anon_sym_non_DASHsealed] = ACTIONS(469), - [anon_sym_record] = ACTIONS(471), - [anon_sym_ATinterface] = ACTIONS(469), - [anon_sym_interface] = ACTIONS(471), - [anon_sym_byte] = ACTIONS(471), - [anon_sym_short] = ACTIONS(471), - [anon_sym_int] = ACTIONS(471), - [anon_sym_long] = ACTIONS(471), - [anon_sym_char] = ACTIONS(471), - [anon_sym_float] = ACTIONS(471), - [anon_sym_double] = ACTIONS(471), - [sym_boolean_type] = ACTIONS(471), - [sym_void_type] = ACTIONS(471), - [sym_this] = ACTIONS(471), - [sym_super] = ACTIONS(471), + [ts_builtin_sym_end] = ACTIONS(460), + [sym_identifier] = ACTIONS(462), + [sym_decimal_integer_literal] = ACTIONS(462), + [sym_hex_integer_literal] = ACTIONS(462), + [sym_octal_integer_literal] = ACTIONS(460), + [sym_binary_integer_literal] = ACTIONS(460), + [sym_decimal_floating_point_literal] = ACTIONS(460), + [sym_hex_floating_point_literal] = ACTIONS(462), + [sym_true] = ACTIONS(462), + [sym_false] = ACTIONS(462), + [sym_character_literal] = ACTIONS(460), + [sym_string_literal] = ACTIONS(462), + [sym_text_block] = ACTIONS(460), + [sym_null_literal] = ACTIONS(462), + [anon_sym_LPAREN] = ACTIONS(460), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_TILDE] = ACTIONS(460), + [anon_sym_PLUS_PLUS] = ACTIONS(460), + [anon_sym_DASH_DASH] = ACTIONS(460), + [anon_sym_new] = ACTIONS(462), + [anon_sym_class] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(460), + [anon_sym_case] = ACTIONS(462), + [anon_sym_default] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(460), + [anon_sym_assert] = ACTIONS(462), + [anon_sym_do] = ACTIONS(462), + [anon_sym_while] = ACTIONS(462), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(462), + [anon_sym_return] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_synchronized] = ACTIONS(462), + [anon_sym_throw] = ACTIONS(462), + [anon_sym_try] = ACTIONS(462), + [anon_sym_if] = ACTIONS(462), + [anon_sym_else] = ACTIONS(462), + [anon_sym_for] = ACTIONS(462), + [anon_sym_AT] = ACTIONS(462), + [anon_sym_open] = ACTIONS(462), + [anon_sym_module] = ACTIONS(462), + [anon_sym_static] = ACTIONS(462), + [anon_sym_package] = ACTIONS(462), + [anon_sym_import] = ACTIONS(462), + [anon_sym_enum] = ACTIONS(462), + [anon_sym_public] = ACTIONS(462), + [anon_sym_protected] = ACTIONS(462), + [anon_sym_private] = ACTIONS(462), + [anon_sym_abstract] = ACTIONS(462), + [anon_sym_final] = 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(462), + [anon_sym_non_DASHsealed] = ACTIONS(460), + [anon_sym_record] = ACTIONS(462), + [anon_sym_ATinterface] = ACTIONS(460), + [anon_sym_interface] = ACTIONS(462), + [anon_sym_byte] = ACTIONS(462), + [anon_sym_short] = ACTIONS(462), + [anon_sym_int] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_char] = ACTIONS(462), + [anon_sym_float] = ACTIONS(462), + [anon_sym_double] = ACTIONS(462), + [sym_boolean_type] = ACTIONS(462), + [sym_void_type] = ACTIONS(462), + [sym_this] = ACTIONS(462), + [sym_super] = ACTIONS(462), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [104] = { - [ts_builtin_sym_end] = ACTIONS(473), - [sym_identifier] = ACTIONS(475), - [sym_decimal_integer_literal] = ACTIONS(475), - [sym_hex_integer_literal] = ACTIONS(475), - [sym_octal_integer_literal] = ACTIONS(473), - [sym_binary_integer_literal] = ACTIONS(473), - [sym_decimal_floating_point_literal] = ACTIONS(473), - [sym_hex_floating_point_literal] = ACTIONS(475), - [sym_true] = ACTIONS(475), - [sym_false] = ACTIONS(475), - [sym_character_literal] = ACTIONS(473), - [sym_string_literal] = ACTIONS(475), - [sym_text_block] = ACTIONS(473), - [sym_null_literal] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_TILDE] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_new] = ACTIONS(475), - [anon_sym_class] = ACTIONS(475), - [anon_sym_switch] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(473), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_case] = ACTIONS(475), - [anon_sym_default] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_assert] = ACTIONS(475), - [anon_sym_do] = ACTIONS(475), - [anon_sym_while] = ACTIONS(475), - [anon_sym_break] = ACTIONS(475), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_return] = ACTIONS(475), - [anon_sym_yield] = ACTIONS(475), - [anon_sym_synchronized] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(475), - [anon_sym_try] = ACTIONS(475), - [anon_sym_if] = ACTIONS(475), - [anon_sym_else] = ACTIONS(475), - [anon_sym_for] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_open] = ACTIONS(475), - [anon_sym_module] = ACTIONS(475), - [anon_sym_static] = ACTIONS(475), - [anon_sym_package] = ACTIONS(475), - [anon_sym_import] = ACTIONS(475), - [anon_sym_enum] = ACTIONS(475), - [anon_sym_public] = ACTIONS(475), - [anon_sym_protected] = ACTIONS(475), - [anon_sym_private] = ACTIONS(475), - [anon_sym_abstract] = ACTIONS(475), - [anon_sym_final] = ACTIONS(475), - [anon_sym_strictfp] = ACTIONS(475), - [anon_sym_native] = ACTIONS(475), - [anon_sym_transient] = ACTIONS(475), - [anon_sym_volatile] = ACTIONS(475), - [anon_sym_sealed] = ACTIONS(475), - [anon_sym_non_DASHsealed] = ACTIONS(473), - [anon_sym_record] = ACTIONS(475), - [anon_sym_ATinterface] = ACTIONS(473), - [anon_sym_interface] = ACTIONS(475), - [anon_sym_byte] = ACTIONS(475), - [anon_sym_short] = ACTIONS(475), - [anon_sym_int] = ACTIONS(475), - [anon_sym_long] = ACTIONS(475), - [anon_sym_char] = ACTIONS(475), - [anon_sym_float] = ACTIONS(475), - [anon_sym_double] = ACTIONS(475), - [sym_boolean_type] = ACTIONS(475), - [sym_void_type] = ACTIONS(475), - [sym_this] = ACTIONS(475), - [sym_super] = ACTIONS(475), + [ts_builtin_sym_end] = ACTIONS(464), + [sym_identifier] = ACTIONS(466), + [sym_decimal_integer_literal] = ACTIONS(466), + [sym_hex_integer_literal] = ACTIONS(466), + [sym_octal_integer_literal] = ACTIONS(464), + [sym_binary_integer_literal] = ACTIONS(464), + [sym_decimal_floating_point_literal] = ACTIONS(464), + [sym_hex_floating_point_literal] = ACTIONS(466), + [sym_true] = ACTIONS(466), + [sym_false] = ACTIONS(466), + [sym_character_literal] = ACTIONS(464), + [sym_string_literal] = ACTIONS(466), + [sym_text_block] = ACTIONS(464), + [sym_null_literal] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_PLUS_PLUS] = ACTIONS(464), + [anon_sym_DASH_DASH] = ACTIONS(464), + [anon_sym_new] = ACTIONS(466), + [anon_sym_class] = ACTIONS(466), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_assert] = ACTIONS(466), + [anon_sym_do] = ACTIONS(466), + [anon_sym_while] = ACTIONS(466), + [anon_sym_break] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(466), + [anon_sym_return] = ACTIONS(466), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_synchronized] = ACTIONS(466), + [anon_sym_throw] = ACTIONS(466), + [anon_sym_try] = ACTIONS(466), + [anon_sym_if] = ACTIONS(466), + [anon_sym_else] = ACTIONS(466), + [anon_sym_for] = ACTIONS(466), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_open] = ACTIONS(466), + [anon_sym_module] = ACTIONS(466), + [anon_sym_static] = ACTIONS(466), + [anon_sym_package] = ACTIONS(466), + [anon_sym_import] = ACTIONS(466), + [anon_sym_enum] = ACTIONS(466), + [anon_sym_public] = ACTIONS(466), + [anon_sym_protected] = ACTIONS(466), + [anon_sym_private] = ACTIONS(466), + [anon_sym_abstract] = ACTIONS(466), + [anon_sym_final] = ACTIONS(466), + [anon_sym_strictfp] = ACTIONS(466), + [anon_sym_native] = ACTIONS(466), + [anon_sym_transient] = ACTIONS(466), + [anon_sym_volatile] = ACTIONS(466), + [anon_sym_sealed] = ACTIONS(466), + [anon_sym_non_DASHsealed] = ACTIONS(464), + [anon_sym_record] = ACTIONS(466), + [anon_sym_ATinterface] = ACTIONS(464), + [anon_sym_interface] = ACTIONS(466), + [anon_sym_byte] = ACTIONS(466), + [anon_sym_short] = ACTIONS(466), + [anon_sym_int] = ACTIONS(466), + [anon_sym_long] = ACTIONS(466), + [anon_sym_char] = ACTIONS(466), + [anon_sym_float] = ACTIONS(466), + [anon_sym_double] = ACTIONS(466), + [sym_boolean_type] = ACTIONS(466), + [sym_void_type] = ACTIONS(466), + [sym_this] = ACTIONS(466), + [sym_super] = ACTIONS(466), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [105] = { - [ts_builtin_sym_end] = ACTIONS(477), - [sym_identifier] = ACTIONS(479), - [sym_decimal_integer_literal] = ACTIONS(479), - [sym_hex_integer_literal] = ACTIONS(479), - [sym_octal_integer_literal] = ACTIONS(477), - [sym_binary_integer_literal] = ACTIONS(477), - [sym_decimal_floating_point_literal] = ACTIONS(477), - [sym_hex_floating_point_literal] = ACTIONS(479), - [sym_true] = ACTIONS(479), - [sym_false] = ACTIONS(479), - [sym_character_literal] = ACTIONS(477), - [sym_string_literal] = ACTIONS(479), - [sym_text_block] = ACTIONS(477), - [sym_null_literal] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [anon_sym_new] = ACTIONS(479), - [anon_sym_class] = ACTIONS(479), - [anon_sym_switch] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_case] = ACTIONS(479), - [anon_sym_default] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_assert] = ACTIONS(479), - [anon_sym_do] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_return] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_synchronized] = ACTIONS(479), - [anon_sym_throw] = ACTIONS(479), - [anon_sym_try] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_AT] = ACTIONS(479), - [anon_sym_open] = ACTIONS(479), - [anon_sym_module] = ACTIONS(479), - [anon_sym_static] = ACTIONS(479), - [anon_sym_package] = ACTIONS(479), - [anon_sym_import] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(479), - [anon_sym_public] = ACTIONS(479), - [anon_sym_protected] = ACTIONS(479), - [anon_sym_private] = ACTIONS(479), - [anon_sym_abstract] = ACTIONS(479), - [anon_sym_final] = ACTIONS(479), - [anon_sym_strictfp] = ACTIONS(479), - [anon_sym_native] = ACTIONS(479), - [anon_sym_transient] = ACTIONS(479), - [anon_sym_volatile] = ACTIONS(479), - [anon_sym_sealed] = ACTIONS(479), - [anon_sym_non_DASHsealed] = ACTIONS(477), - [anon_sym_record] = ACTIONS(479), - [anon_sym_ATinterface] = ACTIONS(477), - [anon_sym_interface] = ACTIONS(479), - [anon_sym_byte] = ACTIONS(479), - [anon_sym_short] = ACTIONS(479), - [anon_sym_int] = ACTIONS(479), - [anon_sym_long] = ACTIONS(479), - [anon_sym_char] = ACTIONS(479), - [anon_sym_float] = ACTIONS(479), - [anon_sym_double] = ACTIONS(479), - [sym_boolean_type] = ACTIONS(479), - [sym_void_type] = ACTIONS(479), - [sym_this] = ACTIONS(479), - [sym_super] = ACTIONS(479), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [sym_decimal_integer_literal] = ACTIONS(470), + [sym_hex_integer_literal] = ACTIONS(470), + [sym_octal_integer_literal] = ACTIONS(468), + [sym_binary_integer_literal] = ACTIONS(468), + [sym_decimal_floating_point_literal] = ACTIONS(468), + [sym_hex_floating_point_literal] = ACTIONS(470), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_character_literal] = ACTIONS(468), + [sym_string_literal] = ACTIONS(470), + [sym_text_block] = ACTIONS(468), + [sym_null_literal] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_PLUS_PLUS] = ACTIONS(468), + [anon_sym_DASH_DASH] = ACTIONS(468), + [anon_sym_new] = ACTIONS(470), + [anon_sym_class] = ACTIONS(470), + [anon_sym_switch] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_case] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_assert] = ACTIONS(470), + [anon_sym_do] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_synchronized] = ACTIONS(470), + [anon_sym_throw] = ACTIONS(470), + [anon_sym_try] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_open] = ACTIONS(470), + [anon_sym_module] = ACTIONS(470), + [anon_sym_static] = ACTIONS(470), + [anon_sym_package] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_enum] = ACTIONS(470), + [anon_sym_public] = ACTIONS(470), + [anon_sym_protected] = ACTIONS(470), + [anon_sym_private] = ACTIONS(470), + [anon_sym_abstract] = ACTIONS(470), + [anon_sym_final] = ACTIONS(470), + [anon_sym_strictfp] = ACTIONS(470), + [anon_sym_native] = ACTIONS(470), + [anon_sym_transient] = ACTIONS(470), + [anon_sym_volatile] = ACTIONS(470), + [anon_sym_sealed] = ACTIONS(470), + [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_record] = ACTIONS(470), + [anon_sym_ATinterface] = ACTIONS(468), + [anon_sym_interface] = ACTIONS(470), + [anon_sym_byte] = ACTIONS(470), + [anon_sym_short] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_long] = ACTIONS(470), + [anon_sym_char] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_double] = ACTIONS(470), + [sym_boolean_type] = ACTIONS(470), + [sym_void_type] = ACTIONS(470), + [sym_this] = ACTIONS(470), + [sym_super] = ACTIONS(470), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [106] = { - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [sym_decimal_integer_literal] = ACTIONS(483), - [sym_hex_integer_literal] = ACTIONS(483), - [sym_octal_integer_literal] = ACTIONS(481), - [sym_binary_integer_literal] = ACTIONS(481), - [sym_decimal_floating_point_literal] = ACTIONS(481), - [sym_hex_floating_point_literal] = ACTIONS(483), - [sym_true] = ACTIONS(483), - [sym_false] = ACTIONS(483), - [sym_character_literal] = ACTIONS(481), - [sym_string_literal] = ACTIONS(483), - [sym_text_block] = ACTIONS(481), - [sym_null_literal] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_PLUS_PLUS] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(481), - [anon_sym_new] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_case] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_assert] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_synchronized] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_try] = ACTIONS(483), - [anon_sym_if] = ACTIONS(483), - [anon_sym_else] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_open] = ACTIONS(483), - [anon_sym_module] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_package] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_protected] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_strictfp] = ACTIONS(483), - [anon_sym_native] = ACTIONS(483), - [anon_sym_transient] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_sealed] = ACTIONS(483), - [anon_sym_non_DASHsealed] = ACTIONS(481), - [anon_sym_record] = ACTIONS(483), - [anon_sym_ATinterface] = ACTIONS(481), - [anon_sym_interface] = ACTIONS(483), - [anon_sym_byte] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [anon_sym_int] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_char] = ACTIONS(483), - [anon_sym_float] = ACTIONS(483), - [anon_sym_double] = ACTIONS(483), - [sym_boolean_type] = ACTIONS(483), - [sym_void_type] = ACTIONS(483), - [sym_this] = ACTIONS(483), - [sym_super] = ACTIONS(483), + [ts_builtin_sym_end] = ACTIONS(472), + [sym_identifier] = ACTIONS(474), + [sym_decimal_integer_literal] = ACTIONS(474), + [sym_hex_integer_literal] = ACTIONS(474), + [sym_octal_integer_literal] = ACTIONS(472), + [sym_binary_integer_literal] = ACTIONS(472), + [sym_decimal_floating_point_literal] = ACTIONS(472), + [sym_hex_floating_point_literal] = ACTIONS(474), + [sym_true] = ACTIONS(474), + [sym_false] = ACTIONS(474), + [sym_character_literal] = ACTIONS(472), + [sym_string_literal] = ACTIONS(474), + [sym_text_block] = ACTIONS(472), + [sym_null_literal] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(472), + [anon_sym_DASH_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(474), + [anon_sym_class] = ACTIONS(474), + [anon_sym_switch] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_case] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_assert] = ACTIONS(474), + [anon_sym_do] = ACTIONS(474), + [anon_sym_while] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_return] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(474), + [anon_sym_synchronized] = ACTIONS(474), + [anon_sym_throw] = ACTIONS(474), + [anon_sym_try] = ACTIONS(474), + [anon_sym_if] = ACTIONS(474), + [anon_sym_else] = ACTIONS(474), + [anon_sym_for] = ACTIONS(474), + [anon_sym_AT] = ACTIONS(474), + [anon_sym_open] = ACTIONS(474), + [anon_sym_module] = ACTIONS(474), + [anon_sym_static] = ACTIONS(474), + [anon_sym_package] = ACTIONS(474), + [anon_sym_import] = ACTIONS(474), + [anon_sym_enum] = ACTIONS(474), + [anon_sym_public] = ACTIONS(474), + [anon_sym_protected] = ACTIONS(474), + [anon_sym_private] = ACTIONS(474), + [anon_sym_abstract] = ACTIONS(474), + [anon_sym_final] = ACTIONS(474), + [anon_sym_strictfp] = ACTIONS(474), + [anon_sym_native] = ACTIONS(474), + [anon_sym_transient] = ACTIONS(474), + [anon_sym_volatile] = ACTIONS(474), + [anon_sym_sealed] = ACTIONS(474), + [anon_sym_non_DASHsealed] = ACTIONS(472), + [anon_sym_record] = ACTIONS(474), + [anon_sym_ATinterface] = ACTIONS(472), + [anon_sym_interface] = ACTIONS(474), + [anon_sym_byte] = ACTIONS(474), + [anon_sym_short] = ACTIONS(474), + [anon_sym_int] = ACTIONS(474), + [anon_sym_long] = ACTIONS(474), + [anon_sym_char] = ACTIONS(474), + [anon_sym_float] = ACTIONS(474), + [anon_sym_double] = ACTIONS(474), + [sym_boolean_type] = ACTIONS(474), + [sym_void_type] = ACTIONS(474), + [sym_this] = ACTIONS(474), + [sym_super] = ACTIONS(474), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [107] = { - [ts_builtin_sym_end] = ACTIONS(485), - [sym_identifier] = ACTIONS(487), - [sym_decimal_integer_literal] = ACTIONS(487), - [sym_hex_integer_literal] = ACTIONS(487), - [sym_octal_integer_literal] = ACTIONS(485), - [sym_binary_integer_literal] = ACTIONS(485), - [sym_decimal_floating_point_literal] = ACTIONS(485), - [sym_hex_floating_point_literal] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_character_literal] = ACTIONS(485), - [sym_string_literal] = ACTIONS(487), - [sym_text_block] = ACTIONS(485), - [sym_null_literal] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_new] = ACTIONS(487), - [anon_sym_class] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_case] = ACTIONS(487), - [anon_sym_default] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_assert] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(487), - [anon_sym_synchronized] = ACTIONS(487), - [anon_sym_throw] = ACTIONS(487), - [anon_sym_try] = ACTIONS(487), - [anon_sym_catch] = ACTIONS(487), - [anon_sym_finally] = ACTIONS(487), - [anon_sym_if] = ACTIONS(487), - [anon_sym_else] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(487), - [anon_sym_open] = ACTIONS(487), - [anon_sym_module] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_package] = ACTIONS(487), - [anon_sym_import] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [anon_sym_public] = ACTIONS(487), - [anon_sym_protected] = ACTIONS(487), - [anon_sym_private] = ACTIONS(487), - [anon_sym_abstract] = ACTIONS(487), - [anon_sym_final] = ACTIONS(487), - [anon_sym_strictfp] = ACTIONS(487), - [anon_sym_native] = ACTIONS(487), - [anon_sym_transient] = ACTIONS(487), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_sealed] = ACTIONS(487), - [anon_sym_non_DASHsealed] = ACTIONS(485), - [anon_sym_ATinterface] = ACTIONS(485), - [anon_sym_interface] = ACTIONS(487), - [anon_sym_byte] = ACTIONS(487), - [anon_sym_short] = ACTIONS(487), - [anon_sym_int] = ACTIONS(487), - [anon_sym_long] = ACTIONS(487), - [anon_sym_char] = ACTIONS(487), - [anon_sym_float] = ACTIONS(487), - [anon_sym_double] = ACTIONS(487), - [sym_boolean_type] = ACTIONS(487), - [sym_void_type] = ACTIONS(487), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(514), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(933), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(479), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(619), + [sym_marker_annotation] = STATE(619), + [sym_annotation] = STATE(619), + [sym__element_value] = STATE(964), + [sym_element_value_array_initializer] = STATE(964), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19389,2125 +19454,2281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(489), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [108] = { + [ts_builtin_sym_end] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_decimal_integer_literal] = ACTIONS(478), + [sym_hex_integer_literal] = ACTIONS(478), + [sym_octal_integer_literal] = ACTIONS(476), + [sym_binary_integer_literal] = ACTIONS(476), + [sym_decimal_floating_point_literal] = ACTIONS(476), + [sym_hex_floating_point_literal] = ACTIONS(478), + [sym_true] = ACTIONS(478), + [sym_false] = ACTIONS(478), + [sym_character_literal] = ACTIONS(476), + [sym_string_literal] = ACTIONS(478), + [sym_text_block] = ACTIONS(476), + [sym_null_literal] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(476), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(478), + [anon_sym_class] = ACTIONS(478), + [anon_sym_switch] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(478), + [anon_sym_default] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(476), + [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_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_final] = 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(476), + [anon_sym_record] = ACTIONS(478), + [anon_sym_ATinterface] = ACTIONS(476), + [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), }, [109] = { - [ts_builtin_sym_end] = ACTIONS(495), - [sym_identifier] = ACTIONS(497), - [sym_decimal_integer_literal] = ACTIONS(497), - [sym_hex_integer_literal] = ACTIONS(497), - [sym_octal_integer_literal] = ACTIONS(495), - [sym_binary_integer_literal] = ACTIONS(495), - [sym_decimal_floating_point_literal] = ACTIONS(495), - [sym_hex_floating_point_literal] = ACTIONS(497), - [sym_true] = ACTIONS(497), - [sym_false] = ACTIONS(497), - [sym_character_literal] = ACTIONS(495), - [sym_string_literal] = ACTIONS(497), - [sym_text_block] = ACTIONS(495), - [sym_null_literal] = ACTIONS(497), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_PLUS_PLUS] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(495), - [anon_sym_new] = ACTIONS(497), - [anon_sym_class] = ACTIONS(497), - [anon_sym_switch] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_case] = ACTIONS(497), - [anon_sym_default] = ACTIONS(497), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_do] = ACTIONS(497), - [anon_sym_while] = ACTIONS(497), - [anon_sym_break] = ACTIONS(497), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_return] = ACTIONS(497), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_synchronized] = ACTIONS(497), - [anon_sym_throw] = ACTIONS(497), - [anon_sym_try] = ACTIONS(497), - [anon_sym_if] = ACTIONS(497), - [anon_sym_else] = ACTIONS(497), - [anon_sym_for] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(497), - [anon_sym_open] = ACTIONS(497), - [anon_sym_module] = ACTIONS(497), - [anon_sym_static] = ACTIONS(497), - [anon_sym_package] = ACTIONS(497), - [anon_sym_import] = ACTIONS(497), - [anon_sym_enum] = ACTIONS(497), - [anon_sym_public] = ACTIONS(497), - [anon_sym_protected] = ACTIONS(497), - [anon_sym_private] = ACTIONS(497), - [anon_sym_abstract] = ACTIONS(497), - [anon_sym_final] = ACTIONS(497), - [anon_sym_strictfp] = ACTIONS(497), - [anon_sym_native] = ACTIONS(497), - [anon_sym_transient] = ACTIONS(497), - [anon_sym_volatile] = ACTIONS(497), - [anon_sym_sealed] = ACTIONS(497), - [anon_sym_non_DASHsealed] = ACTIONS(495), - [anon_sym_record] = ACTIONS(497), - [anon_sym_ATinterface] = ACTIONS(495), - [anon_sym_interface] = ACTIONS(497), - [anon_sym_byte] = ACTIONS(497), - [anon_sym_short] = ACTIONS(497), - [anon_sym_int] = ACTIONS(497), - [anon_sym_long] = ACTIONS(497), - [anon_sym_char] = ACTIONS(497), - [anon_sym_float] = ACTIONS(497), - [anon_sym_double] = ACTIONS(497), - [sym_boolean_type] = ACTIONS(497), - [sym_void_type] = ACTIONS(497), - [sym_this] = ACTIONS(497), - [sym_super] = ACTIONS(497), + [ts_builtin_sym_end] = ACTIONS(480), + [sym_identifier] = ACTIONS(482), + [sym_decimal_integer_literal] = ACTIONS(482), + [sym_hex_integer_literal] = ACTIONS(482), + [sym_octal_integer_literal] = ACTIONS(480), + [sym_binary_integer_literal] = ACTIONS(480), + [sym_decimal_floating_point_literal] = ACTIONS(480), + [sym_hex_floating_point_literal] = ACTIONS(482), + [sym_true] = ACTIONS(482), + [sym_false] = ACTIONS(482), + [sym_character_literal] = ACTIONS(480), + [sym_string_literal] = ACTIONS(482), + [sym_text_block] = ACTIONS(480), + [sym_null_literal] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [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(482), + [anon_sym_class] = ACTIONS(482), + [anon_sym_switch] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_case] = ACTIONS(482), + [anon_sym_default] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_assert] = ACTIONS(482), + [anon_sym_do] = ACTIONS(482), + [anon_sym_while] = ACTIONS(482), + [anon_sym_break] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_return] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_synchronized] = ACTIONS(482), + [anon_sym_throw] = ACTIONS(482), + [anon_sym_try] = ACTIONS(482), + [anon_sym_if] = ACTIONS(482), + [anon_sym_else] = ACTIONS(482), + [anon_sym_for] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_open] = ACTIONS(482), + [anon_sym_module] = ACTIONS(482), + [anon_sym_static] = ACTIONS(482), + [anon_sym_package] = ACTIONS(482), + [anon_sym_import] = ACTIONS(482), + [anon_sym_enum] = ACTIONS(482), + [anon_sym_public] = ACTIONS(482), + [anon_sym_protected] = ACTIONS(482), + [anon_sym_private] = ACTIONS(482), + [anon_sym_abstract] = ACTIONS(482), + [anon_sym_final] = ACTIONS(482), + [anon_sym_strictfp] = ACTIONS(482), + [anon_sym_native] = ACTIONS(482), + [anon_sym_transient] = ACTIONS(482), + [anon_sym_volatile] = ACTIONS(482), + [anon_sym_sealed] = ACTIONS(482), + [anon_sym_non_DASHsealed] = ACTIONS(480), + [anon_sym_record] = ACTIONS(482), + [anon_sym_ATinterface] = ACTIONS(480), + [anon_sym_interface] = ACTIONS(482), + [anon_sym_byte] = ACTIONS(482), + [anon_sym_short] = ACTIONS(482), + [anon_sym_int] = ACTIONS(482), + [anon_sym_long] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_float] = ACTIONS(482), + [anon_sym_double] = ACTIONS(482), + [sym_boolean_type] = ACTIONS(482), + [sym_void_type] = ACTIONS(482), + [sym_this] = ACTIONS(482), + [sym_super] = ACTIONS(482), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [110] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [sym_decimal_integer_literal] = ACTIONS(501), - [sym_hex_integer_literal] = ACTIONS(501), - [sym_octal_integer_literal] = ACTIONS(499), - [sym_binary_integer_literal] = ACTIONS(499), - [sym_decimal_floating_point_literal] = ACTIONS(499), - [sym_hex_floating_point_literal] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_character_literal] = ACTIONS(499), - [sym_string_literal] = ACTIONS(501), - [sym_text_block] = ACTIONS(499), - [sym_null_literal] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_class] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_case] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_assert] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_synchronized] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(501), - [anon_sym_open] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_static] = ACTIONS(501), - [anon_sym_package] = ACTIONS(501), - [anon_sym_import] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_abstract] = ACTIONS(501), - [anon_sym_final] = ACTIONS(501), - [anon_sym_strictfp] = ACTIONS(501), - [anon_sym_native] = ACTIONS(501), - [anon_sym_transient] = ACTIONS(501), - [anon_sym_volatile] = ACTIONS(501), - [anon_sym_sealed] = ACTIONS(501), - [anon_sym_non_DASHsealed] = ACTIONS(499), - [anon_sym_record] = ACTIONS(501), - [anon_sym_ATinterface] = ACTIONS(499), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_byte] = ACTIONS(501), - [anon_sym_short] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_long] = ACTIONS(501), - [anon_sym_char] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_double] = ACTIONS(501), - [sym_boolean_type] = ACTIONS(501), - [sym_void_type] = ACTIONS(501), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), + [ts_builtin_sym_end] = ACTIONS(484), + [sym_identifier] = ACTIONS(486), + [sym_decimal_integer_literal] = ACTIONS(486), + [sym_hex_integer_literal] = ACTIONS(486), + [sym_octal_integer_literal] = ACTIONS(484), + [sym_binary_integer_literal] = ACTIONS(484), + [sym_decimal_floating_point_literal] = ACTIONS(484), + [sym_hex_floating_point_literal] = ACTIONS(486), + [sym_true] = ACTIONS(486), + [sym_false] = ACTIONS(486), + [sym_character_literal] = ACTIONS(484), + [sym_string_literal] = ACTIONS(486), + [sym_text_block] = ACTIONS(484), + [sym_null_literal] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(484), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), + [anon_sym_new] = ACTIONS(486), + [anon_sym_class] = ACTIONS(486), + [anon_sym_switch] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_case] = ACTIONS(486), + [anon_sym_default] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_assert] = ACTIONS(486), + [anon_sym_do] = ACTIONS(486), + [anon_sym_while] = ACTIONS(486), + [anon_sym_break] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(486), + [anon_sym_return] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(486), + [anon_sym_synchronized] = ACTIONS(486), + [anon_sym_throw] = ACTIONS(486), + [anon_sym_try] = ACTIONS(486), + [anon_sym_if] = ACTIONS(486), + [anon_sym_else] = ACTIONS(486), + [anon_sym_for] = ACTIONS(486), + [anon_sym_AT] = ACTIONS(486), + [anon_sym_open] = ACTIONS(486), + [anon_sym_module] = ACTIONS(486), + [anon_sym_static] = ACTIONS(486), + [anon_sym_package] = ACTIONS(486), + [anon_sym_import] = ACTIONS(486), + [anon_sym_enum] = ACTIONS(486), + [anon_sym_public] = ACTIONS(486), + [anon_sym_protected] = ACTIONS(486), + [anon_sym_private] = ACTIONS(486), + [anon_sym_abstract] = ACTIONS(486), + [anon_sym_final] = ACTIONS(486), + [anon_sym_strictfp] = ACTIONS(486), + [anon_sym_native] = ACTIONS(486), + [anon_sym_transient] = ACTIONS(486), + [anon_sym_volatile] = ACTIONS(486), + [anon_sym_sealed] = ACTIONS(486), + [anon_sym_non_DASHsealed] = ACTIONS(484), + [anon_sym_record] = ACTIONS(486), + [anon_sym_ATinterface] = ACTIONS(484), + [anon_sym_interface] = ACTIONS(486), + [anon_sym_byte] = ACTIONS(486), + [anon_sym_short] = ACTIONS(486), + [anon_sym_int] = ACTIONS(486), + [anon_sym_long] = ACTIONS(486), + [anon_sym_char] = ACTIONS(486), + [anon_sym_float] = ACTIONS(486), + [anon_sym_double] = ACTIONS(486), + [sym_boolean_type] = ACTIONS(486), + [sym_void_type] = ACTIONS(486), + [sym_this] = ACTIONS(486), + [sym_super] = ACTIONS(486), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [111] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [sym_decimal_integer_literal] = ACTIONS(505), - [sym_hex_integer_literal] = ACTIONS(505), - [sym_octal_integer_literal] = ACTIONS(503), - [sym_binary_integer_literal] = ACTIONS(503), - [sym_decimal_floating_point_literal] = ACTIONS(503), - [sym_hex_floating_point_literal] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_character_literal] = ACTIONS(503), - [sym_string_literal] = ACTIONS(505), - [sym_text_block] = ACTIONS(503), - [sym_null_literal] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), - [anon_sym_new] = ACTIONS(505), - [anon_sym_class] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_case] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_assert] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_synchronized] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(505), - [anon_sym_open] = ACTIONS(505), - [anon_sym_module] = ACTIONS(505), - [anon_sym_static] = ACTIONS(505), - [anon_sym_package] = ACTIONS(505), - [anon_sym_import] = ACTIONS(505), - [anon_sym_enum] = ACTIONS(505), - [anon_sym_public] = ACTIONS(505), - [anon_sym_protected] = ACTIONS(505), - [anon_sym_private] = ACTIONS(505), - [anon_sym_abstract] = ACTIONS(505), - [anon_sym_final] = ACTIONS(505), - [anon_sym_strictfp] = ACTIONS(505), - [anon_sym_native] = ACTIONS(505), - [anon_sym_transient] = ACTIONS(505), - [anon_sym_volatile] = ACTIONS(505), - [anon_sym_sealed] = ACTIONS(505), - [anon_sym_non_DASHsealed] = ACTIONS(503), - [anon_sym_record] = ACTIONS(505), - [anon_sym_ATinterface] = ACTIONS(503), - [anon_sym_interface] = ACTIONS(505), - [anon_sym_byte] = ACTIONS(505), - [anon_sym_short] = ACTIONS(505), - [anon_sym_int] = ACTIONS(505), - [anon_sym_long] = ACTIONS(505), - [anon_sym_char] = ACTIONS(505), - [anon_sym_float] = ACTIONS(505), - [anon_sym_double] = ACTIONS(505), - [sym_boolean_type] = ACTIONS(505), - [sym_void_type] = ACTIONS(505), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [sym_decimal_integer_literal] = ACTIONS(490), + [sym_hex_integer_literal] = ACTIONS(490), + [sym_octal_integer_literal] = ACTIONS(488), + [sym_binary_integer_literal] = ACTIONS(488), + [sym_decimal_floating_point_literal] = ACTIONS(488), + [sym_hex_floating_point_literal] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_character_literal] = ACTIONS(488), + [sym_string_literal] = ACTIONS(490), + [sym_text_block] = ACTIONS(488), + [sym_null_literal] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_PLUS_PLUS] = ACTIONS(488), + [anon_sym_DASH_DASH] = ACTIONS(488), + [anon_sym_new] = ACTIONS(490), + [anon_sym_class] = ACTIONS(490), + [anon_sym_switch] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_case] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(488), + [anon_sym_assert] = ACTIONS(490), + [anon_sym_do] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_return] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_synchronized] = ACTIONS(490), + [anon_sym_throw] = ACTIONS(490), + [anon_sym_try] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_AT] = ACTIONS(490), + [anon_sym_open] = ACTIONS(490), + [anon_sym_module] = ACTIONS(490), + [anon_sym_static] = ACTIONS(490), + [anon_sym_package] = ACTIONS(490), + [anon_sym_import] = ACTIONS(490), + [anon_sym_enum] = ACTIONS(490), + [anon_sym_public] = ACTIONS(490), + [anon_sym_protected] = ACTIONS(490), + [anon_sym_private] = ACTIONS(490), + [anon_sym_abstract] = ACTIONS(490), + [anon_sym_final] = ACTIONS(490), + [anon_sym_strictfp] = ACTIONS(490), + [anon_sym_native] = ACTIONS(490), + [anon_sym_transient] = ACTIONS(490), + [anon_sym_volatile] = ACTIONS(490), + [anon_sym_sealed] = ACTIONS(490), + [anon_sym_non_DASHsealed] = ACTIONS(488), + [anon_sym_record] = ACTIONS(490), + [anon_sym_ATinterface] = ACTIONS(488), + [anon_sym_interface] = ACTIONS(490), + [anon_sym_byte] = ACTIONS(490), + [anon_sym_short] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_long] = ACTIONS(490), + [anon_sym_char] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_double] = ACTIONS(490), + [sym_boolean_type] = ACTIONS(490), + [sym_void_type] = ACTIONS(490), + [sym_this] = ACTIONS(490), + [sym_super] = ACTIONS(490), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [112] = { - [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(507), - [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), - [sym_string_literal] = ACTIONS(509), - [sym_text_block] = 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_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_RBRACE] = 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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [sym_decimal_integer_literal] = ACTIONS(494), + [sym_hex_integer_literal] = ACTIONS(494), + [sym_octal_integer_literal] = ACTIONS(492), + [sym_binary_integer_literal] = ACTIONS(492), + [sym_decimal_floating_point_literal] = ACTIONS(492), + [sym_hex_floating_point_literal] = ACTIONS(494), + [sym_true] = ACTIONS(494), + [sym_false] = ACTIONS(494), + [sym_character_literal] = ACTIONS(492), + [sym_string_literal] = ACTIONS(494), + [sym_text_block] = ACTIONS(492), + [sym_null_literal] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_PLUS_PLUS] = ACTIONS(492), + [anon_sym_DASH_DASH] = ACTIONS(492), + [anon_sym_new] = ACTIONS(494), + [anon_sym_class] = ACTIONS(494), + [anon_sym_switch] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_case] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_assert] = ACTIONS(494), + [anon_sym_do] = ACTIONS(494), + [anon_sym_while] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_return] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_synchronized] = ACTIONS(494), + [anon_sym_throw] = ACTIONS(494), + [anon_sym_try] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_else] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_open] = ACTIONS(494), + [anon_sym_module] = ACTIONS(494), + [anon_sym_static] = ACTIONS(494), + [anon_sym_package] = ACTIONS(494), + [anon_sym_import] = ACTIONS(494), + [anon_sym_enum] = ACTIONS(494), + [anon_sym_public] = ACTIONS(494), + [anon_sym_protected] = ACTIONS(494), + [anon_sym_private] = ACTIONS(494), + [anon_sym_abstract] = ACTIONS(494), + [anon_sym_final] = ACTIONS(494), + [anon_sym_strictfp] = ACTIONS(494), + [anon_sym_native] = ACTIONS(494), + [anon_sym_transient] = ACTIONS(494), + [anon_sym_volatile] = ACTIONS(494), + [anon_sym_sealed] = ACTIONS(494), + [anon_sym_non_DASHsealed] = ACTIONS(492), + [anon_sym_record] = ACTIONS(494), + [anon_sym_ATinterface] = ACTIONS(492), + [anon_sym_interface] = ACTIONS(494), + [anon_sym_byte] = ACTIONS(494), + [anon_sym_short] = ACTIONS(494), + [anon_sym_int] = ACTIONS(494), + [anon_sym_long] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_float] = ACTIONS(494), + [anon_sym_double] = ACTIONS(494), + [sym_boolean_type] = ACTIONS(494), + [sym_void_type] = ACTIONS(494), + [sym_this] = ACTIONS(494), + [sym_super] = ACTIONS(494), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [113] = { - [ts_builtin_sym_end] = ACTIONS(511), - [sym_identifier] = ACTIONS(513), - [sym_decimal_integer_literal] = ACTIONS(513), - [sym_hex_integer_literal] = ACTIONS(513), - [sym_octal_integer_literal] = ACTIONS(511), - [sym_binary_integer_literal] = ACTIONS(511), - [sym_decimal_floating_point_literal] = ACTIONS(511), - [sym_hex_floating_point_literal] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_character_literal] = ACTIONS(511), - [sym_string_literal] = ACTIONS(513), - [sym_text_block] = ACTIONS(511), - [sym_null_literal] = ACTIONS(513), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_class] = ACTIONS(513), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_case] = ACTIONS(513), - [anon_sym_default] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_assert] = ACTIONS(513), - [anon_sym_do] = ACTIONS(513), - [anon_sym_while] = ACTIONS(513), - [anon_sym_break] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_return] = ACTIONS(513), - [anon_sym_yield] = ACTIONS(513), - [anon_sym_synchronized] = ACTIONS(513), - [anon_sym_throw] = ACTIONS(513), - [anon_sym_try] = ACTIONS(513), - [anon_sym_if] = ACTIONS(513), - [anon_sym_else] = ACTIONS(513), - [anon_sym_for] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(513), - [anon_sym_open] = ACTIONS(513), - [anon_sym_module] = ACTIONS(513), - [anon_sym_static] = ACTIONS(513), - [anon_sym_package] = ACTIONS(513), - [anon_sym_import] = ACTIONS(513), - [anon_sym_enum] = ACTIONS(513), - [anon_sym_public] = ACTIONS(513), - [anon_sym_protected] = ACTIONS(513), - [anon_sym_private] = ACTIONS(513), - [anon_sym_abstract] = ACTIONS(513), - [anon_sym_final] = ACTIONS(513), - [anon_sym_strictfp] = ACTIONS(513), - [anon_sym_native] = ACTIONS(513), - [anon_sym_transient] = ACTIONS(513), - [anon_sym_volatile] = ACTIONS(513), - [anon_sym_sealed] = ACTIONS(513), - [anon_sym_non_DASHsealed] = ACTIONS(511), - [anon_sym_record] = ACTIONS(513), - [anon_sym_ATinterface] = ACTIONS(511), - [anon_sym_interface] = ACTIONS(513), - [anon_sym_byte] = ACTIONS(513), - [anon_sym_short] = ACTIONS(513), - [anon_sym_int] = ACTIONS(513), - [anon_sym_long] = ACTIONS(513), - [anon_sym_char] = ACTIONS(513), - [anon_sym_float] = ACTIONS(513), - [anon_sym_double] = ACTIONS(513), - [sym_boolean_type] = ACTIONS(513), - [sym_void_type] = ACTIONS(513), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [sym_decimal_integer_literal] = ACTIONS(498), + [sym_hex_integer_literal] = ACTIONS(498), + [sym_octal_integer_literal] = ACTIONS(496), + [sym_binary_integer_literal] = ACTIONS(496), + [sym_decimal_floating_point_literal] = ACTIONS(496), + [sym_hex_floating_point_literal] = ACTIONS(498), + [sym_true] = ACTIONS(498), + [sym_false] = ACTIONS(498), + [sym_character_literal] = ACTIONS(496), + [sym_string_literal] = ACTIONS(498), + [sym_text_block] = ACTIONS(496), + [sym_null_literal] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(496), + [anon_sym_DASH_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(498), + [anon_sym_class] = ACTIONS(498), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_case] = ACTIONS(498), + [anon_sym_default] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_assert] = ACTIONS(498), + [anon_sym_do] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_synchronized] = ACTIONS(498), + [anon_sym_throw] = ACTIONS(498), + [anon_sym_try] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_else] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(498), + [anon_sym_open] = ACTIONS(498), + [anon_sym_module] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_package] = ACTIONS(498), + [anon_sym_import] = ACTIONS(498), + [anon_sym_enum] = ACTIONS(498), + [anon_sym_public] = ACTIONS(498), + [anon_sym_protected] = ACTIONS(498), + [anon_sym_private] = ACTIONS(498), + [anon_sym_abstract] = ACTIONS(498), + [anon_sym_final] = ACTIONS(498), + [anon_sym_strictfp] = ACTIONS(498), + [anon_sym_native] = ACTIONS(498), + [anon_sym_transient] = ACTIONS(498), + [anon_sym_volatile] = ACTIONS(498), + [anon_sym_sealed] = ACTIONS(498), + [anon_sym_non_DASHsealed] = ACTIONS(496), + [anon_sym_record] = ACTIONS(498), + [anon_sym_ATinterface] = ACTIONS(496), + [anon_sym_interface] = ACTIONS(498), + [anon_sym_byte] = ACTIONS(498), + [anon_sym_short] = ACTIONS(498), + [anon_sym_int] = ACTIONS(498), + [anon_sym_long] = ACTIONS(498), + [anon_sym_char] = ACTIONS(498), + [anon_sym_float] = ACTIONS(498), + [anon_sym_double] = ACTIONS(498), + [sym_boolean_type] = ACTIONS(498), + [sym_void_type] = ACTIONS(498), + [sym_this] = ACTIONS(498), + [sym_super] = ACTIONS(498), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [114] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [sym_decimal_integer_literal] = ACTIONS(517), - [sym_hex_integer_literal] = ACTIONS(517), - [sym_octal_integer_literal] = ACTIONS(515), - [sym_binary_integer_literal] = ACTIONS(515), - [sym_decimal_floating_point_literal] = ACTIONS(515), - [sym_hex_floating_point_literal] = ACTIONS(517), - [sym_true] = ACTIONS(517), - [sym_false] = ACTIONS(517), - [sym_character_literal] = ACTIONS(515), - [sym_string_literal] = ACTIONS(517), - [sym_text_block] = ACTIONS(515), - [sym_null_literal] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), - [anon_sym_new] = ACTIONS(517), - [anon_sym_class] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_case] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_do] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_synchronized] = ACTIONS(517), - [anon_sym_throw] = ACTIONS(517), - [anon_sym_try] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_open] = ACTIONS(517), - [anon_sym_module] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_import] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_protected] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_strictfp] = ACTIONS(517), - [anon_sym_native] = ACTIONS(517), - [anon_sym_transient] = ACTIONS(517), - [anon_sym_volatile] = ACTIONS(517), - [anon_sym_sealed] = ACTIONS(517), - [anon_sym_non_DASHsealed] = ACTIONS(515), - [anon_sym_record] = ACTIONS(517), - [anon_sym_ATinterface] = ACTIONS(515), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_byte] = ACTIONS(517), - [anon_sym_short] = ACTIONS(517), - [anon_sym_int] = ACTIONS(517), - [anon_sym_long] = ACTIONS(517), - [anon_sym_char] = ACTIONS(517), - [anon_sym_float] = ACTIONS(517), - [anon_sym_double] = ACTIONS(517), - [sym_boolean_type] = ACTIONS(517), - [sym_void_type] = ACTIONS(517), - [sym_this] = ACTIONS(517), - [sym_super] = ACTIONS(517), + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [sym_decimal_integer_literal] = ACTIONS(502), + [sym_hex_integer_literal] = ACTIONS(502), + [sym_octal_integer_literal] = ACTIONS(500), + [sym_binary_integer_literal] = ACTIONS(500), + [sym_decimal_floating_point_literal] = ACTIONS(500), + [sym_hex_floating_point_literal] = ACTIONS(502), + [sym_true] = ACTIONS(502), + [sym_false] = ACTIONS(502), + [sym_character_literal] = ACTIONS(500), + [sym_string_literal] = ACTIONS(502), + [sym_text_block] = ACTIONS(500), + [sym_null_literal] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_new] = ACTIONS(502), + [anon_sym_class] = ACTIONS(502), + [anon_sym_switch] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_case] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_assert] = ACTIONS(502), + [anon_sym_do] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_synchronized] = ACTIONS(502), + [anon_sym_throw] = ACTIONS(502), + [anon_sym_try] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_else] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(502), + [anon_sym_open] = ACTIONS(502), + [anon_sym_module] = ACTIONS(502), + [anon_sym_static] = ACTIONS(502), + [anon_sym_package] = ACTIONS(502), + [anon_sym_import] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(502), + [anon_sym_public] = ACTIONS(502), + [anon_sym_protected] = ACTIONS(502), + [anon_sym_private] = ACTIONS(502), + [anon_sym_abstract] = ACTIONS(502), + [anon_sym_final] = ACTIONS(502), + [anon_sym_strictfp] = ACTIONS(502), + [anon_sym_native] = ACTIONS(502), + [anon_sym_transient] = ACTIONS(502), + [anon_sym_volatile] = ACTIONS(502), + [anon_sym_sealed] = ACTIONS(502), + [anon_sym_non_DASHsealed] = ACTIONS(500), + [anon_sym_record] = ACTIONS(502), + [anon_sym_ATinterface] = ACTIONS(500), + [anon_sym_interface] = ACTIONS(502), + [anon_sym_byte] = ACTIONS(502), + [anon_sym_short] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_long] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_double] = ACTIONS(502), + [sym_boolean_type] = ACTIONS(502), + [sym_void_type] = ACTIONS(502), + [sym_this] = ACTIONS(502), + [sym_super] = ACTIONS(502), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [115] = { - [ts_builtin_sym_end] = ACTIONS(519), - [sym_identifier] = ACTIONS(521), - [sym_decimal_integer_literal] = ACTIONS(521), - [sym_hex_integer_literal] = ACTIONS(521), - [sym_octal_integer_literal] = ACTIONS(519), - [sym_binary_integer_literal] = ACTIONS(519), - [sym_decimal_floating_point_literal] = ACTIONS(519), - [sym_hex_floating_point_literal] = ACTIONS(521), - [sym_true] = ACTIONS(521), - [sym_false] = ACTIONS(521), - [sym_character_literal] = ACTIONS(519), - [sym_string_literal] = ACTIONS(521), - [sym_text_block] = ACTIONS(519), - [sym_null_literal] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(519), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_new] = ACTIONS(521), - [anon_sym_class] = ACTIONS(521), - [anon_sym_switch] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_case] = ACTIONS(521), - [anon_sym_default] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_assert] = ACTIONS(521), - [anon_sym_do] = ACTIONS(521), - [anon_sym_while] = ACTIONS(521), - [anon_sym_break] = ACTIONS(521), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_return] = ACTIONS(521), - [anon_sym_yield] = ACTIONS(521), - [anon_sym_synchronized] = ACTIONS(521), - [anon_sym_throw] = ACTIONS(521), - [anon_sym_try] = ACTIONS(521), - [anon_sym_if] = ACTIONS(521), - [anon_sym_else] = ACTIONS(521), - [anon_sym_for] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(521), - [anon_sym_open] = ACTIONS(521), - [anon_sym_module] = ACTIONS(521), - [anon_sym_static] = ACTIONS(521), - [anon_sym_package] = ACTIONS(521), - [anon_sym_import] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(521), - [anon_sym_public] = ACTIONS(521), - [anon_sym_protected] = ACTIONS(521), - [anon_sym_private] = ACTIONS(521), - [anon_sym_abstract] = ACTIONS(521), - [anon_sym_final] = ACTIONS(521), - [anon_sym_strictfp] = ACTIONS(521), - [anon_sym_native] = ACTIONS(521), - [anon_sym_transient] = ACTIONS(521), - [anon_sym_volatile] = ACTIONS(521), - [anon_sym_sealed] = ACTIONS(521), - [anon_sym_non_DASHsealed] = ACTIONS(519), - [anon_sym_record] = ACTIONS(521), - [anon_sym_ATinterface] = ACTIONS(519), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_byte] = ACTIONS(521), - [anon_sym_short] = ACTIONS(521), - [anon_sym_int] = ACTIONS(521), - [anon_sym_long] = ACTIONS(521), - [anon_sym_char] = ACTIONS(521), - [anon_sym_float] = ACTIONS(521), - [anon_sym_double] = ACTIONS(521), - [sym_boolean_type] = ACTIONS(521), - [sym_void_type] = ACTIONS(521), - [sym_this] = ACTIONS(521), - [sym_super] = ACTIONS(521), + [ts_builtin_sym_end] = ACTIONS(504), + [sym_identifier] = ACTIONS(506), + [sym_decimal_integer_literal] = ACTIONS(506), + [sym_hex_integer_literal] = ACTIONS(506), + [sym_octal_integer_literal] = ACTIONS(504), + [sym_binary_integer_literal] = ACTIONS(504), + [sym_decimal_floating_point_literal] = ACTIONS(504), + [sym_hex_floating_point_literal] = ACTIONS(506), + [sym_true] = ACTIONS(506), + [sym_false] = ACTIONS(506), + [sym_character_literal] = ACTIONS(504), + [sym_string_literal] = ACTIONS(506), + [sym_text_block] = ACTIONS(504), + [sym_null_literal] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_class] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_case] = ACTIONS(506), + [anon_sym_default] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(504), + [anon_sym_assert] = ACTIONS(506), + [anon_sym_do] = ACTIONS(506), + [anon_sym_while] = ACTIONS(506), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [anon_sym_return] = ACTIONS(506), + [anon_sym_yield] = ACTIONS(506), + [anon_sym_synchronized] = ACTIONS(506), + [anon_sym_throw] = ACTIONS(506), + [anon_sym_try] = ACTIONS(506), + [anon_sym_if] = ACTIONS(506), + [anon_sym_else] = ACTIONS(506), + [anon_sym_for] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(506), + [anon_sym_open] = ACTIONS(506), + [anon_sym_module] = ACTIONS(506), + [anon_sym_static] = ACTIONS(506), + [anon_sym_package] = ACTIONS(506), + [anon_sym_import] = ACTIONS(506), + [anon_sym_enum] = ACTIONS(506), + [anon_sym_public] = ACTIONS(506), + [anon_sym_protected] = ACTIONS(506), + [anon_sym_private] = ACTIONS(506), + [anon_sym_abstract] = ACTIONS(506), + [anon_sym_final] = ACTIONS(506), + [anon_sym_strictfp] = ACTIONS(506), + [anon_sym_native] = ACTIONS(506), + [anon_sym_transient] = ACTIONS(506), + [anon_sym_volatile] = ACTIONS(506), + [anon_sym_sealed] = ACTIONS(506), + [anon_sym_non_DASHsealed] = ACTIONS(504), + [anon_sym_record] = ACTIONS(506), + [anon_sym_ATinterface] = ACTIONS(504), + [anon_sym_interface] = ACTIONS(506), + [anon_sym_byte] = ACTIONS(506), + [anon_sym_short] = ACTIONS(506), + [anon_sym_int] = ACTIONS(506), + [anon_sym_long] = ACTIONS(506), + [anon_sym_char] = ACTIONS(506), + [anon_sym_float] = ACTIONS(506), + [anon_sym_double] = ACTIONS(506), + [sym_boolean_type] = ACTIONS(506), + [sym_void_type] = ACTIONS(506), + [sym_this] = ACTIONS(506), + [sym_super] = ACTIONS(506), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [116] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [sym_decimal_integer_literal] = ACTIONS(525), - [sym_hex_integer_literal] = ACTIONS(525), - [sym_octal_integer_literal] = ACTIONS(523), - [sym_binary_integer_literal] = ACTIONS(523), - [sym_decimal_floating_point_literal] = ACTIONS(523), - [sym_hex_floating_point_literal] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_character_literal] = ACTIONS(523), - [sym_string_literal] = ACTIONS(525), - [sym_text_block] = ACTIONS(523), - [sym_null_literal] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [anon_sym_new] = ACTIONS(525), - [anon_sym_class] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_case] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_synchronized] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(525), - [anon_sym_open] = ACTIONS(525), - [anon_sym_module] = ACTIONS(525), - [anon_sym_static] = ACTIONS(525), - [anon_sym_package] = ACTIONS(525), - [anon_sym_import] = ACTIONS(525), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_public] = ACTIONS(525), - [anon_sym_protected] = ACTIONS(525), - [anon_sym_private] = ACTIONS(525), - [anon_sym_abstract] = ACTIONS(525), - [anon_sym_final] = ACTIONS(525), - [anon_sym_strictfp] = ACTIONS(525), - [anon_sym_native] = ACTIONS(525), - [anon_sym_transient] = ACTIONS(525), - [anon_sym_volatile] = ACTIONS(525), - [anon_sym_sealed] = ACTIONS(525), - [anon_sym_non_DASHsealed] = ACTIONS(523), - [anon_sym_record] = ACTIONS(525), - [anon_sym_ATinterface] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(525), - [anon_sym_byte] = ACTIONS(525), - [anon_sym_short] = ACTIONS(525), - [anon_sym_int] = ACTIONS(525), - [anon_sym_long] = ACTIONS(525), - [anon_sym_char] = ACTIONS(525), - [anon_sym_float] = ACTIONS(525), - [anon_sym_double] = ACTIONS(525), - [sym_boolean_type] = ACTIONS(525), - [sym_void_type] = ACTIONS(525), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), + [ts_builtin_sym_end] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [sym_decimal_integer_literal] = ACTIONS(510), + [sym_hex_integer_literal] = ACTIONS(510), + [sym_octal_integer_literal] = ACTIONS(508), + [sym_binary_integer_literal] = ACTIONS(508), + [sym_decimal_floating_point_literal] = ACTIONS(508), + [sym_hex_floating_point_literal] = ACTIONS(510), + [sym_true] = ACTIONS(510), + [sym_false] = ACTIONS(510), + [sym_character_literal] = ACTIONS(508), + [sym_string_literal] = ACTIONS(510), + [sym_text_block] = ACTIONS(508), + [sym_null_literal] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_PLUS_PLUS] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(508), + [anon_sym_new] = ACTIONS(510), + [anon_sym_class] = ACTIONS(510), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_case] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_assert] = ACTIONS(510), + [anon_sym_do] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_synchronized] = ACTIONS(510), + [anon_sym_throw] = ACTIONS(510), + [anon_sym_try] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_else] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [anon_sym_AT] = ACTIONS(510), + [anon_sym_open] = ACTIONS(510), + [anon_sym_module] = ACTIONS(510), + [anon_sym_static] = ACTIONS(510), + [anon_sym_package] = ACTIONS(510), + [anon_sym_import] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_public] = ACTIONS(510), + [anon_sym_protected] = ACTIONS(510), + [anon_sym_private] = ACTIONS(510), + [anon_sym_abstract] = ACTIONS(510), + [anon_sym_final] = ACTIONS(510), + [anon_sym_strictfp] = ACTIONS(510), + [anon_sym_native] = ACTIONS(510), + [anon_sym_transient] = ACTIONS(510), + [anon_sym_volatile] = ACTIONS(510), + [anon_sym_sealed] = ACTIONS(510), + [anon_sym_non_DASHsealed] = ACTIONS(508), + [anon_sym_record] = ACTIONS(510), + [anon_sym_ATinterface] = ACTIONS(508), + [anon_sym_interface] = ACTIONS(510), + [anon_sym_byte] = ACTIONS(510), + [anon_sym_short] = ACTIONS(510), + [anon_sym_int] = ACTIONS(510), + [anon_sym_long] = ACTIONS(510), + [anon_sym_char] = ACTIONS(510), + [anon_sym_float] = ACTIONS(510), + [anon_sym_double] = ACTIONS(510), + [sym_boolean_type] = ACTIONS(510), + [sym_void_type] = ACTIONS(510), + [sym_this] = ACTIONS(510), + [sym_super] = ACTIONS(510), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(527), - [sym_identifier] = ACTIONS(529), - [sym_decimal_integer_literal] = ACTIONS(529), - [sym_hex_integer_literal] = ACTIONS(529), - [sym_octal_integer_literal] = ACTIONS(527), - [sym_binary_integer_literal] = ACTIONS(527), - [sym_decimal_floating_point_literal] = ACTIONS(527), - [sym_hex_floating_point_literal] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [sym_character_literal] = ACTIONS(527), - [sym_string_literal] = ACTIONS(529), - [sym_text_block] = ACTIONS(527), - [sym_null_literal] = ACTIONS(529), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_PLUS_PLUS] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(527), - [anon_sym_new] = ACTIONS(529), - [anon_sym_class] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_default] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_yield] = ACTIONS(529), - [anon_sym_synchronized] = ACTIONS(529), - [anon_sym_throw] = ACTIONS(529), - [anon_sym_try] = ACTIONS(529), - [anon_sym_if] = ACTIONS(529), - [anon_sym_else] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_open] = ACTIONS(529), - [anon_sym_module] = ACTIONS(529), - [anon_sym_static] = ACTIONS(529), - [anon_sym_package] = ACTIONS(529), - [anon_sym_import] = ACTIONS(529), - [anon_sym_enum] = ACTIONS(529), - [anon_sym_public] = ACTIONS(529), - [anon_sym_protected] = ACTIONS(529), - [anon_sym_private] = ACTIONS(529), - [anon_sym_abstract] = ACTIONS(529), - [anon_sym_final] = ACTIONS(529), - [anon_sym_strictfp] = ACTIONS(529), - [anon_sym_native] = ACTIONS(529), - [anon_sym_transient] = ACTIONS(529), - [anon_sym_volatile] = ACTIONS(529), - [anon_sym_sealed] = ACTIONS(529), - [anon_sym_non_DASHsealed] = ACTIONS(527), - [anon_sym_record] = ACTIONS(529), - [anon_sym_ATinterface] = ACTIONS(527), - [anon_sym_interface] = ACTIONS(529), - [anon_sym_byte] = ACTIONS(529), - [anon_sym_short] = ACTIONS(529), - [anon_sym_int] = ACTIONS(529), - [anon_sym_long] = ACTIONS(529), - [anon_sym_char] = ACTIONS(529), - [anon_sym_float] = ACTIONS(529), - [anon_sym_double] = ACTIONS(529), - [sym_boolean_type] = ACTIONS(529), - [sym_void_type] = ACTIONS(529), - [sym_this] = ACTIONS(529), - [sym_super] = ACTIONS(529), + [ts_builtin_sym_end] = ACTIONS(512), + [sym_identifier] = ACTIONS(514), + [sym_decimal_integer_literal] = ACTIONS(514), + [sym_hex_integer_literal] = ACTIONS(514), + [sym_octal_integer_literal] = ACTIONS(512), + [sym_binary_integer_literal] = ACTIONS(512), + [sym_decimal_floating_point_literal] = ACTIONS(512), + [sym_hex_floating_point_literal] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_character_literal] = ACTIONS(512), + [sym_string_literal] = ACTIONS(514), + [sym_text_block] = ACTIONS(512), + [sym_null_literal] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_PLUS_PLUS] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(512), + [anon_sym_new] = ACTIONS(514), + [anon_sym_class] = ACTIONS(514), + [anon_sym_switch] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_case] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_assert] = ACTIONS(514), + [anon_sym_do] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_yield] = ACTIONS(514), + [anon_sym_synchronized] = ACTIONS(514), + [anon_sym_throw] = ACTIONS(514), + [anon_sym_try] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_else] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [anon_sym_AT] = ACTIONS(514), + [anon_sym_open] = ACTIONS(514), + [anon_sym_module] = ACTIONS(514), + [anon_sym_static] = ACTIONS(514), + [anon_sym_package] = ACTIONS(514), + [anon_sym_import] = ACTIONS(514), + [anon_sym_enum] = ACTIONS(514), + [anon_sym_public] = ACTIONS(514), + [anon_sym_protected] = ACTIONS(514), + [anon_sym_private] = ACTIONS(514), + [anon_sym_abstract] = ACTIONS(514), + [anon_sym_final] = ACTIONS(514), + [anon_sym_strictfp] = ACTIONS(514), + [anon_sym_native] = ACTIONS(514), + [anon_sym_transient] = ACTIONS(514), + [anon_sym_volatile] = ACTIONS(514), + [anon_sym_sealed] = ACTIONS(514), + [anon_sym_non_DASHsealed] = ACTIONS(512), + [anon_sym_record] = ACTIONS(514), + [anon_sym_ATinterface] = ACTIONS(512), + [anon_sym_interface] = ACTIONS(514), + [anon_sym_byte] = ACTIONS(514), + [anon_sym_short] = ACTIONS(514), + [anon_sym_int] = ACTIONS(514), + [anon_sym_long] = ACTIONS(514), + [anon_sym_char] = ACTIONS(514), + [anon_sym_float] = ACTIONS(514), + [anon_sym_double] = ACTIONS(514), + [sym_boolean_type] = ACTIONS(514), + [sym_void_type] = ACTIONS(514), + [sym_this] = ACTIONS(514), + [sym_super] = ACTIONS(514), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [118] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(516), + [sym_identifier] = ACTIONS(518), + [sym_decimal_integer_literal] = ACTIONS(518), + [sym_hex_integer_literal] = ACTIONS(518), + [sym_octal_integer_literal] = ACTIONS(516), + [sym_binary_integer_literal] = ACTIONS(516), + [sym_decimal_floating_point_literal] = ACTIONS(516), + [sym_hex_floating_point_literal] = ACTIONS(518), + [sym_true] = ACTIONS(518), + [sym_false] = ACTIONS(518), + [sym_character_literal] = ACTIONS(516), + [sym_string_literal] = ACTIONS(518), + [sym_text_block] = ACTIONS(516), + [sym_null_literal] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_DASH_DASH] = ACTIONS(516), + [anon_sym_new] = ACTIONS(518), + [anon_sym_class] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_case] = ACTIONS(518), + [anon_sym_default] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_assert] = ACTIONS(518), + [anon_sym_do] = ACTIONS(518), + [anon_sym_while] = ACTIONS(518), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [anon_sym_return] = ACTIONS(518), + [anon_sym_yield] = ACTIONS(518), + [anon_sym_synchronized] = ACTIONS(518), + [anon_sym_throw] = ACTIONS(518), + [anon_sym_try] = ACTIONS(518), + [anon_sym_if] = ACTIONS(518), + [anon_sym_else] = ACTIONS(518), + [anon_sym_for] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(518), + [anon_sym_open] = ACTIONS(518), + [anon_sym_module] = ACTIONS(518), + [anon_sym_static] = ACTIONS(518), + [anon_sym_package] = ACTIONS(518), + [anon_sym_import] = ACTIONS(518), + [anon_sym_enum] = ACTIONS(518), + [anon_sym_public] = ACTIONS(518), + [anon_sym_protected] = ACTIONS(518), + [anon_sym_private] = ACTIONS(518), + [anon_sym_abstract] = ACTIONS(518), + [anon_sym_final] = ACTIONS(518), + [anon_sym_strictfp] = ACTIONS(518), + [anon_sym_native] = ACTIONS(518), + [anon_sym_transient] = ACTIONS(518), + [anon_sym_volatile] = ACTIONS(518), + [anon_sym_sealed] = ACTIONS(518), + [anon_sym_non_DASHsealed] = ACTIONS(516), + [anon_sym_record] = ACTIONS(518), + [anon_sym_ATinterface] = ACTIONS(516), + [anon_sym_interface] = ACTIONS(518), + [anon_sym_byte] = ACTIONS(518), + [anon_sym_short] = ACTIONS(518), + [anon_sym_int] = ACTIONS(518), + [anon_sym_long] = ACTIONS(518), + [anon_sym_char] = ACTIONS(518), + [anon_sym_float] = ACTIONS(518), + [anon_sym_double] = ACTIONS(518), + [sym_boolean_type] = ACTIONS(518), + [sym_void_type] = ACTIONS(518), + [sym_this] = ACTIONS(518), + [sym_super] = ACTIONS(518), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [119] = { - [ts_builtin_sym_end] = ACTIONS(533), - [sym_identifier] = ACTIONS(535), - [sym_decimal_integer_literal] = ACTIONS(535), - [sym_hex_integer_literal] = ACTIONS(535), - [sym_octal_integer_literal] = ACTIONS(533), - [sym_binary_integer_literal] = ACTIONS(533), - [sym_decimal_floating_point_literal] = ACTIONS(533), - [sym_hex_floating_point_literal] = ACTIONS(535), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_character_literal] = ACTIONS(533), - [sym_string_literal] = ACTIONS(535), - [sym_text_block] = ACTIONS(533), - [sym_null_literal] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(533), - [anon_sym_DASH_DASH] = ACTIONS(533), - [anon_sym_new] = ACTIONS(535), - [anon_sym_class] = ACTIONS(535), - [anon_sym_switch] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_case] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_assert] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_yield] = ACTIONS(535), - [anon_sym_synchronized] = ACTIONS(535), - [anon_sym_throw] = ACTIONS(535), - [anon_sym_try] = ACTIONS(535), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_open] = ACTIONS(535), - [anon_sym_module] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_package] = ACTIONS(535), - [anon_sym_import] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [anon_sym_public] = ACTIONS(535), - [anon_sym_protected] = ACTIONS(535), - [anon_sym_private] = ACTIONS(535), - [anon_sym_abstract] = ACTIONS(535), - [anon_sym_final] = ACTIONS(535), - [anon_sym_strictfp] = ACTIONS(535), - [anon_sym_native] = ACTIONS(535), - [anon_sym_transient] = ACTIONS(535), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_sealed] = ACTIONS(535), - [anon_sym_non_DASHsealed] = ACTIONS(533), - [anon_sym_record] = ACTIONS(535), - [anon_sym_ATinterface] = ACTIONS(533), - [anon_sym_interface] = ACTIONS(535), - [anon_sym_byte] = ACTIONS(535), - [anon_sym_short] = ACTIONS(535), - [anon_sym_int] = ACTIONS(535), - [anon_sym_long] = ACTIONS(535), - [anon_sym_char] = ACTIONS(535), - [anon_sym_float] = ACTIONS(535), - [anon_sym_double] = ACTIONS(535), - [sym_boolean_type] = ACTIONS(535), - [sym_void_type] = ACTIONS(535), - [sym_this] = ACTIONS(535), - [sym_super] = ACTIONS(535), + [ts_builtin_sym_end] = ACTIONS(520), + [sym_identifier] = ACTIONS(522), + [sym_decimal_integer_literal] = ACTIONS(522), + [sym_hex_integer_literal] = ACTIONS(522), + [sym_octal_integer_literal] = ACTIONS(520), + [sym_binary_integer_literal] = ACTIONS(520), + [sym_decimal_floating_point_literal] = ACTIONS(520), + [sym_hex_floating_point_literal] = ACTIONS(522), + [sym_true] = ACTIONS(522), + [sym_false] = ACTIONS(522), + [sym_character_literal] = ACTIONS(520), + [sym_string_literal] = ACTIONS(522), + [sym_text_block] = ACTIONS(520), + [sym_null_literal] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_PLUS_PLUS] = ACTIONS(520), + [anon_sym_DASH_DASH] = ACTIONS(520), + [anon_sym_new] = ACTIONS(522), + [anon_sym_class] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_case] = ACTIONS(522), + [anon_sym_default] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(522), + [anon_sym_do] = ACTIONS(522), + [anon_sym_while] = ACTIONS(522), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_return] = ACTIONS(522), + [anon_sym_yield] = ACTIONS(522), + [anon_sym_synchronized] = ACTIONS(522), + [anon_sym_throw] = ACTIONS(522), + [anon_sym_try] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_else] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(522), + [anon_sym_open] = ACTIONS(522), + [anon_sym_module] = ACTIONS(522), + [anon_sym_static] = ACTIONS(522), + [anon_sym_package] = ACTIONS(522), + [anon_sym_import] = ACTIONS(522), + [anon_sym_enum] = ACTIONS(522), + [anon_sym_public] = ACTIONS(522), + [anon_sym_protected] = ACTIONS(522), + [anon_sym_private] = ACTIONS(522), + [anon_sym_abstract] = ACTIONS(522), + [anon_sym_final] = ACTIONS(522), + [anon_sym_strictfp] = ACTIONS(522), + [anon_sym_native] = ACTIONS(522), + [anon_sym_transient] = ACTIONS(522), + [anon_sym_volatile] = ACTIONS(522), + [anon_sym_sealed] = ACTIONS(522), + [anon_sym_non_DASHsealed] = ACTIONS(520), + [anon_sym_record] = ACTIONS(522), + [anon_sym_ATinterface] = ACTIONS(520), + [anon_sym_interface] = ACTIONS(522), + [anon_sym_byte] = ACTIONS(522), + [anon_sym_short] = ACTIONS(522), + [anon_sym_int] = ACTIONS(522), + [anon_sym_long] = ACTIONS(522), + [anon_sym_char] = ACTIONS(522), + [anon_sym_float] = ACTIONS(522), + [anon_sym_double] = ACTIONS(522), + [sym_boolean_type] = ACTIONS(522), + [sym_void_type] = ACTIONS(522), + [sym_this] = ACTIONS(522), + [sym_super] = ACTIONS(522), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [120] = { - [ts_builtin_sym_end] = ACTIONS(537), - [sym_identifier] = ACTIONS(539), - [sym_decimal_integer_literal] = ACTIONS(539), - [sym_hex_integer_literal] = ACTIONS(539), - [sym_octal_integer_literal] = ACTIONS(537), - [sym_binary_integer_literal] = ACTIONS(537), - [sym_decimal_floating_point_literal] = ACTIONS(537), - [sym_hex_floating_point_literal] = ACTIONS(539), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [sym_character_literal] = ACTIONS(537), - [sym_string_literal] = ACTIONS(539), - [sym_text_block] = ACTIONS(537), - [sym_null_literal] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_new] = ACTIONS(539), - [anon_sym_class] = ACTIONS(539), - [anon_sym_switch] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_case] = ACTIONS(539), - [anon_sym_default] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_assert] = ACTIONS(539), - [anon_sym_do] = ACTIONS(539), - [anon_sym_while] = ACTIONS(539), - [anon_sym_break] = ACTIONS(539), - [anon_sym_continue] = ACTIONS(539), - [anon_sym_return] = ACTIONS(539), - [anon_sym_yield] = ACTIONS(539), - [anon_sym_synchronized] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(539), - [anon_sym_try] = ACTIONS(539), - [anon_sym_if] = ACTIONS(539), - [anon_sym_else] = ACTIONS(539), - [anon_sym_for] = ACTIONS(539), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_open] = ACTIONS(539), - [anon_sym_module] = ACTIONS(539), - [anon_sym_static] = ACTIONS(539), - [anon_sym_package] = ACTIONS(539), - [anon_sym_import] = ACTIONS(539), - [anon_sym_enum] = ACTIONS(539), - [anon_sym_public] = ACTIONS(539), - [anon_sym_protected] = ACTIONS(539), - [anon_sym_private] = ACTIONS(539), - [anon_sym_abstract] = ACTIONS(539), - [anon_sym_final] = ACTIONS(539), - [anon_sym_strictfp] = ACTIONS(539), - [anon_sym_native] = ACTIONS(539), - [anon_sym_transient] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(539), - [anon_sym_sealed] = ACTIONS(539), - [anon_sym_non_DASHsealed] = ACTIONS(537), - [anon_sym_record] = ACTIONS(539), - [anon_sym_ATinterface] = ACTIONS(537), - [anon_sym_interface] = ACTIONS(539), - [anon_sym_byte] = ACTIONS(539), - [anon_sym_short] = ACTIONS(539), - [anon_sym_int] = ACTIONS(539), - [anon_sym_long] = ACTIONS(539), - [anon_sym_char] = ACTIONS(539), - [anon_sym_float] = ACTIONS(539), - [anon_sym_double] = ACTIONS(539), - [sym_boolean_type] = ACTIONS(539), - [sym_void_type] = ACTIONS(539), - [sym_this] = ACTIONS(539), - [sym_super] = ACTIONS(539), + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [sym_decimal_integer_literal] = ACTIONS(526), + [sym_hex_integer_literal] = ACTIONS(526), + [sym_octal_integer_literal] = ACTIONS(524), + [sym_binary_integer_literal] = ACTIONS(524), + [sym_decimal_floating_point_literal] = ACTIONS(524), + [sym_hex_floating_point_literal] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_character_literal] = ACTIONS(524), + [sym_string_literal] = ACTIONS(526), + [sym_text_block] = ACTIONS(524), + [sym_null_literal] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(524), + [anon_sym_DASH_DASH] = ACTIONS(524), + [anon_sym_new] = ACTIONS(526), + [anon_sym_class] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_case] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_do] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_synchronized] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_try] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_else] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(526), + [anon_sym_open] = ACTIONS(526), + [anon_sym_module] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_package] = ACTIONS(526), + [anon_sym_import] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_public] = ACTIONS(526), + [anon_sym_protected] = ACTIONS(526), + [anon_sym_private] = ACTIONS(526), + [anon_sym_abstract] = ACTIONS(526), + [anon_sym_final] = ACTIONS(526), + [anon_sym_strictfp] = ACTIONS(526), + [anon_sym_native] = ACTIONS(526), + [anon_sym_transient] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(526), + [anon_sym_sealed] = ACTIONS(526), + [anon_sym_non_DASHsealed] = ACTIONS(524), + [anon_sym_record] = ACTIONS(526), + [anon_sym_ATinterface] = ACTIONS(524), + [anon_sym_interface] = ACTIONS(526), + [anon_sym_byte] = ACTIONS(526), + [anon_sym_short] = ACTIONS(526), + [anon_sym_int] = ACTIONS(526), + [anon_sym_long] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_float] = ACTIONS(526), + [anon_sym_double] = ACTIONS(526), + [sym_boolean_type] = ACTIONS(526), + [sym_void_type] = ACTIONS(526), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [121] = { - [ts_builtin_sym_end] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [sym_decimal_integer_literal] = ACTIONS(543), - [sym_hex_integer_literal] = ACTIONS(543), - [sym_octal_integer_literal] = ACTIONS(541), - [sym_binary_integer_literal] = ACTIONS(541), - [sym_decimal_floating_point_literal] = ACTIONS(541), - [sym_hex_floating_point_literal] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_character_literal] = ACTIONS(541), - [sym_string_literal] = ACTIONS(543), - [sym_text_block] = ACTIONS(541), - [sym_null_literal] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_new] = ACTIONS(543), - [anon_sym_class] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_case] = ACTIONS(543), - [anon_sym_default] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_assert] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(543), - [anon_sym_synchronized] = ACTIONS(543), - [anon_sym_throw] = ACTIONS(543), - [anon_sym_try] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_AT] = ACTIONS(543), - [anon_sym_open] = ACTIONS(543), - [anon_sym_module] = ACTIONS(543), - [anon_sym_static] = ACTIONS(543), - [anon_sym_package] = ACTIONS(543), - [anon_sym_import] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [anon_sym_public] = ACTIONS(543), - [anon_sym_protected] = ACTIONS(543), - [anon_sym_private] = ACTIONS(543), - [anon_sym_abstract] = ACTIONS(543), - [anon_sym_final] = ACTIONS(543), - [anon_sym_strictfp] = ACTIONS(543), - [anon_sym_native] = ACTIONS(543), - [anon_sym_transient] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym_sealed] = ACTIONS(543), - [anon_sym_non_DASHsealed] = ACTIONS(541), - [anon_sym_record] = ACTIONS(543), - [anon_sym_ATinterface] = ACTIONS(541), - [anon_sym_interface] = ACTIONS(543), - [anon_sym_byte] = ACTIONS(543), - [anon_sym_short] = ACTIONS(543), - [anon_sym_int] = ACTIONS(543), - [anon_sym_long] = ACTIONS(543), - [anon_sym_char] = ACTIONS(543), - [anon_sym_float] = ACTIONS(543), - [anon_sym_double] = ACTIONS(543), - [sym_boolean_type] = ACTIONS(543), - [sym_void_type] = ACTIONS(543), - [sym_this] = ACTIONS(543), - [sym_super] = ACTIONS(543), + [ts_builtin_sym_end] = ACTIONS(528), + [sym_identifier] = ACTIONS(530), + [sym_decimal_integer_literal] = ACTIONS(530), + [sym_hex_integer_literal] = ACTIONS(530), + [sym_octal_integer_literal] = ACTIONS(528), + [sym_binary_integer_literal] = ACTIONS(528), + [sym_decimal_floating_point_literal] = ACTIONS(528), + [sym_hex_floating_point_literal] = ACTIONS(530), + [sym_true] = ACTIONS(530), + [sym_false] = ACTIONS(530), + [sym_character_literal] = ACTIONS(528), + [sym_string_literal] = ACTIONS(530), + [sym_text_block] = ACTIONS(528), + [sym_null_literal] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_PLUS_PLUS] = ACTIONS(528), + [anon_sym_DASH_DASH] = ACTIONS(528), + [anon_sym_new] = ACTIONS(530), + [anon_sym_class] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_case] = ACTIONS(530), + [anon_sym_default] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_assert] = ACTIONS(530), + [anon_sym_do] = ACTIONS(530), + [anon_sym_while] = ACTIONS(530), + [anon_sym_break] = ACTIONS(530), + [anon_sym_continue] = ACTIONS(530), + [anon_sym_return] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(530), + [anon_sym_synchronized] = ACTIONS(530), + [anon_sym_throw] = ACTIONS(530), + [anon_sym_try] = ACTIONS(530), + [anon_sym_if] = ACTIONS(530), + [anon_sym_else] = ACTIONS(530), + [anon_sym_for] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(530), + [anon_sym_open] = ACTIONS(530), + [anon_sym_module] = ACTIONS(530), + [anon_sym_static] = ACTIONS(530), + [anon_sym_package] = ACTIONS(530), + [anon_sym_import] = ACTIONS(530), + [anon_sym_enum] = ACTIONS(530), + [anon_sym_public] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_abstract] = ACTIONS(530), + [anon_sym_final] = ACTIONS(530), + [anon_sym_strictfp] = ACTIONS(530), + [anon_sym_native] = ACTIONS(530), + [anon_sym_transient] = ACTIONS(530), + [anon_sym_volatile] = ACTIONS(530), + [anon_sym_sealed] = ACTIONS(530), + [anon_sym_non_DASHsealed] = ACTIONS(528), + [anon_sym_record] = ACTIONS(530), + [anon_sym_ATinterface] = ACTIONS(528), + [anon_sym_interface] = ACTIONS(530), + [anon_sym_byte] = ACTIONS(530), + [anon_sym_short] = ACTIONS(530), + [anon_sym_int] = ACTIONS(530), + [anon_sym_long] = ACTIONS(530), + [anon_sym_char] = ACTIONS(530), + [anon_sym_float] = ACTIONS(530), + [anon_sym_double] = ACTIONS(530), + [sym_boolean_type] = ACTIONS(530), + [sym_void_type] = ACTIONS(530), + [sym_this] = ACTIONS(530), + [sym_super] = ACTIONS(530), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [122] = { - [ts_builtin_sym_end] = ACTIONS(545), - [sym_identifier] = ACTIONS(547), - [sym_decimal_integer_literal] = ACTIONS(547), - [sym_hex_integer_literal] = ACTIONS(547), - [sym_octal_integer_literal] = ACTIONS(545), - [sym_binary_integer_literal] = ACTIONS(545), - [sym_decimal_floating_point_literal] = ACTIONS(545), - [sym_hex_floating_point_literal] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_character_literal] = ACTIONS(545), - [sym_string_literal] = ACTIONS(547), - [sym_text_block] = ACTIONS(545), - [sym_null_literal] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_new] = ACTIONS(547), - [anon_sym_class] = ACTIONS(547), - [anon_sym_switch] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_case] = ACTIONS(547), - [anon_sym_default] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_assert] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_synchronized] = ACTIONS(547), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_try] = ACTIONS(547), - [anon_sym_if] = ACTIONS(547), - [anon_sym_else] = ACTIONS(547), - [anon_sym_for] = ACTIONS(547), - [anon_sym_AT] = ACTIONS(547), - [anon_sym_open] = ACTIONS(547), - [anon_sym_module] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_package] = ACTIONS(547), - [anon_sym_import] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [anon_sym_public] = ACTIONS(547), - [anon_sym_protected] = ACTIONS(547), - [anon_sym_private] = ACTIONS(547), - [anon_sym_abstract] = ACTIONS(547), - [anon_sym_final] = ACTIONS(547), - [anon_sym_strictfp] = ACTIONS(547), - [anon_sym_native] = ACTIONS(547), - [anon_sym_transient] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_sealed] = ACTIONS(547), - [anon_sym_non_DASHsealed] = ACTIONS(545), - [anon_sym_record] = ACTIONS(547), - [anon_sym_ATinterface] = ACTIONS(545), - [anon_sym_interface] = ACTIONS(547), - [anon_sym_byte] = ACTIONS(547), - [anon_sym_short] = ACTIONS(547), - [anon_sym_int] = ACTIONS(547), - [anon_sym_long] = ACTIONS(547), - [anon_sym_char] = ACTIONS(547), - [anon_sym_float] = ACTIONS(547), - [anon_sym_double] = ACTIONS(547), - [sym_boolean_type] = ACTIONS(547), - [sym_void_type] = ACTIONS(547), - [sym_this] = ACTIONS(547), - [sym_super] = ACTIONS(547), + [ts_builtin_sym_end] = ACTIONS(532), + [sym_identifier] = ACTIONS(534), + [sym_decimal_integer_literal] = ACTIONS(534), + [sym_hex_integer_literal] = ACTIONS(534), + [sym_octal_integer_literal] = ACTIONS(532), + [sym_binary_integer_literal] = ACTIONS(532), + [sym_decimal_floating_point_literal] = ACTIONS(532), + [sym_hex_floating_point_literal] = ACTIONS(534), + [sym_true] = ACTIONS(534), + [sym_false] = ACTIONS(534), + [sym_character_literal] = ACTIONS(532), + [sym_string_literal] = ACTIONS(534), + [sym_text_block] = ACTIONS(532), + [sym_null_literal] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_TILDE] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(532), + [anon_sym_new] = ACTIONS(534), + [anon_sym_class] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_case] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(532), + [anon_sym_assert] = ACTIONS(534), + [anon_sym_do] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [anon_sym_break] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_yield] = ACTIONS(534), + [anon_sym_synchronized] = ACTIONS(534), + [anon_sym_throw] = ACTIONS(534), + [anon_sym_try] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_else] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(534), + [anon_sym_open] = ACTIONS(534), + [anon_sym_module] = ACTIONS(534), + [anon_sym_static] = ACTIONS(534), + [anon_sym_package] = ACTIONS(534), + [anon_sym_import] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(534), + [anon_sym_public] = ACTIONS(534), + [anon_sym_protected] = ACTIONS(534), + [anon_sym_private] = ACTIONS(534), + [anon_sym_abstract] = ACTIONS(534), + [anon_sym_final] = ACTIONS(534), + [anon_sym_strictfp] = ACTIONS(534), + [anon_sym_native] = ACTIONS(534), + [anon_sym_transient] = ACTIONS(534), + [anon_sym_volatile] = ACTIONS(534), + [anon_sym_sealed] = ACTIONS(534), + [anon_sym_non_DASHsealed] = ACTIONS(532), + [anon_sym_record] = ACTIONS(534), + [anon_sym_ATinterface] = ACTIONS(532), + [anon_sym_interface] = ACTIONS(534), + [anon_sym_byte] = ACTIONS(534), + [anon_sym_short] = ACTIONS(534), + [anon_sym_int] = ACTIONS(534), + [anon_sym_long] = ACTIONS(534), + [anon_sym_char] = ACTIONS(534), + [anon_sym_float] = ACTIONS(534), + [anon_sym_double] = ACTIONS(534), + [sym_boolean_type] = ACTIONS(534), + [sym_void_type] = ACTIONS(534), + [sym_this] = ACTIONS(534), + [sym_super] = ACTIONS(534), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [123] = { - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [sym_decimal_integer_literal] = ACTIONS(551), - [sym_hex_integer_literal] = ACTIONS(551), - [sym_octal_integer_literal] = ACTIONS(549), - [sym_binary_integer_literal] = ACTIONS(549), - [sym_decimal_floating_point_literal] = ACTIONS(549), - [sym_hex_floating_point_literal] = ACTIONS(551), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_character_literal] = ACTIONS(549), - [sym_string_literal] = ACTIONS(551), - [sym_text_block] = ACTIONS(549), - [sym_null_literal] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_new] = ACTIONS(551), - [anon_sym_class] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_case] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_assert] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_synchronized] = ACTIONS(551), - [anon_sym_throw] = ACTIONS(551), - [anon_sym_try] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_open] = ACTIONS(551), - [anon_sym_module] = ACTIONS(551), - [anon_sym_static] = ACTIONS(551), - [anon_sym_package] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_public] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_abstract] = ACTIONS(551), - [anon_sym_final] = ACTIONS(551), - [anon_sym_strictfp] = ACTIONS(551), - [anon_sym_native] = ACTIONS(551), - [anon_sym_transient] = ACTIONS(551), - [anon_sym_volatile] = ACTIONS(551), - [anon_sym_sealed] = ACTIONS(551), - [anon_sym_non_DASHsealed] = ACTIONS(549), - [anon_sym_record] = ACTIONS(551), - [anon_sym_ATinterface] = ACTIONS(549), - [anon_sym_interface] = ACTIONS(551), - [anon_sym_byte] = ACTIONS(551), - [anon_sym_short] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_long] = ACTIONS(551), - [anon_sym_char] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_double] = ACTIONS(551), - [sym_boolean_type] = ACTIONS(551), - [sym_void_type] = ACTIONS(551), - [sym_this] = ACTIONS(551), - [sym_super] = ACTIONS(551), + [ts_builtin_sym_end] = ACTIONS(536), + [sym_identifier] = ACTIONS(538), + [sym_decimal_integer_literal] = ACTIONS(538), + [sym_hex_integer_literal] = ACTIONS(538), + [sym_octal_integer_literal] = ACTIONS(536), + [sym_binary_integer_literal] = ACTIONS(536), + [sym_decimal_floating_point_literal] = ACTIONS(536), + [sym_hex_floating_point_literal] = ACTIONS(538), + [sym_true] = ACTIONS(538), + [sym_false] = ACTIONS(538), + [sym_character_literal] = ACTIONS(536), + [sym_string_literal] = ACTIONS(538), + [sym_text_block] = ACTIONS(536), + [sym_null_literal] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(536), + [anon_sym_PLUS_PLUS] = ACTIONS(536), + [anon_sym_DASH_DASH] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(538), + [anon_sym_switch] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_case] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_assert] = ACTIONS(538), + [anon_sym_do] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_yield] = ACTIONS(538), + [anon_sym_synchronized] = ACTIONS(538), + [anon_sym_throw] = ACTIONS(538), + [anon_sym_try] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_else] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_open] = ACTIONS(538), + [anon_sym_module] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_package] = ACTIONS(538), + [anon_sym_import] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_public] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(538), + [anon_sym_final] = ACTIONS(538), + [anon_sym_strictfp] = ACTIONS(538), + [anon_sym_native] = ACTIONS(538), + [anon_sym_transient] = ACTIONS(538), + [anon_sym_volatile] = ACTIONS(538), + [anon_sym_sealed] = ACTIONS(538), + [anon_sym_non_DASHsealed] = ACTIONS(536), + [anon_sym_record] = ACTIONS(538), + [anon_sym_ATinterface] = ACTIONS(536), + [anon_sym_interface] = ACTIONS(538), + [anon_sym_byte] = ACTIONS(538), + [anon_sym_short] = ACTIONS(538), + [anon_sym_int] = ACTIONS(538), + [anon_sym_long] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_float] = ACTIONS(538), + [anon_sym_double] = ACTIONS(538), + [sym_boolean_type] = ACTIONS(538), + [sym_void_type] = ACTIONS(538), + [sym_this] = ACTIONS(538), + [sym_super] = ACTIONS(538), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [124] = { - [ts_builtin_sym_end] = ACTIONS(553), - [sym_identifier] = ACTIONS(555), - [sym_decimal_integer_literal] = ACTIONS(555), - [sym_hex_integer_literal] = ACTIONS(555), - [sym_octal_integer_literal] = ACTIONS(553), - [sym_binary_integer_literal] = ACTIONS(553), - [sym_decimal_floating_point_literal] = ACTIONS(553), - [sym_hex_floating_point_literal] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_character_literal] = ACTIONS(553), - [sym_string_literal] = ACTIONS(555), - [sym_text_block] = ACTIONS(553), - [sym_null_literal] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_new] = ACTIONS(555), - [anon_sym_class] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_case] = ACTIONS(555), - [anon_sym_default] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(553), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_do] = ACTIONS(555), - [anon_sym_while] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_synchronized] = ACTIONS(555), - [anon_sym_throw] = ACTIONS(555), - [anon_sym_try] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_open] = ACTIONS(555), - [anon_sym_module] = ACTIONS(555), - [anon_sym_static] = ACTIONS(555), - [anon_sym_package] = ACTIONS(555), - [anon_sym_import] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_public] = ACTIONS(555), - [anon_sym_protected] = ACTIONS(555), - [anon_sym_private] = ACTIONS(555), - [anon_sym_abstract] = ACTIONS(555), - [anon_sym_final] = ACTIONS(555), - [anon_sym_strictfp] = ACTIONS(555), - [anon_sym_native] = ACTIONS(555), - [anon_sym_transient] = ACTIONS(555), - [anon_sym_volatile] = ACTIONS(555), - [anon_sym_sealed] = ACTIONS(555), - [anon_sym_non_DASHsealed] = ACTIONS(553), - [anon_sym_record] = ACTIONS(555), - [anon_sym_ATinterface] = ACTIONS(553), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_byte] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [anon_sym_int] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_char] = ACTIONS(555), - [anon_sym_float] = ACTIONS(555), - [anon_sym_double] = ACTIONS(555), - [sym_boolean_type] = ACTIONS(555), - [sym_void_type] = ACTIONS(555), - [sym_this] = ACTIONS(555), - [sym_super] = ACTIONS(555), + [ts_builtin_sym_end] = ACTIONS(540), + [sym_identifier] = ACTIONS(542), + [sym_decimal_integer_literal] = ACTIONS(542), + [sym_hex_integer_literal] = ACTIONS(542), + [sym_octal_integer_literal] = ACTIONS(540), + [sym_binary_integer_literal] = ACTIONS(540), + [sym_decimal_floating_point_literal] = ACTIONS(540), + [sym_hex_floating_point_literal] = ACTIONS(542), + [sym_true] = ACTIONS(542), + [sym_false] = ACTIONS(542), + [sym_character_literal] = ACTIONS(540), + [sym_string_literal] = ACTIONS(542), + [sym_text_block] = ACTIONS(540), + [sym_null_literal] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(540), + [anon_sym_DASH_DASH] = ACTIONS(540), + [anon_sym_new] = ACTIONS(542), + [anon_sym_class] = ACTIONS(542), + [anon_sym_switch] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_case] = ACTIONS(542), + [anon_sym_default] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_assert] = ACTIONS(542), + [anon_sym_do] = ACTIONS(542), + [anon_sym_while] = ACTIONS(542), + [anon_sym_break] = ACTIONS(542), + [anon_sym_continue] = ACTIONS(542), + [anon_sym_return] = ACTIONS(542), + [anon_sym_yield] = ACTIONS(542), + [anon_sym_synchronized] = ACTIONS(542), + [anon_sym_throw] = ACTIONS(542), + [anon_sym_try] = ACTIONS(542), + [anon_sym_if] = ACTIONS(542), + [anon_sym_else] = ACTIONS(542), + [anon_sym_for] = ACTIONS(542), + [anon_sym_AT] = ACTIONS(542), + [anon_sym_open] = ACTIONS(542), + [anon_sym_module] = ACTIONS(542), + [anon_sym_static] = ACTIONS(542), + [anon_sym_package] = ACTIONS(542), + [anon_sym_import] = ACTIONS(542), + [anon_sym_enum] = ACTIONS(542), + [anon_sym_public] = ACTIONS(542), + [anon_sym_protected] = ACTIONS(542), + [anon_sym_private] = ACTIONS(542), + [anon_sym_abstract] = ACTIONS(542), + [anon_sym_final] = ACTIONS(542), + [anon_sym_strictfp] = ACTIONS(542), + [anon_sym_native] = ACTIONS(542), + [anon_sym_transient] = ACTIONS(542), + [anon_sym_volatile] = ACTIONS(542), + [anon_sym_sealed] = ACTIONS(542), + [anon_sym_non_DASHsealed] = ACTIONS(540), + [anon_sym_record] = ACTIONS(542), + [anon_sym_ATinterface] = ACTIONS(540), + [anon_sym_interface] = ACTIONS(542), + [anon_sym_byte] = ACTIONS(542), + [anon_sym_short] = ACTIONS(542), + [anon_sym_int] = ACTIONS(542), + [anon_sym_long] = ACTIONS(542), + [anon_sym_char] = ACTIONS(542), + [anon_sym_float] = ACTIONS(542), + [anon_sym_double] = ACTIONS(542), + [sym_boolean_type] = ACTIONS(542), + [sym_void_type] = ACTIONS(542), + [sym_this] = ACTIONS(542), + [sym_super] = ACTIONS(542), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(557), - [sym_identifier] = ACTIONS(559), - [sym_decimal_integer_literal] = ACTIONS(559), - [sym_hex_integer_literal] = ACTIONS(559), - [sym_octal_integer_literal] = ACTIONS(557), - [sym_binary_integer_literal] = ACTIONS(557), - [sym_decimal_floating_point_literal] = ACTIONS(557), - [sym_hex_floating_point_literal] = ACTIONS(559), - [sym_true] = ACTIONS(559), - [sym_false] = ACTIONS(559), - [sym_character_literal] = ACTIONS(557), - [sym_string_literal] = ACTIONS(559), - [sym_text_block] = ACTIONS(557), - [sym_null_literal] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_new] = ACTIONS(559), - [anon_sym_class] = ACTIONS(559), - [anon_sym_switch] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_assert] = ACTIONS(559), - [anon_sym_do] = ACTIONS(559), - [anon_sym_while] = ACTIONS(559), - [anon_sym_break] = ACTIONS(559), - [anon_sym_continue] = ACTIONS(559), - [anon_sym_return] = ACTIONS(559), - [anon_sym_yield] = ACTIONS(559), - [anon_sym_synchronized] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(559), - [anon_sym_try] = ACTIONS(559), - [anon_sym_if] = ACTIONS(559), - [anon_sym_else] = ACTIONS(559), - [anon_sym_for] = ACTIONS(559), - [anon_sym_AT] = ACTIONS(559), - [anon_sym_open] = ACTIONS(559), - [anon_sym_module] = ACTIONS(559), - [anon_sym_static] = ACTIONS(559), - [anon_sym_package] = ACTIONS(559), - [anon_sym_import] = ACTIONS(559), - [anon_sym_enum] = ACTIONS(559), - [anon_sym_public] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_abstract] = ACTIONS(559), - [anon_sym_final] = ACTIONS(559), - [anon_sym_strictfp] = ACTIONS(559), - [anon_sym_native] = ACTIONS(559), - [anon_sym_transient] = ACTIONS(559), - [anon_sym_volatile] = ACTIONS(559), - [anon_sym_sealed] = ACTIONS(559), - [anon_sym_non_DASHsealed] = ACTIONS(557), - [anon_sym_record] = ACTIONS(559), - [anon_sym_ATinterface] = ACTIONS(557), - [anon_sym_interface] = ACTIONS(559), - [anon_sym_byte] = ACTIONS(559), - [anon_sym_short] = ACTIONS(559), - [anon_sym_int] = ACTIONS(559), - [anon_sym_long] = ACTIONS(559), - [anon_sym_char] = ACTIONS(559), - [anon_sym_float] = ACTIONS(559), - [anon_sym_double] = ACTIONS(559), - [sym_boolean_type] = ACTIONS(559), - [sym_void_type] = ACTIONS(559), - [sym_this] = ACTIONS(559), - [sym_super] = ACTIONS(559), + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [sym_decimal_integer_literal] = ACTIONS(546), + [sym_hex_integer_literal] = ACTIONS(546), + [sym_octal_integer_literal] = ACTIONS(544), + [sym_binary_integer_literal] = ACTIONS(544), + [sym_decimal_floating_point_literal] = ACTIONS(544), + [sym_hex_floating_point_literal] = ACTIONS(546), + [sym_true] = ACTIONS(546), + [sym_false] = ACTIONS(546), + [sym_character_literal] = ACTIONS(544), + [sym_string_literal] = ACTIONS(546), + [sym_text_block] = ACTIONS(544), + [sym_null_literal] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(544), + [anon_sym_PLUS_PLUS] = ACTIONS(544), + [anon_sym_DASH_DASH] = ACTIONS(544), + [anon_sym_new] = ACTIONS(546), + [anon_sym_class] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_case] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_assert] = ACTIONS(546), + [anon_sym_do] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_synchronized] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_try] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_AT] = ACTIONS(546), + [anon_sym_open] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_package] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_final] = ACTIONS(546), + [anon_sym_strictfp] = ACTIONS(546), + [anon_sym_native] = ACTIONS(546), + [anon_sym_transient] = ACTIONS(546), + [anon_sym_volatile] = ACTIONS(546), + [anon_sym_sealed] = ACTIONS(546), + [anon_sym_non_DASHsealed] = ACTIONS(544), + [anon_sym_record] = ACTIONS(546), + [anon_sym_ATinterface] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_byte] = ACTIONS(546), + [anon_sym_short] = ACTIONS(546), + [anon_sym_int] = ACTIONS(546), + [anon_sym_long] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_float] = ACTIONS(546), + [anon_sym_double] = ACTIONS(546), + [sym_boolean_type] = ACTIONS(546), + [sym_void_type] = ACTIONS(546), + [sym_this] = ACTIONS(546), + [sym_super] = ACTIONS(546), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [sym_decimal_integer_literal] = ACTIONS(563), - [sym_hex_integer_literal] = ACTIONS(563), - [sym_octal_integer_literal] = ACTIONS(561), - [sym_binary_integer_literal] = ACTIONS(561), - [sym_decimal_floating_point_literal] = ACTIONS(561), - [sym_hex_floating_point_literal] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_character_literal] = ACTIONS(561), - [sym_string_literal] = ACTIONS(563), - [sym_text_block] = ACTIONS(561), - [sym_null_literal] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_class] = ACTIONS(563), - [anon_sym_switch] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_case] = ACTIONS(563), - [anon_sym_default] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_assert] = ACTIONS(563), - [anon_sym_do] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_synchronized] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(563), - [anon_sym_try] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym_open] = ACTIONS(563), - [anon_sym_module] = ACTIONS(563), - [anon_sym_static] = ACTIONS(563), - [anon_sym_package] = ACTIONS(563), - [anon_sym_import] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(563), - [anon_sym_public] = ACTIONS(563), - [anon_sym_protected] = ACTIONS(563), - [anon_sym_private] = ACTIONS(563), - [anon_sym_abstract] = ACTIONS(563), - [anon_sym_final] = ACTIONS(563), - [anon_sym_strictfp] = ACTIONS(563), - [anon_sym_native] = ACTIONS(563), - [anon_sym_transient] = ACTIONS(563), - [anon_sym_volatile] = ACTIONS(563), - [anon_sym_sealed] = ACTIONS(563), - [anon_sym_non_DASHsealed] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_ATinterface] = ACTIONS(561), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_byte] = ACTIONS(563), - [anon_sym_short] = ACTIONS(563), - [anon_sym_int] = ACTIONS(563), - [anon_sym_long] = ACTIONS(563), - [anon_sym_char] = ACTIONS(563), - [anon_sym_float] = ACTIONS(563), - [anon_sym_double] = ACTIONS(563), - [sym_boolean_type] = ACTIONS(563), - [sym_void_type] = ACTIONS(563), - [sym_this] = ACTIONS(563), - [sym_super] = ACTIONS(563), + [ts_builtin_sym_end] = ACTIONS(548), + [sym_identifier] = ACTIONS(550), + [sym_decimal_integer_literal] = ACTIONS(550), + [sym_hex_integer_literal] = ACTIONS(550), + [sym_octal_integer_literal] = ACTIONS(548), + [sym_binary_integer_literal] = ACTIONS(548), + [sym_decimal_floating_point_literal] = ACTIONS(548), + [sym_hex_floating_point_literal] = ACTIONS(550), + [sym_true] = ACTIONS(550), + [sym_false] = ACTIONS(550), + [sym_character_literal] = ACTIONS(548), + [sym_string_literal] = ACTIONS(550), + [sym_text_block] = ACTIONS(548), + [sym_null_literal] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_TILDE] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(548), + [anon_sym_DASH_DASH] = ACTIONS(548), + [anon_sym_new] = ACTIONS(550), + [anon_sym_class] = ACTIONS(550), + [anon_sym_switch] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_assert] = ACTIONS(550), + [anon_sym_do] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [anon_sym_break] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(550), + [anon_sym_synchronized] = ACTIONS(550), + [anon_sym_throw] = ACTIONS(550), + [anon_sym_try] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_else] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_open] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_static] = ACTIONS(550), + [anon_sym_package] = ACTIONS(550), + [anon_sym_import] = ACTIONS(550), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_abstract] = ACTIONS(550), + [anon_sym_final] = ACTIONS(550), + [anon_sym_strictfp] = ACTIONS(550), + [anon_sym_native] = ACTIONS(550), + [anon_sym_transient] = ACTIONS(550), + [anon_sym_volatile] = ACTIONS(550), + [anon_sym_sealed] = ACTIONS(550), + [anon_sym_non_DASHsealed] = ACTIONS(548), + [anon_sym_record] = ACTIONS(550), + [anon_sym_ATinterface] = ACTIONS(548), + [anon_sym_interface] = ACTIONS(550), + [anon_sym_byte] = ACTIONS(550), + [anon_sym_short] = ACTIONS(550), + [anon_sym_int] = ACTIONS(550), + [anon_sym_long] = ACTIONS(550), + [anon_sym_char] = ACTIONS(550), + [anon_sym_float] = ACTIONS(550), + [anon_sym_double] = ACTIONS(550), + [sym_boolean_type] = ACTIONS(550), + [sym_void_type] = ACTIONS(550), + [sym_this] = ACTIONS(550), + [sym_super] = ACTIONS(550), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [127] = { - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [sym_true] = ACTIONS(567), - [sym_false] = ACTIONS(567), - [sym_character_literal] = ACTIONS(565), - [sym_string_literal] = ACTIONS(567), - [sym_text_block] = ACTIONS(565), - [sym_null_literal] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [anon_sym_new] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_case] = ACTIONS(567), - [anon_sym_default] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_synchronized] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_else] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym_open] = ACTIONS(567), - [anon_sym_module] = ACTIONS(567), - [anon_sym_static] = ACTIONS(567), - [anon_sym_package] = ACTIONS(567), - [anon_sym_import] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_public] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_strictfp] = ACTIONS(567), - [anon_sym_native] = ACTIONS(567), - [anon_sym_transient] = ACTIONS(567), - [anon_sym_volatile] = ACTIONS(567), - [anon_sym_sealed] = ACTIONS(567), - [anon_sym_non_DASHsealed] = ACTIONS(565), - [anon_sym_record] = ACTIONS(567), - [anon_sym_ATinterface] = ACTIONS(565), - [anon_sym_interface] = ACTIONS(567), - [anon_sym_byte] = ACTIONS(567), - [anon_sym_short] = ACTIONS(567), - [anon_sym_int] = ACTIONS(567), - [anon_sym_long] = ACTIONS(567), - [anon_sym_char] = ACTIONS(567), - [anon_sym_float] = ACTIONS(567), - [anon_sym_double] = ACTIONS(567), - [sym_boolean_type] = ACTIONS(567), - [sym_void_type] = ACTIONS(567), - [sym_this] = ACTIONS(567), - [sym_super] = ACTIONS(567), + [ts_builtin_sym_end] = ACTIONS(552), + [sym_identifier] = ACTIONS(554), + [sym_decimal_integer_literal] = ACTIONS(554), + [sym_hex_integer_literal] = ACTIONS(554), + [sym_octal_integer_literal] = ACTIONS(552), + [sym_binary_integer_literal] = ACTIONS(552), + [sym_decimal_floating_point_literal] = ACTIONS(552), + [sym_hex_floating_point_literal] = ACTIONS(554), + [sym_true] = ACTIONS(554), + [sym_false] = ACTIONS(554), + [sym_character_literal] = ACTIONS(552), + [sym_string_literal] = ACTIONS(554), + [sym_text_block] = ACTIONS(552), + [sym_null_literal] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_PLUS_PLUS] = ACTIONS(552), + [anon_sym_DASH_DASH] = ACTIONS(552), + [anon_sym_new] = ACTIONS(554), + [anon_sym_class] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_case] = ACTIONS(554), + [anon_sym_default] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_assert] = ACTIONS(554), + [anon_sym_do] = ACTIONS(554), + [anon_sym_while] = ACTIONS(554), + [anon_sym_break] = ACTIONS(554), + [anon_sym_continue] = ACTIONS(554), + [anon_sym_return] = ACTIONS(554), + [anon_sym_yield] = ACTIONS(554), + [anon_sym_synchronized] = ACTIONS(554), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_try] = ACTIONS(554), + [anon_sym_if] = ACTIONS(554), + [anon_sym_else] = ACTIONS(554), + [anon_sym_for] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym_open] = ACTIONS(554), + [anon_sym_module] = ACTIONS(554), + [anon_sym_static] = ACTIONS(554), + [anon_sym_package] = ACTIONS(554), + [anon_sym_import] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(554), + [anon_sym_public] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_abstract] = ACTIONS(554), + [anon_sym_final] = ACTIONS(554), + [anon_sym_strictfp] = ACTIONS(554), + [anon_sym_native] = ACTIONS(554), + [anon_sym_transient] = ACTIONS(554), + [anon_sym_volatile] = ACTIONS(554), + [anon_sym_sealed] = ACTIONS(554), + [anon_sym_non_DASHsealed] = ACTIONS(552), + [anon_sym_record] = ACTIONS(554), + [anon_sym_ATinterface] = ACTIONS(552), + [anon_sym_interface] = ACTIONS(554), + [anon_sym_byte] = ACTIONS(554), + [anon_sym_short] = ACTIONS(554), + [anon_sym_int] = ACTIONS(554), + [anon_sym_long] = ACTIONS(554), + [anon_sym_char] = ACTIONS(554), + [anon_sym_float] = ACTIONS(554), + [anon_sym_double] = ACTIONS(554), + [sym_boolean_type] = ACTIONS(554), + [sym_void_type] = ACTIONS(554), + [sym_this] = ACTIONS(554), + [sym_super] = ACTIONS(554), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [128] = { - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_character_literal] = ACTIONS(569), - [sym_string_literal] = ACTIONS(571), - [sym_text_block] = ACTIONS(569), - [sym_null_literal] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(569), - [anon_sym_DASH_DASH] = ACTIONS(569), - [anon_sym_new] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(571), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_synchronized] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_else] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_open] = ACTIONS(571), - [anon_sym_module] = ACTIONS(571), - [anon_sym_static] = ACTIONS(571), - [anon_sym_package] = ACTIONS(571), - [anon_sym_import] = ACTIONS(571), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_public] = ACTIONS(571), - [anon_sym_protected] = ACTIONS(571), - [anon_sym_private] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_strictfp] = ACTIONS(571), - [anon_sym_native] = ACTIONS(571), - [anon_sym_transient] = ACTIONS(571), - [anon_sym_volatile] = ACTIONS(571), - [anon_sym_sealed] = ACTIONS(571), - [anon_sym_non_DASHsealed] = ACTIONS(569), - [anon_sym_record] = ACTIONS(571), - [anon_sym_ATinterface] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(571), - [anon_sym_byte] = ACTIONS(571), - [anon_sym_short] = ACTIONS(571), - [anon_sym_int] = ACTIONS(571), - [anon_sym_long] = ACTIONS(571), - [anon_sym_char] = ACTIONS(571), - [anon_sym_float] = ACTIONS(571), - [anon_sym_double] = ACTIONS(571), - [sym_boolean_type] = ACTIONS(571), - [sym_void_type] = ACTIONS(571), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(571), + [ts_builtin_sym_end] = ACTIONS(556), + [sym_identifier] = ACTIONS(558), + [sym_decimal_integer_literal] = ACTIONS(558), + [sym_hex_integer_literal] = ACTIONS(558), + [sym_octal_integer_literal] = ACTIONS(556), + [sym_binary_integer_literal] = ACTIONS(556), + [sym_decimal_floating_point_literal] = ACTIONS(556), + [sym_hex_floating_point_literal] = ACTIONS(558), + [sym_true] = ACTIONS(558), + [sym_false] = ACTIONS(558), + [sym_character_literal] = ACTIONS(556), + [sym_string_literal] = ACTIONS(558), + [sym_text_block] = ACTIONS(556), + [sym_null_literal] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_class] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(556), + [anon_sym_assert] = ACTIONS(558), + [anon_sym_do] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_break] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_return] = ACTIONS(558), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_synchronized] = ACTIONS(558), + [anon_sym_throw] = ACTIONS(558), + [anon_sym_try] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_else] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_open] = ACTIONS(558), + [anon_sym_module] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_package] = ACTIONS(558), + [anon_sym_import] = ACTIONS(558), + [anon_sym_enum] = ACTIONS(558), + [anon_sym_public] = ACTIONS(558), + [anon_sym_protected] = ACTIONS(558), + [anon_sym_private] = ACTIONS(558), + [anon_sym_abstract] = ACTIONS(558), + [anon_sym_final] = ACTIONS(558), + [anon_sym_strictfp] = ACTIONS(558), + [anon_sym_native] = ACTIONS(558), + [anon_sym_transient] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_sealed] = ACTIONS(558), + [anon_sym_non_DASHsealed] = ACTIONS(556), + [anon_sym_record] = ACTIONS(558), + [anon_sym_ATinterface] = ACTIONS(556), + [anon_sym_interface] = ACTIONS(558), + [anon_sym_byte] = ACTIONS(558), + [anon_sym_short] = ACTIONS(558), + [anon_sym_int] = ACTIONS(558), + [anon_sym_long] = ACTIONS(558), + [anon_sym_char] = ACTIONS(558), + [anon_sym_float] = ACTIONS(558), + [anon_sym_double] = ACTIONS(558), + [sym_boolean_type] = ACTIONS(558), + [sym_void_type] = ACTIONS(558), + [sym_this] = ACTIONS(558), + [sym_super] = ACTIONS(558), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [129] = { - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [sym_true] = ACTIONS(575), - [sym_false] = ACTIONS(575), - [sym_character_literal] = ACTIONS(573), - [sym_string_literal] = ACTIONS(575), - [sym_text_block] = ACTIONS(573), - [sym_null_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(573), - [anon_sym_new] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_case] = ACTIONS(575), - [anon_sym_default] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_synchronized] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_else] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(575), - [anon_sym_open] = ACTIONS(575), - [anon_sym_module] = ACTIONS(575), - [anon_sym_static] = ACTIONS(575), - [anon_sym_package] = ACTIONS(575), - [anon_sym_import] = ACTIONS(575), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_public] = ACTIONS(575), - [anon_sym_protected] = ACTIONS(575), - [anon_sym_private] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_strictfp] = ACTIONS(575), - [anon_sym_native] = ACTIONS(575), - [anon_sym_transient] = ACTIONS(575), - [anon_sym_volatile] = ACTIONS(575), - [anon_sym_sealed] = ACTIONS(575), - [anon_sym_non_DASHsealed] = ACTIONS(573), - [anon_sym_record] = ACTIONS(575), - [anon_sym_ATinterface] = ACTIONS(573), - [anon_sym_interface] = ACTIONS(575), - [anon_sym_byte] = ACTIONS(575), - [anon_sym_short] = ACTIONS(575), - [anon_sym_int] = ACTIONS(575), - [anon_sym_long] = ACTIONS(575), - [anon_sym_char] = ACTIONS(575), - [anon_sym_float] = ACTIONS(575), - [anon_sym_double] = ACTIONS(575), - [sym_boolean_type] = ACTIONS(575), - [sym_void_type] = ACTIONS(575), - [sym_this] = ACTIONS(575), - [sym_super] = ACTIONS(575), + [ts_builtin_sym_end] = ACTIONS(560), + [sym_identifier] = ACTIONS(562), + [sym_decimal_integer_literal] = ACTIONS(562), + [sym_hex_integer_literal] = ACTIONS(562), + [sym_octal_integer_literal] = ACTIONS(560), + [sym_binary_integer_literal] = ACTIONS(560), + [sym_decimal_floating_point_literal] = ACTIONS(560), + [sym_hex_floating_point_literal] = ACTIONS(562), + [sym_true] = ACTIONS(562), + [sym_false] = ACTIONS(562), + [sym_character_literal] = ACTIONS(560), + [sym_string_literal] = ACTIONS(562), + [sym_text_block] = ACTIONS(560), + [sym_null_literal] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(560), + [anon_sym_DASH_DASH] = ACTIONS(560), + [anon_sym_new] = ACTIONS(562), + [anon_sym_class] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_assert] = ACTIONS(562), + [anon_sym_do] = ACTIONS(562), + [anon_sym_while] = ACTIONS(562), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(562), + [anon_sym_return] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_synchronized] = ACTIONS(562), + [anon_sym_throw] = ACTIONS(562), + [anon_sym_try] = ACTIONS(562), + [anon_sym_if] = ACTIONS(562), + [anon_sym_else] = ACTIONS(562), + [anon_sym_for] = ACTIONS(562), + [anon_sym_AT] = ACTIONS(562), + [anon_sym_open] = ACTIONS(562), + [anon_sym_module] = ACTIONS(562), + [anon_sym_static] = ACTIONS(562), + [anon_sym_package] = ACTIONS(562), + [anon_sym_import] = ACTIONS(562), + [anon_sym_enum] = ACTIONS(562), + [anon_sym_public] = ACTIONS(562), + [anon_sym_protected] = ACTIONS(562), + [anon_sym_private] = ACTIONS(562), + [anon_sym_abstract] = ACTIONS(562), + [anon_sym_final] = ACTIONS(562), + [anon_sym_strictfp] = ACTIONS(562), + [anon_sym_native] = ACTIONS(562), + [anon_sym_transient] = ACTIONS(562), + [anon_sym_volatile] = ACTIONS(562), + [anon_sym_sealed] = ACTIONS(562), + [anon_sym_non_DASHsealed] = ACTIONS(560), + [anon_sym_record] = ACTIONS(562), + [anon_sym_ATinterface] = ACTIONS(560), + [anon_sym_interface] = ACTIONS(562), + [anon_sym_byte] = ACTIONS(562), + [anon_sym_short] = ACTIONS(562), + [anon_sym_int] = ACTIONS(562), + [anon_sym_long] = ACTIONS(562), + [anon_sym_char] = ACTIONS(562), + [anon_sym_float] = ACTIONS(562), + [anon_sym_double] = ACTIONS(562), + [sym_boolean_type] = ACTIONS(562), + [sym_void_type] = ACTIONS(562), + [sym_this] = ACTIONS(562), + [sym_super] = ACTIONS(562), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(577), - [sym_identifier] = ACTIONS(579), - [sym_decimal_integer_literal] = ACTIONS(579), - [sym_hex_integer_literal] = ACTIONS(579), - [sym_octal_integer_literal] = ACTIONS(577), - [sym_binary_integer_literal] = ACTIONS(577), - [sym_decimal_floating_point_literal] = ACTIONS(577), - [sym_hex_floating_point_literal] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_character_literal] = ACTIONS(577), - [sym_string_literal] = ACTIONS(579), - [sym_text_block] = ACTIONS(577), - [sym_null_literal] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_PLUS_PLUS] = ACTIONS(577), - [anon_sym_DASH_DASH] = ACTIONS(577), - [anon_sym_new] = ACTIONS(579), - [anon_sym_class] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(577), - [anon_sym_case] = ACTIONS(579), - [anon_sym_default] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(577), - [anon_sym_assert] = ACTIONS(579), - [anon_sym_do] = ACTIONS(579), - [anon_sym_while] = ACTIONS(579), - [anon_sym_break] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(579), - [anon_sym_return] = ACTIONS(579), - [anon_sym_yield] = ACTIONS(579), - [anon_sym_synchronized] = ACTIONS(579), - [anon_sym_throw] = ACTIONS(579), - [anon_sym_try] = ACTIONS(579), - [anon_sym_if] = ACTIONS(579), - [anon_sym_else] = ACTIONS(579), - [anon_sym_for] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_open] = ACTIONS(579), - [anon_sym_module] = ACTIONS(579), - [anon_sym_static] = ACTIONS(579), - [anon_sym_package] = ACTIONS(579), - [anon_sym_import] = ACTIONS(579), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_public] = ACTIONS(579), - [anon_sym_protected] = ACTIONS(579), - [anon_sym_private] = ACTIONS(579), - [anon_sym_abstract] = ACTIONS(579), - [anon_sym_final] = ACTIONS(579), - [anon_sym_strictfp] = ACTIONS(579), - [anon_sym_native] = ACTIONS(579), - [anon_sym_transient] = ACTIONS(579), - [anon_sym_volatile] = ACTIONS(579), - [anon_sym_sealed] = ACTIONS(579), - [anon_sym_non_DASHsealed] = ACTIONS(577), - [anon_sym_record] = ACTIONS(579), - [anon_sym_ATinterface] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(579), - [anon_sym_byte] = ACTIONS(579), - [anon_sym_short] = ACTIONS(579), - [anon_sym_int] = ACTIONS(579), - [anon_sym_long] = ACTIONS(579), - [anon_sym_char] = ACTIONS(579), - [anon_sym_float] = ACTIONS(579), - [anon_sym_double] = ACTIONS(579), - [sym_boolean_type] = ACTIONS(579), - [sym_void_type] = ACTIONS(579), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), + [ts_builtin_sym_end] = ACTIONS(564), + [sym_identifier] = ACTIONS(566), + [sym_decimal_integer_literal] = ACTIONS(566), + [sym_hex_integer_literal] = ACTIONS(566), + [sym_octal_integer_literal] = ACTIONS(564), + [sym_binary_integer_literal] = ACTIONS(564), + [sym_decimal_floating_point_literal] = ACTIONS(564), + [sym_hex_floating_point_literal] = ACTIONS(566), + [sym_true] = ACTIONS(566), + [sym_false] = ACTIONS(566), + [sym_character_literal] = ACTIONS(564), + [sym_string_literal] = ACTIONS(566), + [sym_text_block] = ACTIONS(564), + [sym_null_literal] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(564), + [anon_sym_DASH_DASH] = ACTIONS(564), + [anon_sym_new] = ACTIONS(566), + [anon_sym_class] = ACTIONS(566), + [anon_sym_switch] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_case] = ACTIONS(566), + [anon_sym_default] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_assert] = ACTIONS(566), + [anon_sym_do] = ACTIONS(566), + [anon_sym_while] = ACTIONS(566), + [anon_sym_break] = ACTIONS(566), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_return] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_synchronized] = ACTIONS(566), + [anon_sym_throw] = ACTIONS(566), + [anon_sym_try] = ACTIONS(566), + [anon_sym_if] = ACTIONS(566), + [anon_sym_else] = ACTIONS(566), + [anon_sym_for] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_open] = ACTIONS(566), + [anon_sym_module] = ACTIONS(566), + [anon_sym_static] = ACTIONS(566), + [anon_sym_package] = ACTIONS(566), + [anon_sym_import] = ACTIONS(566), + [anon_sym_enum] = ACTIONS(566), + [anon_sym_public] = ACTIONS(566), + [anon_sym_protected] = ACTIONS(566), + [anon_sym_private] = ACTIONS(566), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_final] = ACTIONS(566), + [anon_sym_strictfp] = ACTIONS(566), + [anon_sym_native] = ACTIONS(566), + [anon_sym_transient] = ACTIONS(566), + [anon_sym_volatile] = ACTIONS(566), + [anon_sym_sealed] = ACTIONS(566), + [anon_sym_non_DASHsealed] = ACTIONS(564), + [anon_sym_record] = ACTIONS(566), + [anon_sym_ATinterface] = ACTIONS(564), + [anon_sym_interface] = ACTIONS(566), + [anon_sym_byte] = ACTIONS(566), + [anon_sym_short] = ACTIONS(566), + [anon_sym_int] = ACTIONS(566), + [anon_sym_long] = ACTIONS(566), + [anon_sym_char] = ACTIONS(566), + [anon_sym_float] = ACTIONS(566), + [anon_sym_double] = ACTIONS(566), + [sym_boolean_type] = ACTIONS(566), + [sym_void_type] = ACTIONS(566), + [sym_this] = ACTIONS(566), + [sym_super] = ACTIONS(566), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [131] = { - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [sym_decimal_integer_literal] = ACTIONS(583), - [sym_hex_integer_literal] = ACTIONS(583), - [sym_octal_integer_literal] = ACTIONS(581), - [sym_binary_integer_literal] = ACTIONS(581), - [sym_decimal_floating_point_literal] = ACTIONS(581), - [sym_hex_floating_point_literal] = ACTIONS(583), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), - [sym_character_literal] = ACTIONS(581), - [sym_string_literal] = ACTIONS(583), - [sym_text_block] = ACTIONS(581), - [sym_null_literal] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_BANG] = ACTIONS(581), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_new] = ACTIONS(583), - [anon_sym_class] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(583), - [anon_sym_do] = ACTIONS(583), - [anon_sym_while] = ACTIONS(583), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_yield] = ACTIONS(583), - [anon_sym_synchronized] = ACTIONS(583), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_try] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_else] = ACTIONS(583), - [anon_sym_for] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(583), - [anon_sym_open] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_static] = ACTIONS(583), - [anon_sym_package] = ACTIONS(583), - [anon_sym_import] = ACTIONS(583), - [anon_sym_enum] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_abstract] = ACTIONS(583), - [anon_sym_final] = ACTIONS(583), - [anon_sym_strictfp] = ACTIONS(583), - [anon_sym_native] = ACTIONS(583), - [anon_sym_transient] = ACTIONS(583), - [anon_sym_volatile] = ACTIONS(583), - [anon_sym_sealed] = ACTIONS(583), - [anon_sym_non_DASHsealed] = ACTIONS(581), - [anon_sym_record] = ACTIONS(583), - [anon_sym_ATinterface] = ACTIONS(581), - [anon_sym_interface] = ACTIONS(583), - [anon_sym_byte] = ACTIONS(583), - [anon_sym_short] = ACTIONS(583), - [anon_sym_int] = ACTIONS(583), - [anon_sym_long] = ACTIONS(583), - [anon_sym_char] = ACTIONS(583), - [anon_sym_float] = ACTIONS(583), - [anon_sym_double] = ACTIONS(583), - [sym_boolean_type] = ACTIONS(583), - [sym_void_type] = ACTIONS(583), - [sym_this] = ACTIONS(583), - [sym_super] = ACTIONS(583), + [ts_builtin_sym_end] = ACTIONS(568), + [sym_identifier] = ACTIONS(570), + [sym_decimal_integer_literal] = ACTIONS(570), + [sym_hex_integer_literal] = ACTIONS(570), + [sym_octal_integer_literal] = ACTIONS(568), + [sym_binary_integer_literal] = ACTIONS(568), + [sym_decimal_floating_point_literal] = ACTIONS(568), + [sym_hex_floating_point_literal] = ACTIONS(570), + [sym_true] = ACTIONS(570), + [sym_false] = ACTIONS(570), + [sym_character_literal] = ACTIONS(568), + [sym_string_literal] = ACTIONS(570), + [sym_text_block] = ACTIONS(568), + [sym_null_literal] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(570), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_case] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_assert] = ACTIONS(570), + [anon_sym_do] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(570), + [anon_sym_synchronized] = ACTIONS(570), + [anon_sym_throw] = ACTIONS(570), + [anon_sym_try] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_else] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_open] = ACTIONS(570), + [anon_sym_module] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_package] = ACTIONS(570), + [anon_sym_import] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_public] = ACTIONS(570), + [anon_sym_protected] = ACTIONS(570), + [anon_sym_private] = ACTIONS(570), + [anon_sym_abstract] = ACTIONS(570), + [anon_sym_final] = ACTIONS(570), + [anon_sym_strictfp] = ACTIONS(570), + [anon_sym_native] = ACTIONS(570), + [anon_sym_transient] = ACTIONS(570), + [anon_sym_volatile] = ACTIONS(570), + [anon_sym_sealed] = ACTIONS(570), + [anon_sym_non_DASHsealed] = ACTIONS(568), + [anon_sym_record] = ACTIONS(570), + [anon_sym_ATinterface] = ACTIONS(568), + [anon_sym_interface] = ACTIONS(570), + [anon_sym_byte] = ACTIONS(570), + [anon_sym_short] = ACTIONS(570), + [anon_sym_int] = ACTIONS(570), + [anon_sym_long] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_float] = ACTIONS(570), + [anon_sym_double] = ACTIONS(570), + [sym_boolean_type] = ACTIONS(570), + [sym_void_type] = ACTIONS(570), + [sym_this] = ACTIONS(570), + [sym_super] = ACTIONS(570), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [132] = { - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(587), - [sym_decimal_integer_literal] = ACTIONS(587), - [sym_hex_integer_literal] = ACTIONS(587), - [sym_octal_integer_literal] = ACTIONS(585), - [sym_binary_integer_literal] = ACTIONS(585), - [sym_decimal_floating_point_literal] = ACTIONS(585), - [sym_hex_floating_point_literal] = ACTIONS(587), - [sym_true] = ACTIONS(587), - [sym_false] = ACTIONS(587), - [sym_character_literal] = ACTIONS(585), - [sym_string_literal] = ACTIONS(587), - [sym_text_block] = ACTIONS(585), - [sym_null_literal] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_new] = ACTIONS(587), - [anon_sym_class] = ACTIONS(587), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_case] = ACTIONS(587), - [anon_sym_default] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_assert] = ACTIONS(587), - [anon_sym_do] = ACTIONS(587), - [anon_sym_while] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_return] = ACTIONS(587), - [anon_sym_yield] = ACTIONS(587), - [anon_sym_synchronized] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(587), - [anon_sym_try] = ACTIONS(587), - [anon_sym_if] = ACTIONS(587), - [anon_sym_else] = ACTIONS(587), - [anon_sym_for] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_open] = ACTIONS(587), - [anon_sym_module] = ACTIONS(587), - [anon_sym_static] = ACTIONS(587), - [anon_sym_package] = ACTIONS(587), - [anon_sym_import] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(587), - [anon_sym_public] = ACTIONS(587), - [anon_sym_protected] = ACTIONS(587), - [anon_sym_private] = ACTIONS(587), - [anon_sym_abstract] = ACTIONS(587), - [anon_sym_final] = ACTIONS(587), - [anon_sym_strictfp] = ACTIONS(587), - [anon_sym_native] = ACTIONS(587), - [anon_sym_transient] = ACTIONS(587), - [anon_sym_volatile] = ACTIONS(587), - [anon_sym_sealed] = ACTIONS(587), - [anon_sym_non_DASHsealed] = ACTIONS(585), - [anon_sym_record] = ACTIONS(587), - [anon_sym_ATinterface] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(587), - [anon_sym_byte] = ACTIONS(587), - [anon_sym_short] = ACTIONS(587), - [anon_sym_int] = ACTIONS(587), - [anon_sym_long] = ACTIONS(587), - [anon_sym_char] = ACTIONS(587), - [anon_sym_float] = ACTIONS(587), - [anon_sym_double] = ACTIONS(587), - [sym_boolean_type] = ACTIONS(587), - [sym_void_type] = ACTIONS(587), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(587), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [sym_true] = ACTIONS(574), + [sym_false] = ACTIONS(574), + [sym_character_literal] = ACTIONS(572), + [sym_string_literal] = ACTIONS(574), + [sym_text_block] = ACTIONS(572), + [sym_null_literal] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(572), + [anon_sym_new] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_case] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_synchronized] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_else] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(574), + [anon_sym_open] = ACTIONS(574), + [anon_sym_module] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_package] = ACTIONS(574), + [anon_sym_import] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_public] = ACTIONS(574), + [anon_sym_protected] = ACTIONS(574), + [anon_sym_private] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_strictfp] = ACTIONS(574), + [anon_sym_native] = ACTIONS(574), + [anon_sym_transient] = ACTIONS(574), + [anon_sym_volatile] = ACTIONS(574), + [anon_sym_sealed] = ACTIONS(574), + [anon_sym_non_DASHsealed] = ACTIONS(572), + [anon_sym_record] = ACTIONS(574), + [anon_sym_ATinterface] = ACTIONS(572), + [anon_sym_interface] = ACTIONS(574), + [anon_sym_byte] = ACTIONS(574), + [anon_sym_short] = ACTIONS(574), + [anon_sym_int] = ACTIONS(574), + [anon_sym_long] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_float] = ACTIONS(574), + [anon_sym_double] = ACTIONS(574), + [sym_boolean_type] = ACTIONS(574), + [sym_void_type] = ACTIONS(574), + [sym_this] = ACTIONS(574), + [sym_super] = ACTIONS(574), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [133] = { - [ts_builtin_sym_end] = ACTIONS(589), - [sym_identifier] = ACTIONS(591), - [sym_decimal_integer_literal] = ACTIONS(591), - [sym_hex_integer_literal] = ACTIONS(591), - [sym_octal_integer_literal] = ACTIONS(589), - [sym_binary_integer_literal] = ACTIONS(589), - [sym_decimal_floating_point_literal] = ACTIONS(589), - [sym_hex_floating_point_literal] = ACTIONS(591), - [sym_true] = ACTIONS(591), - [sym_false] = ACTIONS(591), - [sym_character_literal] = ACTIONS(589), - [sym_string_literal] = ACTIONS(591), - [sym_text_block] = ACTIONS(589), - [sym_null_literal] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_new] = ACTIONS(591), - [anon_sym_class] = ACTIONS(591), - [anon_sym_switch] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_case] = ACTIONS(591), - [anon_sym_default] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_assert] = ACTIONS(591), - [anon_sym_do] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(591), - [anon_sym_synchronized] = ACTIONS(591), - [anon_sym_throw] = ACTIONS(591), - [anon_sym_try] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_open] = ACTIONS(591), - [anon_sym_module] = ACTIONS(591), - [anon_sym_static] = ACTIONS(591), - [anon_sym_package] = ACTIONS(591), - [anon_sym_import] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_public] = ACTIONS(591), - [anon_sym_protected] = ACTIONS(591), - [anon_sym_private] = ACTIONS(591), - [anon_sym_abstract] = ACTIONS(591), - [anon_sym_final] = ACTIONS(591), - [anon_sym_strictfp] = ACTIONS(591), - [anon_sym_native] = ACTIONS(591), - [anon_sym_transient] = ACTIONS(591), - [anon_sym_volatile] = ACTIONS(591), - [anon_sym_sealed] = ACTIONS(591), - [anon_sym_non_DASHsealed] = ACTIONS(589), - [anon_sym_record] = ACTIONS(591), - [anon_sym_ATinterface] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(591), - [anon_sym_byte] = ACTIONS(591), - [anon_sym_short] = ACTIONS(591), - [anon_sym_int] = ACTIONS(591), - [anon_sym_long] = ACTIONS(591), - [anon_sym_char] = ACTIONS(591), - [anon_sym_float] = ACTIONS(591), - [anon_sym_double] = ACTIONS(591), - [sym_boolean_type] = ACTIONS(591), - [sym_void_type] = ACTIONS(591), - [sym_this] = ACTIONS(591), - [sym_super] = ACTIONS(591), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [sym_true] = ACTIONS(578), + [sym_false] = ACTIONS(578), + [sym_character_literal] = ACTIONS(576), + [sym_string_literal] = ACTIONS(578), + [sym_text_block] = ACTIONS(576), + [sym_null_literal] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_PLUS_PLUS] = ACTIONS(576), + [anon_sym_DASH_DASH] = ACTIONS(576), + [anon_sym_new] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_case] = ACTIONS(578), + [anon_sym_default] = ACTIONS(578), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_synchronized] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(578), + [anon_sym_open] = ACTIONS(578), + [anon_sym_module] = ACTIONS(578), + [anon_sym_static] = ACTIONS(578), + [anon_sym_package] = ACTIONS(578), + [anon_sym_import] = ACTIONS(578), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_public] = ACTIONS(578), + [anon_sym_protected] = ACTIONS(578), + [anon_sym_private] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_strictfp] = ACTIONS(578), + [anon_sym_native] = ACTIONS(578), + [anon_sym_transient] = ACTIONS(578), + [anon_sym_volatile] = ACTIONS(578), + [anon_sym_sealed] = ACTIONS(578), + [anon_sym_non_DASHsealed] = ACTIONS(576), + [anon_sym_record] = ACTIONS(578), + [anon_sym_ATinterface] = ACTIONS(576), + [anon_sym_interface] = ACTIONS(578), + [anon_sym_byte] = ACTIONS(578), + [anon_sym_short] = ACTIONS(578), + [anon_sym_int] = ACTIONS(578), + [anon_sym_long] = ACTIONS(578), + [anon_sym_char] = ACTIONS(578), + [anon_sym_float] = ACTIONS(578), + [anon_sym_double] = ACTIONS(578), + [sym_boolean_type] = ACTIONS(578), + [sym_void_type] = ACTIONS(578), + [sym_this] = ACTIONS(578), + [sym_super] = ACTIONS(578), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [134] = { - [ts_builtin_sym_end] = ACTIONS(593), - [sym_identifier] = ACTIONS(595), - [sym_decimal_integer_literal] = ACTIONS(595), - [sym_hex_integer_literal] = ACTIONS(595), - [sym_octal_integer_literal] = ACTIONS(593), - [sym_binary_integer_literal] = ACTIONS(593), - [sym_decimal_floating_point_literal] = ACTIONS(593), - [sym_hex_floating_point_literal] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_character_literal] = ACTIONS(593), - [sym_string_literal] = ACTIONS(595), - [sym_text_block] = ACTIONS(593), - [sym_null_literal] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_new] = ACTIONS(595), - [anon_sym_class] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_case] = ACTIONS(595), - [anon_sym_default] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_assert] = ACTIONS(595), - [anon_sym_do] = ACTIONS(595), - [anon_sym_while] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_yield] = ACTIONS(595), - [anon_sym_synchronized] = ACTIONS(595), - [anon_sym_throw] = ACTIONS(595), - [anon_sym_try] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_open] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_static] = ACTIONS(595), - [anon_sym_package] = ACTIONS(595), - [anon_sym_import] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(595), - [anon_sym_final] = ACTIONS(595), - [anon_sym_strictfp] = ACTIONS(595), - [anon_sym_native] = ACTIONS(595), - [anon_sym_transient] = ACTIONS(595), - [anon_sym_volatile] = ACTIONS(595), - [anon_sym_sealed] = ACTIONS(595), - [anon_sym_non_DASHsealed] = ACTIONS(593), - [anon_sym_record] = ACTIONS(595), - [anon_sym_ATinterface] = ACTIONS(593), - [anon_sym_interface] = ACTIONS(595), - [anon_sym_byte] = ACTIONS(595), - [anon_sym_short] = ACTIONS(595), - [anon_sym_int] = ACTIONS(595), - [anon_sym_long] = ACTIONS(595), - [anon_sym_char] = ACTIONS(595), - [anon_sym_float] = ACTIONS(595), - [anon_sym_double] = ACTIONS(595), - [sym_boolean_type] = ACTIONS(595), - [sym_void_type] = ACTIONS(595), - [sym_this] = ACTIONS(595), - [sym_super] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(580), + [sym_identifier] = ACTIONS(582), + [sym_decimal_integer_literal] = ACTIONS(582), + [sym_hex_integer_literal] = ACTIONS(582), + [sym_octal_integer_literal] = ACTIONS(580), + [sym_binary_integer_literal] = ACTIONS(580), + [sym_decimal_floating_point_literal] = ACTIONS(580), + [sym_hex_floating_point_literal] = ACTIONS(582), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_character_literal] = ACTIONS(580), + [sym_string_literal] = ACTIONS(582), + [sym_text_block] = ACTIONS(580), + [sym_null_literal] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(580), + [anon_sym_PLUS_PLUS] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(580), + [anon_sym_new] = ACTIONS(582), + [anon_sym_class] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(582), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym_assert] = ACTIONS(582), + [anon_sym_do] = ACTIONS(582), + [anon_sym_while] = ACTIONS(582), + [anon_sym_break] = ACTIONS(582), + [anon_sym_continue] = ACTIONS(582), + [anon_sym_return] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_synchronized] = ACTIONS(582), + [anon_sym_throw] = ACTIONS(582), + [anon_sym_try] = ACTIONS(582), + [anon_sym_if] = ACTIONS(582), + [anon_sym_else] = ACTIONS(582), + [anon_sym_for] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(582), + [anon_sym_open] = ACTIONS(582), + [anon_sym_module] = ACTIONS(582), + [anon_sym_static] = ACTIONS(582), + [anon_sym_package] = ACTIONS(582), + [anon_sym_import] = ACTIONS(582), + [anon_sym_enum] = ACTIONS(582), + [anon_sym_public] = ACTIONS(582), + [anon_sym_protected] = ACTIONS(582), + [anon_sym_private] = ACTIONS(582), + [anon_sym_abstract] = ACTIONS(582), + [anon_sym_final] = ACTIONS(582), + [anon_sym_strictfp] = ACTIONS(582), + [anon_sym_native] = ACTIONS(582), + [anon_sym_transient] = ACTIONS(582), + [anon_sym_volatile] = ACTIONS(582), + [anon_sym_sealed] = ACTIONS(582), + [anon_sym_non_DASHsealed] = ACTIONS(580), + [anon_sym_record] = ACTIONS(582), + [anon_sym_ATinterface] = ACTIONS(580), + [anon_sym_interface] = ACTIONS(582), + [anon_sym_byte] = ACTIONS(582), + [anon_sym_short] = ACTIONS(582), + [anon_sym_int] = ACTIONS(582), + [anon_sym_long] = ACTIONS(582), + [anon_sym_char] = ACTIONS(582), + [anon_sym_float] = ACTIONS(582), + [anon_sym_double] = ACTIONS(582), + [sym_boolean_type] = ACTIONS(582), + [sym_void_type] = ACTIONS(582), + [sym_this] = ACTIONS(582), + [sym_super] = ACTIONS(582), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [135] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [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(584), + [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), + [sym_string_literal] = ACTIONS(586), + [sym_text_block] = 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_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_RBRACE] = 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_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_final] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [136] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(1046), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21529,2531 +21750,2802 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [136] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1108), - [sym_element_value_array_initializer] = STATE(1108), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [137] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1018), - [sym_element_value_array_initializer] = STATE(1018), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(592), + [sym_hex_integer_literal] = ACTIONS(592), + [sym_octal_integer_literal] = ACTIONS(590), + [sym_binary_integer_literal] = ACTIONS(590), + [sym_decimal_floating_point_literal] = ACTIONS(590), + [sym_hex_floating_point_literal] = ACTIONS(592), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_character_literal] = ACTIONS(590), + [sym_string_literal] = ACTIONS(592), + [sym_text_block] = ACTIONS(590), + [sym_null_literal] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_new] = ACTIONS(592), + [anon_sym_class] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_case] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_assert] = ACTIONS(592), + [anon_sym_do] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_synchronized] = ACTIONS(592), + [anon_sym_throw] = ACTIONS(592), + [anon_sym_try] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_else] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_open] = ACTIONS(592), + [anon_sym_module] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_package] = ACTIONS(592), + [anon_sym_import] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_public] = ACTIONS(592), + [anon_sym_protected] = ACTIONS(592), + [anon_sym_private] = ACTIONS(592), + [anon_sym_abstract] = ACTIONS(592), + [anon_sym_final] = ACTIONS(592), + [anon_sym_strictfp] = ACTIONS(592), + [anon_sym_native] = ACTIONS(592), + [anon_sym_transient] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(592), + [anon_sym_sealed] = ACTIONS(592), + [anon_sym_non_DASHsealed] = ACTIONS(590), + [anon_sym_record] = ACTIONS(592), + [anon_sym_ATinterface] = ACTIONS(590), + [anon_sym_interface] = ACTIONS(592), + [anon_sym_byte] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [anon_sym_int] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_float] = ACTIONS(592), + [anon_sym_double] = ACTIONS(592), + [sym_boolean_type] = ACTIONS(592), + [sym_void_type] = ACTIONS(592), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(592), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [138] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(525), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1018), - [sym_element_value_array_initializer] = STATE(1018), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(596), + [sym_hex_integer_literal] = ACTIONS(596), + [sym_octal_integer_literal] = ACTIONS(594), + [sym_binary_integer_literal] = ACTIONS(594), + [sym_decimal_floating_point_literal] = ACTIONS(594), + [sym_hex_floating_point_literal] = ACTIONS(596), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_character_literal] = ACTIONS(594), + [sym_string_literal] = ACTIONS(596), + [sym_text_block] = ACTIONS(594), + [sym_null_literal] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(594), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_new] = ACTIONS(596), + [anon_sym_class] = ACTIONS(596), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_case] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_assert] = ACTIONS(596), + [anon_sym_do] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_synchronized] = ACTIONS(596), + [anon_sym_throw] = ACTIONS(596), + [anon_sym_try] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_else] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_open] = ACTIONS(596), + [anon_sym_module] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_package] = ACTIONS(596), + [anon_sym_import] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_public] = ACTIONS(596), + [anon_sym_protected] = ACTIONS(596), + [anon_sym_private] = ACTIONS(596), + [anon_sym_abstract] = ACTIONS(596), + [anon_sym_final] = ACTIONS(596), + [anon_sym_strictfp] = ACTIONS(596), + [anon_sym_native] = ACTIONS(596), + [anon_sym_transient] = ACTIONS(596), + [anon_sym_volatile] = ACTIONS(596), + [anon_sym_sealed] = ACTIONS(596), + [anon_sym_non_DASHsealed] = ACTIONS(594), + [anon_sym_record] = ACTIONS(596), + [anon_sym_ATinterface] = ACTIONS(594), + [anon_sym_interface] = ACTIONS(596), + [anon_sym_byte] = ACTIONS(596), + [anon_sym_short] = ACTIONS(596), + [anon_sym_int] = ACTIONS(596), + [anon_sym_long] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_float] = ACTIONS(596), + [anon_sym_double] = ACTIONS(596), + [sym_boolean_type] = ACTIONS(596), + [sym_void_type] = ACTIONS(596), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(596), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [139] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(600), + [sym_hex_integer_literal] = ACTIONS(600), + [sym_octal_integer_literal] = ACTIONS(598), + [sym_binary_integer_literal] = ACTIONS(598), + [sym_decimal_floating_point_literal] = ACTIONS(598), + [sym_hex_floating_point_literal] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_character_literal] = ACTIONS(598), + [sym_string_literal] = ACTIONS(600), + [sym_text_block] = ACTIONS(598), + [sym_null_literal] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS_PLUS] = ACTIONS(598), + [anon_sym_DASH_DASH] = ACTIONS(598), + [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(600), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_case] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(600), + [anon_sym_do] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_synchronized] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(600), + [anon_sym_try] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_else] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_open] = ACTIONS(600), + [anon_sym_module] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_package] = ACTIONS(600), + [anon_sym_import] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_public] = ACTIONS(600), + [anon_sym_protected] = ACTIONS(600), + [anon_sym_private] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(600), + [anon_sym_final] = ACTIONS(600), + [anon_sym_strictfp] = ACTIONS(600), + [anon_sym_native] = ACTIONS(600), + [anon_sym_transient] = ACTIONS(600), + [anon_sym_volatile] = ACTIONS(600), + [anon_sym_sealed] = ACTIONS(600), + [anon_sym_non_DASHsealed] = ACTIONS(598), + [anon_sym_record] = ACTIONS(600), + [anon_sym_ATinterface] = ACTIONS(598), + [anon_sym_interface] = ACTIONS(600), + [anon_sym_byte] = ACTIONS(600), + [anon_sym_short] = ACTIONS(600), + [anon_sym_int] = ACTIONS(600), + [anon_sym_long] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_float] = ACTIONS(600), + [anon_sym_double] = ACTIONS(600), + [sym_boolean_type] = ACTIONS(600), + [sym_void_type] = ACTIONS(600), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [140] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(604), + [sym_hex_integer_literal] = ACTIONS(604), + [sym_octal_integer_literal] = ACTIONS(602), + [sym_binary_integer_literal] = ACTIONS(602), + [sym_decimal_floating_point_literal] = ACTIONS(602), + [sym_hex_floating_point_literal] = ACTIONS(604), + [sym_true] = ACTIONS(604), + [sym_false] = ACTIONS(604), + [sym_character_literal] = ACTIONS(602), + [sym_string_literal] = ACTIONS(604), + [sym_text_block] = ACTIONS(602), + [sym_null_literal] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_new] = ACTIONS(604), + [anon_sym_class] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_case] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_assert] = ACTIONS(604), + [anon_sym_do] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_synchronized] = ACTIONS(604), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_try] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_else] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_open] = ACTIONS(604), + [anon_sym_module] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_package] = ACTIONS(604), + [anon_sym_import] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_public] = ACTIONS(604), + [anon_sym_protected] = ACTIONS(604), + [anon_sym_private] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_final] = ACTIONS(604), + [anon_sym_strictfp] = ACTIONS(604), + [anon_sym_native] = ACTIONS(604), + [anon_sym_transient] = ACTIONS(604), + [anon_sym_volatile] = ACTIONS(604), + [anon_sym_sealed] = ACTIONS(604), + [anon_sym_non_DASHsealed] = ACTIONS(602), + [anon_sym_record] = ACTIONS(604), + [anon_sym_ATinterface] = ACTIONS(602), + [anon_sym_interface] = ACTIONS(604), + [anon_sym_byte] = ACTIONS(604), + [anon_sym_short] = ACTIONS(604), + [anon_sym_int] = ACTIONS(604), + [anon_sym_long] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_float] = ACTIONS(604), + [anon_sym_double] = ACTIONS(604), + [sym_boolean_type] = ACTIONS(604), + [sym_void_type] = ACTIONS(604), + [sym_this] = ACTIONS(604), + [sym_super] = ACTIONS(604), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(601), - [sym_identifier] = ACTIONS(603), - [sym_decimal_integer_literal] = ACTIONS(603), - [sym_hex_integer_literal] = ACTIONS(603), - [sym_octal_integer_literal] = ACTIONS(601), - [sym_binary_integer_literal] = ACTIONS(601), - [sym_decimal_floating_point_literal] = ACTIONS(601), - [sym_hex_floating_point_literal] = ACTIONS(603), - [sym_true] = ACTIONS(603), - [sym_false] = ACTIONS(603), - [sym_character_literal] = ACTIONS(601), - [sym_string_literal] = ACTIONS(603), - [sym_text_block] = ACTIONS(601), - [sym_null_literal] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_new] = ACTIONS(603), - [anon_sym_class] = ACTIONS(603), - [anon_sym_switch] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_case] = ACTIONS(603), - [anon_sym_default] = ACTIONS(603), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_assert] = ACTIONS(603), - [anon_sym_do] = ACTIONS(603), - [anon_sym_while] = ACTIONS(603), - [anon_sym_break] = ACTIONS(603), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_return] = ACTIONS(603), - [anon_sym_yield] = ACTIONS(603), - [anon_sym_synchronized] = ACTIONS(603), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_try] = ACTIONS(603), - [anon_sym_if] = ACTIONS(603), - [anon_sym_else] = ACTIONS(603), - [anon_sym_for] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_open] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_static] = ACTIONS(603), - [anon_sym_package] = ACTIONS(603), - [anon_sym_import] = ACTIONS(603), - [anon_sym_enum] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_abstract] = ACTIONS(603), - [anon_sym_final] = ACTIONS(603), - [anon_sym_strictfp] = ACTIONS(603), - [anon_sym_native] = ACTIONS(603), - [anon_sym_transient] = ACTIONS(603), - [anon_sym_volatile] = ACTIONS(603), - [anon_sym_sealed] = ACTIONS(603), - [anon_sym_non_DASHsealed] = ACTIONS(601), - [anon_sym_ATinterface] = ACTIONS(601), - [anon_sym_interface] = ACTIONS(603), - [anon_sym_byte] = ACTIONS(603), - [anon_sym_short] = ACTIONS(603), - [anon_sym_int] = ACTIONS(603), - [anon_sym_long] = ACTIONS(603), - [anon_sym_char] = ACTIONS(603), - [anon_sym_float] = ACTIONS(603), - [anon_sym_double] = ACTIONS(603), - [sym_boolean_type] = ACTIONS(603), - [sym_void_type] = ACTIONS(603), - [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(603), + [ts_builtin_sym_end] = ACTIONS(606), + [sym_identifier] = ACTIONS(608), + [sym_decimal_integer_literal] = ACTIONS(608), + [sym_hex_integer_literal] = ACTIONS(608), + [sym_octal_integer_literal] = ACTIONS(606), + [sym_binary_integer_literal] = ACTIONS(606), + [sym_decimal_floating_point_literal] = ACTIONS(606), + [sym_hex_floating_point_literal] = ACTIONS(608), + [sym_true] = ACTIONS(608), + [sym_false] = ACTIONS(608), + [sym_character_literal] = ACTIONS(606), + [sym_string_literal] = ACTIONS(608), + [sym_text_block] = ACTIONS(606), + [sym_null_literal] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_PLUS_PLUS] = ACTIONS(606), + [anon_sym_DASH_DASH] = ACTIONS(606), + [anon_sym_new] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_switch] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_case] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_assert] = ACTIONS(608), + [anon_sym_do] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(608), + [anon_sym_synchronized] = ACTIONS(608), + [anon_sym_throw] = ACTIONS(608), + [anon_sym_try] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_else] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_open] = ACTIONS(608), + [anon_sym_module] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_package] = ACTIONS(608), + [anon_sym_import] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(608), + [anon_sym_public] = ACTIONS(608), + [anon_sym_protected] = ACTIONS(608), + [anon_sym_private] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(608), + [anon_sym_final] = ACTIONS(608), + [anon_sym_strictfp] = ACTIONS(608), + [anon_sym_native] = ACTIONS(608), + [anon_sym_transient] = ACTIONS(608), + [anon_sym_volatile] = ACTIONS(608), + [anon_sym_sealed] = ACTIONS(608), + [anon_sym_non_DASHsealed] = ACTIONS(606), + [anon_sym_record] = ACTIONS(608), + [anon_sym_ATinterface] = ACTIONS(606), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_byte] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [anon_sym_int] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_float] = ACTIONS(608), + [anon_sym_double] = ACTIONS(608), + [sym_boolean_type] = ACTIONS(608), + [sym_void_type] = ACTIONS(608), + [sym_this] = ACTIONS(608), + [sym_super] = ACTIONS(608), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [142] = { - [ts_builtin_sym_end] = ACTIONS(605), - [sym_identifier] = ACTIONS(607), - [sym_decimal_integer_literal] = ACTIONS(607), - [sym_hex_integer_literal] = ACTIONS(607), - [sym_octal_integer_literal] = ACTIONS(605), - [sym_binary_integer_literal] = ACTIONS(605), - [sym_decimal_floating_point_literal] = ACTIONS(605), - [sym_hex_floating_point_literal] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_character_literal] = ACTIONS(605), - [sym_string_literal] = ACTIONS(607), - [sym_text_block] = ACTIONS(605), - [sym_null_literal] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_new] = ACTIONS(607), - [anon_sym_class] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_case] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_assert] = ACTIONS(607), - [anon_sym_do] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_synchronized] = ACTIONS(607), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_try] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_else] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_open] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_package] = ACTIONS(607), - [anon_sym_import] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_abstract] = ACTIONS(607), - [anon_sym_final] = ACTIONS(607), - [anon_sym_strictfp] = ACTIONS(607), - [anon_sym_native] = ACTIONS(607), - [anon_sym_transient] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(607), - [anon_sym_sealed] = ACTIONS(607), - [anon_sym_non_DASHsealed] = ACTIONS(605), - [anon_sym_ATinterface] = ACTIONS(605), - [anon_sym_interface] = ACTIONS(607), - [anon_sym_byte] = ACTIONS(607), - [anon_sym_short] = ACTIONS(607), - [anon_sym_int] = ACTIONS(607), - [anon_sym_long] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_float] = ACTIONS(607), - [anon_sym_double] = ACTIONS(607), - [sym_boolean_type] = ACTIONS(607), - [sym_void_type] = ACTIONS(607), - [sym_this] = ACTIONS(607), - [sym_super] = ACTIONS(607), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [sym_decimal_integer_literal] = ACTIONS(612), + [sym_hex_integer_literal] = ACTIONS(612), + [sym_octal_integer_literal] = ACTIONS(610), + [sym_binary_integer_literal] = ACTIONS(610), + [sym_decimal_floating_point_literal] = ACTIONS(610), + [sym_hex_floating_point_literal] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_character_literal] = ACTIONS(610), + [sym_string_literal] = ACTIONS(612), + [sym_text_block] = ACTIONS(610), + [sym_null_literal] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), + [anon_sym_new] = ACTIONS(612), + [anon_sym_class] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_assert] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_synchronized] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_open] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_static] = ACTIONS(612), + [anon_sym_package] = ACTIONS(612), + [anon_sym_import] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(612), + [anon_sym_public] = ACTIONS(612), + [anon_sym_protected] = ACTIONS(612), + [anon_sym_private] = ACTIONS(612), + [anon_sym_abstract] = ACTIONS(612), + [anon_sym_final] = ACTIONS(612), + [anon_sym_strictfp] = ACTIONS(612), + [anon_sym_native] = ACTIONS(612), + [anon_sym_transient] = ACTIONS(612), + [anon_sym_volatile] = ACTIONS(612), + [anon_sym_sealed] = ACTIONS(612), + [anon_sym_non_DASHsealed] = ACTIONS(610), + [anon_sym_record] = ACTIONS(612), + [anon_sym_ATinterface] = ACTIONS(610), + [anon_sym_interface] = ACTIONS(612), + [anon_sym_byte] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [anon_sym_int] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_float] = ACTIONS(612), + [anon_sym_double] = ACTIONS(612), + [sym_boolean_type] = ACTIONS(612), + [sym_void_type] = ACTIONS(612), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(609), - [sym_identifier] = ACTIONS(611), - [sym_decimal_integer_literal] = ACTIONS(611), - [sym_hex_integer_literal] = ACTIONS(611), - [sym_octal_integer_literal] = ACTIONS(609), - [sym_binary_integer_literal] = ACTIONS(609), - [sym_decimal_floating_point_literal] = ACTIONS(609), - [sym_hex_floating_point_literal] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_character_literal] = ACTIONS(609), - [sym_string_literal] = ACTIONS(611), - [sym_text_block] = ACTIONS(609), - [sym_null_literal] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_PLUS_PLUS] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(609), - [anon_sym_new] = ACTIONS(611), - [anon_sym_class] = ACTIONS(611), - [anon_sym_switch] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_case] = ACTIONS(611), - [anon_sym_default] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_assert] = ACTIONS(611), - [anon_sym_do] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_return] = ACTIONS(611), - [anon_sym_yield] = ACTIONS(611), - [anon_sym_synchronized] = ACTIONS(611), - [anon_sym_throw] = ACTIONS(611), - [anon_sym_try] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_else] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(611), - [anon_sym_open] = ACTIONS(611), - [anon_sym_module] = ACTIONS(611), - [anon_sym_static] = ACTIONS(611), - [anon_sym_package] = ACTIONS(611), - [anon_sym_import] = ACTIONS(611), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_public] = ACTIONS(611), - [anon_sym_protected] = ACTIONS(611), - [anon_sym_private] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(611), - [anon_sym_final] = ACTIONS(611), - [anon_sym_strictfp] = ACTIONS(611), - [anon_sym_native] = ACTIONS(611), - [anon_sym_transient] = ACTIONS(611), - [anon_sym_volatile] = ACTIONS(611), - [anon_sym_sealed] = ACTIONS(611), - [anon_sym_non_DASHsealed] = ACTIONS(609), - [anon_sym_ATinterface] = ACTIONS(609), - [anon_sym_interface] = ACTIONS(611), - [anon_sym_byte] = ACTIONS(611), - [anon_sym_short] = ACTIONS(611), - [anon_sym_int] = ACTIONS(611), - [anon_sym_long] = ACTIONS(611), - [anon_sym_char] = ACTIONS(611), - [anon_sym_float] = ACTIONS(611), - [anon_sym_double] = ACTIONS(611), - [sym_boolean_type] = ACTIONS(611), - [sym_void_type] = ACTIONS(611), - [sym_this] = ACTIONS(611), - [sym_super] = ACTIONS(611), + [ts_builtin_sym_end] = ACTIONS(614), + [sym_identifier] = ACTIONS(616), + [sym_decimal_integer_literal] = ACTIONS(616), + [sym_hex_integer_literal] = ACTIONS(616), + [sym_octal_integer_literal] = ACTIONS(614), + [sym_binary_integer_literal] = ACTIONS(614), + [sym_decimal_floating_point_literal] = ACTIONS(614), + [sym_hex_floating_point_literal] = ACTIONS(616), + [sym_true] = ACTIONS(616), + [sym_false] = ACTIONS(616), + [sym_character_literal] = ACTIONS(614), + [sym_string_literal] = ACTIONS(616), + [sym_text_block] = ACTIONS(614), + [sym_null_literal] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(616), + [anon_sym_class] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(614), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_do] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_synchronized] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(616), + [anon_sym_try] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_else] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_open] = ACTIONS(616), + [anon_sym_module] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_package] = ACTIONS(616), + [anon_sym_import] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_public] = ACTIONS(616), + [anon_sym_protected] = ACTIONS(616), + [anon_sym_private] = ACTIONS(616), + [anon_sym_abstract] = ACTIONS(616), + [anon_sym_final] = ACTIONS(616), + [anon_sym_strictfp] = ACTIONS(616), + [anon_sym_native] = ACTIONS(616), + [anon_sym_transient] = ACTIONS(616), + [anon_sym_volatile] = ACTIONS(616), + [anon_sym_sealed] = ACTIONS(616), + [anon_sym_non_DASHsealed] = ACTIONS(614), + [anon_sym_record] = ACTIONS(616), + [anon_sym_ATinterface] = ACTIONS(614), + [anon_sym_interface] = ACTIONS(616), + [anon_sym_byte] = ACTIONS(616), + [anon_sym_short] = ACTIONS(616), + [anon_sym_int] = ACTIONS(616), + [anon_sym_long] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_float] = ACTIONS(616), + [anon_sym_double] = ACTIONS(616), + [sym_boolean_type] = ACTIONS(616), + [sym_void_type] = ACTIONS(616), + [sym_this] = ACTIONS(616), + [sym_super] = ACTIONS(616), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [144] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [sym_decimal_integer_literal] = ACTIONS(615), - [sym_hex_integer_literal] = ACTIONS(615), - [sym_octal_integer_literal] = ACTIONS(613), - [sym_binary_integer_literal] = ACTIONS(613), - [sym_decimal_floating_point_literal] = ACTIONS(613), - [sym_hex_floating_point_literal] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_character_literal] = ACTIONS(613), - [sym_string_literal] = ACTIONS(615), - [sym_text_block] = ACTIONS(613), - [sym_null_literal] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_new] = ACTIONS(615), - [anon_sym_class] = ACTIONS(615), - [anon_sym_switch] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_case] = ACTIONS(615), - [anon_sym_default] = ACTIONS(615), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_do] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_synchronized] = ACTIONS(615), - [anon_sym_throw] = ACTIONS(615), - [anon_sym_try] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_else] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_open] = ACTIONS(615), - [anon_sym_module] = ACTIONS(615), - [anon_sym_static] = ACTIONS(615), - [anon_sym_package] = ACTIONS(615), - [anon_sym_import] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_public] = ACTIONS(615), - [anon_sym_protected] = ACTIONS(615), - [anon_sym_private] = ACTIONS(615), - [anon_sym_abstract] = ACTIONS(615), - [anon_sym_final] = ACTIONS(615), - [anon_sym_strictfp] = ACTIONS(615), - [anon_sym_native] = ACTIONS(615), - [anon_sym_transient] = ACTIONS(615), - [anon_sym_volatile] = ACTIONS(615), - [anon_sym_sealed] = ACTIONS(615), - [anon_sym_non_DASHsealed] = ACTIONS(613), - [anon_sym_ATinterface] = ACTIONS(613), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_byte] = ACTIONS(615), - [anon_sym_short] = ACTIONS(615), - [anon_sym_int] = ACTIONS(615), - [anon_sym_long] = ACTIONS(615), - [anon_sym_char] = ACTIONS(615), - [anon_sym_float] = ACTIONS(615), - [anon_sym_double] = ACTIONS(615), - [sym_boolean_type] = ACTIONS(615), - [sym_void_type] = ACTIONS(615), - [sym_this] = ACTIONS(615), - [sym_super] = ACTIONS(615), + [ts_builtin_sym_end] = ACTIONS(618), + [sym_identifier] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(620), + [sym_hex_integer_literal] = ACTIONS(620), + [sym_octal_integer_literal] = ACTIONS(618), + [sym_binary_integer_literal] = ACTIONS(618), + [sym_decimal_floating_point_literal] = ACTIONS(618), + [sym_hex_floating_point_literal] = ACTIONS(620), + [sym_true] = ACTIONS(620), + [sym_false] = ACTIONS(620), + [sym_character_literal] = ACTIONS(618), + [sym_string_literal] = ACTIONS(620), + [sym_text_block] = ACTIONS(618), + [sym_null_literal] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_new] = ACTIONS(620), + [anon_sym_class] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_case] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_assert] = ACTIONS(620), + [anon_sym_do] = ACTIONS(620), + [anon_sym_while] = ACTIONS(620), + [anon_sym_break] = ACTIONS(620), + [anon_sym_continue] = ACTIONS(620), + [anon_sym_return] = ACTIONS(620), + [anon_sym_yield] = ACTIONS(620), + [anon_sym_synchronized] = ACTIONS(620), + [anon_sym_throw] = ACTIONS(620), + [anon_sym_try] = ACTIONS(620), + [anon_sym_if] = ACTIONS(620), + [anon_sym_else] = ACTIONS(620), + [anon_sym_for] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_open] = ACTIONS(620), + [anon_sym_module] = ACTIONS(620), + [anon_sym_static] = ACTIONS(620), + [anon_sym_package] = ACTIONS(620), + [anon_sym_import] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(620), + [anon_sym_public] = ACTIONS(620), + [anon_sym_protected] = ACTIONS(620), + [anon_sym_private] = ACTIONS(620), + [anon_sym_abstract] = ACTIONS(620), + [anon_sym_final] = ACTIONS(620), + [anon_sym_strictfp] = ACTIONS(620), + [anon_sym_native] = ACTIONS(620), + [anon_sym_transient] = ACTIONS(620), + [anon_sym_volatile] = ACTIONS(620), + [anon_sym_sealed] = ACTIONS(620), + [anon_sym_non_DASHsealed] = ACTIONS(618), + [anon_sym_record] = ACTIONS(620), + [anon_sym_ATinterface] = ACTIONS(618), + [anon_sym_interface] = ACTIONS(620), + [anon_sym_byte] = ACTIONS(620), + [anon_sym_short] = ACTIONS(620), + [anon_sym_int] = ACTIONS(620), + [anon_sym_long] = ACTIONS(620), + [anon_sym_char] = ACTIONS(620), + [anon_sym_float] = ACTIONS(620), + [anon_sym_double] = ACTIONS(620), + [sym_boolean_type] = ACTIONS(620), + [sym_void_type] = ACTIONS(620), + [sym_this] = ACTIONS(620), + [sym_super] = ACTIONS(620), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_decimal_integer_literal] = ACTIONS(619), - [sym_hex_integer_literal] = ACTIONS(619), - [sym_octal_integer_literal] = ACTIONS(617), - [sym_binary_integer_literal] = ACTIONS(617), - [sym_decimal_floating_point_literal] = ACTIONS(617), - [sym_hex_floating_point_literal] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_character_literal] = ACTIONS(617), - [sym_string_literal] = ACTIONS(619), - [sym_text_block] = ACTIONS(617), - [sym_null_literal] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_new] = ACTIONS(619), - [anon_sym_class] = ACTIONS(619), - [anon_sym_switch] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_case] = ACTIONS(619), - [anon_sym_default] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_do] = ACTIONS(619), - [anon_sym_while] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_synchronized] = ACTIONS(619), - [anon_sym_throw] = ACTIONS(619), - [anon_sym_try] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_else] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_open] = ACTIONS(619), - [anon_sym_module] = ACTIONS(619), - [anon_sym_static] = ACTIONS(619), - [anon_sym_package] = ACTIONS(619), - [anon_sym_import] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_public] = ACTIONS(619), - [anon_sym_protected] = ACTIONS(619), - [anon_sym_private] = ACTIONS(619), - [anon_sym_abstract] = ACTIONS(619), - [anon_sym_final] = ACTIONS(619), - [anon_sym_strictfp] = ACTIONS(619), - [anon_sym_native] = ACTIONS(619), - [anon_sym_transient] = ACTIONS(619), - [anon_sym_volatile] = ACTIONS(619), - [anon_sym_sealed] = ACTIONS(619), - [anon_sym_non_DASHsealed] = ACTIONS(617), - [anon_sym_ATinterface] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_byte] = ACTIONS(619), - [anon_sym_short] = ACTIONS(619), - [anon_sym_int] = ACTIONS(619), - [anon_sym_long] = ACTIONS(619), - [anon_sym_char] = ACTIONS(619), - [anon_sym_float] = ACTIONS(619), - [anon_sym_double] = ACTIONS(619), - [sym_boolean_type] = ACTIONS(619), - [sym_void_type] = ACTIONS(619), - [sym_this] = ACTIONS(619), - [sym_super] = ACTIONS(619), + [ts_builtin_sym_end] = ACTIONS(622), + [sym_identifier] = ACTIONS(624), + [sym_decimal_integer_literal] = ACTIONS(624), + [sym_hex_integer_literal] = ACTIONS(624), + [sym_octal_integer_literal] = ACTIONS(622), + [sym_binary_integer_literal] = ACTIONS(622), + [sym_decimal_floating_point_literal] = ACTIONS(622), + [sym_hex_floating_point_literal] = ACTIONS(624), + [sym_true] = ACTIONS(624), + [sym_false] = ACTIONS(624), + [sym_character_literal] = ACTIONS(622), + [sym_string_literal] = ACTIONS(624), + [sym_text_block] = ACTIONS(622), + [sym_null_literal] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_new] = ACTIONS(624), + [anon_sym_class] = ACTIONS(624), + [anon_sym_switch] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_case] = ACTIONS(624), + [anon_sym_default] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_assert] = ACTIONS(624), + [anon_sym_do] = ACTIONS(624), + [anon_sym_while] = ACTIONS(624), + [anon_sym_break] = ACTIONS(624), + [anon_sym_continue] = ACTIONS(624), + [anon_sym_return] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(624), + [anon_sym_synchronized] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(624), + [anon_sym_try] = ACTIONS(624), + [anon_sym_if] = ACTIONS(624), + [anon_sym_else] = ACTIONS(624), + [anon_sym_for] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(624), + [anon_sym_open] = ACTIONS(624), + [anon_sym_module] = ACTIONS(624), + [anon_sym_static] = ACTIONS(624), + [anon_sym_package] = ACTIONS(624), + [anon_sym_import] = ACTIONS(624), + [anon_sym_enum] = ACTIONS(624), + [anon_sym_public] = ACTIONS(624), + [anon_sym_protected] = ACTIONS(624), + [anon_sym_private] = ACTIONS(624), + [anon_sym_abstract] = ACTIONS(624), + [anon_sym_final] = ACTIONS(624), + [anon_sym_strictfp] = ACTIONS(624), + [anon_sym_native] = ACTIONS(624), + [anon_sym_transient] = ACTIONS(624), + [anon_sym_volatile] = ACTIONS(624), + [anon_sym_sealed] = ACTIONS(624), + [anon_sym_non_DASHsealed] = ACTIONS(622), + [anon_sym_record] = ACTIONS(624), + [anon_sym_ATinterface] = ACTIONS(622), + [anon_sym_interface] = ACTIONS(624), + [anon_sym_byte] = ACTIONS(624), + [anon_sym_short] = ACTIONS(624), + [anon_sym_int] = ACTIONS(624), + [anon_sym_long] = ACTIONS(624), + [anon_sym_char] = ACTIONS(624), + [anon_sym_float] = ACTIONS(624), + [anon_sym_double] = ACTIONS(624), + [sym_boolean_type] = ACTIONS(624), + [sym_void_type] = ACTIONS(624), + [sym_this] = ACTIONS(624), + [sym_super] = ACTIONS(624), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [146] = { - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [sym_decimal_integer_literal] = ACTIONS(623), - [sym_hex_integer_literal] = ACTIONS(623), - [sym_octal_integer_literal] = ACTIONS(621), - [sym_binary_integer_literal] = ACTIONS(621), - [sym_decimal_floating_point_literal] = ACTIONS(621), - [sym_hex_floating_point_literal] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_character_literal] = ACTIONS(621), - [sym_string_literal] = ACTIONS(623), - [sym_text_block] = ACTIONS(621), - [sym_null_literal] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_new] = ACTIONS(623), - [anon_sym_class] = ACTIONS(623), - [anon_sym_switch] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_case] = ACTIONS(623), - [anon_sym_default] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_do] = ACTIONS(623), - [anon_sym_while] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_synchronized] = ACTIONS(623), - [anon_sym_throw] = ACTIONS(623), - [anon_sym_try] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_else] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(623), - [anon_sym_open] = ACTIONS(623), - [anon_sym_module] = ACTIONS(623), - [anon_sym_static] = ACTIONS(623), - [anon_sym_package] = ACTIONS(623), - [anon_sym_import] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_public] = ACTIONS(623), - [anon_sym_protected] = ACTIONS(623), - [anon_sym_private] = ACTIONS(623), - [anon_sym_abstract] = ACTIONS(623), - [anon_sym_final] = ACTIONS(623), - [anon_sym_strictfp] = ACTIONS(623), - [anon_sym_native] = ACTIONS(623), - [anon_sym_transient] = ACTIONS(623), - [anon_sym_volatile] = ACTIONS(623), - [anon_sym_sealed] = ACTIONS(623), - [anon_sym_non_DASHsealed] = ACTIONS(621), - [anon_sym_ATinterface] = ACTIONS(621), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_byte] = ACTIONS(623), - [anon_sym_short] = ACTIONS(623), - [anon_sym_int] = ACTIONS(623), - [anon_sym_long] = ACTIONS(623), - [anon_sym_char] = ACTIONS(623), - [anon_sym_float] = ACTIONS(623), - [anon_sym_double] = ACTIONS(623), - [sym_boolean_type] = ACTIONS(623), - [sym_void_type] = ACTIONS(623), - [sym_this] = ACTIONS(623), - [sym_super] = ACTIONS(623), + [ts_builtin_sym_end] = ACTIONS(626), + [sym_identifier] = ACTIONS(628), + [sym_decimal_integer_literal] = ACTIONS(628), + [sym_hex_integer_literal] = ACTIONS(628), + [sym_octal_integer_literal] = ACTIONS(626), + [sym_binary_integer_literal] = ACTIONS(626), + [sym_decimal_floating_point_literal] = ACTIONS(626), + [sym_hex_floating_point_literal] = ACTIONS(628), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_character_literal] = ACTIONS(626), + [sym_string_literal] = ACTIONS(628), + [sym_text_block] = ACTIONS(626), + [sym_null_literal] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(626), + [anon_sym_PLUS_PLUS] = ACTIONS(626), + [anon_sym_DASH_DASH] = ACTIONS(626), + [anon_sym_new] = ACTIONS(628), + [anon_sym_class] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(628), + [anon_sym_do] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_synchronized] = ACTIONS(628), + [anon_sym_throw] = ACTIONS(628), + [anon_sym_try] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_else] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(628), + [anon_sym_open] = ACTIONS(628), + [anon_sym_module] = ACTIONS(628), + [anon_sym_static] = ACTIONS(628), + [anon_sym_package] = ACTIONS(628), + [anon_sym_import] = ACTIONS(628), + [anon_sym_enum] = ACTIONS(628), + [anon_sym_public] = ACTIONS(628), + [anon_sym_protected] = ACTIONS(628), + [anon_sym_private] = ACTIONS(628), + [anon_sym_abstract] = ACTIONS(628), + [anon_sym_final] = ACTIONS(628), + [anon_sym_strictfp] = ACTIONS(628), + [anon_sym_native] = ACTIONS(628), + [anon_sym_transient] = ACTIONS(628), + [anon_sym_volatile] = ACTIONS(628), + [anon_sym_sealed] = ACTIONS(628), + [anon_sym_non_DASHsealed] = ACTIONS(626), + [anon_sym_record] = ACTIONS(628), + [anon_sym_ATinterface] = ACTIONS(626), + [anon_sym_interface] = ACTIONS(628), + [anon_sym_byte] = ACTIONS(628), + [anon_sym_short] = ACTIONS(628), + [anon_sym_int] = ACTIONS(628), + [anon_sym_long] = ACTIONS(628), + [anon_sym_char] = ACTIONS(628), + [anon_sym_float] = ACTIONS(628), + [anon_sym_double] = ACTIONS(628), + [sym_boolean_type] = ACTIONS(628), + [sym_void_type] = ACTIONS(628), + [sym_this] = ACTIONS(628), + [sym_super] = ACTIONS(628), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [147] = { - [ts_builtin_sym_end] = ACTIONS(292), - [sym_identifier] = ACTIONS(294), - [sym_decimal_integer_literal] = ACTIONS(294), - [sym_hex_integer_literal] = ACTIONS(294), - [sym_octal_integer_literal] = ACTIONS(292), - [sym_binary_integer_literal] = ACTIONS(292), - [sym_decimal_floating_point_literal] = ACTIONS(292), - [sym_hex_floating_point_literal] = ACTIONS(294), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_character_literal] = ACTIONS(292), - [sym_string_literal] = ACTIONS(294), - [sym_text_block] = ACTIONS(292), - [sym_null_literal] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(292), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(292), - [anon_sym_new] = ACTIONS(294), - [anon_sym_class] = ACTIONS(294), - [anon_sym_switch] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(292), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_case] = ACTIONS(294), - [anon_sym_default] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(294), - [anon_sym_do] = ACTIONS(294), - [anon_sym_while] = ACTIONS(294), - [anon_sym_break] = ACTIONS(294), - [anon_sym_continue] = ACTIONS(294), - [anon_sym_return] = ACTIONS(294), - [anon_sym_yield] = ACTIONS(294), - [anon_sym_synchronized] = ACTIONS(294), - [anon_sym_throw] = ACTIONS(294), - [anon_sym_try] = ACTIONS(294), - [anon_sym_if] = ACTIONS(294), - [anon_sym_else] = ACTIONS(294), - [anon_sym_for] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(294), - [anon_sym_open] = ACTIONS(294), - [anon_sym_module] = ACTIONS(294), - [anon_sym_static] = ACTIONS(294), - [anon_sym_package] = ACTIONS(294), - [anon_sym_import] = ACTIONS(294), - [anon_sym_enum] = ACTIONS(294), - [anon_sym_public] = ACTIONS(294), - [anon_sym_protected] = ACTIONS(294), - [anon_sym_private] = ACTIONS(294), - [anon_sym_abstract] = ACTIONS(294), - [anon_sym_final] = ACTIONS(294), - [anon_sym_strictfp] = ACTIONS(294), - [anon_sym_native] = ACTIONS(294), - [anon_sym_transient] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_sealed] = ACTIONS(294), - [anon_sym_non_DASHsealed] = ACTIONS(292), - [anon_sym_ATinterface] = ACTIONS(292), - [anon_sym_interface] = ACTIONS(294), - [anon_sym_byte] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_int] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_char] = ACTIONS(294), - [anon_sym_float] = ACTIONS(294), - [anon_sym_double] = ACTIONS(294), - [sym_boolean_type] = ACTIONS(294), - [sym_void_type] = ACTIONS(294), - [sym_this] = ACTIONS(294), - [sym_super] = ACTIONS(294), + [ts_builtin_sym_end] = ACTIONS(630), + [sym_identifier] = ACTIONS(632), + [sym_decimal_integer_literal] = ACTIONS(632), + [sym_hex_integer_literal] = ACTIONS(632), + [sym_octal_integer_literal] = ACTIONS(630), + [sym_binary_integer_literal] = ACTIONS(630), + [sym_decimal_floating_point_literal] = ACTIONS(630), + [sym_hex_floating_point_literal] = ACTIONS(632), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_character_literal] = ACTIONS(630), + [sym_string_literal] = ACTIONS(632), + [sym_text_block] = ACTIONS(630), + [sym_null_literal] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(630), + [anon_sym_DASH_DASH] = ACTIONS(630), + [anon_sym_new] = ACTIONS(632), + [anon_sym_class] = ACTIONS(632), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_case] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_assert] = ACTIONS(632), + [anon_sym_do] = ACTIONS(632), + [anon_sym_while] = ACTIONS(632), + [anon_sym_break] = ACTIONS(632), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_return] = ACTIONS(632), + [anon_sym_yield] = ACTIONS(632), + [anon_sym_synchronized] = ACTIONS(632), + [anon_sym_throw] = ACTIONS(632), + [anon_sym_try] = ACTIONS(632), + [anon_sym_if] = ACTIONS(632), + [anon_sym_else] = ACTIONS(632), + [anon_sym_for] = ACTIONS(632), + [anon_sym_AT] = ACTIONS(632), + [anon_sym_open] = ACTIONS(632), + [anon_sym_module] = ACTIONS(632), + [anon_sym_static] = ACTIONS(632), + [anon_sym_package] = ACTIONS(632), + [anon_sym_import] = ACTIONS(632), + [anon_sym_enum] = ACTIONS(632), + [anon_sym_public] = ACTIONS(632), + [anon_sym_protected] = ACTIONS(632), + [anon_sym_private] = ACTIONS(632), + [anon_sym_abstract] = ACTIONS(632), + [anon_sym_final] = ACTIONS(632), + [anon_sym_strictfp] = ACTIONS(632), + [anon_sym_native] = ACTIONS(632), + [anon_sym_transient] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym_sealed] = ACTIONS(632), + [anon_sym_non_DASHsealed] = ACTIONS(630), + [anon_sym_record] = ACTIONS(632), + [anon_sym_ATinterface] = ACTIONS(630), + [anon_sym_interface] = ACTIONS(632), + [anon_sym_byte] = ACTIONS(632), + [anon_sym_short] = ACTIONS(632), + [anon_sym_int] = ACTIONS(632), + [anon_sym_long] = ACTIONS(632), + [anon_sym_char] = ACTIONS(632), + [anon_sym_float] = ACTIONS(632), + [anon_sym_double] = ACTIONS(632), + [sym_boolean_type] = ACTIONS(632), + [sym_void_type] = ACTIONS(632), + [sym_this] = ACTIONS(632), + [sym_super] = ACTIONS(632), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(627), - [sym_decimal_integer_literal] = ACTIONS(627), - [sym_hex_integer_literal] = ACTIONS(627), - [sym_octal_integer_literal] = ACTIONS(625), - [sym_binary_integer_literal] = ACTIONS(625), - [sym_decimal_floating_point_literal] = ACTIONS(625), - [sym_hex_floating_point_literal] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_character_literal] = ACTIONS(625), - [sym_string_literal] = ACTIONS(627), - [sym_text_block] = ACTIONS(625), - [sym_null_literal] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_new] = ACTIONS(627), - [anon_sym_class] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_do] = ACTIONS(627), - [anon_sym_while] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_yield] = ACTIONS(627), - [anon_sym_synchronized] = ACTIONS(627), - [anon_sym_throw] = ACTIONS(627), - [anon_sym_try] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_else] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_AT] = ACTIONS(627), - [anon_sym_open] = ACTIONS(627), - [anon_sym_module] = ACTIONS(627), - [anon_sym_static] = ACTIONS(627), - [anon_sym_package] = ACTIONS(627), - [anon_sym_import] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_public] = ACTIONS(627), - [anon_sym_protected] = ACTIONS(627), - [anon_sym_private] = ACTIONS(627), - [anon_sym_abstract] = ACTIONS(627), - [anon_sym_final] = ACTIONS(627), - [anon_sym_strictfp] = ACTIONS(627), - [anon_sym_native] = ACTIONS(627), - [anon_sym_transient] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(627), - [anon_sym_sealed] = ACTIONS(627), - [anon_sym_non_DASHsealed] = ACTIONS(625), - [anon_sym_ATinterface] = ACTIONS(625), - [anon_sym_interface] = ACTIONS(627), - [anon_sym_byte] = ACTIONS(627), - [anon_sym_short] = ACTIONS(627), - [anon_sym_int] = ACTIONS(627), - [anon_sym_long] = ACTIONS(627), - [anon_sym_char] = ACTIONS(627), - [anon_sym_float] = ACTIONS(627), - [anon_sym_double] = ACTIONS(627), - [sym_boolean_type] = ACTIONS(627), - [sym_void_type] = ACTIONS(627), - [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(627), + [sym__literal] = STATE(407), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(1046), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [sym_decimal_integer_literal] = ACTIONS(631), - [sym_hex_integer_literal] = ACTIONS(631), - [sym_octal_integer_literal] = ACTIONS(629), - [sym_binary_integer_literal] = ACTIONS(629), - [sym_decimal_floating_point_literal] = ACTIONS(629), - [sym_hex_floating_point_literal] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_character_literal] = ACTIONS(629), - [sym_string_literal] = ACTIONS(631), - [sym_text_block] = ACTIONS(629), - [sym_null_literal] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_PLUS_PLUS] = ACTIONS(629), - [anon_sym_DASH_DASH] = ACTIONS(629), - [anon_sym_new] = ACTIONS(631), - [anon_sym_class] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_assert] = ACTIONS(631), - [anon_sym_do] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(631), - [anon_sym_return] = ACTIONS(631), - [anon_sym_yield] = ACTIONS(631), - [anon_sym_synchronized] = ACTIONS(631), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_try] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_else] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_open] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_static] = ACTIONS(631), - [anon_sym_package] = ACTIONS(631), - [anon_sym_import] = ACTIONS(631), - [anon_sym_enum] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_abstract] = ACTIONS(631), - [anon_sym_final] = ACTIONS(631), - [anon_sym_strictfp] = ACTIONS(631), - [anon_sym_native] = ACTIONS(631), - [anon_sym_transient] = ACTIONS(631), - [anon_sym_volatile] = ACTIONS(631), - [anon_sym_sealed] = ACTIONS(631), - [anon_sym_non_DASHsealed] = ACTIONS(629), - [anon_sym_ATinterface] = ACTIONS(629), - [anon_sym_interface] = ACTIONS(631), - [anon_sym_byte] = ACTIONS(631), - [anon_sym_short] = ACTIONS(631), - [anon_sym_int] = ACTIONS(631), - [anon_sym_long] = ACTIONS(631), - [anon_sym_char] = ACTIONS(631), - [anon_sym_float] = ACTIONS(631), - [anon_sym_double] = ACTIONS(631), - [sym_boolean_type] = ACTIONS(631), - [sym_void_type] = ACTIONS(631), - [sym_this] = ACTIONS(631), - [sym_super] = ACTIONS(631), + [ts_builtin_sym_end] = ACTIONS(634), + [sym_identifier] = ACTIONS(636), + [sym_decimal_integer_literal] = ACTIONS(636), + [sym_hex_integer_literal] = ACTIONS(636), + [sym_octal_integer_literal] = ACTIONS(634), + [sym_binary_integer_literal] = ACTIONS(634), + [sym_decimal_floating_point_literal] = ACTIONS(634), + [sym_hex_floating_point_literal] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_character_literal] = ACTIONS(634), + [sym_string_literal] = ACTIONS(636), + [sym_text_block] = ACTIONS(634), + [sym_null_literal] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_PLUS] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_TILDE] = ACTIONS(634), + [anon_sym_PLUS_PLUS] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(634), + [anon_sym_new] = ACTIONS(636), + [anon_sym_class] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_assert] = ACTIONS(636), + [anon_sym_do] = ACTIONS(636), + [anon_sym_while] = ACTIONS(636), + [anon_sym_break] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_return] = ACTIONS(636), + [anon_sym_yield] = ACTIONS(636), + [anon_sym_synchronized] = ACTIONS(636), + [anon_sym_throw] = ACTIONS(636), + [anon_sym_try] = ACTIONS(636), + [anon_sym_if] = ACTIONS(636), + [anon_sym_else] = ACTIONS(636), + [anon_sym_for] = ACTIONS(636), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_open] = ACTIONS(636), + [anon_sym_module] = ACTIONS(636), + [anon_sym_static] = ACTIONS(636), + [anon_sym_package] = ACTIONS(636), + [anon_sym_import] = ACTIONS(636), + [anon_sym_enum] = ACTIONS(636), + [anon_sym_public] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_final] = ACTIONS(636), + [anon_sym_strictfp] = ACTIONS(636), + [anon_sym_native] = ACTIONS(636), + [anon_sym_transient] = ACTIONS(636), + [anon_sym_volatile] = ACTIONS(636), + [anon_sym_sealed] = ACTIONS(636), + [anon_sym_non_DASHsealed] = ACTIONS(634), + [anon_sym_record] = ACTIONS(636), + [anon_sym_ATinterface] = ACTIONS(634), + [anon_sym_interface] = ACTIONS(636), + [anon_sym_byte] = ACTIONS(636), + [anon_sym_short] = ACTIONS(636), + [anon_sym_int] = ACTIONS(636), + [anon_sym_long] = ACTIONS(636), + [anon_sym_char] = ACTIONS(636), + [anon_sym_float] = ACTIONS(636), + [anon_sym_double] = ACTIONS(636), + [sym_boolean_type] = ACTIONS(636), + [sym_void_type] = ACTIONS(636), + [sym_this] = ACTIONS(636), + [sym_super] = ACTIONS(636), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [sym_decimal_integer_literal] = ACTIONS(635), - [sym_hex_integer_literal] = ACTIONS(635), - [sym_octal_integer_literal] = ACTIONS(633), - [sym_binary_integer_literal] = ACTIONS(633), - [sym_decimal_floating_point_literal] = ACTIONS(633), - [sym_hex_floating_point_literal] = ACTIONS(635), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_character_literal] = ACTIONS(633), - [sym_string_literal] = ACTIONS(635), - [sym_text_block] = ACTIONS(633), - [sym_null_literal] = ACTIONS(635), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_PLUS_PLUS] = ACTIONS(633), - [anon_sym_DASH_DASH] = ACTIONS(633), - [anon_sym_new] = ACTIONS(635), - [anon_sym_class] = ACTIONS(635), - [anon_sym_switch] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_case] = ACTIONS(635), - [anon_sym_default] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(633), - [anon_sym_assert] = ACTIONS(635), - [anon_sym_do] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_break] = ACTIONS(635), - [anon_sym_continue] = ACTIONS(635), - [anon_sym_return] = ACTIONS(635), - [anon_sym_yield] = ACTIONS(635), - [anon_sym_synchronized] = ACTIONS(635), - [anon_sym_throw] = ACTIONS(635), - [anon_sym_try] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_else] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_AT] = ACTIONS(635), - [anon_sym_open] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_static] = ACTIONS(635), - [anon_sym_package] = ACTIONS(635), - [anon_sym_import] = ACTIONS(635), - [anon_sym_enum] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_abstract] = ACTIONS(635), - [anon_sym_final] = ACTIONS(635), - [anon_sym_strictfp] = ACTIONS(635), - [anon_sym_native] = ACTIONS(635), - [anon_sym_transient] = ACTIONS(635), - [anon_sym_volatile] = ACTIONS(635), - [anon_sym_sealed] = ACTIONS(635), - [anon_sym_non_DASHsealed] = ACTIONS(633), - [anon_sym_ATinterface] = ACTIONS(633), - [anon_sym_interface] = ACTIONS(635), - [anon_sym_byte] = ACTIONS(635), - [anon_sym_short] = ACTIONS(635), - [anon_sym_int] = ACTIONS(635), - [anon_sym_long] = ACTIONS(635), - [anon_sym_char] = ACTIONS(635), - [anon_sym_float] = ACTIONS(635), - [anon_sym_double] = ACTIONS(635), - [sym_boolean_type] = ACTIONS(635), - [sym_void_type] = ACTIONS(635), - [sym_this] = ACTIONS(635), - [sym_super] = ACTIONS(635), + [ts_builtin_sym_end] = ACTIONS(638), + [sym_identifier] = ACTIONS(640), + [sym_decimal_integer_literal] = ACTIONS(640), + [sym_hex_integer_literal] = ACTIONS(640), + [sym_octal_integer_literal] = ACTIONS(638), + [sym_binary_integer_literal] = ACTIONS(638), + [sym_decimal_floating_point_literal] = ACTIONS(638), + [sym_hex_floating_point_literal] = ACTIONS(640), + [sym_true] = ACTIONS(640), + [sym_false] = ACTIONS(640), + [sym_character_literal] = ACTIONS(638), + [sym_string_literal] = ACTIONS(640), + [sym_text_block] = ACTIONS(638), + [sym_null_literal] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_PLUS_PLUS] = ACTIONS(638), + [anon_sym_DASH_DASH] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_class] = ACTIONS(640), + [anon_sym_switch] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(638), + [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_case] = ACTIONS(640), + [anon_sym_default] = ACTIONS(640), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_assert] = ACTIONS(640), + [anon_sym_do] = ACTIONS(640), + [anon_sym_while] = ACTIONS(640), + [anon_sym_break] = ACTIONS(640), + [anon_sym_continue] = ACTIONS(640), + [anon_sym_return] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(640), + [anon_sym_synchronized] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(640), + [anon_sym_try] = ACTIONS(640), + [anon_sym_if] = ACTIONS(640), + [anon_sym_else] = ACTIONS(640), + [anon_sym_for] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym_open] = ACTIONS(640), + [anon_sym_module] = ACTIONS(640), + [anon_sym_static] = ACTIONS(640), + [anon_sym_package] = ACTIONS(640), + [anon_sym_import] = ACTIONS(640), + [anon_sym_enum] = ACTIONS(640), + [anon_sym_public] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(640), + [anon_sym_final] = ACTIONS(640), + [anon_sym_strictfp] = ACTIONS(640), + [anon_sym_native] = ACTIONS(640), + [anon_sym_transient] = ACTIONS(640), + [anon_sym_volatile] = ACTIONS(640), + [anon_sym_sealed] = ACTIONS(640), + [anon_sym_non_DASHsealed] = ACTIONS(638), + [anon_sym_record] = ACTIONS(640), + [anon_sym_ATinterface] = ACTIONS(638), + [anon_sym_interface] = ACTIONS(640), + [anon_sym_byte] = ACTIONS(640), + [anon_sym_short] = ACTIONS(640), + [anon_sym_int] = ACTIONS(640), + [anon_sym_long] = ACTIONS(640), + [anon_sym_char] = ACTIONS(640), + [anon_sym_float] = ACTIONS(640), + [anon_sym_double] = ACTIONS(640), + [sym_boolean_type] = ACTIONS(640), + [sym_void_type] = ACTIONS(640), + [sym_this] = ACTIONS(640), + [sym_super] = ACTIONS(640), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [151] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [sym_true] = ACTIONS(639), - [sym_false] = ACTIONS(639), - [sym_character_literal] = ACTIONS(637), - [sym_string_literal] = ACTIONS(639), - [sym_text_block] = ACTIONS(637), - [sym_null_literal] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_new] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_case] = ACTIONS(639), - [anon_sym_default] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_synchronized] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_open] = ACTIONS(639), - [anon_sym_module] = ACTIONS(639), - [anon_sym_static] = ACTIONS(639), - [anon_sym_package] = ACTIONS(639), - [anon_sym_import] = ACTIONS(639), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_public] = ACTIONS(639), - [anon_sym_protected] = ACTIONS(639), - [anon_sym_private] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_strictfp] = ACTIONS(639), - [anon_sym_native] = ACTIONS(639), - [anon_sym_transient] = ACTIONS(639), - [anon_sym_volatile] = ACTIONS(639), - [anon_sym_sealed] = ACTIONS(639), - [anon_sym_non_DASHsealed] = ACTIONS(637), - [anon_sym_ATinterface] = ACTIONS(637), - [anon_sym_interface] = ACTIONS(639), - [anon_sym_byte] = ACTIONS(639), - [anon_sym_short] = ACTIONS(639), - [anon_sym_int] = ACTIONS(639), - [anon_sym_long] = ACTIONS(639), - [anon_sym_char] = ACTIONS(639), - [anon_sym_float] = ACTIONS(639), - [anon_sym_double] = ACTIONS(639), - [sym_boolean_type] = ACTIONS(639), - [sym_void_type] = ACTIONS(639), - [sym_this] = ACTIONS(639), - [sym_super] = ACTIONS(639), + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_decimal_integer_literal] = ACTIONS(311), + [sym_hex_integer_literal] = ACTIONS(311), + [sym_octal_integer_literal] = ACTIONS(309), + [sym_binary_integer_literal] = ACTIONS(309), + [sym_decimal_floating_point_literal] = ACTIONS(309), + [sym_hex_floating_point_literal] = ACTIONS(311), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_character_literal] = ACTIONS(309), + [sym_string_literal] = ACTIONS(311), + [sym_text_block] = ACTIONS(309), + [sym_null_literal] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_PLUS_PLUS] = ACTIONS(309), + [anon_sym_DASH_DASH] = ACTIONS(309), + [anon_sym_new] = ACTIONS(311), + [anon_sym_class] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_do] = ACTIONS(311), + [anon_sym_while] = ACTIONS(311), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_return] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(311), + [anon_sym_synchronized] = ACTIONS(311), + [anon_sym_throw] = ACTIONS(311), + [anon_sym_try] = ACTIONS(311), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), + [anon_sym_for] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_static] = ACTIONS(311), + [anon_sym_package] = ACTIONS(311), + [anon_sym_import] = ACTIONS(311), + [anon_sym_enum] = ACTIONS(311), + [anon_sym_public] = ACTIONS(311), + [anon_sym_protected] = ACTIONS(311), + [anon_sym_private] = ACTIONS(311), + [anon_sym_abstract] = ACTIONS(311), + [anon_sym_final] = ACTIONS(311), + [anon_sym_strictfp] = ACTIONS(311), + [anon_sym_native] = ACTIONS(311), + [anon_sym_transient] = ACTIONS(311), + [anon_sym_volatile] = ACTIONS(311), + [anon_sym_sealed] = ACTIONS(311), + [anon_sym_non_DASHsealed] = ACTIONS(309), + [anon_sym_record] = ACTIONS(311), + [anon_sym_ATinterface] = ACTIONS(309), + [anon_sym_interface] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(311), + [anon_sym_short] = ACTIONS(311), + [anon_sym_int] = ACTIONS(311), + [anon_sym_long] = ACTIONS(311), + [anon_sym_char] = ACTIONS(311), + [anon_sym_float] = ACTIONS(311), + [anon_sym_double] = ACTIONS(311), + [sym_boolean_type] = ACTIONS(311), + [sym_void_type] = ACTIONS(311), + [sym_this] = ACTIONS(311), + [sym_super] = ACTIONS(311), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [152] = { - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [sym_decimal_integer_literal] = ACTIONS(643), - [sym_hex_integer_literal] = ACTIONS(643), - [sym_octal_integer_literal] = ACTIONS(641), - [sym_binary_integer_literal] = ACTIONS(641), - [sym_decimal_floating_point_literal] = ACTIONS(641), - [sym_hex_floating_point_literal] = ACTIONS(643), - [sym_true] = ACTIONS(643), - [sym_false] = ACTIONS(643), - [sym_character_literal] = ACTIONS(641), - [sym_string_literal] = ACTIONS(643), - [sym_text_block] = ACTIONS(641), - [sym_null_literal] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_new] = ACTIONS(643), - [anon_sym_class] = ACTIONS(643), - [anon_sym_switch] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_case] = ACTIONS(643), - [anon_sym_default] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_assert] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_synchronized] = ACTIONS(643), - [anon_sym_throw] = ACTIONS(643), - [anon_sym_try] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_AT] = ACTIONS(643), - [anon_sym_open] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_package] = ACTIONS(643), - [anon_sym_import] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_abstract] = ACTIONS(643), - [anon_sym_final] = ACTIONS(643), - [anon_sym_strictfp] = ACTIONS(643), - [anon_sym_native] = ACTIONS(643), - [anon_sym_transient] = ACTIONS(643), - [anon_sym_volatile] = ACTIONS(643), - [anon_sym_sealed] = ACTIONS(643), - [anon_sym_non_DASHsealed] = ACTIONS(641), - [anon_sym_ATinterface] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(643), - [anon_sym_byte] = ACTIONS(643), - [anon_sym_short] = ACTIONS(643), - [anon_sym_int] = ACTIONS(643), - [anon_sym_long] = ACTIONS(643), - [anon_sym_char] = ACTIONS(643), - [anon_sym_float] = ACTIONS(643), - [anon_sym_double] = ACTIONS(643), - [sym_boolean_type] = ACTIONS(643), - [sym_void_type] = ACTIONS(643), - [sym_this] = ACTIONS(643), - [sym_super] = ACTIONS(643), + [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(642), + [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), + [sym_string_literal] = ACTIONS(644), + [sym_text_block] = ACTIONS(642), + [sym_null_literal] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = 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_RBRACE] = 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_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_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_final] = 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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [153] = { - [ts_builtin_sym_end] = ACTIONS(645), - [sym_identifier] = ACTIONS(647), - [sym_decimal_integer_literal] = ACTIONS(647), - [sym_hex_integer_literal] = ACTIONS(647), - [sym_octal_integer_literal] = ACTIONS(645), - [sym_binary_integer_literal] = ACTIONS(645), - [sym_decimal_floating_point_literal] = ACTIONS(645), - [sym_hex_floating_point_literal] = ACTIONS(647), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_character_literal] = ACTIONS(645), - [sym_string_literal] = ACTIONS(647), - [sym_text_block] = ACTIONS(645), - [sym_null_literal] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(645), - [anon_sym_DASH_DASH] = ACTIONS(645), - [anon_sym_new] = ACTIONS(647), - [anon_sym_class] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(647), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_case] = ACTIONS(647), - [anon_sym_default] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_assert] = ACTIONS(647), - [anon_sym_do] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_break] = ACTIONS(647), - [anon_sym_continue] = ACTIONS(647), - [anon_sym_return] = ACTIONS(647), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_synchronized] = ACTIONS(647), - [anon_sym_throw] = ACTIONS(647), - [anon_sym_try] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_open] = ACTIONS(647), - [anon_sym_module] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_package] = ACTIONS(647), - [anon_sym_import] = ACTIONS(647), - [anon_sym_enum] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_final] = ACTIONS(647), - [anon_sym_strictfp] = ACTIONS(647), - [anon_sym_native] = ACTIONS(647), - [anon_sym_transient] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_non_DASHsealed] = ACTIONS(645), - [anon_sym_ATinterface] = ACTIONS(645), - [anon_sym_interface] = ACTIONS(647), - [anon_sym_byte] = ACTIONS(647), - [anon_sym_short] = ACTIONS(647), - [anon_sym_int] = ACTIONS(647), - [anon_sym_long] = ACTIONS(647), - [anon_sym_char] = ACTIONS(647), - [anon_sym_float] = ACTIONS(647), - [anon_sym_double] = ACTIONS(647), - [sym_boolean_type] = ACTIONS(647), - [sym_void_type] = ACTIONS(647), - [sym_this] = ACTIONS(647), - [sym_super] = ACTIONS(647), + [sym__literal] = STATE(407), + [sym_expression] = STATE(507), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym_block] = STATE(446), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [154] = { - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(651), - [sym_decimal_integer_literal] = ACTIONS(651), - [sym_hex_integer_literal] = ACTIONS(651), - [sym_octal_integer_literal] = ACTIONS(649), - [sym_binary_integer_literal] = ACTIONS(649), - [sym_decimal_floating_point_literal] = ACTIONS(649), - [sym_hex_floating_point_literal] = ACTIONS(651), - [sym_true] = ACTIONS(651), - [sym_false] = ACTIONS(651), - [sym_character_literal] = ACTIONS(649), - [sym_string_literal] = ACTIONS(651), - [sym_text_block] = ACTIONS(649), - [sym_null_literal] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_PLUS] = ACTIONS(651), - [anon_sym_DASH] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_new] = ACTIONS(651), - [anon_sym_class] = ACTIONS(651), - [anon_sym_switch] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(649), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(651), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_assert] = ACTIONS(651), - [anon_sym_do] = ACTIONS(651), - [anon_sym_while] = ACTIONS(651), - [anon_sym_break] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(651), - [anon_sym_return] = ACTIONS(651), - [anon_sym_yield] = ACTIONS(651), - [anon_sym_synchronized] = ACTIONS(651), - [anon_sym_throw] = ACTIONS(651), - [anon_sym_try] = ACTIONS(651), - [anon_sym_if] = ACTIONS(651), - [anon_sym_else] = ACTIONS(651), - [anon_sym_for] = ACTIONS(651), - [anon_sym_AT] = ACTIONS(651), - [anon_sym_open] = ACTIONS(651), - [anon_sym_module] = ACTIONS(651), - [anon_sym_static] = ACTIONS(651), - [anon_sym_package] = ACTIONS(651), - [anon_sym_import] = ACTIONS(651), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_public] = ACTIONS(651), - [anon_sym_protected] = ACTIONS(651), - [anon_sym_private] = ACTIONS(651), - [anon_sym_abstract] = ACTIONS(651), - [anon_sym_final] = ACTIONS(651), - [anon_sym_strictfp] = ACTIONS(651), - [anon_sym_native] = ACTIONS(651), - [anon_sym_transient] = ACTIONS(651), - [anon_sym_volatile] = ACTIONS(651), - [anon_sym_sealed] = ACTIONS(651), - [anon_sym_non_DASHsealed] = ACTIONS(649), - [anon_sym_ATinterface] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(651), - [anon_sym_byte] = ACTIONS(651), - [anon_sym_short] = ACTIONS(651), - [anon_sym_int] = ACTIONS(651), - [anon_sym_long] = ACTIONS(651), - [anon_sym_char] = ACTIONS(651), - [anon_sym_float] = ACTIONS(651), - [anon_sym_double] = ACTIONS(651), - [sym_boolean_type] = ACTIONS(651), - [sym_void_type] = ACTIONS(651), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(651), + [ts_builtin_sym_end] = ACTIONS(658), + [sym_identifier] = ACTIONS(660), + [sym_decimal_integer_literal] = ACTIONS(660), + [sym_hex_integer_literal] = ACTIONS(660), + [sym_octal_integer_literal] = ACTIONS(658), + [sym_binary_integer_literal] = ACTIONS(658), + [sym_decimal_floating_point_literal] = ACTIONS(658), + [sym_hex_floating_point_literal] = ACTIONS(660), + [sym_true] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_character_literal] = ACTIONS(658), + [sym_string_literal] = ACTIONS(660), + [sym_text_block] = ACTIONS(658), + [sym_null_literal] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_TILDE] = ACTIONS(658), + [anon_sym_PLUS_PLUS] = ACTIONS(658), + [anon_sym_DASH_DASH] = ACTIONS(658), + [anon_sym_new] = ACTIONS(660), + [anon_sym_class] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_case] = ACTIONS(660), + [anon_sym_default] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(658), + [anon_sym_assert] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_while] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(660), + [anon_sym_synchronized] = ACTIONS(660), + [anon_sym_throw] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [anon_sym_else] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(660), + [anon_sym_open] = ACTIONS(660), + [anon_sym_module] = ACTIONS(660), + [anon_sym_static] = ACTIONS(660), + [anon_sym_package] = ACTIONS(660), + [anon_sym_import] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_public] = ACTIONS(660), + [anon_sym_protected] = ACTIONS(660), + [anon_sym_private] = ACTIONS(660), + [anon_sym_abstract] = ACTIONS(660), + [anon_sym_final] = ACTIONS(660), + [anon_sym_strictfp] = ACTIONS(660), + [anon_sym_native] = ACTIONS(660), + [anon_sym_transient] = ACTIONS(660), + [anon_sym_volatile] = ACTIONS(660), + [anon_sym_sealed] = ACTIONS(660), + [anon_sym_non_DASHsealed] = ACTIONS(658), + [anon_sym_record] = ACTIONS(660), + [anon_sym_ATinterface] = ACTIONS(658), + [anon_sym_interface] = ACTIONS(660), + [anon_sym_byte] = ACTIONS(660), + [anon_sym_short] = ACTIONS(660), + [anon_sym_int] = ACTIONS(660), + [anon_sym_long] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_float] = ACTIONS(660), + [anon_sym_double] = ACTIONS(660), + [sym_boolean_type] = ACTIONS(660), + [sym_void_type] = ACTIONS(660), + [sym_this] = ACTIONS(660), + [sym_super] = ACTIONS(660), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [155] = { - [ts_builtin_sym_end] = ACTIONS(653), - [sym_identifier] = ACTIONS(655), - [sym_decimal_integer_literal] = ACTIONS(655), - [sym_hex_integer_literal] = ACTIONS(655), - [sym_octal_integer_literal] = ACTIONS(653), - [sym_binary_integer_literal] = ACTIONS(653), - [sym_decimal_floating_point_literal] = ACTIONS(653), - [sym_hex_floating_point_literal] = ACTIONS(655), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_character_literal] = ACTIONS(653), - [sym_string_literal] = ACTIONS(655), - [sym_text_block] = ACTIONS(653), - [sym_null_literal] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_new] = ACTIONS(655), - [anon_sym_class] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(653), - [anon_sym_case] = ACTIONS(655), - [anon_sym_default] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_assert] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_yield] = ACTIONS(655), - [anon_sym_synchronized] = ACTIONS(655), - [anon_sym_throw] = ACTIONS(655), - [anon_sym_try] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_open] = ACTIONS(655), - [anon_sym_module] = ACTIONS(655), - [anon_sym_static] = ACTIONS(655), - [anon_sym_package] = ACTIONS(655), - [anon_sym_import] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_public] = ACTIONS(655), - [anon_sym_protected] = ACTIONS(655), - [anon_sym_private] = ACTIONS(655), - [anon_sym_abstract] = ACTIONS(655), - [anon_sym_final] = ACTIONS(655), - [anon_sym_strictfp] = ACTIONS(655), - [anon_sym_native] = ACTIONS(655), - [anon_sym_transient] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym_sealed] = ACTIONS(655), - [anon_sym_non_DASHsealed] = ACTIONS(653), - [anon_sym_ATinterface] = ACTIONS(653), - [anon_sym_interface] = ACTIONS(655), - [anon_sym_byte] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [anon_sym_int] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_char] = ACTIONS(655), - [anon_sym_float] = ACTIONS(655), - [anon_sym_double] = ACTIONS(655), - [sym_boolean_type] = ACTIONS(655), - [sym_void_type] = ACTIONS(655), - [sym_this] = ACTIONS(655), - [sym_super] = ACTIONS(655), + [ts_builtin_sym_end] = ACTIONS(662), + [sym_identifier] = ACTIONS(664), + [sym_decimal_integer_literal] = ACTIONS(664), + [sym_hex_integer_literal] = ACTIONS(664), + [sym_octal_integer_literal] = ACTIONS(662), + [sym_binary_integer_literal] = ACTIONS(662), + [sym_decimal_floating_point_literal] = ACTIONS(662), + [sym_hex_floating_point_literal] = ACTIONS(664), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_character_literal] = ACTIONS(662), + [sym_string_literal] = ACTIONS(664), + [sym_text_block] = ACTIONS(662), + [sym_null_literal] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_PLUS_PLUS] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_new] = ACTIONS(664), + [anon_sym_class] = ACTIONS(664), + [anon_sym_switch] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_case] = ACTIONS(664), + [anon_sym_default] = ACTIONS(664), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_assert] = ACTIONS(664), + [anon_sym_do] = ACTIONS(664), + [anon_sym_while] = ACTIONS(664), + [anon_sym_break] = ACTIONS(664), + [anon_sym_continue] = ACTIONS(664), + [anon_sym_return] = ACTIONS(664), + [anon_sym_yield] = ACTIONS(664), + [anon_sym_synchronized] = ACTIONS(664), + [anon_sym_throw] = ACTIONS(664), + [anon_sym_try] = ACTIONS(664), + [anon_sym_if] = ACTIONS(664), + [anon_sym_else] = ACTIONS(664), + [anon_sym_for] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(664), + [anon_sym_open] = ACTIONS(664), + [anon_sym_module] = ACTIONS(664), + [anon_sym_static] = ACTIONS(664), + [anon_sym_package] = ACTIONS(664), + [anon_sym_import] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(664), + [anon_sym_public] = ACTIONS(664), + [anon_sym_protected] = ACTIONS(664), + [anon_sym_private] = ACTIONS(664), + [anon_sym_abstract] = ACTIONS(664), + [anon_sym_final] = ACTIONS(664), + [anon_sym_strictfp] = ACTIONS(664), + [anon_sym_native] = ACTIONS(664), + [anon_sym_transient] = ACTIONS(664), + [anon_sym_volatile] = ACTIONS(664), + [anon_sym_sealed] = ACTIONS(664), + [anon_sym_non_DASHsealed] = ACTIONS(662), + [anon_sym_record] = ACTIONS(664), + [anon_sym_ATinterface] = ACTIONS(662), + [anon_sym_interface] = ACTIONS(664), + [anon_sym_byte] = ACTIONS(664), + [anon_sym_short] = ACTIONS(664), + [anon_sym_int] = ACTIONS(664), + [anon_sym_long] = ACTIONS(664), + [anon_sym_char] = ACTIONS(664), + [anon_sym_float] = ACTIONS(664), + [anon_sym_double] = ACTIONS(664), + [sym_boolean_type] = ACTIONS(664), + [sym_void_type] = ACTIONS(664), + [sym_this] = ACTIONS(664), + [sym_super] = ACTIONS(664), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [156] = { - [ts_builtin_sym_end] = ACTIONS(657), - [sym_identifier] = ACTIONS(659), - [sym_decimal_integer_literal] = ACTIONS(659), - [sym_hex_integer_literal] = ACTIONS(659), - [sym_octal_integer_literal] = ACTIONS(657), - [sym_binary_integer_literal] = ACTIONS(657), - [sym_decimal_floating_point_literal] = ACTIONS(657), - [sym_hex_floating_point_literal] = ACTIONS(659), - [sym_true] = ACTIONS(659), - [sym_false] = ACTIONS(659), - [sym_character_literal] = ACTIONS(657), - [sym_string_literal] = ACTIONS(659), - [sym_text_block] = ACTIONS(657), - [sym_null_literal] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_PLUS_PLUS] = ACTIONS(657), - [anon_sym_DASH_DASH] = ACTIONS(657), - [anon_sym_new] = ACTIONS(659), - [anon_sym_class] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(657), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(659), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(659), - [anon_sym_do] = ACTIONS(659), - [anon_sym_while] = ACTIONS(659), - [anon_sym_break] = ACTIONS(659), - [anon_sym_continue] = ACTIONS(659), - [anon_sym_return] = ACTIONS(659), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_synchronized] = ACTIONS(659), - [anon_sym_throw] = ACTIONS(659), - [anon_sym_try] = ACTIONS(659), - [anon_sym_if] = ACTIONS(659), - [anon_sym_else] = ACTIONS(659), - [anon_sym_for] = ACTIONS(659), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_open] = ACTIONS(659), - [anon_sym_module] = ACTIONS(659), - [anon_sym_static] = ACTIONS(659), - [anon_sym_package] = ACTIONS(659), - [anon_sym_import] = ACTIONS(659), - [anon_sym_enum] = ACTIONS(659), - [anon_sym_public] = ACTIONS(659), - [anon_sym_protected] = ACTIONS(659), - [anon_sym_private] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(659), - [anon_sym_final] = ACTIONS(659), - [anon_sym_strictfp] = ACTIONS(659), - [anon_sym_native] = ACTIONS(659), - [anon_sym_transient] = ACTIONS(659), - [anon_sym_volatile] = ACTIONS(659), - [anon_sym_sealed] = ACTIONS(659), - [anon_sym_non_DASHsealed] = ACTIONS(657), - [anon_sym_ATinterface] = ACTIONS(657), - [anon_sym_interface] = ACTIONS(659), - [anon_sym_byte] = ACTIONS(659), - [anon_sym_short] = ACTIONS(659), - [anon_sym_int] = ACTIONS(659), - [anon_sym_long] = ACTIONS(659), - [anon_sym_char] = ACTIONS(659), - [anon_sym_float] = ACTIONS(659), - [anon_sym_double] = ACTIONS(659), - [sym_boolean_type] = ACTIONS(659), - [sym_void_type] = ACTIONS(659), - [sym_this] = ACTIONS(659), - [sym_super] = ACTIONS(659), + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(668), + [sym_decimal_integer_literal] = ACTIONS(668), + [sym_hex_integer_literal] = ACTIONS(668), + [sym_octal_integer_literal] = ACTIONS(666), + [sym_binary_integer_literal] = ACTIONS(666), + [sym_decimal_floating_point_literal] = ACTIONS(666), + [sym_hex_floating_point_literal] = ACTIONS(668), + [sym_true] = ACTIONS(668), + [sym_false] = ACTIONS(668), + [sym_character_literal] = ACTIONS(666), + [sym_string_literal] = ACTIONS(668), + [sym_text_block] = ACTIONS(666), + [sym_null_literal] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_new] = ACTIONS(668), + [anon_sym_class] = ACTIONS(668), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_case] = ACTIONS(668), + [anon_sym_default] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym_assert] = ACTIONS(668), + [anon_sym_do] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(668), + [anon_sym_synchronized] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(668), + [anon_sym_try] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_for] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_open] = ACTIONS(668), + [anon_sym_module] = ACTIONS(668), + [anon_sym_static] = ACTIONS(668), + [anon_sym_package] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(668), + [anon_sym_public] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(668), + [anon_sym_final] = ACTIONS(668), + [anon_sym_strictfp] = ACTIONS(668), + [anon_sym_native] = ACTIONS(668), + [anon_sym_transient] = ACTIONS(668), + [anon_sym_volatile] = ACTIONS(668), + [anon_sym_sealed] = ACTIONS(668), + [anon_sym_non_DASHsealed] = ACTIONS(666), + [anon_sym_record] = ACTIONS(668), + [anon_sym_ATinterface] = ACTIONS(666), + [anon_sym_interface] = ACTIONS(668), + [anon_sym_byte] = ACTIONS(668), + [anon_sym_short] = ACTIONS(668), + [anon_sym_int] = ACTIONS(668), + [anon_sym_long] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_float] = ACTIONS(668), + [anon_sym_double] = ACTIONS(668), + [sym_boolean_type] = ACTIONS(668), + [sym_void_type] = ACTIONS(668), + [sym_this] = ACTIONS(668), + [sym_super] = ACTIONS(668), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(661), - [sym_identifier] = ACTIONS(663), - [sym_decimal_integer_literal] = ACTIONS(663), - [sym_hex_integer_literal] = ACTIONS(663), - [sym_octal_integer_literal] = ACTIONS(661), - [sym_binary_integer_literal] = ACTIONS(661), - [sym_decimal_floating_point_literal] = ACTIONS(661), - [sym_hex_floating_point_literal] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_character_literal] = ACTIONS(661), - [sym_string_literal] = ACTIONS(663), - [sym_text_block] = ACTIONS(661), - [sym_null_literal] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_new] = ACTIONS(663), - [anon_sym_class] = ACTIONS(663), - [anon_sym_switch] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_RBRACE] = ACTIONS(661), - [anon_sym_case] = ACTIONS(663), - [anon_sym_default] = ACTIONS(663), - [anon_sym_SEMI] = ACTIONS(661), - [anon_sym_assert] = ACTIONS(663), - [anon_sym_do] = ACTIONS(663), - [anon_sym_while] = ACTIONS(663), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(663), - [anon_sym_return] = ACTIONS(663), - [anon_sym_yield] = ACTIONS(663), - [anon_sym_synchronized] = ACTIONS(663), - [anon_sym_throw] = ACTIONS(663), - [anon_sym_try] = ACTIONS(663), - [anon_sym_if] = ACTIONS(663), - [anon_sym_else] = ACTIONS(663), - [anon_sym_for] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_open] = ACTIONS(663), - [anon_sym_module] = ACTIONS(663), - [anon_sym_static] = ACTIONS(663), - [anon_sym_package] = ACTIONS(663), - [anon_sym_import] = ACTIONS(663), - [anon_sym_enum] = ACTIONS(663), - [anon_sym_public] = ACTIONS(663), - [anon_sym_protected] = ACTIONS(663), - [anon_sym_private] = ACTIONS(663), - [anon_sym_abstract] = ACTIONS(663), - [anon_sym_final] = ACTIONS(663), - [anon_sym_strictfp] = ACTIONS(663), - [anon_sym_native] = ACTIONS(663), - [anon_sym_transient] = ACTIONS(663), - [anon_sym_volatile] = ACTIONS(663), - [anon_sym_sealed] = ACTIONS(663), - [anon_sym_non_DASHsealed] = ACTIONS(661), - [anon_sym_ATinterface] = ACTIONS(661), - [anon_sym_interface] = ACTIONS(663), - [anon_sym_byte] = ACTIONS(663), - [anon_sym_short] = ACTIONS(663), - [anon_sym_int] = ACTIONS(663), - [anon_sym_long] = ACTIONS(663), - [anon_sym_char] = ACTIONS(663), - [anon_sym_float] = ACTIONS(663), - [anon_sym_double] = ACTIONS(663), - [sym_boolean_type] = ACTIONS(663), - [sym_void_type] = ACTIONS(663), - [sym_this] = ACTIONS(663), - [sym_super] = ACTIONS(663), + [ts_builtin_sym_end] = ACTIONS(670), + [sym_identifier] = ACTIONS(672), + [sym_decimal_integer_literal] = ACTIONS(672), + [sym_hex_integer_literal] = ACTIONS(672), + [sym_octal_integer_literal] = ACTIONS(670), + [sym_binary_integer_literal] = ACTIONS(670), + [sym_decimal_floating_point_literal] = ACTIONS(670), + [sym_hex_floating_point_literal] = ACTIONS(672), + [sym_true] = ACTIONS(672), + [sym_false] = ACTIONS(672), + [sym_character_literal] = ACTIONS(670), + [sym_string_literal] = ACTIONS(672), + [sym_text_block] = ACTIONS(670), + [sym_null_literal] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(670), + [anon_sym_DASH_DASH] = ACTIONS(670), + [anon_sym_new] = ACTIONS(672), + [anon_sym_class] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(672), + [anon_sym_default] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(670), + [anon_sym_assert] = ACTIONS(672), + [anon_sym_do] = ACTIONS(672), + [anon_sym_while] = ACTIONS(672), + [anon_sym_break] = ACTIONS(672), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_return] = ACTIONS(672), + [anon_sym_yield] = ACTIONS(672), + [anon_sym_synchronized] = ACTIONS(672), + [anon_sym_throw] = ACTIONS(672), + [anon_sym_try] = ACTIONS(672), + [anon_sym_if] = ACTIONS(672), + [anon_sym_else] = ACTIONS(672), + [anon_sym_for] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym_open] = ACTIONS(672), + [anon_sym_module] = ACTIONS(672), + [anon_sym_static] = ACTIONS(672), + [anon_sym_package] = ACTIONS(672), + [anon_sym_import] = ACTIONS(672), + [anon_sym_enum] = ACTIONS(672), + [anon_sym_public] = ACTIONS(672), + [anon_sym_protected] = ACTIONS(672), + [anon_sym_private] = ACTIONS(672), + [anon_sym_abstract] = ACTIONS(672), + [anon_sym_final] = ACTIONS(672), + [anon_sym_strictfp] = ACTIONS(672), + [anon_sym_native] = ACTIONS(672), + [anon_sym_transient] = ACTIONS(672), + [anon_sym_volatile] = ACTIONS(672), + [anon_sym_sealed] = ACTIONS(672), + [anon_sym_non_DASHsealed] = ACTIONS(670), + [anon_sym_record] = ACTIONS(672), + [anon_sym_ATinterface] = ACTIONS(670), + [anon_sym_interface] = ACTIONS(672), + [anon_sym_byte] = ACTIONS(672), + [anon_sym_short] = ACTIONS(672), + [anon_sym_int] = ACTIONS(672), + [anon_sym_long] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_float] = ACTIONS(672), + [anon_sym_double] = ACTIONS(672), + [sym_boolean_type] = ACTIONS(672), + [sym_void_type] = ACTIONS(672), + [sym_this] = ACTIONS(672), + [sym_super] = ACTIONS(672), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(665), - [sym_identifier] = ACTIONS(667), - [sym_decimal_integer_literal] = ACTIONS(667), - [sym_hex_integer_literal] = ACTIONS(667), - [sym_octal_integer_literal] = ACTIONS(665), - [sym_binary_integer_literal] = ACTIONS(665), - [sym_decimal_floating_point_literal] = ACTIONS(665), - [sym_hex_floating_point_literal] = ACTIONS(667), - [sym_true] = ACTIONS(667), - [sym_false] = ACTIONS(667), - [sym_character_literal] = ACTIONS(665), - [sym_string_literal] = ACTIONS(667), - [sym_text_block] = ACTIONS(665), - [sym_null_literal] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(665), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_new] = ACTIONS(667), - [anon_sym_class] = ACTIONS(667), - [anon_sym_switch] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(665), - [anon_sym_case] = ACTIONS(667), - [anon_sym_default] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(667), - [anon_sym_do] = ACTIONS(667), - [anon_sym_while] = ACTIONS(667), - [anon_sym_break] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_return] = ACTIONS(667), - [anon_sym_yield] = ACTIONS(667), - [anon_sym_synchronized] = ACTIONS(667), - [anon_sym_throw] = ACTIONS(667), - [anon_sym_try] = ACTIONS(667), - [anon_sym_if] = ACTIONS(667), - [anon_sym_else] = ACTIONS(667), - [anon_sym_for] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_open] = ACTIONS(667), - [anon_sym_module] = ACTIONS(667), - [anon_sym_static] = ACTIONS(667), - [anon_sym_package] = ACTIONS(667), - [anon_sym_import] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(667), - [anon_sym_public] = ACTIONS(667), - [anon_sym_protected] = ACTIONS(667), - [anon_sym_private] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(667), - [anon_sym_final] = ACTIONS(667), - [anon_sym_strictfp] = ACTIONS(667), - [anon_sym_native] = ACTIONS(667), - [anon_sym_transient] = ACTIONS(667), - [anon_sym_volatile] = ACTIONS(667), - [anon_sym_sealed] = ACTIONS(667), - [anon_sym_non_DASHsealed] = ACTIONS(665), - [anon_sym_ATinterface] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_byte] = ACTIONS(667), - [anon_sym_short] = ACTIONS(667), - [anon_sym_int] = ACTIONS(667), - [anon_sym_long] = ACTIONS(667), - [anon_sym_char] = ACTIONS(667), - [anon_sym_float] = ACTIONS(667), - [anon_sym_double] = ACTIONS(667), - [sym_boolean_type] = ACTIONS(667), - [sym_void_type] = ACTIONS(667), - [sym_this] = ACTIONS(667), - [sym_super] = ACTIONS(667), + [ts_builtin_sym_end] = ACTIONS(674), + [sym_identifier] = ACTIONS(676), + [sym_decimal_integer_literal] = ACTIONS(676), + [sym_hex_integer_literal] = ACTIONS(676), + [sym_octal_integer_literal] = ACTIONS(674), + [sym_binary_integer_literal] = ACTIONS(674), + [sym_decimal_floating_point_literal] = ACTIONS(674), + [sym_hex_floating_point_literal] = ACTIONS(676), + [sym_true] = ACTIONS(676), + [sym_false] = ACTIONS(676), + [sym_character_literal] = ACTIONS(674), + [sym_string_literal] = ACTIONS(676), + [sym_text_block] = ACTIONS(674), + [sym_null_literal] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_new] = ACTIONS(676), + [anon_sym_class] = ACTIONS(676), + [anon_sym_switch] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_assert] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_break] = ACTIONS(676), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(676), + [anon_sym_synchronized] = ACTIONS(676), + [anon_sym_throw] = ACTIONS(676), + [anon_sym_try] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_else] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym_open] = ACTIONS(676), + [anon_sym_module] = ACTIONS(676), + [anon_sym_static] = ACTIONS(676), + [anon_sym_package] = ACTIONS(676), + [anon_sym_import] = ACTIONS(676), + [anon_sym_enum] = ACTIONS(676), + [anon_sym_public] = ACTIONS(676), + [anon_sym_protected] = ACTIONS(676), + [anon_sym_private] = ACTIONS(676), + [anon_sym_abstract] = ACTIONS(676), + [anon_sym_final] = ACTIONS(676), + [anon_sym_strictfp] = ACTIONS(676), + [anon_sym_native] = ACTIONS(676), + [anon_sym_transient] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym_sealed] = ACTIONS(676), + [anon_sym_non_DASHsealed] = ACTIONS(674), + [anon_sym_record] = ACTIONS(676), + [anon_sym_ATinterface] = ACTIONS(674), + [anon_sym_interface] = ACTIONS(676), + [anon_sym_byte] = ACTIONS(676), + [anon_sym_short] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_long] = ACTIONS(676), + [anon_sym_char] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [sym_boolean_type] = ACTIONS(676), + [sym_void_type] = ACTIONS(676), + [sym_this] = ACTIONS(676), + [sym_super] = ACTIONS(676), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(669), - [sym_identifier] = ACTIONS(671), - [sym_decimal_integer_literal] = ACTIONS(671), - [sym_hex_integer_literal] = ACTIONS(671), - [sym_octal_integer_literal] = ACTIONS(669), - [sym_binary_integer_literal] = ACTIONS(669), - [sym_decimal_floating_point_literal] = ACTIONS(669), - [sym_hex_floating_point_literal] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [sym_character_literal] = ACTIONS(669), - [sym_string_literal] = ACTIONS(671), - [sym_text_block] = ACTIONS(669), - [sym_null_literal] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(669), - [anon_sym_PLUS_PLUS] = ACTIONS(669), - [anon_sym_DASH_DASH] = ACTIONS(669), - [anon_sym_new] = ACTIONS(671), - [anon_sym_class] = ACTIONS(671), - [anon_sym_switch] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(669), - [anon_sym_case] = ACTIONS(671), - [anon_sym_default] = ACTIONS(671), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_assert] = ACTIONS(671), - [anon_sym_do] = ACTIONS(671), - [anon_sym_while] = ACTIONS(671), - [anon_sym_break] = ACTIONS(671), - [anon_sym_continue] = ACTIONS(671), - [anon_sym_return] = ACTIONS(671), - [anon_sym_yield] = ACTIONS(671), - [anon_sym_synchronized] = ACTIONS(671), - [anon_sym_throw] = ACTIONS(671), - [anon_sym_try] = ACTIONS(671), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(671), - [anon_sym_for] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_open] = ACTIONS(671), - [anon_sym_module] = ACTIONS(671), - [anon_sym_static] = ACTIONS(671), - [anon_sym_package] = ACTIONS(671), - [anon_sym_import] = ACTIONS(671), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_public] = ACTIONS(671), - [anon_sym_protected] = ACTIONS(671), - [anon_sym_private] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(671), - [anon_sym_final] = ACTIONS(671), - [anon_sym_strictfp] = ACTIONS(671), - [anon_sym_native] = ACTIONS(671), - [anon_sym_transient] = ACTIONS(671), - [anon_sym_volatile] = ACTIONS(671), - [anon_sym_sealed] = ACTIONS(671), - [anon_sym_non_DASHsealed] = ACTIONS(669), - [anon_sym_ATinterface] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(671), - [anon_sym_byte] = ACTIONS(671), - [anon_sym_short] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_long] = ACTIONS(671), - [anon_sym_char] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [sym_boolean_type] = ACTIONS(671), - [sym_void_type] = ACTIONS(671), - [sym_this] = ACTIONS(671), - [sym_super] = ACTIONS(671), + [ts_builtin_sym_end] = ACTIONS(678), + [sym_identifier] = ACTIONS(680), + [sym_decimal_integer_literal] = ACTIONS(680), + [sym_hex_integer_literal] = ACTIONS(680), + [sym_octal_integer_literal] = ACTIONS(678), + [sym_binary_integer_literal] = ACTIONS(678), + [sym_decimal_floating_point_literal] = ACTIONS(678), + [sym_hex_floating_point_literal] = ACTIONS(680), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_character_literal] = ACTIONS(678), + [sym_string_literal] = ACTIONS(680), + [sym_text_block] = ACTIONS(678), + [sym_null_literal] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_PLUS] = ACTIONS(680), + [anon_sym_DASH] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_TILDE] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_new] = ACTIONS(680), + [anon_sym_class] = ACTIONS(680), + [anon_sym_switch] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_case] = ACTIONS(680), + [anon_sym_default] = ACTIONS(680), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_assert] = ACTIONS(680), + [anon_sym_do] = ACTIONS(680), + [anon_sym_while] = ACTIONS(680), + [anon_sym_break] = ACTIONS(680), + [anon_sym_continue] = ACTIONS(680), + [anon_sym_return] = ACTIONS(680), + [anon_sym_yield] = ACTIONS(680), + [anon_sym_synchronized] = ACTIONS(680), + [anon_sym_throw] = ACTIONS(680), + [anon_sym_try] = ACTIONS(680), + [anon_sym_if] = ACTIONS(680), + [anon_sym_else] = ACTIONS(680), + [anon_sym_for] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_open] = ACTIONS(680), + [anon_sym_module] = ACTIONS(680), + [anon_sym_static] = ACTIONS(680), + [anon_sym_package] = ACTIONS(680), + [anon_sym_import] = ACTIONS(680), + [anon_sym_enum] = ACTIONS(680), + [anon_sym_public] = ACTIONS(680), + [anon_sym_protected] = ACTIONS(680), + [anon_sym_private] = ACTIONS(680), + [anon_sym_abstract] = ACTIONS(680), + [anon_sym_final] = ACTIONS(680), + [anon_sym_strictfp] = ACTIONS(680), + [anon_sym_native] = ACTIONS(680), + [anon_sym_transient] = ACTIONS(680), + [anon_sym_volatile] = ACTIONS(680), + [anon_sym_sealed] = ACTIONS(680), + [anon_sym_non_DASHsealed] = ACTIONS(678), + [anon_sym_record] = ACTIONS(680), + [anon_sym_ATinterface] = ACTIONS(678), + [anon_sym_interface] = ACTIONS(680), + [anon_sym_byte] = ACTIONS(680), + [anon_sym_short] = ACTIONS(680), + [anon_sym_int] = ACTIONS(680), + [anon_sym_long] = ACTIONS(680), + [anon_sym_char] = ACTIONS(680), + [anon_sym_float] = ACTIONS(680), + [anon_sym_double] = ACTIONS(680), + [sym_boolean_type] = ACTIONS(680), + [sym_void_type] = ACTIONS(680), + [sym_this] = ACTIONS(680), + [sym_super] = ACTIONS(680), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(673), - [sym_identifier] = ACTIONS(675), - [sym_decimal_integer_literal] = ACTIONS(675), - [sym_hex_integer_literal] = ACTIONS(675), - [sym_octal_integer_literal] = ACTIONS(673), - [sym_binary_integer_literal] = ACTIONS(673), - [sym_decimal_floating_point_literal] = ACTIONS(673), - [sym_hex_floating_point_literal] = ACTIONS(675), - [sym_true] = ACTIONS(675), - [sym_false] = ACTIONS(675), - [sym_character_literal] = ACTIONS(673), - [sym_string_literal] = ACTIONS(675), - [sym_text_block] = ACTIONS(673), - [sym_null_literal] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS_PLUS] = ACTIONS(673), - [anon_sym_DASH_DASH] = ACTIONS(673), - [anon_sym_new] = ACTIONS(675), - [anon_sym_class] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(673), - [anon_sym_RBRACE] = ACTIONS(673), - [anon_sym_case] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_do] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(675), - [anon_sym_synchronized] = ACTIONS(675), - [anon_sym_throw] = ACTIONS(675), - [anon_sym_try] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_else] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_open] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_package] = ACTIONS(675), - [anon_sym_import] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_abstract] = ACTIONS(675), - [anon_sym_final] = ACTIONS(675), - [anon_sym_strictfp] = ACTIONS(675), - [anon_sym_native] = ACTIONS(675), - [anon_sym_transient] = ACTIONS(675), - [anon_sym_volatile] = ACTIONS(675), - [anon_sym_sealed] = ACTIONS(675), - [anon_sym_non_DASHsealed] = ACTIONS(673), - [anon_sym_ATinterface] = ACTIONS(673), - [anon_sym_interface] = ACTIONS(675), - [anon_sym_byte] = ACTIONS(675), - [anon_sym_short] = ACTIONS(675), - [anon_sym_int] = ACTIONS(675), - [anon_sym_long] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_float] = ACTIONS(675), - [anon_sym_double] = ACTIONS(675), - [sym_boolean_type] = ACTIONS(675), - [sym_void_type] = ACTIONS(675), - [sym_this] = ACTIONS(675), - [sym_super] = ACTIONS(675), + [ts_builtin_sym_end] = ACTIONS(682), + [sym_identifier] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(684), + [sym_hex_integer_literal] = ACTIONS(684), + [sym_octal_integer_literal] = ACTIONS(682), + [sym_binary_integer_literal] = ACTIONS(682), + [sym_decimal_floating_point_literal] = ACTIONS(682), + [sym_hex_floating_point_literal] = ACTIONS(684), + [sym_true] = ACTIONS(684), + [sym_false] = ACTIONS(684), + [sym_character_literal] = ACTIONS(682), + [sym_string_literal] = ACTIONS(684), + [sym_text_block] = ACTIONS(682), + [sym_null_literal] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_TILDE] = ACTIONS(682), + [anon_sym_PLUS_PLUS] = ACTIONS(682), + [anon_sym_DASH_DASH] = ACTIONS(682), + [anon_sym_new] = ACTIONS(684), + [anon_sym_class] = ACTIONS(684), + [anon_sym_switch] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_case] = ACTIONS(684), + [anon_sym_default] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_assert] = ACTIONS(684), + [anon_sym_do] = ACTIONS(684), + [anon_sym_while] = ACTIONS(684), + [anon_sym_break] = ACTIONS(684), + [anon_sym_continue] = ACTIONS(684), + [anon_sym_return] = ACTIONS(684), + [anon_sym_yield] = ACTIONS(684), + [anon_sym_synchronized] = ACTIONS(684), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_try] = ACTIONS(684), + [anon_sym_if] = ACTIONS(684), + [anon_sym_else] = ACTIONS(684), + [anon_sym_for] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_open] = ACTIONS(684), + [anon_sym_module] = ACTIONS(684), + [anon_sym_static] = ACTIONS(684), + [anon_sym_package] = ACTIONS(684), + [anon_sym_import] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(684), + [anon_sym_public] = ACTIONS(684), + [anon_sym_protected] = ACTIONS(684), + [anon_sym_private] = ACTIONS(684), + [anon_sym_abstract] = ACTIONS(684), + [anon_sym_final] = ACTIONS(684), + [anon_sym_strictfp] = ACTIONS(684), + [anon_sym_native] = ACTIONS(684), + [anon_sym_transient] = ACTIONS(684), + [anon_sym_volatile] = ACTIONS(684), + [anon_sym_sealed] = ACTIONS(684), + [anon_sym_non_DASHsealed] = ACTIONS(682), + [anon_sym_record] = ACTIONS(684), + [anon_sym_ATinterface] = ACTIONS(682), + [anon_sym_interface] = ACTIONS(684), + [anon_sym_byte] = ACTIONS(684), + [anon_sym_short] = ACTIONS(684), + [anon_sym_int] = ACTIONS(684), + [anon_sym_long] = ACTIONS(684), + [anon_sym_char] = ACTIONS(684), + [anon_sym_float] = ACTIONS(684), + [anon_sym_double] = ACTIONS(684), + [sym_boolean_type] = ACTIONS(684), + [sym_void_type] = ACTIONS(684), + [sym_this] = ACTIONS(684), + [sym_super] = ACTIONS(684), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [161] = { - [ts_builtin_sym_end] = ACTIONS(677), - [sym_identifier] = ACTIONS(679), - [sym_decimal_integer_literal] = ACTIONS(679), - [sym_hex_integer_literal] = ACTIONS(679), - [sym_octal_integer_literal] = ACTIONS(677), - [sym_binary_integer_literal] = ACTIONS(677), - [sym_decimal_floating_point_literal] = ACTIONS(677), - [sym_hex_floating_point_literal] = ACTIONS(679), - [sym_true] = ACTIONS(679), - [sym_false] = ACTIONS(679), - [sym_character_literal] = ACTIONS(677), - [sym_string_literal] = ACTIONS(679), - [sym_text_block] = ACTIONS(677), - [sym_null_literal] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_PLUS] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_TILDE] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_new] = ACTIONS(679), - [anon_sym_class] = ACTIONS(679), - [anon_sym_switch] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_default] = ACTIONS(679), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_assert] = ACTIONS(679), - [anon_sym_do] = ACTIONS(679), - [anon_sym_while] = ACTIONS(679), - [anon_sym_break] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_return] = ACTIONS(679), - [anon_sym_yield] = ACTIONS(679), - [anon_sym_synchronized] = ACTIONS(679), - [anon_sym_throw] = ACTIONS(679), - [anon_sym_try] = ACTIONS(679), - [anon_sym_if] = ACTIONS(679), - [anon_sym_else] = ACTIONS(679), - [anon_sym_for] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(679), - [anon_sym_open] = ACTIONS(679), - [anon_sym_module] = ACTIONS(679), - [anon_sym_static] = ACTIONS(679), - [anon_sym_package] = ACTIONS(679), - [anon_sym_import] = ACTIONS(679), - [anon_sym_enum] = ACTIONS(679), - [anon_sym_public] = ACTIONS(679), - [anon_sym_protected] = ACTIONS(679), - [anon_sym_private] = ACTIONS(679), - [anon_sym_abstract] = ACTIONS(679), - [anon_sym_final] = ACTIONS(679), - [anon_sym_strictfp] = ACTIONS(679), - [anon_sym_native] = ACTIONS(679), - [anon_sym_transient] = ACTIONS(679), - [anon_sym_volatile] = ACTIONS(679), - [anon_sym_sealed] = ACTIONS(679), - [anon_sym_non_DASHsealed] = ACTIONS(677), - [anon_sym_ATinterface] = ACTIONS(677), - [anon_sym_interface] = ACTIONS(679), - [anon_sym_byte] = ACTIONS(679), - [anon_sym_short] = ACTIONS(679), - [anon_sym_int] = ACTIONS(679), - [anon_sym_long] = ACTIONS(679), - [anon_sym_char] = ACTIONS(679), - [anon_sym_float] = ACTIONS(679), - [anon_sym_double] = ACTIONS(679), - [sym_boolean_type] = ACTIONS(679), - [sym_void_type] = ACTIONS(679), - [sym_this] = ACTIONS(679), - [sym_super] = ACTIONS(679), + [ts_builtin_sym_end] = ACTIONS(686), + [sym_identifier] = ACTIONS(688), + [sym_decimal_integer_literal] = ACTIONS(688), + [sym_hex_integer_literal] = ACTIONS(688), + [sym_octal_integer_literal] = ACTIONS(686), + [sym_binary_integer_literal] = ACTIONS(686), + [sym_decimal_floating_point_literal] = ACTIONS(686), + [sym_hex_floating_point_literal] = ACTIONS(688), + [sym_true] = ACTIONS(688), + [sym_false] = ACTIONS(688), + [sym_character_literal] = ACTIONS(686), + [sym_string_literal] = ACTIONS(688), + [sym_text_block] = ACTIONS(686), + [sym_null_literal] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_new] = ACTIONS(688), + [anon_sym_class] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_case] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_synchronized] = ACTIONS(688), + [anon_sym_throw] = ACTIONS(688), + [anon_sym_try] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_else] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_open] = ACTIONS(688), + [anon_sym_module] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_package] = ACTIONS(688), + [anon_sym_import] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_public] = ACTIONS(688), + [anon_sym_protected] = ACTIONS(688), + [anon_sym_private] = ACTIONS(688), + [anon_sym_abstract] = ACTIONS(688), + [anon_sym_final] = ACTIONS(688), + [anon_sym_strictfp] = ACTIONS(688), + [anon_sym_native] = ACTIONS(688), + [anon_sym_transient] = ACTIONS(688), + [anon_sym_volatile] = ACTIONS(688), + [anon_sym_sealed] = ACTIONS(688), + [anon_sym_non_DASHsealed] = ACTIONS(686), + [anon_sym_record] = ACTIONS(688), + [anon_sym_ATinterface] = ACTIONS(686), + [anon_sym_interface] = ACTIONS(688), + [anon_sym_byte] = ACTIONS(688), + [anon_sym_short] = ACTIONS(688), + [anon_sym_int] = ACTIONS(688), + [anon_sym_long] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_float] = ACTIONS(688), + [anon_sym_double] = ACTIONS(688), + [sym_boolean_type] = ACTIONS(688), + [sym_void_type] = ACTIONS(688), + [sym_this] = ACTIONS(688), + [sym_super] = ACTIONS(688), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [sym_decimal_integer_literal] = ACTIONS(683), - [sym_hex_integer_literal] = ACTIONS(683), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(681), - [sym_decimal_floating_point_literal] = ACTIONS(681), - [sym_hex_floating_point_literal] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_character_literal] = ACTIONS(681), - [sym_string_literal] = ACTIONS(683), - [sym_text_block] = ACTIONS(681), - [sym_null_literal] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_new] = ACTIONS(683), - [anon_sym_class] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_assert] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(683), - [anon_sym_synchronized] = ACTIONS(683), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_try] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_else] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [anon_sym_open] = ACTIONS(683), - [anon_sym_module] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_package] = ACTIONS(683), - [anon_sym_import] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_public] = ACTIONS(683), - [anon_sym_protected] = ACTIONS(683), - [anon_sym_private] = ACTIONS(683), - [anon_sym_abstract] = ACTIONS(683), - [anon_sym_final] = ACTIONS(683), - [anon_sym_strictfp] = ACTIONS(683), - [anon_sym_native] = ACTIONS(683), - [anon_sym_transient] = ACTIONS(683), - [anon_sym_volatile] = ACTIONS(683), - [anon_sym_sealed] = ACTIONS(683), - [anon_sym_non_DASHsealed] = ACTIONS(681), - [anon_sym_ATinterface] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(683), - [anon_sym_byte] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [anon_sym_int] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_float] = ACTIONS(683), - [anon_sym_double] = ACTIONS(683), - [sym_boolean_type] = ACTIONS(683), - [sym_void_type] = ACTIONS(683), - [sym_this] = ACTIONS(683), - [sym_super] = ACTIONS(683), + [ts_builtin_sym_end] = ACTIONS(690), + [sym_identifier] = ACTIONS(692), + [sym_decimal_integer_literal] = ACTIONS(692), + [sym_hex_integer_literal] = ACTIONS(692), + [sym_octal_integer_literal] = ACTIONS(690), + [sym_binary_integer_literal] = ACTIONS(690), + [sym_decimal_floating_point_literal] = ACTIONS(690), + [sym_hex_floating_point_literal] = ACTIONS(692), + [sym_true] = ACTIONS(692), + [sym_false] = ACTIONS(692), + [sym_character_literal] = ACTIONS(690), + [sym_string_literal] = ACTIONS(692), + [sym_text_block] = ACTIONS(690), + [sym_null_literal] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_PLUS_PLUS] = ACTIONS(690), + [anon_sym_DASH_DASH] = ACTIONS(690), + [anon_sym_new] = ACTIONS(692), + [anon_sym_class] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_assert] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_break] = ACTIONS(692), + [anon_sym_continue] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_yield] = ACTIONS(692), + [anon_sym_synchronized] = ACTIONS(692), + [anon_sym_throw] = ACTIONS(692), + [anon_sym_try] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_else] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(692), + [anon_sym_open] = ACTIONS(692), + [anon_sym_module] = ACTIONS(692), + [anon_sym_static] = ACTIONS(692), + [anon_sym_package] = ACTIONS(692), + [anon_sym_import] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(692), + [anon_sym_public] = ACTIONS(692), + [anon_sym_protected] = ACTIONS(692), + [anon_sym_private] = ACTIONS(692), + [anon_sym_abstract] = ACTIONS(692), + [anon_sym_final] = ACTIONS(692), + [anon_sym_strictfp] = ACTIONS(692), + [anon_sym_native] = ACTIONS(692), + [anon_sym_transient] = ACTIONS(692), + [anon_sym_volatile] = ACTIONS(692), + [anon_sym_sealed] = ACTIONS(692), + [anon_sym_non_DASHsealed] = ACTIONS(690), + [anon_sym_record] = ACTIONS(692), + [anon_sym_ATinterface] = ACTIONS(690), + [anon_sym_interface] = ACTIONS(692), + [anon_sym_byte] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [anon_sym_int] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_char] = ACTIONS(692), + [anon_sym_float] = ACTIONS(692), + [anon_sym_double] = ACTIONS(692), + [sym_boolean_type] = ACTIONS(692), + [sym_void_type] = ACTIONS(692), + [sym_this] = ACTIONS(692), + [sym_super] = ACTIONS(692), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [163] = { - [ts_builtin_sym_end] = ACTIONS(685), - [sym_identifier] = ACTIONS(687), - [sym_decimal_integer_literal] = ACTIONS(687), - [sym_hex_integer_literal] = ACTIONS(687), - [sym_octal_integer_literal] = ACTIONS(685), - [sym_binary_integer_literal] = ACTIONS(685), - [sym_decimal_floating_point_literal] = ACTIONS(685), - [sym_hex_floating_point_literal] = ACTIONS(687), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_character_literal] = ACTIONS(685), - [sym_string_literal] = ACTIONS(687), - [sym_text_block] = ACTIONS(685), - [sym_null_literal] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_PLUS_PLUS] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(685), - [anon_sym_new] = ACTIONS(687), - [anon_sym_class] = ACTIONS(687), - [anon_sym_switch] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_case] = ACTIONS(687), - [anon_sym_default] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_assert] = ACTIONS(687), - [anon_sym_do] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_break] = ACTIONS(687), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_return] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(687), - [anon_sym_synchronized] = ACTIONS(687), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_try] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_else] = ACTIONS(687), - [anon_sym_for] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(687), - [anon_sym_open] = ACTIONS(687), - [anon_sym_module] = ACTIONS(687), - [anon_sym_static] = ACTIONS(687), - [anon_sym_package] = ACTIONS(687), - [anon_sym_import] = ACTIONS(687), - [anon_sym_enum] = ACTIONS(687), - [anon_sym_public] = ACTIONS(687), - [anon_sym_protected] = ACTIONS(687), - [anon_sym_private] = ACTIONS(687), - [anon_sym_abstract] = ACTIONS(687), - [anon_sym_final] = ACTIONS(687), - [anon_sym_strictfp] = ACTIONS(687), - [anon_sym_native] = ACTIONS(687), - [anon_sym_transient] = ACTIONS(687), - [anon_sym_volatile] = ACTIONS(687), - [anon_sym_sealed] = ACTIONS(687), - [anon_sym_non_DASHsealed] = ACTIONS(685), - [anon_sym_ATinterface] = ACTIONS(685), - [anon_sym_interface] = ACTIONS(687), - [anon_sym_byte] = ACTIONS(687), - [anon_sym_short] = ACTIONS(687), - [anon_sym_int] = ACTIONS(687), - [anon_sym_long] = ACTIONS(687), - [anon_sym_char] = ACTIONS(687), - [anon_sym_float] = ACTIONS(687), - [anon_sym_double] = ACTIONS(687), - [sym_boolean_type] = ACTIONS(687), - [sym_void_type] = ACTIONS(687), - [sym_this] = ACTIONS(687), - [sym_super] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(694), + [sym_identifier] = ACTIONS(696), + [sym_decimal_integer_literal] = ACTIONS(696), + [sym_hex_integer_literal] = ACTIONS(696), + [sym_octal_integer_literal] = ACTIONS(694), + [sym_binary_integer_literal] = ACTIONS(694), + [sym_decimal_floating_point_literal] = ACTIONS(694), + [sym_hex_floating_point_literal] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_character_literal] = ACTIONS(694), + [sym_string_literal] = ACTIONS(696), + [sym_text_block] = ACTIONS(694), + [sym_null_literal] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_class] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_case] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_assert] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_while] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_synchronized] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(696), + [anon_sym_open] = ACTIONS(696), + [anon_sym_module] = ACTIONS(696), + [anon_sym_static] = ACTIONS(696), + [anon_sym_package] = ACTIONS(696), + [anon_sym_import] = ACTIONS(696), + [anon_sym_enum] = ACTIONS(696), + [anon_sym_public] = ACTIONS(696), + [anon_sym_protected] = ACTIONS(696), + [anon_sym_private] = ACTIONS(696), + [anon_sym_abstract] = ACTIONS(696), + [anon_sym_final] = ACTIONS(696), + [anon_sym_strictfp] = ACTIONS(696), + [anon_sym_native] = ACTIONS(696), + [anon_sym_transient] = ACTIONS(696), + [anon_sym_volatile] = ACTIONS(696), + [anon_sym_sealed] = ACTIONS(696), + [anon_sym_non_DASHsealed] = ACTIONS(694), + [anon_sym_record] = ACTIONS(696), + [anon_sym_ATinterface] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(696), + [anon_sym_byte] = ACTIONS(696), + [anon_sym_short] = ACTIONS(696), + [anon_sym_int] = ACTIONS(696), + [anon_sym_long] = ACTIONS(696), + [anon_sym_char] = ACTIONS(696), + [anon_sym_float] = ACTIONS(696), + [anon_sym_double] = ACTIONS(696), + [sym_boolean_type] = ACTIONS(696), + [sym_void_type] = ACTIONS(696), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [164] = { - [ts_builtin_sym_end] = ACTIONS(689), - [sym_identifier] = ACTIONS(691), - [sym_decimal_integer_literal] = ACTIONS(691), - [sym_hex_integer_literal] = ACTIONS(691), - [sym_octal_integer_literal] = ACTIONS(689), - [sym_binary_integer_literal] = ACTIONS(689), - [sym_decimal_floating_point_literal] = ACTIONS(689), - [sym_hex_floating_point_literal] = ACTIONS(691), - [sym_true] = ACTIONS(691), - [sym_false] = ACTIONS(691), - [sym_character_literal] = ACTIONS(689), - [sym_string_literal] = ACTIONS(691), - [sym_text_block] = ACTIONS(689), - [sym_null_literal] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [anon_sym_new] = ACTIONS(691), - [anon_sym_class] = ACTIONS(691), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_case] = ACTIONS(691), - [anon_sym_default] = ACTIONS(691), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_assert] = ACTIONS(691), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(691), - [anon_sym_break] = ACTIONS(691), - [anon_sym_continue] = ACTIONS(691), - [anon_sym_return] = ACTIONS(691), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_synchronized] = ACTIONS(691), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_try] = ACTIONS(691), - [anon_sym_if] = ACTIONS(691), - [anon_sym_else] = ACTIONS(691), - [anon_sym_for] = ACTIONS(691), - [anon_sym_AT] = ACTIONS(691), - [anon_sym_open] = ACTIONS(691), - [anon_sym_module] = ACTIONS(691), - [anon_sym_static] = ACTIONS(691), - [anon_sym_package] = ACTIONS(691), - [anon_sym_import] = ACTIONS(691), - [anon_sym_enum] = ACTIONS(691), - [anon_sym_public] = ACTIONS(691), - [anon_sym_protected] = ACTIONS(691), - [anon_sym_private] = ACTIONS(691), - [anon_sym_abstract] = ACTIONS(691), - [anon_sym_final] = ACTIONS(691), - [anon_sym_strictfp] = ACTIONS(691), - [anon_sym_native] = ACTIONS(691), - [anon_sym_transient] = ACTIONS(691), - [anon_sym_volatile] = ACTIONS(691), - [anon_sym_sealed] = ACTIONS(691), - [anon_sym_non_DASHsealed] = ACTIONS(689), - [anon_sym_ATinterface] = ACTIONS(689), - [anon_sym_interface] = ACTIONS(691), - [anon_sym_byte] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [anon_sym_int] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_char] = ACTIONS(691), - [anon_sym_float] = ACTIONS(691), - [anon_sym_double] = ACTIONS(691), - [sym_boolean_type] = ACTIONS(691), - [sym_void_type] = ACTIONS(691), - [sym_this] = ACTIONS(691), - [sym_super] = ACTIONS(691), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(700), + [sym_decimal_integer_literal] = ACTIONS(700), + [sym_hex_integer_literal] = ACTIONS(700), + [sym_octal_integer_literal] = ACTIONS(698), + [sym_binary_integer_literal] = ACTIONS(698), + [sym_decimal_floating_point_literal] = ACTIONS(698), + [sym_hex_floating_point_literal] = ACTIONS(700), + [sym_true] = ACTIONS(700), + [sym_false] = ACTIONS(700), + [sym_character_literal] = ACTIONS(698), + [sym_string_literal] = ACTIONS(700), + [sym_text_block] = ACTIONS(698), + [sym_null_literal] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_new] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_assert] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_yield] = ACTIONS(700), + [anon_sym_synchronized] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_try] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_open] = ACTIONS(700), + [anon_sym_module] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_package] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_protected] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_strictfp] = ACTIONS(700), + [anon_sym_native] = ACTIONS(700), + [anon_sym_transient] = ACTIONS(700), + [anon_sym_volatile] = ACTIONS(700), + [anon_sym_sealed] = ACTIONS(700), + [anon_sym_non_DASHsealed] = ACTIONS(698), + [anon_sym_record] = ACTIONS(700), + [anon_sym_ATinterface] = ACTIONS(698), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_byte] = ACTIONS(700), + [anon_sym_short] = ACTIONS(700), + [anon_sym_int] = ACTIONS(700), + [anon_sym_long] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_float] = ACTIONS(700), + [anon_sym_double] = ACTIONS(700), + [sym_boolean_type] = ACTIONS(700), + [sym_void_type] = ACTIONS(700), + [sym_this] = ACTIONS(700), + [sym_super] = ACTIONS(700), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [165] = { - [sym_switch_label] = STATE(1084), - [aux_sym_switch_block_statement_group_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(695), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(695), - [sym_string_literal] = ACTIONS(693), - [sym_text_block] = ACTIONS(695), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [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(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(697), - [anon_sym_default] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(695), - [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_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_final] = 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(695), - [anon_sym_ATinterface] = ACTIONS(695), - [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), + [ts_builtin_sym_end] = ACTIONS(702), + [sym_identifier] = ACTIONS(704), + [sym_decimal_integer_literal] = ACTIONS(704), + [sym_hex_integer_literal] = ACTIONS(704), + [sym_octal_integer_literal] = ACTIONS(702), + [sym_binary_integer_literal] = ACTIONS(702), + [sym_decimal_floating_point_literal] = ACTIONS(702), + [sym_hex_floating_point_literal] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_character_literal] = ACTIONS(702), + [sym_string_literal] = ACTIONS(704), + [sym_text_block] = ACTIONS(702), + [sym_null_literal] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS_PLUS] = ACTIONS(702), + [anon_sym_DASH_DASH] = ACTIONS(702), + [anon_sym_new] = ACTIONS(704), + [anon_sym_class] = ACTIONS(704), + [anon_sym_switch] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_case] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(704), + [anon_sym_do] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_yield] = ACTIONS(704), + [anon_sym_synchronized] = ACTIONS(704), + [anon_sym_throw] = ACTIONS(704), + [anon_sym_try] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_else] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(704), + [anon_sym_open] = ACTIONS(704), + [anon_sym_module] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_package] = ACTIONS(704), + [anon_sym_import] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_public] = ACTIONS(704), + [anon_sym_protected] = ACTIONS(704), + [anon_sym_private] = ACTIONS(704), + [anon_sym_abstract] = ACTIONS(704), + [anon_sym_final] = ACTIONS(704), + [anon_sym_strictfp] = ACTIONS(704), + [anon_sym_native] = ACTIONS(704), + [anon_sym_transient] = ACTIONS(704), + [anon_sym_volatile] = ACTIONS(704), + [anon_sym_sealed] = ACTIONS(704), + [anon_sym_non_DASHsealed] = ACTIONS(702), + [anon_sym_record] = ACTIONS(704), + [anon_sym_ATinterface] = ACTIONS(702), + [anon_sym_interface] = ACTIONS(704), + [anon_sym_byte] = ACTIONS(704), + [anon_sym_short] = ACTIONS(704), + [anon_sym_int] = ACTIONS(704), + [anon_sym_long] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_float] = ACTIONS(704), + [anon_sym_double] = ACTIONS(704), + [sym_boolean_type] = ACTIONS(704), + [sym_void_type] = ACTIONS(704), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [166] = { - [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(703), - [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), - [sym_string_literal] = ACTIONS(705), - [sym_text_block] = ACTIONS(703), - [sym_null_literal] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(706), + [sym_identifier] = ACTIONS(708), + [sym_decimal_integer_literal] = ACTIONS(708), + [sym_hex_integer_literal] = ACTIONS(708), + [sym_octal_integer_literal] = ACTIONS(706), + [sym_binary_integer_literal] = ACTIONS(706), + [sym_decimal_floating_point_literal] = ACTIONS(706), + [sym_hex_floating_point_literal] = ACTIONS(708), + [sym_true] = ACTIONS(708), + [sym_false] = ACTIONS(708), + [sym_character_literal] = ACTIONS(706), + [sym_string_literal] = ACTIONS(708), + [sym_text_block] = ACTIONS(706), + [sym_null_literal] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(706), + [anon_sym_DASH_DASH] = ACTIONS(706), + [anon_sym_new] = ACTIONS(708), + [anon_sym_class] = ACTIONS(708), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_case] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(708), + [anon_sym_do] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(708), + [anon_sym_synchronized] = ACTIONS(708), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_try] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_else] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_open] = ACTIONS(708), + [anon_sym_module] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_package] = ACTIONS(708), + [anon_sym_import] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_public] = ACTIONS(708), + [anon_sym_protected] = ACTIONS(708), + [anon_sym_private] = ACTIONS(708), + [anon_sym_abstract] = ACTIONS(708), + [anon_sym_final] = ACTIONS(708), + [anon_sym_strictfp] = ACTIONS(708), + [anon_sym_native] = ACTIONS(708), + [anon_sym_transient] = ACTIONS(708), + [anon_sym_volatile] = ACTIONS(708), + [anon_sym_sealed] = ACTIONS(708), + [anon_sym_non_DASHsealed] = ACTIONS(706), + [anon_sym_record] = ACTIONS(708), + [anon_sym_ATinterface] = ACTIONS(706), + [anon_sym_interface] = ACTIONS(708), + [anon_sym_byte] = ACTIONS(708), + [anon_sym_short] = ACTIONS(708), + [anon_sym_int] = ACTIONS(708), + [anon_sym_long] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_float] = ACTIONS(708), + [anon_sym_double] = ACTIONS(708), + [sym_boolean_type] = ACTIONS(708), + [sym_void_type] = ACTIONS(708), + [sym_this] = ACTIONS(708), + [sym_super] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [167] = { - [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(707), - [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), - [sym_string_literal] = ACTIONS(709), - [sym_text_block] = ACTIONS(707), - [sym_null_literal] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(710), + [sym_identifier] = ACTIONS(712), + [sym_decimal_integer_literal] = ACTIONS(712), + [sym_hex_integer_literal] = ACTIONS(712), + [sym_octal_integer_literal] = ACTIONS(710), + [sym_binary_integer_literal] = ACTIONS(710), + [sym_decimal_floating_point_literal] = ACTIONS(710), + [sym_hex_floating_point_literal] = ACTIONS(712), + [sym_true] = ACTIONS(712), + [sym_false] = ACTIONS(712), + [sym_character_literal] = ACTIONS(710), + [sym_string_literal] = ACTIONS(712), + [sym_text_block] = ACTIONS(710), + [sym_null_literal] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_new] = ACTIONS(712), + [anon_sym_class] = ACTIONS(712), + [anon_sym_switch] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_case] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_assert] = ACTIONS(712), + [anon_sym_do] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_yield] = ACTIONS(712), + [anon_sym_synchronized] = ACTIONS(712), + [anon_sym_throw] = ACTIONS(712), + [anon_sym_try] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_else] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(712), + [anon_sym_open] = ACTIONS(712), + [anon_sym_module] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_package] = ACTIONS(712), + [anon_sym_import] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_public] = ACTIONS(712), + [anon_sym_protected] = ACTIONS(712), + [anon_sym_private] = ACTIONS(712), + [anon_sym_abstract] = ACTIONS(712), + [anon_sym_final] = ACTIONS(712), + [anon_sym_strictfp] = ACTIONS(712), + [anon_sym_native] = ACTIONS(712), + [anon_sym_transient] = ACTIONS(712), + [anon_sym_volatile] = ACTIONS(712), + [anon_sym_sealed] = ACTIONS(712), + [anon_sym_non_DASHsealed] = ACTIONS(710), + [anon_sym_record] = ACTIONS(712), + [anon_sym_ATinterface] = ACTIONS(710), + [anon_sym_interface] = ACTIONS(712), + [anon_sym_byte] = ACTIONS(712), + [anon_sym_short] = ACTIONS(712), + [anon_sym_int] = ACTIONS(712), + [anon_sym_long] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_float] = ACTIONS(712), + [anon_sym_double] = ACTIONS(712), + [sym_boolean_type] = ACTIONS(712), + [sym_void_type] = ACTIONS(712), + [sym_this] = ACTIONS(712), + [sym_super] = ACTIONS(712), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [168] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [ts_builtin_sym_end] = ACTIONS(714), + [sym_identifier] = ACTIONS(716), + [sym_decimal_integer_literal] = ACTIONS(716), + [sym_hex_integer_literal] = ACTIONS(716), + [sym_octal_integer_literal] = ACTIONS(714), + [sym_binary_integer_literal] = ACTIONS(714), + [sym_decimal_floating_point_literal] = ACTIONS(714), + [sym_hex_floating_point_literal] = ACTIONS(716), + [sym_true] = ACTIONS(716), + [sym_false] = ACTIONS(716), + [sym_character_literal] = ACTIONS(714), + [sym_string_literal] = ACTIONS(716), + [sym_text_block] = ACTIONS(714), + [sym_null_literal] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(714), + [anon_sym_PLUS_PLUS] = ACTIONS(714), + [anon_sym_DASH_DASH] = ACTIONS(714), + [anon_sym_new] = ACTIONS(716), + [anon_sym_class] = ACTIONS(716), + [anon_sym_switch] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_case] = ACTIONS(716), + [anon_sym_default] = ACTIONS(716), + [anon_sym_SEMI] = ACTIONS(714), + [anon_sym_assert] = ACTIONS(716), + [anon_sym_do] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_break] = ACTIONS(716), + [anon_sym_continue] = ACTIONS(716), + [anon_sym_return] = ACTIONS(716), + [anon_sym_yield] = ACTIONS(716), + [anon_sym_synchronized] = ACTIONS(716), + [anon_sym_throw] = ACTIONS(716), + [anon_sym_try] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_else] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(716), + [anon_sym_open] = ACTIONS(716), + [anon_sym_module] = ACTIONS(716), + [anon_sym_static] = ACTIONS(716), + [anon_sym_package] = ACTIONS(716), + [anon_sym_import] = ACTIONS(716), + [anon_sym_enum] = ACTIONS(716), + [anon_sym_public] = ACTIONS(716), + [anon_sym_protected] = ACTIONS(716), + [anon_sym_private] = ACTIONS(716), + [anon_sym_abstract] = ACTIONS(716), + [anon_sym_final] = ACTIONS(716), + [anon_sym_strictfp] = ACTIONS(716), + [anon_sym_native] = ACTIONS(716), + [anon_sym_transient] = ACTIONS(716), + [anon_sym_volatile] = ACTIONS(716), + [anon_sym_sealed] = ACTIONS(716), + [anon_sym_non_DASHsealed] = ACTIONS(714), + [anon_sym_record] = ACTIONS(716), + [anon_sym_ATinterface] = ACTIONS(714), + [anon_sym_interface] = ACTIONS(716), + [anon_sym_byte] = ACTIONS(716), + [anon_sym_short] = ACTIONS(716), + [anon_sym_int] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_char] = ACTIONS(716), + [anon_sym_float] = ACTIONS(716), + [anon_sym_double] = ACTIONS(716), + [sym_boolean_type] = ACTIONS(716), + [sym_void_type] = ACTIONS(716), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [169] = { + [ts_builtin_sym_end] = ACTIONS(718), + [sym_identifier] = ACTIONS(720), + [sym_decimal_integer_literal] = ACTIONS(720), + [sym_hex_integer_literal] = ACTIONS(720), + [sym_octal_integer_literal] = ACTIONS(718), + [sym_binary_integer_literal] = ACTIONS(718), + [sym_decimal_floating_point_literal] = ACTIONS(718), + [sym_hex_floating_point_literal] = ACTIONS(720), + [sym_true] = ACTIONS(720), + [sym_false] = ACTIONS(720), + [sym_character_literal] = ACTIONS(718), + [sym_string_literal] = ACTIONS(720), + [sym_text_block] = ACTIONS(718), + [sym_null_literal] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(718), + [anon_sym_PLUS_PLUS] = ACTIONS(718), + [anon_sym_DASH_DASH] = ACTIONS(718), + [anon_sym_new] = ACTIONS(720), + [anon_sym_class] = ACTIONS(720), + [anon_sym_switch] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_case] = ACTIONS(720), + [anon_sym_default] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_assert] = ACTIONS(720), + [anon_sym_do] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(720), + [anon_sym_synchronized] = ACTIONS(720), + [anon_sym_throw] = ACTIONS(720), + [anon_sym_try] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_else] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [anon_sym_open] = ACTIONS(720), + [anon_sym_module] = ACTIONS(720), + [anon_sym_static] = ACTIONS(720), + [anon_sym_package] = ACTIONS(720), + [anon_sym_import] = ACTIONS(720), + [anon_sym_enum] = ACTIONS(720), + [anon_sym_public] = ACTIONS(720), + [anon_sym_protected] = ACTIONS(720), + [anon_sym_private] = ACTIONS(720), + [anon_sym_abstract] = ACTIONS(720), + [anon_sym_final] = ACTIONS(720), + [anon_sym_strictfp] = ACTIONS(720), + [anon_sym_native] = ACTIONS(720), + [anon_sym_transient] = ACTIONS(720), + [anon_sym_volatile] = ACTIONS(720), + [anon_sym_sealed] = ACTIONS(720), + [anon_sym_non_DASHsealed] = ACTIONS(718), + [anon_sym_record] = ACTIONS(720), + [anon_sym_ATinterface] = ACTIONS(718), + [anon_sym_interface] = ACTIONS(720), + [anon_sym_byte] = ACTIONS(720), + [anon_sym_short] = ACTIONS(720), + [anon_sym_int] = ACTIONS(720), + [anon_sym_long] = ACTIONS(720), + [anon_sym_char] = ACTIONS(720), + [anon_sym_float] = ACTIONS(720), + [anon_sym_double] = ACTIONS(720), + [sym_boolean_type] = ACTIONS(720), + [sym_void_type] = ACTIONS(720), + [sym_this] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [170] = { + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [sym_decimal_integer_literal] = ACTIONS(724), + [sym_hex_integer_literal] = ACTIONS(724), + [sym_octal_integer_literal] = ACTIONS(722), + [sym_binary_integer_literal] = ACTIONS(722), + [sym_decimal_floating_point_literal] = ACTIONS(722), + [sym_hex_floating_point_literal] = ACTIONS(724), + [sym_true] = ACTIONS(724), + [sym_false] = ACTIONS(724), + [sym_character_literal] = ACTIONS(722), + [sym_string_literal] = ACTIONS(724), + [sym_text_block] = ACTIONS(722), + [sym_null_literal] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(722), + [anon_sym_PLUS_PLUS] = ACTIONS(722), + [anon_sym_DASH_DASH] = ACTIONS(722), + [anon_sym_new] = ACTIONS(724), + [anon_sym_class] = ACTIONS(724), + [anon_sym_switch] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_case] = ACTIONS(724), + [anon_sym_default] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_assert] = ACTIONS(724), + [anon_sym_do] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_synchronized] = ACTIONS(724), + [anon_sym_throw] = ACTIONS(724), + [anon_sym_try] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_else] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [anon_sym_open] = ACTIONS(724), + [anon_sym_module] = ACTIONS(724), + [anon_sym_static] = ACTIONS(724), + [anon_sym_package] = ACTIONS(724), + [anon_sym_import] = ACTIONS(724), + [anon_sym_enum] = ACTIONS(724), + [anon_sym_public] = ACTIONS(724), + [anon_sym_protected] = ACTIONS(724), + [anon_sym_private] = ACTIONS(724), + [anon_sym_abstract] = ACTIONS(724), + [anon_sym_final] = ACTIONS(724), + [anon_sym_strictfp] = ACTIONS(724), + [anon_sym_native] = ACTIONS(724), + [anon_sym_transient] = ACTIONS(724), + [anon_sym_volatile] = ACTIONS(724), + [anon_sym_sealed] = ACTIONS(724), + [anon_sym_non_DASHsealed] = ACTIONS(722), + [anon_sym_record] = ACTIONS(724), + [anon_sym_ATinterface] = ACTIONS(722), + [anon_sym_interface] = ACTIONS(724), + [anon_sym_byte] = ACTIONS(724), + [anon_sym_short] = ACTIONS(724), + [anon_sym_int] = ACTIONS(724), + [anon_sym_long] = ACTIONS(724), + [anon_sym_char] = ACTIONS(724), + [anon_sym_float] = ACTIONS(724), + [anon_sym_double] = ACTIONS(724), + [sym_boolean_type] = ACTIONS(724), + [sym_void_type] = ACTIONS(724), + [sym_this] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [171] = { + [ts_builtin_sym_end] = ACTIONS(726), + [sym_identifier] = ACTIONS(728), + [sym_decimal_integer_literal] = ACTIONS(728), + [sym_hex_integer_literal] = ACTIONS(728), + [sym_octal_integer_literal] = ACTIONS(726), + [sym_binary_integer_literal] = ACTIONS(726), + [sym_decimal_floating_point_literal] = ACTIONS(726), + [sym_hex_floating_point_literal] = ACTIONS(728), + [sym_true] = ACTIONS(728), + [sym_false] = ACTIONS(728), + [sym_character_literal] = ACTIONS(726), + [sym_string_literal] = ACTIONS(728), + [sym_text_block] = ACTIONS(726), + [sym_null_literal] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(726), + [anon_sym_new] = ACTIONS(728), + [anon_sym_class] = ACTIONS(728), + [anon_sym_switch] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_case] = ACTIONS(728), + [anon_sym_default] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_assert] = ACTIONS(728), + [anon_sym_do] = ACTIONS(728), + [anon_sym_while] = ACTIONS(728), + [anon_sym_break] = ACTIONS(728), + [anon_sym_continue] = ACTIONS(728), + [anon_sym_return] = ACTIONS(728), + [anon_sym_yield] = ACTIONS(728), + [anon_sym_synchronized] = ACTIONS(728), + [anon_sym_throw] = ACTIONS(728), + [anon_sym_try] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_else] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [anon_sym_open] = ACTIONS(728), + [anon_sym_module] = ACTIONS(728), + [anon_sym_static] = ACTIONS(728), + [anon_sym_package] = ACTIONS(728), + [anon_sym_import] = ACTIONS(728), + [anon_sym_enum] = ACTIONS(728), + [anon_sym_public] = ACTIONS(728), + [anon_sym_protected] = ACTIONS(728), + [anon_sym_private] = ACTIONS(728), + [anon_sym_abstract] = ACTIONS(728), + [anon_sym_final] = ACTIONS(728), + [anon_sym_strictfp] = ACTIONS(728), + [anon_sym_native] = ACTIONS(728), + [anon_sym_transient] = ACTIONS(728), + [anon_sym_volatile] = ACTIONS(728), + [anon_sym_sealed] = ACTIONS(728), + [anon_sym_non_DASHsealed] = ACTIONS(726), + [anon_sym_record] = ACTIONS(728), + [anon_sym_ATinterface] = ACTIONS(726), + [anon_sym_interface] = ACTIONS(728), + [anon_sym_byte] = ACTIONS(728), + [anon_sym_short] = ACTIONS(728), + [anon_sym_int] = ACTIONS(728), + [anon_sym_long] = ACTIONS(728), + [anon_sym_char] = ACTIONS(728), + [anon_sym_float] = ACTIONS(728), + [anon_sym_double] = ACTIONS(728), + [sym_boolean_type] = ACTIONS(728), + [sym_void_type] = ACTIONS(728), + [sym_this] = ACTIONS(728), + [sym_super] = ACTIONS(728), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [172] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(459), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym_block] = STATE(446), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -24075,4138 +24567,3884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [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(711), - [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), - [sym_string_literal] = ACTIONS(713), - [sym_text_block] = ACTIONS(711), - [sym_null_literal] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [170] = { - [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(715), - [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), - [sym_string_literal] = ACTIONS(717), - [sym_text_block] = ACTIONS(715), - [sym_null_literal] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [171] = { - [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(719), - [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), - [sym_string_literal] = ACTIONS(721), - [sym_text_block] = ACTIONS(719), - [sym_null_literal] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(719), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [172] = { - [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(723), - [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), - [sym_string_literal] = ACTIONS(725), - [sym_text_block] = ACTIONS(723), - [sym_null_literal] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [173] = { - [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(727), - [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), - [sym_string_literal] = ACTIONS(729), - [sym_text_block] = ACTIONS(727), - [sym_null_literal] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(730), + [sym_identifier] = ACTIONS(732), + [sym_decimal_integer_literal] = ACTIONS(732), + [sym_hex_integer_literal] = ACTIONS(732), + [sym_octal_integer_literal] = ACTIONS(730), + [sym_binary_integer_literal] = ACTIONS(730), + [sym_decimal_floating_point_literal] = ACTIONS(730), + [sym_hex_floating_point_literal] = ACTIONS(732), + [sym_true] = ACTIONS(732), + [sym_false] = ACTIONS(732), + [sym_character_literal] = ACTIONS(730), + [sym_string_literal] = ACTIONS(732), + [sym_text_block] = ACTIONS(730), + [sym_null_literal] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_class] = ACTIONS(732), + [anon_sym_switch] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_case] = ACTIONS(732), + [anon_sym_default] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_assert] = ACTIONS(732), + [anon_sym_do] = ACTIONS(732), + [anon_sym_while] = ACTIONS(732), + [anon_sym_break] = ACTIONS(732), + [anon_sym_continue] = ACTIONS(732), + [anon_sym_return] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(732), + [anon_sym_synchronized] = ACTIONS(732), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_try] = ACTIONS(732), + [anon_sym_if] = ACTIONS(732), + [anon_sym_else] = ACTIONS(732), + [anon_sym_for] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(732), + [anon_sym_open] = ACTIONS(732), + [anon_sym_module] = ACTIONS(732), + [anon_sym_static] = ACTIONS(732), + [anon_sym_package] = ACTIONS(732), + [anon_sym_import] = ACTIONS(732), + [anon_sym_enum] = ACTIONS(732), + [anon_sym_public] = ACTIONS(732), + [anon_sym_protected] = ACTIONS(732), + [anon_sym_private] = ACTIONS(732), + [anon_sym_abstract] = ACTIONS(732), + [anon_sym_final] = ACTIONS(732), + [anon_sym_strictfp] = ACTIONS(732), + [anon_sym_native] = ACTIONS(732), + [anon_sym_transient] = ACTIONS(732), + [anon_sym_volatile] = ACTIONS(732), + [anon_sym_sealed] = ACTIONS(732), + [anon_sym_non_DASHsealed] = ACTIONS(730), + [anon_sym_record] = ACTIONS(732), + [anon_sym_ATinterface] = ACTIONS(730), + [anon_sym_interface] = ACTIONS(732), + [anon_sym_byte] = ACTIONS(732), + [anon_sym_short] = ACTIONS(732), + [anon_sym_int] = ACTIONS(732), + [anon_sym_long] = ACTIONS(732), + [anon_sym_char] = ACTIONS(732), + [anon_sym_float] = ACTIONS(732), + [anon_sym_double] = ACTIONS(732), + [sym_boolean_type] = ACTIONS(732), + [sym_void_type] = ACTIONS(732), + [sym_this] = ACTIONS(732), + [sym_super] = ACTIONS(732), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [174] = { - [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(731), - [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), - [sym_string_literal] = ACTIONS(733), - [sym_text_block] = ACTIONS(731), - [sym_null_literal] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(734), + [sym_identifier] = ACTIONS(736), + [sym_decimal_integer_literal] = ACTIONS(736), + [sym_hex_integer_literal] = ACTIONS(736), + [sym_octal_integer_literal] = ACTIONS(734), + [sym_binary_integer_literal] = ACTIONS(734), + [sym_decimal_floating_point_literal] = ACTIONS(734), + [sym_hex_floating_point_literal] = ACTIONS(736), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_character_literal] = ACTIONS(734), + [sym_string_literal] = ACTIONS(736), + [sym_text_block] = ACTIONS(734), + [sym_null_literal] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_PLUS_PLUS] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(734), + [anon_sym_new] = ACTIONS(736), + [anon_sym_class] = ACTIONS(736), + [anon_sym_switch] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_case] = ACTIONS(736), + [anon_sym_default] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(736), + [anon_sym_do] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(736), + [anon_sym_synchronized] = ACTIONS(736), + [anon_sym_throw] = ACTIONS(736), + [anon_sym_try] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_else] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(736), + [anon_sym_open] = ACTIONS(736), + [anon_sym_module] = ACTIONS(736), + [anon_sym_static] = ACTIONS(736), + [anon_sym_package] = ACTIONS(736), + [anon_sym_import] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(736), + [anon_sym_public] = ACTIONS(736), + [anon_sym_protected] = ACTIONS(736), + [anon_sym_private] = ACTIONS(736), + [anon_sym_abstract] = ACTIONS(736), + [anon_sym_final] = ACTIONS(736), + [anon_sym_strictfp] = ACTIONS(736), + [anon_sym_native] = ACTIONS(736), + [anon_sym_transient] = ACTIONS(736), + [anon_sym_volatile] = ACTIONS(736), + [anon_sym_sealed] = ACTIONS(736), + [anon_sym_non_DASHsealed] = ACTIONS(734), + [anon_sym_record] = ACTIONS(736), + [anon_sym_ATinterface] = ACTIONS(734), + [anon_sym_interface] = ACTIONS(736), + [anon_sym_byte] = ACTIONS(736), + [anon_sym_short] = ACTIONS(736), + [anon_sym_int] = ACTIONS(736), + [anon_sym_long] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_float] = ACTIONS(736), + [anon_sym_double] = ACTIONS(736), + [sym_boolean_type] = ACTIONS(736), + [sym_void_type] = ACTIONS(736), + [sym_this] = ACTIONS(736), + [sym_super] = ACTIONS(736), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [175] = { - [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(735), - [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), - [sym_string_literal] = ACTIONS(737), - [sym_text_block] = ACTIONS(735), - [sym_null_literal] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(738), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(740), + [sym_hex_integer_literal] = ACTIONS(740), + [sym_octal_integer_literal] = ACTIONS(738), + [sym_binary_integer_literal] = ACTIONS(738), + [sym_decimal_floating_point_literal] = ACTIONS(738), + [sym_hex_floating_point_literal] = ACTIONS(740), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_character_literal] = ACTIONS(738), + [sym_string_literal] = ACTIONS(740), + [sym_text_block] = ACTIONS(738), + [sym_null_literal] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_DASH_DASH] = ACTIONS(738), + [anon_sym_new] = ACTIONS(740), + [anon_sym_class] = ACTIONS(740), + [anon_sym_switch] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_case] = ACTIONS(740), + [anon_sym_default] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_assert] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(740), + [anon_sym_synchronized] = ACTIONS(740), + [anon_sym_throw] = ACTIONS(740), + [anon_sym_try] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_else] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_open] = ACTIONS(740), + [anon_sym_module] = ACTIONS(740), + [anon_sym_static] = ACTIONS(740), + [anon_sym_package] = ACTIONS(740), + [anon_sym_import] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(740), + [anon_sym_public] = ACTIONS(740), + [anon_sym_protected] = ACTIONS(740), + [anon_sym_private] = ACTIONS(740), + [anon_sym_abstract] = ACTIONS(740), + [anon_sym_final] = ACTIONS(740), + [anon_sym_strictfp] = ACTIONS(740), + [anon_sym_native] = ACTIONS(740), + [anon_sym_transient] = ACTIONS(740), + [anon_sym_volatile] = ACTIONS(740), + [anon_sym_sealed] = ACTIONS(740), + [anon_sym_non_DASHsealed] = ACTIONS(738), + [anon_sym_record] = ACTIONS(740), + [anon_sym_ATinterface] = ACTIONS(738), + [anon_sym_interface] = ACTIONS(740), + [anon_sym_byte] = ACTIONS(740), + [anon_sym_short] = ACTIONS(740), + [anon_sym_int] = ACTIONS(740), + [anon_sym_long] = ACTIONS(740), + [anon_sym_char] = ACTIONS(740), + [anon_sym_float] = ACTIONS(740), + [anon_sym_double] = ACTIONS(740), + [sym_boolean_type] = ACTIONS(740), + [sym_void_type] = ACTIONS(740), + [sym_this] = ACTIONS(740), + [sym_super] = ACTIONS(740), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [176] = { - [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(739), - [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), - [sym_string_literal] = ACTIONS(741), - [sym_text_block] = ACTIONS(739), - [sym_null_literal] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(742), + [sym_identifier] = ACTIONS(744), + [sym_decimal_integer_literal] = ACTIONS(744), + [sym_hex_integer_literal] = ACTIONS(744), + [sym_octal_integer_literal] = ACTIONS(742), + [sym_binary_integer_literal] = ACTIONS(742), + [sym_decimal_floating_point_literal] = ACTIONS(742), + [sym_hex_floating_point_literal] = ACTIONS(744), + [sym_true] = ACTIONS(744), + [sym_false] = ACTIONS(744), + [sym_character_literal] = ACTIONS(742), + [sym_string_literal] = ACTIONS(744), + [sym_text_block] = ACTIONS(742), + [sym_null_literal] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(742), + [anon_sym_DASH_DASH] = ACTIONS(742), + [anon_sym_new] = ACTIONS(744), + [anon_sym_class] = ACTIONS(744), + [anon_sym_switch] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_case] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_assert] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_yield] = ACTIONS(744), + [anon_sym_synchronized] = ACTIONS(744), + [anon_sym_throw] = ACTIONS(744), + [anon_sym_try] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_else] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_open] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_static] = ACTIONS(744), + [anon_sym_package] = ACTIONS(744), + [anon_sym_import] = ACTIONS(744), + [anon_sym_enum] = ACTIONS(744), + [anon_sym_public] = ACTIONS(744), + [anon_sym_protected] = ACTIONS(744), + [anon_sym_private] = ACTIONS(744), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_final] = ACTIONS(744), + [anon_sym_strictfp] = ACTIONS(744), + [anon_sym_native] = ACTIONS(744), + [anon_sym_transient] = ACTIONS(744), + [anon_sym_volatile] = ACTIONS(744), + [anon_sym_sealed] = ACTIONS(744), + [anon_sym_non_DASHsealed] = ACTIONS(742), + [anon_sym_record] = ACTIONS(744), + [anon_sym_ATinterface] = ACTIONS(742), + [anon_sym_interface] = ACTIONS(744), + [anon_sym_byte] = ACTIONS(744), + [anon_sym_short] = ACTIONS(744), + [anon_sym_int] = ACTIONS(744), + [anon_sym_long] = ACTIONS(744), + [anon_sym_char] = ACTIONS(744), + [anon_sym_float] = ACTIONS(744), + [anon_sym_double] = ACTIONS(744), + [sym_boolean_type] = ACTIONS(744), + [sym_void_type] = ACTIONS(744), + [sym_this] = ACTIONS(744), + [sym_super] = ACTIONS(744), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [177] = { - [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(743), - [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), - [sym_string_literal] = ACTIONS(745), - [sym_text_block] = ACTIONS(743), - [sym_null_literal] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(746), + [sym_identifier] = ACTIONS(748), + [sym_decimal_integer_literal] = ACTIONS(748), + [sym_hex_integer_literal] = ACTIONS(748), + [sym_octal_integer_literal] = ACTIONS(746), + [sym_binary_integer_literal] = ACTIONS(746), + [sym_decimal_floating_point_literal] = ACTIONS(746), + [sym_hex_floating_point_literal] = ACTIONS(748), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_character_literal] = ACTIONS(746), + [sym_string_literal] = ACTIONS(748), + [sym_text_block] = ACTIONS(746), + [sym_null_literal] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_new] = ACTIONS(748), + [anon_sym_class] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_case] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_synchronized] = ACTIONS(748), + [anon_sym_throw] = ACTIONS(748), + [anon_sym_try] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [anon_sym_open] = ACTIONS(748), + [anon_sym_module] = ACTIONS(748), + [anon_sym_static] = ACTIONS(748), + [anon_sym_package] = ACTIONS(748), + [anon_sym_import] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_public] = ACTIONS(748), + [anon_sym_protected] = ACTIONS(748), + [anon_sym_private] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(748), + [anon_sym_final] = ACTIONS(748), + [anon_sym_strictfp] = ACTIONS(748), + [anon_sym_native] = ACTIONS(748), + [anon_sym_transient] = ACTIONS(748), + [anon_sym_volatile] = ACTIONS(748), + [anon_sym_sealed] = ACTIONS(748), + [anon_sym_non_DASHsealed] = ACTIONS(746), + [anon_sym_record] = ACTIONS(748), + [anon_sym_ATinterface] = ACTIONS(746), + [anon_sym_interface] = ACTIONS(748), + [anon_sym_byte] = ACTIONS(748), + [anon_sym_short] = ACTIONS(748), + [anon_sym_int] = ACTIONS(748), + [anon_sym_long] = ACTIONS(748), + [anon_sym_char] = ACTIONS(748), + [anon_sym_float] = ACTIONS(748), + [anon_sym_double] = ACTIONS(748), + [sym_boolean_type] = ACTIONS(748), + [sym_void_type] = ACTIONS(748), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(748), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [178] = { - [ts_builtin_sym_end] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_decimal_integer_literal] = ACTIONS(270), - [sym_hex_integer_literal] = ACTIONS(270), - [sym_octal_integer_literal] = ACTIONS(268), - [sym_binary_integer_literal] = ACTIONS(268), - [sym_decimal_floating_point_literal] = ACTIONS(268), - [sym_hex_floating_point_literal] = ACTIONS(270), - [sym_true] = ACTIONS(270), - [sym_false] = ACTIONS(270), - [sym_character_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(270), - [sym_text_block] = ACTIONS(268), - [sym_null_literal] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(270), - [anon_sym_DASH] = ACTIONS(270), - [anon_sym_BANG] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PLUS_PLUS] = ACTIONS(268), - [anon_sym_DASH_DASH] = ACTIONS(268), - [anon_sym_new] = ACTIONS(270), - [anon_sym_class] = ACTIONS(270), - [anon_sym_switch] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_case] = ACTIONS(270), - [anon_sym_default] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [anon_sym_break] = ACTIONS(270), - [anon_sym_continue] = ACTIONS(270), - [anon_sym_return] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(270), - [anon_sym_synchronized] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_for] = ACTIONS(270), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_open] = ACTIONS(270), - [anon_sym_module] = ACTIONS(270), - [anon_sym_static] = ACTIONS(270), - [anon_sym_package] = ACTIONS(270), - [anon_sym_import] = ACTIONS(270), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_public] = ACTIONS(270), - [anon_sym_protected] = ACTIONS(270), - [anon_sym_private] = ACTIONS(270), - [anon_sym_abstract] = ACTIONS(270), - [anon_sym_final] = ACTIONS(270), - [anon_sym_strictfp] = ACTIONS(270), - [anon_sym_native] = ACTIONS(270), - [anon_sym_transient] = ACTIONS(270), - [anon_sym_volatile] = ACTIONS(270), - [anon_sym_sealed] = ACTIONS(270), - [anon_sym_non_DASHsealed] = ACTIONS(268), - [anon_sym_ATinterface] = ACTIONS(268), - [anon_sym_interface] = ACTIONS(270), - [anon_sym_byte] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_int] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_char] = ACTIONS(270), - [anon_sym_float] = ACTIONS(270), - [anon_sym_double] = ACTIONS(270), - [sym_boolean_type] = ACTIONS(270), - [sym_void_type] = ACTIONS(270), - [sym_this] = ACTIONS(270), - [sym_super] = ACTIONS(270), + [ts_builtin_sym_end] = ACTIONS(750), + [sym_identifier] = ACTIONS(752), + [sym_decimal_integer_literal] = ACTIONS(752), + [sym_hex_integer_literal] = ACTIONS(752), + [sym_octal_integer_literal] = ACTIONS(750), + [sym_binary_integer_literal] = ACTIONS(750), + [sym_decimal_floating_point_literal] = ACTIONS(750), + [sym_hex_floating_point_literal] = ACTIONS(752), + [sym_true] = ACTIONS(752), + [sym_false] = ACTIONS(752), + [sym_character_literal] = ACTIONS(750), + [sym_string_literal] = ACTIONS(752), + [sym_text_block] = ACTIONS(750), + [sym_null_literal] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_new] = ACTIONS(752), + [anon_sym_class] = ACTIONS(752), + [anon_sym_switch] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_case] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(752), + [anon_sym_synchronized] = ACTIONS(752), + [anon_sym_throw] = ACTIONS(752), + [anon_sym_try] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_else] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_open] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_static] = ACTIONS(752), + [anon_sym_package] = ACTIONS(752), + [anon_sym_import] = ACTIONS(752), + [anon_sym_enum] = ACTIONS(752), + [anon_sym_public] = ACTIONS(752), + [anon_sym_protected] = ACTIONS(752), + [anon_sym_private] = ACTIONS(752), + [anon_sym_abstract] = ACTIONS(752), + [anon_sym_final] = ACTIONS(752), + [anon_sym_strictfp] = ACTIONS(752), + [anon_sym_native] = ACTIONS(752), + [anon_sym_transient] = ACTIONS(752), + [anon_sym_volatile] = ACTIONS(752), + [anon_sym_sealed] = ACTIONS(752), + [anon_sym_non_DASHsealed] = ACTIONS(750), + [anon_sym_record] = ACTIONS(752), + [anon_sym_ATinterface] = ACTIONS(750), + [anon_sym_interface] = ACTIONS(752), + [anon_sym_byte] = ACTIONS(752), + [anon_sym_short] = ACTIONS(752), + [anon_sym_int] = ACTIONS(752), + [anon_sym_long] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_float] = ACTIONS(752), + [anon_sym_double] = ACTIONS(752), + [sym_boolean_type] = ACTIONS(752), + [sym_void_type] = ACTIONS(752), + [sym_this] = ACTIONS(752), + [sym_super] = ACTIONS(752), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [179] = { - [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(747), - [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), - [sym_string_literal] = ACTIONS(749), - [sym_text_block] = ACTIONS(747), - [sym_null_literal] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), + [sym_decimal_integer_literal] = ACTIONS(756), + [sym_hex_integer_literal] = ACTIONS(756), + [sym_octal_integer_literal] = ACTIONS(754), + [sym_binary_integer_literal] = ACTIONS(754), + [sym_decimal_floating_point_literal] = ACTIONS(754), + [sym_hex_floating_point_literal] = ACTIONS(756), + [sym_true] = ACTIONS(756), + [sym_false] = ACTIONS(756), + [sym_character_literal] = ACTIONS(754), + [sym_string_literal] = ACTIONS(756), + [sym_text_block] = ACTIONS(754), + [sym_null_literal] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(754), + [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_new] = ACTIONS(756), + [anon_sym_class] = ACTIONS(756), + [anon_sym_switch] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_case] = ACTIONS(756), + [anon_sym_default] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_assert] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_yield] = ACTIONS(756), + [anon_sym_synchronized] = ACTIONS(756), + [anon_sym_throw] = ACTIONS(756), + [anon_sym_try] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_else] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_open] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_static] = ACTIONS(756), + [anon_sym_package] = ACTIONS(756), + [anon_sym_import] = ACTIONS(756), + [anon_sym_enum] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_abstract] = ACTIONS(756), + [anon_sym_final] = ACTIONS(756), + [anon_sym_strictfp] = ACTIONS(756), + [anon_sym_native] = ACTIONS(756), + [anon_sym_transient] = ACTIONS(756), + [anon_sym_volatile] = ACTIONS(756), + [anon_sym_sealed] = ACTIONS(756), + [anon_sym_non_DASHsealed] = ACTIONS(754), + [anon_sym_record] = ACTIONS(756), + [anon_sym_ATinterface] = ACTIONS(754), + [anon_sym_interface] = ACTIONS(756), + [anon_sym_byte] = ACTIONS(756), + [anon_sym_short] = ACTIONS(756), + [anon_sym_int] = ACTIONS(756), + [anon_sym_long] = ACTIONS(756), + [anon_sym_char] = ACTIONS(756), + [anon_sym_float] = ACTIONS(756), + [anon_sym_double] = ACTIONS(756), + [sym_boolean_type] = ACTIONS(756), + [sym_void_type] = ACTIONS(756), + [sym_this] = ACTIONS(756), + [sym_super] = ACTIONS(756), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [180] = { - [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(751), - [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), - [sym_string_literal] = ACTIONS(753), - [sym_text_block] = ACTIONS(751), - [sym_null_literal] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(758), + [sym_identifier] = ACTIONS(760), + [sym_decimal_integer_literal] = ACTIONS(760), + [sym_hex_integer_literal] = ACTIONS(760), + [sym_octal_integer_literal] = ACTIONS(758), + [sym_binary_integer_literal] = ACTIONS(758), + [sym_decimal_floating_point_literal] = ACTIONS(758), + [sym_hex_floating_point_literal] = ACTIONS(760), + [sym_true] = ACTIONS(760), + [sym_false] = ACTIONS(760), + [sym_character_literal] = ACTIONS(758), + [sym_string_literal] = ACTIONS(760), + [sym_text_block] = ACTIONS(758), + [sym_null_literal] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_class] = ACTIONS(760), + [anon_sym_switch] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_case] = ACTIONS(760), + [anon_sym_default] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_assert] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_synchronized] = ACTIONS(760), + [anon_sym_throw] = ACTIONS(760), + [anon_sym_try] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_else] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_open] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_static] = ACTIONS(760), + [anon_sym_package] = ACTIONS(760), + [anon_sym_import] = ACTIONS(760), + [anon_sym_enum] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_abstract] = ACTIONS(760), + [anon_sym_final] = ACTIONS(760), + [anon_sym_strictfp] = ACTIONS(760), + [anon_sym_native] = ACTIONS(760), + [anon_sym_transient] = ACTIONS(760), + [anon_sym_volatile] = ACTIONS(760), + [anon_sym_sealed] = ACTIONS(760), + [anon_sym_non_DASHsealed] = ACTIONS(758), + [anon_sym_record] = ACTIONS(760), + [anon_sym_ATinterface] = ACTIONS(758), + [anon_sym_interface] = ACTIONS(760), + [anon_sym_byte] = ACTIONS(760), + [anon_sym_short] = ACTIONS(760), + [anon_sym_int] = ACTIONS(760), + [anon_sym_long] = ACTIONS(760), + [anon_sym_char] = ACTIONS(760), + [anon_sym_float] = ACTIONS(760), + [anon_sym_double] = ACTIONS(760), + [sym_boolean_type] = ACTIONS(760), + [sym_void_type] = ACTIONS(760), + [sym_this] = ACTIONS(760), + [sym_super] = ACTIONS(760), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [181] = { - [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(755), - [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), - [sym_string_literal] = ACTIONS(757), - [sym_text_block] = ACTIONS(755), - [sym_null_literal] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(762), + [sym_identifier] = ACTIONS(764), + [sym_decimal_integer_literal] = ACTIONS(764), + [sym_hex_integer_literal] = ACTIONS(764), + [sym_octal_integer_literal] = ACTIONS(762), + [sym_binary_integer_literal] = ACTIONS(762), + [sym_decimal_floating_point_literal] = ACTIONS(762), + [sym_hex_floating_point_literal] = ACTIONS(764), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_character_literal] = ACTIONS(762), + [sym_string_literal] = ACTIONS(764), + [sym_text_block] = ACTIONS(762), + [sym_null_literal] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_PLUS_PLUS] = ACTIONS(762), + [anon_sym_DASH_DASH] = ACTIONS(762), + [anon_sym_new] = ACTIONS(764), + [anon_sym_class] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_assert] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(764), + [anon_sym_synchronized] = ACTIONS(764), + [anon_sym_throw] = ACTIONS(764), + [anon_sym_try] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_else] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_open] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_static] = ACTIONS(764), + [anon_sym_package] = ACTIONS(764), + [anon_sym_import] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(764), + [anon_sym_public] = ACTIONS(764), + [anon_sym_protected] = ACTIONS(764), + [anon_sym_private] = ACTIONS(764), + [anon_sym_abstract] = ACTIONS(764), + [anon_sym_final] = ACTIONS(764), + [anon_sym_strictfp] = ACTIONS(764), + [anon_sym_native] = ACTIONS(764), + [anon_sym_transient] = ACTIONS(764), + [anon_sym_volatile] = ACTIONS(764), + [anon_sym_sealed] = ACTIONS(764), + [anon_sym_non_DASHsealed] = ACTIONS(762), + [anon_sym_record] = ACTIONS(764), + [anon_sym_ATinterface] = ACTIONS(762), + [anon_sym_interface] = ACTIONS(764), + [anon_sym_byte] = ACTIONS(764), + [anon_sym_short] = ACTIONS(764), + [anon_sym_int] = ACTIONS(764), + [anon_sym_long] = ACTIONS(764), + [anon_sym_char] = ACTIONS(764), + [anon_sym_float] = ACTIONS(764), + [anon_sym_double] = ACTIONS(764), + [sym_boolean_type] = ACTIONS(764), + [sym_void_type] = ACTIONS(764), + [sym_this] = ACTIONS(764), + [sym_super] = ACTIONS(764), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [182] = { - [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(759), - [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), - [sym_string_literal] = ACTIONS(761), - [sym_text_block] = ACTIONS(759), - [sym_null_literal] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(761), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(766), + [sym_identifier] = ACTIONS(768), + [sym_decimal_integer_literal] = ACTIONS(768), + [sym_hex_integer_literal] = ACTIONS(768), + [sym_octal_integer_literal] = ACTIONS(766), + [sym_binary_integer_literal] = ACTIONS(766), + [sym_decimal_floating_point_literal] = ACTIONS(766), + [sym_hex_floating_point_literal] = ACTIONS(768), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_character_literal] = ACTIONS(766), + [sym_string_literal] = ACTIONS(768), + [sym_text_block] = ACTIONS(766), + [sym_null_literal] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(766), + [anon_sym_DASH_DASH] = ACTIONS(766), + [anon_sym_new] = ACTIONS(768), + [anon_sym_class] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_case] = ACTIONS(768), + [anon_sym_default] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_assert] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_yield] = ACTIONS(768), + [anon_sym_synchronized] = ACTIONS(768), + [anon_sym_throw] = ACTIONS(768), + [anon_sym_try] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_else] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_open] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_static] = ACTIONS(768), + [anon_sym_package] = ACTIONS(768), + [anon_sym_import] = ACTIONS(768), + [anon_sym_enum] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_abstract] = ACTIONS(768), + [anon_sym_final] = ACTIONS(768), + [anon_sym_strictfp] = ACTIONS(768), + [anon_sym_native] = ACTIONS(768), + [anon_sym_transient] = ACTIONS(768), + [anon_sym_volatile] = ACTIONS(768), + [anon_sym_sealed] = ACTIONS(768), + [anon_sym_non_DASHsealed] = ACTIONS(766), + [anon_sym_record] = ACTIONS(768), + [anon_sym_ATinterface] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(768), + [anon_sym_byte] = ACTIONS(768), + [anon_sym_short] = ACTIONS(768), + [anon_sym_int] = ACTIONS(768), + [anon_sym_long] = ACTIONS(768), + [anon_sym_char] = ACTIONS(768), + [anon_sym_float] = ACTIONS(768), + [anon_sym_double] = ACTIONS(768), + [sym_boolean_type] = ACTIONS(768), + [sym_void_type] = ACTIONS(768), + [sym_this] = ACTIONS(768), + [sym_super] = ACTIONS(768), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(457), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(443), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(770), + [sym_identifier] = ACTIONS(772), + [sym_decimal_integer_literal] = ACTIONS(772), + [sym_hex_integer_literal] = ACTIONS(772), + [sym_octal_integer_literal] = ACTIONS(770), + [sym_binary_integer_literal] = ACTIONS(770), + [sym_decimal_floating_point_literal] = ACTIONS(770), + [sym_hex_floating_point_literal] = ACTIONS(772), + [sym_true] = ACTIONS(772), + [sym_false] = ACTIONS(772), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(772), + [sym_text_block] = ACTIONS(770), + [sym_null_literal] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(770), + [anon_sym_DASH_DASH] = ACTIONS(770), + [anon_sym_new] = ACTIONS(772), + [anon_sym_class] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_case] = ACTIONS(772), + [anon_sym_default] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_assert] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(772), + [anon_sym_synchronized] = ACTIONS(772), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_else] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [anon_sym_open] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_static] = ACTIONS(772), + [anon_sym_package] = ACTIONS(772), + [anon_sym_import] = ACTIONS(772), + [anon_sym_enum] = ACTIONS(772), + [anon_sym_public] = ACTIONS(772), + [anon_sym_protected] = ACTIONS(772), + [anon_sym_private] = ACTIONS(772), + [anon_sym_abstract] = ACTIONS(772), + [anon_sym_final] = ACTIONS(772), + [anon_sym_strictfp] = ACTIONS(772), + [anon_sym_native] = ACTIONS(772), + [anon_sym_transient] = ACTIONS(772), + [anon_sym_volatile] = ACTIONS(772), + [anon_sym_sealed] = ACTIONS(772), + [anon_sym_non_DASHsealed] = ACTIONS(770), + [anon_sym_record] = ACTIONS(772), + [anon_sym_ATinterface] = ACTIONS(770), + [anon_sym_interface] = ACTIONS(772), + [anon_sym_byte] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [anon_sym_int] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_char] = ACTIONS(772), + [anon_sym_float] = ACTIONS(772), + [anon_sym_double] = ACTIONS(772), + [sym_boolean_type] = ACTIONS(772), + [sym_void_type] = ACTIONS(772), + [sym_this] = ACTIONS(772), + [sym_super] = ACTIONS(772), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [184] = { - [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(763), - [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), - [sym_string_literal] = ACTIONS(765), - [sym_text_block] = ACTIONS(763), - [sym_null_literal] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(774), + [sym_identifier] = ACTIONS(776), + [sym_decimal_integer_literal] = ACTIONS(776), + [sym_hex_integer_literal] = ACTIONS(776), + [sym_octal_integer_literal] = ACTIONS(774), + [sym_binary_integer_literal] = ACTIONS(774), + [sym_decimal_floating_point_literal] = ACTIONS(774), + [sym_hex_floating_point_literal] = ACTIONS(776), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_character_literal] = ACTIONS(774), + [sym_string_literal] = ACTIONS(776), + [sym_text_block] = ACTIONS(774), + [sym_null_literal] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(774), + [anon_sym_DASH_DASH] = ACTIONS(774), + [anon_sym_new] = ACTIONS(776), + [anon_sym_class] = ACTIONS(776), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(774), + [anon_sym_case] = ACTIONS(776), + [anon_sym_default] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_assert] = ACTIONS(776), + [anon_sym_do] = ACTIONS(776), + [anon_sym_while] = ACTIONS(776), + [anon_sym_break] = ACTIONS(776), + [anon_sym_continue] = ACTIONS(776), + [anon_sym_return] = ACTIONS(776), + [anon_sym_yield] = ACTIONS(776), + [anon_sym_synchronized] = ACTIONS(776), + [anon_sym_throw] = ACTIONS(776), + [anon_sym_try] = ACTIONS(776), + [anon_sym_if] = ACTIONS(776), + [anon_sym_else] = ACTIONS(776), + [anon_sym_for] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_open] = ACTIONS(776), + [anon_sym_module] = ACTIONS(776), + [anon_sym_static] = ACTIONS(776), + [anon_sym_package] = ACTIONS(776), + [anon_sym_import] = ACTIONS(776), + [anon_sym_enum] = ACTIONS(776), + [anon_sym_public] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_abstract] = ACTIONS(776), + [anon_sym_final] = ACTIONS(776), + [anon_sym_strictfp] = ACTIONS(776), + [anon_sym_native] = ACTIONS(776), + [anon_sym_transient] = ACTIONS(776), + [anon_sym_volatile] = ACTIONS(776), + [anon_sym_sealed] = ACTIONS(776), + [anon_sym_non_DASHsealed] = ACTIONS(774), + [anon_sym_record] = ACTIONS(776), + [anon_sym_ATinterface] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(776), + [anon_sym_byte] = ACTIONS(776), + [anon_sym_short] = ACTIONS(776), + [anon_sym_int] = ACTIONS(776), + [anon_sym_long] = ACTIONS(776), + [anon_sym_char] = ACTIONS(776), + [anon_sym_float] = ACTIONS(776), + [anon_sym_double] = ACTIONS(776), + [sym_boolean_type] = ACTIONS(776), + [sym_void_type] = ACTIONS(776), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(776), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [185] = { - [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(767), - [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), - [sym_string_literal] = ACTIONS(769), - [sym_text_block] = ACTIONS(767), - [sym_null_literal] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(778), + [sym_identifier] = ACTIONS(780), + [sym_decimal_integer_literal] = ACTIONS(780), + [sym_hex_integer_literal] = ACTIONS(780), + [sym_octal_integer_literal] = ACTIONS(778), + [sym_binary_integer_literal] = ACTIONS(778), + [sym_decimal_floating_point_literal] = ACTIONS(778), + [sym_hex_floating_point_literal] = ACTIONS(780), + [sym_true] = ACTIONS(780), + [sym_false] = ACTIONS(780), + [sym_character_literal] = ACTIONS(778), + [sym_string_literal] = ACTIONS(780), + [sym_text_block] = ACTIONS(778), + [sym_null_literal] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_PLUS_PLUS] = ACTIONS(778), + [anon_sym_DASH_DASH] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_class] = ACTIONS(780), + [anon_sym_switch] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_default] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_assert] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_synchronized] = ACTIONS(780), + [anon_sym_throw] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_else] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(780), + [anon_sym_open] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_static] = ACTIONS(780), + [anon_sym_package] = ACTIONS(780), + [anon_sym_import] = ACTIONS(780), + [anon_sym_enum] = ACTIONS(780), + [anon_sym_public] = ACTIONS(780), + [anon_sym_protected] = ACTIONS(780), + [anon_sym_private] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(780), + [anon_sym_final] = ACTIONS(780), + [anon_sym_strictfp] = ACTIONS(780), + [anon_sym_native] = ACTIONS(780), + [anon_sym_transient] = ACTIONS(780), + [anon_sym_volatile] = ACTIONS(780), + [anon_sym_sealed] = ACTIONS(780), + [anon_sym_non_DASHsealed] = ACTIONS(778), + [anon_sym_record] = ACTIONS(780), + [anon_sym_ATinterface] = ACTIONS(778), + [anon_sym_interface] = ACTIONS(780), + [anon_sym_byte] = ACTIONS(780), + [anon_sym_short] = ACTIONS(780), + [anon_sym_int] = ACTIONS(780), + [anon_sym_long] = ACTIONS(780), + [anon_sym_char] = ACTIONS(780), + [anon_sym_float] = ACTIONS(780), + [anon_sym_double] = ACTIONS(780), + [sym_boolean_type] = ACTIONS(780), + [sym_void_type] = ACTIONS(780), + [sym_this] = ACTIONS(780), + [sym_super] = ACTIONS(780), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [186] = { - [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(771), - [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), - [sym_string_literal] = ACTIONS(773), - [sym_text_block] = ACTIONS(771), - [sym_null_literal] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(773), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(782), + [sym_identifier] = ACTIONS(784), + [sym_decimal_integer_literal] = ACTIONS(784), + [sym_hex_integer_literal] = ACTIONS(784), + [sym_octal_integer_literal] = ACTIONS(782), + [sym_binary_integer_literal] = ACTIONS(782), + [sym_decimal_floating_point_literal] = ACTIONS(782), + [sym_hex_floating_point_literal] = ACTIONS(784), + [sym_true] = ACTIONS(784), + [sym_false] = ACTIONS(784), + [sym_character_literal] = ACTIONS(782), + [sym_string_literal] = ACTIONS(784), + [sym_text_block] = ACTIONS(782), + [sym_null_literal] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), + [anon_sym_new] = ACTIONS(784), + [anon_sym_class] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_assert] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_synchronized] = ACTIONS(784), + [anon_sym_throw] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_else] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_open] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_static] = ACTIONS(784), + [anon_sym_package] = ACTIONS(784), + [anon_sym_import] = ACTIONS(784), + [anon_sym_enum] = ACTIONS(784), + [anon_sym_public] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_abstract] = ACTIONS(784), + [anon_sym_final] = ACTIONS(784), + [anon_sym_strictfp] = ACTIONS(784), + [anon_sym_native] = ACTIONS(784), + [anon_sym_transient] = ACTIONS(784), + [anon_sym_volatile] = ACTIONS(784), + [anon_sym_sealed] = ACTIONS(784), + [anon_sym_non_DASHsealed] = ACTIONS(782), + [anon_sym_record] = ACTIONS(784), + [anon_sym_ATinterface] = ACTIONS(782), + [anon_sym_interface] = ACTIONS(784), + [anon_sym_byte] = ACTIONS(784), + [anon_sym_short] = ACTIONS(784), + [anon_sym_int] = ACTIONS(784), + [anon_sym_long] = ACTIONS(784), + [anon_sym_char] = ACTIONS(784), + [anon_sym_float] = ACTIONS(784), + [anon_sym_double] = ACTIONS(784), + [sym_boolean_type] = ACTIONS(784), + [sym_void_type] = ACTIONS(784), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(784), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(496), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(909), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(786), + [sym_identifier] = ACTIONS(788), + [sym_decimal_integer_literal] = ACTIONS(788), + [sym_hex_integer_literal] = ACTIONS(788), + [sym_octal_integer_literal] = ACTIONS(786), + [sym_binary_integer_literal] = ACTIONS(786), + [sym_decimal_floating_point_literal] = ACTIONS(786), + [sym_hex_floating_point_literal] = ACTIONS(788), + [sym_true] = ACTIONS(788), + [sym_false] = ACTIONS(788), + [sym_character_literal] = ACTIONS(786), + [sym_string_literal] = ACTIONS(788), + [sym_text_block] = ACTIONS(786), + [sym_null_literal] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(786), + [anon_sym_new] = ACTIONS(788), + [anon_sym_class] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_case] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_assert] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_synchronized] = ACTIONS(788), + [anon_sym_throw] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_else] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(788), + [anon_sym_open] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_static] = ACTIONS(788), + [anon_sym_package] = ACTIONS(788), + [anon_sym_import] = ACTIONS(788), + [anon_sym_enum] = ACTIONS(788), + [anon_sym_public] = ACTIONS(788), + [anon_sym_protected] = ACTIONS(788), + [anon_sym_private] = ACTIONS(788), + [anon_sym_abstract] = ACTIONS(788), + [anon_sym_final] = ACTIONS(788), + [anon_sym_strictfp] = ACTIONS(788), + [anon_sym_native] = ACTIONS(788), + [anon_sym_transient] = ACTIONS(788), + [anon_sym_volatile] = ACTIONS(788), + [anon_sym_sealed] = ACTIONS(788), + [anon_sym_non_DASHsealed] = ACTIONS(786), + [anon_sym_record] = ACTIONS(788), + [anon_sym_ATinterface] = ACTIONS(786), + [anon_sym_interface] = ACTIONS(788), + [anon_sym_byte] = ACTIONS(788), + [anon_sym_short] = ACTIONS(788), + [anon_sym_int] = ACTIONS(788), + [anon_sym_long] = ACTIONS(788), + [anon_sym_char] = ACTIONS(788), + [anon_sym_float] = ACTIONS(788), + [anon_sym_double] = ACTIONS(788), + [sym_boolean_type] = ACTIONS(788), + [sym_void_type] = ACTIONS(788), + [sym_this] = ACTIONS(788), + [sym_super] = ACTIONS(788), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [188] = { - [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(775), - [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), - [sym_string_literal] = ACTIONS(777), - [sym_text_block] = ACTIONS(775), - [sym_null_literal] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(790), + [sym_identifier] = ACTIONS(792), + [sym_decimal_integer_literal] = ACTIONS(792), + [sym_hex_integer_literal] = ACTIONS(792), + [sym_octal_integer_literal] = ACTIONS(790), + [sym_binary_integer_literal] = ACTIONS(790), + [sym_decimal_floating_point_literal] = ACTIONS(790), + [sym_hex_floating_point_literal] = ACTIONS(792), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_character_literal] = ACTIONS(790), + [sym_string_literal] = ACTIONS(792), + [sym_text_block] = ACTIONS(790), + [sym_null_literal] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_PLUS_PLUS] = ACTIONS(790), + [anon_sym_DASH_DASH] = ACTIONS(790), + [anon_sym_new] = ACTIONS(792), + [anon_sym_class] = ACTIONS(792), + [anon_sym_switch] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(790), + [anon_sym_case] = ACTIONS(792), + [anon_sym_default] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), + [anon_sym_do] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [anon_sym_break] = ACTIONS(792), + [anon_sym_continue] = ACTIONS(792), + [anon_sym_return] = ACTIONS(792), + [anon_sym_yield] = ACTIONS(792), + [anon_sym_synchronized] = ACTIONS(792), + [anon_sym_throw] = ACTIONS(792), + [anon_sym_try] = ACTIONS(792), + [anon_sym_if] = ACTIONS(792), + [anon_sym_else] = ACTIONS(794), + [anon_sym_for] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_open] = ACTIONS(792), + [anon_sym_module] = ACTIONS(792), + [anon_sym_static] = ACTIONS(792), + [anon_sym_package] = ACTIONS(792), + [anon_sym_import] = ACTIONS(792), + [anon_sym_enum] = ACTIONS(792), + [anon_sym_public] = ACTIONS(792), + [anon_sym_protected] = ACTIONS(792), + [anon_sym_private] = ACTIONS(792), + [anon_sym_abstract] = ACTIONS(792), + [anon_sym_final] = ACTIONS(792), + [anon_sym_strictfp] = ACTIONS(792), + [anon_sym_native] = ACTIONS(792), + [anon_sym_transient] = ACTIONS(792), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym_sealed] = ACTIONS(792), + [anon_sym_non_DASHsealed] = ACTIONS(790), + [anon_sym_record] = ACTIONS(792), + [anon_sym_ATinterface] = ACTIONS(790), + [anon_sym_interface] = ACTIONS(792), + [anon_sym_byte] = ACTIONS(792), + [anon_sym_short] = ACTIONS(792), + [anon_sym_int] = ACTIONS(792), + [anon_sym_long] = ACTIONS(792), + [anon_sym_char] = ACTIONS(792), + [anon_sym_float] = ACTIONS(792), + [anon_sym_double] = ACTIONS(792), + [sym_boolean_type] = ACTIONS(792), + [sym_void_type] = ACTIONS(792), + [sym_this] = ACTIONS(792), + [sym_super] = ACTIONS(792), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [189] = { - [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(779), - [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), - [sym_string_literal] = ACTIONS(781), - [sym_text_block] = ACTIONS(779), - [sym_null_literal] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(796), + [sym_identifier] = ACTIONS(798), + [sym_decimal_integer_literal] = ACTIONS(798), + [sym_hex_integer_literal] = ACTIONS(798), + [sym_octal_integer_literal] = ACTIONS(796), + [sym_binary_integer_literal] = ACTIONS(796), + [sym_decimal_floating_point_literal] = ACTIONS(796), + [sym_hex_floating_point_literal] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_character_literal] = ACTIONS(796), + [sym_string_literal] = ACTIONS(798), + [sym_text_block] = ACTIONS(796), + [sym_null_literal] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(796), + [anon_sym_TILDE] = ACTIONS(796), + [anon_sym_PLUS_PLUS] = ACTIONS(796), + [anon_sym_DASH_DASH] = ACTIONS(796), + [anon_sym_new] = ACTIONS(798), + [anon_sym_class] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_assert] = ACTIONS(798), + [anon_sym_do] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_yield] = ACTIONS(798), + [anon_sym_synchronized] = ACTIONS(798), + [anon_sym_throw] = ACTIONS(798), + [anon_sym_try] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_else] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(798), + [anon_sym_open] = ACTIONS(798), + [anon_sym_module] = ACTIONS(798), + [anon_sym_static] = ACTIONS(798), + [anon_sym_package] = ACTIONS(798), + [anon_sym_import] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(798), + [anon_sym_public] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_abstract] = ACTIONS(798), + [anon_sym_final] = ACTIONS(798), + [anon_sym_strictfp] = ACTIONS(798), + [anon_sym_native] = ACTIONS(798), + [anon_sym_transient] = ACTIONS(798), + [anon_sym_volatile] = ACTIONS(798), + [anon_sym_sealed] = ACTIONS(798), + [anon_sym_non_DASHsealed] = ACTIONS(796), + [anon_sym_record] = ACTIONS(798), + [anon_sym_ATinterface] = ACTIONS(796), + [anon_sym_interface] = ACTIONS(798), + [anon_sym_byte] = ACTIONS(798), + [anon_sym_short] = ACTIONS(798), + [anon_sym_int] = ACTIONS(798), + [anon_sym_long] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_float] = ACTIONS(798), + [anon_sym_double] = ACTIONS(798), + [sym_boolean_type] = ACTIONS(798), + [sym_void_type] = ACTIONS(798), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [190] = { - [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(783), - [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), - [sym_string_literal] = ACTIONS(785), - [sym_text_block] = ACTIONS(783), - [sym_null_literal] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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_switch_label] = STATE(1155), + [aux_sym_switch_block_statement_group_repeat1] = STATE(190), + [sym_identifier] = ACTIONS(800), + [sym_decimal_integer_literal] = ACTIONS(800), + [sym_hex_integer_literal] = ACTIONS(800), + [sym_octal_integer_literal] = ACTIONS(802), + [sym_binary_integer_literal] = ACTIONS(802), + [sym_decimal_floating_point_literal] = ACTIONS(802), + [sym_hex_floating_point_literal] = ACTIONS(800), + [sym_true] = ACTIONS(800), + [sym_false] = ACTIONS(800), + [sym_character_literal] = ACTIONS(802), + [sym_string_literal] = ACTIONS(800), + [sym_text_block] = ACTIONS(802), + [sym_null_literal] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(800), + [anon_sym_class] = ACTIONS(800), + [anon_sym_switch] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_case] = ACTIONS(804), + [anon_sym_default] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(802), + [anon_sym_assert] = ACTIONS(800), + [anon_sym_do] = ACTIONS(800), + [anon_sym_while] = ACTIONS(800), + [anon_sym_break] = ACTIONS(800), + [anon_sym_continue] = ACTIONS(800), + [anon_sym_return] = ACTIONS(800), + [anon_sym_yield] = ACTIONS(800), + [anon_sym_synchronized] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(800), + [anon_sym_try] = ACTIONS(800), + [anon_sym_if] = ACTIONS(800), + [anon_sym_for] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_open] = ACTIONS(800), + [anon_sym_module] = ACTIONS(800), + [anon_sym_static] = ACTIONS(800), + [anon_sym_package] = ACTIONS(800), + [anon_sym_import] = ACTIONS(800), + [anon_sym_enum] = ACTIONS(800), + [anon_sym_public] = ACTIONS(800), + [anon_sym_protected] = ACTIONS(800), + [anon_sym_private] = ACTIONS(800), + [anon_sym_abstract] = ACTIONS(800), + [anon_sym_final] = ACTIONS(800), + [anon_sym_strictfp] = ACTIONS(800), + [anon_sym_native] = ACTIONS(800), + [anon_sym_transient] = ACTIONS(800), + [anon_sym_volatile] = ACTIONS(800), + [anon_sym_sealed] = ACTIONS(800), + [anon_sym_non_DASHsealed] = ACTIONS(802), + [anon_sym_record] = ACTIONS(800), + [anon_sym_ATinterface] = ACTIONS(802), + [anon_sym_interface] = ACTIONS(800), + [anon_sym_byte] = ACTIONS(800), + [anon_sym_short] = ACTIONS(800), + [anon_sym_int] = ACTIONS(800), + [anon_sym_long] = ACTIONS(800), + [anon_sym_char] = ACTIONS(800), + [anon_sym_float] = ACTIONS(800), + [anon_sym_double] = ACTIONS(800), + [sym_boolean_type] = ACTIONS(800), + [sym_void_type] = ACTIONS(800), + [sym_this] = ACTIONS(800), + [sym_super] = ACTIONS(800), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [191] = { - [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(787), - [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), - [sym_string_literal] = ACTIONS(789), - [sym_text_block] = ACTIONS(787), - [sym_null_literal] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(810), + [sym_identifier] = ACTIONS(812), + [sym_decimal_integer_literal] = ACTIONS(812), + [sym_hex_integer_literal] = ACTIONS(812), + [sym_octal_integer_literal] = ACTIONS(810), + [sym_binary_integer_literal] = ACTIONS(810), + [sym_decimal_floating_point_literal] = ACTIONS(810), + [sym_hex_floating_point_literal] = ACTIONS(812), + [sym_true] = ACTIONS(812), + [sym_false] = ACTIONS(812), + [sym_character_literal] = ACTIONS(810), + [sym_string_literal] = ACTIONS(812), + [sym_text_block] = ACTIONS(810), + [sym_null_literal] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(812), + [anon_sym_DASH] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(810), + [anon_sym_case] = ACTIONS(812), + [anon_sym_default] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_assert] = ACTIONS(812), + [anon_sym_do] = ACTIONS(812), + [anon_sym_while] = ACTIONS(812), + [anon_sym_break] = ACTIONS(812), + [anon_sym_continue] = ACTIONS(812), + [anon_sym_return] = ACTIONS(812), + [anon_sym_yield] = ACTIONS(812), + [anon_sym_synchronized] = ACTIONS(812), + [anon_sym_throw] = ACTIONS(812), + [anon_sym_try] = ACTIONS(812), + [anon_sym_if] = ACTIONS(812), + [anon_sym_else] = ACTIONS(812), + [anon_sym_for] = ACTIONS(812), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_open] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_static] = ACTIONS(812), + [anon_sym_package] = ACTIONS(812), + [anon_sym_import] = ACTIONS(812), + [anon_sym_enum] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_abstract] = ACTIONS(812), + [anon_sym_final] = ACTIONS(812), + [anon_sym_strictfp] = ACTIONS(812), + [anon_sym_native] = ACTIONS(812), + [anon_sym_transient] = ACTIONS(812), + [anon_sym_volatile] = ACTIONS(812), + [anon_sym_sealed] = ACTIONS(812), + [anon_sym_non_DASHsealed] = ACTIONS(810), + [anon_sym_record] = ACTIONS(812), + [anon_sym_ATinterface] = ACTIONS(810), + [anon_sym_interface] = ACTIONS(812), + [anon_sym_byte] = ACTIONS(812), + [anon_sym_short] = ACTIONS(812), + [anon_sym_int] = ACTIONS(812), + [anon_sym_long] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_float] = ACTIONS(812), + [anon_sym_double] = ACTIONS(812), + [sym_boolean_type] = ACTIONS(812), + [sym_void_type] = ACTIONS(812), + [sym_this] = ACTIONS(812), + [sym_super] = ACTIONS(812), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [192] = { - [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(791), - [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), - [sym_string_literal] = ACTIONS(793), - [sym_text_block] = ACTIONS(791), - [sym_null_literal] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(814), + [sym_identifier] = ACTIONS(816), + [sym_decimal_integer_literal] = ACTIONS(816), + [sym_hex_integer_literal] = ACTIONS(816), + [sym_octal_integer_literal] = ACTIONS(814), + [sym_binary_integer_literal] = ACTIONS(814), + [sym_decimal_floating_point_literal] = ACTIONS(814), + [sym_hex_floating_point_literal] = ACTIONS(816), + [sym_true] = ACTIONS(816), + [sym_false] = ACTIONS(816), + [sym_character_literal] = ACTIONS(814), + [sym_string_literal] = ACTIONS(816), + [sym_text_block] = ACTIONS(814), + [sym_null_literal] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_new] = ACTIONS(816), + [anon_sym_class] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_RBRACE] = ACTIONS(814), + [anon_sym_case] = ACTIONS(816), + [anon_sym_default] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_assert] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [anon_sym_break] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_return] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(816), + [anon_sym_synchronized] = ACTIONS(816), + [anon_sym_throw] = ACTIONS(816), + [anon_sym_try] = ACTIONS(816), + [anon_sym_if] = ACTIONS(816), + [anon_sym_else] = ACTIONS(816), + [anon_sym_for] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(816), + [anon_sym_open] = ACTIONS(816), + [anon_sym_module] = ACTIONS(816), + [anon_sym_static] = ACTIONS(816), + [anon_sym_package] = ACTIONS(816), + [anon_sym_import] = ACTIONS(816), + [anon_sym_enum] = ACTIONS(816), + [anon_sym_public] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(816), + [anon_sym_final] = ACTIONS(816), + [anon_sym_strictfp] = ACTIONS(816), + [anon_sym_native] = ACTIONS(816), + [anon_sym_transient] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_sealed] = ACTIONS(816), + [anon_sym_non_DASHsealed] = ACTIONS(814), + [anon_sym_record] = ACTIONS(816), + [anon_sym_ATinterface] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(816), + [anon_sym_byte] = ACTIONS(816), + [anon_sym_short] = ACTIONS(816), + [anon_sym_int] = ACTIONS(816), + [anon_sym_long] = ACTIONS(816), + [anon_sym_char] = ACTIONS(816), + [anon_sym_float] = ACTIONS(816), + [anon_sym_double] = ACTIONS(816), + [sym_boolean_type] = ACTIONS(816), + [sym_void_type] = ACTIONS(816), + [sym_this] = ACTIONS(816), + [sym_super] = ACTIONS(816), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(484), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(443), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(297), + [sym_identifier] = ACTIONS(299), + [sym_decimal_integer_literal] = ACTIONS(299), + [sym_hex_integer_literal] = ACTIONS(299), + [sym_octal_integer_literal] = ACTIONS(297), + [sym_binary_integer_literal] = ACTIONS(297), + [sym_decimal_floating_point_literal] = ACTIONS(297), + [sym_hex_floating_point_literal] = ACTIONS(299), + [sym_true] = ACTIONS(299), + [sym_false] = ACTIONS(299), + [sym_character_literal] = ACTIONS(297), + [sym_string_literal] = ACTIONS(299), + [sym_text_block] = ACTIONS(297), + [sym_null_literal] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(297), + [anon_sym_PLUS_PLUS] = ACTIONS(297), + [anon_sym_DASH_DASH] = ACTIONS(297), + [anon_sym_new] = ACTIONS(299), + [anon_sym_class] = ACTIONS(299), + [anon_sym_switch] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(297), + [anon_sym_assert] = ACTIONS(299), + [anon_sym_do] = ACTIONS(299), + [anon_sym_while] = ACTIONS(299), + [anon_sym_break] = ACTIONS(299), + [anon_sym_continue] = ACTIONS(299), + [anon_sym_return] = ACTIONS(299), + [anon_sym_yield] = ACTIONS(299), + [anon_sym_synchronized] = ACTIONS(299), + [anon_sym_throw] = ACTIONS(299), + [anon_sym_try] = ACTIONS(299), + [anon_sym_if] = ACTIONS(299), + [anon_sym_else] = ACTIONS(299), + [anon_sym_for] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(299), + [anon_sym_open] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_static] = ACTIONS(299), + [anon_sym_package] = ACTIONS(299), + [anon_sym_import] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(299), + [anon_sym_public] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_abstract] = ACTIONS(299), + [anon_sym_final] = ACTIONS(299), + [anon_sym_strictfp] = ACTIONS(299), + [anon_sym_native] = ACTIONS(299), + [anon_sym_transient] = ACTIONS(299), + [anon_sym_volatile] = ACTIONS(299), + [anon_sym_sealed] = ACTIONS(299), + [anon_sym_non_DASHsealed] = ACTIONS(297), + [anon_sym_record] = ACTIONS(299), + [anon_sym_ATinterface] = ACTIONS(297), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_byte] = ACTIONS(299), + [anon_sym_short] = ACTIONS(299), + [anon_sym_int] = ACTIONS(299), + [anon_sym_long] = ACTIONS(299), + [anon_sym_char] = ACTIONS(299), + [anon_sym_float] = ACTIONS(299), + [anon_sym_double] = ACTIONS(299), + [sym_boolean_type] = ACTIONS(299), + [sym_void_type] = ACTIONS(299), + [sym_this] = ACTIONS(299), + [sym_super] = ACTIONS(299), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [194] = { - [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(807), - [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), - [sym_string_literal] = ACTIONS(809), - [sym_text_block] = ACTIONS(807), - [sym_null_literal] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(818), + [sym_identifier] = ACTIONS(820), + [sym_decimal_integer_literal] = ACTIONS(820), + [sym_hex_integer_literal] = ACTIONS(820), + [sym_octal_integer_literal] = ACTIONS(818), + [sym_binary_integer_literal] = ACTIONS(818), + [sym_decimal_floating_point_literal] = ACTIONS(818), + [sym_hex_floating_point_literal] = ACTIONS(820), + [sym_true] = ACTIONS(820), + [sym_false] = ACTIONS(820), + [sym_character_literal] = ACTIONS(818), + [sym_string_literal] = ACTIONS(820), + [sym_text_block] = ACTIONS(818), + [sym_null_literal] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_PLUS_PLUS] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(818), + [anon_sym_new] = ACTIONS(820), + [anon_sym_class] = ACTIONS(820), + [anon_sym_switch] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_case] = ACTIONS(820), + [anon_sym_default] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_assert] = ACTIONS(820), + [anon_sym_do] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_break] = ACTIONS(820), + [anon_sym_continue] = ACTIONS(820), + [anon_sym_return] = ACTIONS(820), + [anon_sym_yield] = ACTIONS(820), + [anon_sym_synchronized] = ACTIONS(820), + [anon_sym_throw] = ACTIONS(820), + [anon_sym_try] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_else] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(820), + [anon_sym_open] = ACTIONS(820), + [anon_sym_module] = ACTIONS(820), + [anon_sym_static] = ACTIONS(820), + [anon_sym_package] = ACTIONS(820), + [anon_sym_import] = ACTIONS(820), + [anon_sym_enum] = ACTIONS(820), + [anon_sym_public] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_final] = ACTIONS(820), + [anon_sym_strictfp] = ACTIONS(820), + [anon_sym_native] = ACTIONS(820), + [anon_sym_transient] = ACTIONS(820), + [anon_sym_volatile] = ACTIONS(820), + [anon_sym_sealed] = ACTIONS(820), + [anon_sym_non_DASHsealed] = ACTIONS(818), + [anon_sym_record] = ACTIONS(820), + [anon_sym_ATinterface] = ACTIONS(818), + [anon_sym_interface] = ACTIONS(820), + [anon_sym_byte] = ACTIONS(820), + [anon_sym_short] = ACTIONS(820), + [anon_sym_int] = ACTIONS(820), + [anon_sym_long] = ACTIONS(820), + [anon_sym_char] = ACTIONS(820), + [anon_sym_float] = ACTIONS(820), + [anon_sym_double] = ACTIONS(820), + [sym_boolean_type] = ACTIONS(820), + [sym_void_type] = ACTIONS(820), + [sym_this] = ACTIONS(820), + [sym_super] = ACTIONS(820), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [195] = { - [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(811), - [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), - [sym_string_literal] = ACTIONS(813), - [sym_text_block] = ACTIONS(811), - [sym_null_literal] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = 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_RBRACE] = 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_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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(822), + [sym_identifier] = ACTIONS(824), + [sym_decimal_integer_literal] = ACTIONS(824), + [sym_hex_integer_literal] = ACTIONS(824), + [sym_octal_integer_literal] = ACTIONS(822), + [sym_binary_integer_literal] = ACTIONS(822), + [sym_decimal_floating_point_literal] = ACTIONS(822), + [sym_hex_floating_point_literal] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_character_literal] = ACTIONS(822), + [sym_string_literal] = ACTIONS(824), + [sym_text_block] = ACTIONS(822), + [sym_null_literal] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_BANG] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(822), + [anon_sym_new] = ACTIONS(824), + [anon_sym_class] = ACTIONS(824), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_case] = ACTIONS(824), + [anon_sym_default] = ACTIONS(824), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(824), + [anon_sym_do] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_break] = ACTIONS(824), + [anon_sym_continue] = ACTIONS(824), + [anon_sym_return] = ACTIONS(824), + [anon_sym_yield] = ACTIONS(824), + [anon_sym_synchronized] = ACTIONS(824), + [anon_sym_throw] = ACTIONS(824), + [anon_sym_try] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_else] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(824), + [anon_sym_open] = ACTIONS(824), + [anon_sym_module] = ACTIONS(824), + [anon_sym_static] = ACTIONS(824), + [anon_sym_package] = ACTIONS(824), + [anon_sym_import] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(824), + [anon_sym_public] = ACTIONS(824), + [anon_sym_protected] = ACTIONS(824), + [anon_sym_private] = ACTIONS(824), + [anon_sym_abstract] = ACTIONS(824), + [anon_sym_final] = ACTIONS(824), + [anon_sym_strictfp] = ACTIONS(824), + [anon_sym_native] = ACTIONS(824), + [anon_sym_transient] = ACTIONS(824), + [anon_sym_volatile] = ACTIONS(824), + [anon_sym_sealed] = ACTIONS(824), + [anon_sym_non_DASHsealed] = ACTIONS(822), + [anon_sym_record] = ACTIONS(824), + [anon_sym_ATinterface] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_byte] = ACTIONS(824), + [anon_sym_short] = ACTIONS(824), + [anon_sym_int] = ACTIONS(824), + [anon_sym_long] = ACTIONS(824), + [anon_sym_char] = ACTIONS(824), + [anon_sym_float] = ACTIONS(824), + [anon_sym_double] = ACTIONS(824), + [sym_boolean_type] = ACTIONS(824), + [sym_void_type] = ACTIONS(824), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [196] = { - [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(815), - [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), - [sym_string_literal] = ACTIONS(817), - [sym_text_block] = ACTIONS(815), - [sym_null_literal] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = 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_RBRACE] = 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(819), - [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_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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(826), + [sym_identifier] = ACTIONS(828), + [sym_decimal_integer_literal] = ACTIONS(828), + [sym_hex_integer_literal] = ACTIONS(828), + [sym_octal_integer_literal] = ACTIONS(826), + [sym_binary_integer_literal] = ACTIONS(826), + [sym_decimal_floating_point_literal] = ACTIONS(826), + [sym_hex_floating_point_literal] = ACTIONS(828), + [sym_true] = ACTIONS(828), + [sym_false] = ACTIONS(828), + [sym_character_literal] = ACTIONS(826), + [sym_string_literal] = ACTIONS(828), + [sym_text_block] = ACTIONS(826), + [sym_null_literal] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_new] = ACTIONS(828), + [anon_sym_class] = ACTIONS(828), + [anon_sym_switch] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_case] = ACTIONS(828), + [anon_sym_default] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_assert] = ACTIONS(828), + [anon_sym_do] = ACTIONS(828), + [anon_sym_while] = ACTIONS(828), + [anon_sym_break] = ACTIONS(828), + [anon_sym_continue] = ACTIONS(828), + [anon_sym_return] = ACTIONS(828), + [anon_sym_yield] = ACTIONS(828), + [anon_sym_synchronized] = ACTIONS(828), + [anon_sym_throw] = ACTIONS(828), + [anon_sym_try] = ACTIONS(828), + [anon_sym_if] = ACTIONS(828), + [anon_sym_else] = ACTIONS(828), + [anon_sym_for] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(828), + [anon_sym_open] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_static] = ACTIONS(828), + [anon_sym_package] = ACTIONS(828), + [anon_sym_import] = ACTIONS(828), + [anon_sym_enum] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_abstract] = ACTIONS(828), + [anon_sym_final] = ACTIONS(828), + [anon_sym_strictfp] = ACTIONS(828), + [anon_sym_native] = ACTIONS(828), + [anon_sym_transient] = ACTIONS(828), + [anon_sym_volatile] = ACTIONS(828), + [anon_sym_sealed] = ACTIONS(828), + [anon_sym_non_DASHsealed] = ACTIONS(826), + [anon_sym_record] = ACTIONS(828), + [anon_sym_ATinterface] = ACTIONS(826), + [anon_sym_interface] = ACTIONS(828), + [anon_sym_byte] = ACTIONS(828), + [anon_sym_short] = ACTIONS(828), + [anon_sym_int] = ACTIONS(828), + [anon_sym_long] = ACTIONS(828), + [anon_sym_char] = ACTIONS(828), + [anon_sym_float] = ACTIONS(828), + [anon_sym_double] = ACTIONS(828), + [sym_boolean_type] = ACTIONS(828), + [sym_void_type] = ACTIONS(828), + [sym_this] = ACTIONS(828), + [sym_super] = ACTIONS(828), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [197] = { - [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(821), - [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), - [sym_string_literal] = ACTIONS(823), - [sym_text_block] = ACTIONS(821), - [sym_null_literal] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [sym_decimal_integer_literal] = ACTIONS(832), + [sym_hex_integer_literal] = ACTIONS(832), + [sym_octal_integer_literal] = ACTIONS(830), + [sym_binary_integer_literal] = ACTIONS(830), + [sym_decimal_floating_point_literal] = ACTIONS(830), + [sym_hex_floating_point_literal] = ACTIONS(832), + [sym_true] = ACTIONS(832), + [sym_false] = ACTIONS(832), + [sym_character_literal] = ACTIONS(830), + [sym_string_literal] = ACTIONS(832), + [sym_text_block] = ACTIONS(830), + [sym_null_literal] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(830), + [anon_sym_new] = ACTIONS(832), + [anon_sym_class] = ACTIONS(832), + [anon_sym_switch] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_case] = ACTIONS(832), + [anon_sym_default] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_assert] = ACTIONS(832), + [anon_sym_do] = ACTIONS(832), + [anon_sym_while] = ACTIONS(832), + [anon_sym_break] = ACTIONS(832), + [anon_sym_continue] = ACTIONS(832), + [anon_sym_return] = ACTIONS(832), + [anon_sym_yield] = ACTIONS(832), + [anon_sym_synchronized] = ACTIONS(832), + [anon_sym_throw] = ACTIONS(832), + [anon_sym_try] = ACTIONS(832), + [anon_sym_if] = ACTIONS(832), + [anon_sym_else] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(832), + [anon_sym_open] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_static] = ACTIONS(832), + [anon_sym_package] = ACTIONS(832), + [anon_sym_import] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_abstract] = ACTIONS(832), + [anon_sym_final] = ACTIONS(832), + [anon_sym_strictfp] = ACTIONS(832), + [anon_sym_native] = ACTIONS(832), + [anon_sym_transient] = ACTIONS(832), + [anon_sym_volatile] = ACTIONS(832), + [anon_sym_sealed] = ACTIONS(832), + [anon_sym_non_DASHsealed] = ACTIONS(830), + [anon_sym_record] = ACTIONS(832), + [anon_sym_ATinterface] = ACTIONS(830), + [anon_sym_interface] = ACTIONS(832), + [anon_sym_byte] = ACTIONS(832), + [anon_sym_short] = ACTIONS(832), + [anon_sym_int] = ACTIONS(832), + [anon_sym_long] = ACTIONS(832), + [anon_sym_char] = ACTIONS(832), + [anon_sym_float] = ACTIONS(832), + [anon_sym_double] = ACTIONS(832), + [sym_boolean_type] = ACTIONS(832), + [sym_void_type] = ACTIONS(832), + [sym_this] = ACTIONS(832), + [sym_super] = ACTIONS(832), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [198] = { - [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(825), - [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), - [sym_string_literal] = ACTIONS(827), - [sym_text_block] = ACTIONS(825), - [sym_null_literal] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [sym_decimal_integer_literal] = ACTIONS(836), + [sym_hex_integer_literal] = ACTIONS(836), + [sym_octal_integer_literal] = ACTIONS(834), + [sym_binary_integer_literal] = ACTIONS(834), + [sym_decimal_floating_point_literal] = ACTIONS(834), + [sym_hex_floating_point_literal] = ACTIONS(836), + [sym_true] = ACTIONS(836), + [sym_false] = ACTIONS(836), + [sym_character_literal] = ACTIONS(834), + [sym_string_literal] = ACTIONS(836), + [sym_text_block] = ACTIONS(834), + [sym_null_literal] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), + [anon_sym_new] = ACTIONS(836), + [anon_sym_class] = ACTIONS(836), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_case] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_assert] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_synchronized] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_try] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_open] = ACTIONS(836), + [anon_sym_module] = ACTIONS(836), + [anon_sym_static] = ACTIONS(836), + [anon_sym_package] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_enum] = ACTIONS(836), + [anon_sym_public] = ACTIONS(836), + [anon_sym_protected] = ACTIONS(836), + [anon_sym_private] = ACTIONS(836), + [anon_sym_abstract] = ACTIONS(836), + [anon_sym_final] = ACTIONS(836), + [anon_sym_strictfp] = ACTIONS(836), + [anon_sym_native] = ACTIONS(836), + [anon_sym_transient] = ACTIONS(836), + [anon_sym_volatile] = ACTIONS(836), + [anon_sym_sealed] = ACTIONS(836), + [anon_sym_non_DASHsealed] = ACTIONS(834), + [anon_sym_record] = ACTIONS(836), + [anon_sym_ATinterface] = ACTIONS(834), + [anon_sym_interface] = ACTIONS(836), + [anon_sym_byte] = ACTIONS(836), + [anon_sym_short] = ACTIONS(836), + [anon_sym_int] = ACTIONS(836), + [anon_sym_long] = ACTIONS(836), + [anon_sym_char] = ACTIONS(836), + [anon_sym_float] = ACTIONS(836), + [anon_sym_double] = ACTIONS(836), + [sym_boolean_type] = ACTIONS(836), + [sym_void_type] = ACTIONS(836), + [sym_this] = ACTIONS(836), + [sym_super] = ACTIONS(836), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [199] = { - [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(829), - [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), - [sym_string_literal] = ACTIONS(831), - [sym_text_block] = ACTIONS(829), - [sym_null_literal] = ACTIONS(831), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(840), + [sym_decimal_integer_literal] = ACTIONS(840), + [sym_hex_integer_literal] = ACTIONS(840), + [sym_octal_integer_literal] = ACTIONS(838), + [sym_binary_integer_literal] = ACTIONS(838), + [sym_decimal_floating_point_literal] = ACTIONS(838), + [sym_hex_floating_point_literal] = ACTIONS(840), + [sym_true] = ACTIONS(840), + [sym_false] = ACTIONS(840), + [sym_character_literal] = ACTIONS(838), + [sym_string_literal] = ACTIONS(840), + [sym_text_block] = ACTIONS(838), + [sym_null_literal] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(838), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_PLUS_PLUS] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(838), + [anon_sym_new] = ACTIONS(840), + [anon_sym_class] = ACTIONS(840), + [anon_sym_switch] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_case] = ACTIONS(840), + [anon_sym_default] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_do] = ACTIONS(840), + [anon_sym_while] = ACTIONS(840), + [anon_sym_break] = ACTIONS(840), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_return] = ACTIONS(840), + [anon_sym_yield] = ACTIONS(840), + [anon_sym_synchronized] = ACTIONS(840), + [anon_sym_throw] = ACTIONS(840), + [anon_sym_try] = ACTIONS(840), + [anon_sym_if] = ACTIONS(840), + [anon_sym_else] = ACTIONS(840), + [anon_sym_for] = ACTIONS(840), + [anon_sym_AT] = ACTIONS(840), + [anon_sym_open] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_static] = ACTIONS(840), + [anon_sym_package] = ACTIONS(840), + [anon_sym_import] = ACTIONS(840), + [anon_sym_enum] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_abstract] = ACTIONS(840), + [anon_sym_final] = ACTIONS(840), + [anon_sym_strictfp] = ACTIONS(840), + [anon_sym_native] = ACTIONS(840), + [anon_sym_transient] = ACTIONS(840), + [anon_sym_volatile] = ACTIONS(840), + [anon_sym_sealed] = ACTIONS(840), + [anon_sym_non_DASHsealed] = ACTIONS(838), + [anon_sym_record] = ACTIONS(840), + [anon_sym_ATinterface] = ACTIONS(838), + [anon_sym_interface] = ACTIONS(840), + [anon_sym_byte] = ACTIONS(840), + [anon_sym_short] = ACTIONS(840), + [anon_sym_int] = ACTIONS(840), + [anon_sym_long] = ACTIONS(840), + [anon_sym_char] = ACTIONS(840), + [anon_sym_float] = ACTIONS(840), + [anon_sym_double] = ACTIONS(840), + [sym_boolean_type] = ACTIONS(840), + [sym_void_type] = ACTIONS(840), + [sym_this] = ACTIONS(840), + [sym_super] = ACTIONS(840), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [200] = { - [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(833), - [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), - [sym_string_literal] = ACTIONS(835), - [sym_text_block] = ACTIONS(833), - [sym_null_literal] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_identifier] = ACTIONS(844), + [sym_decimal_integer_literal] = ACTIONS(844), + [sym_hex_integer_literal] = ACTIONS(844), + [sym_octal_integer_literal] = ACTIONS(842), + [sym_binary_integer_literal] = ACTIONS(842), + [sym_decimal_floating_point_literal] = ACTIONS(842), + [sym_hex_floating_point_literal] = ACTIONS(844), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_character_literal] = ACTIONS(842), + [sym_string_literal] = ACTIONS(844), + [sym_text_block] = ACTIONS(842), + [sym_null_literal] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(842), + [anon_sym_PLUS_PLUS] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(842), + [anon_sym_new] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(842), + [anon_sym_assert] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(844), + [anon_sym_synchronized] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_try] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_for] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_open] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_package] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_strictfp] = ACTIONS(844), + [anon_sym_native] = ACTIONS(844), + [anon_sym_transient] = ACTIONS(844), + [anon_sym_volatile] = ACTIONS(844), + [anon_sym_sealed] = ACTIONS(844), + [anon_sym_non_DASHsealed] = ACTIONS(842), + [anon_sym_record] = ACTIONS(844), + [anon_sym_ATinterface] = ACTIONS(842), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_byte] = ACTIONS(844), + [anon_sym_short] = ACTIONS(844), + [anon_sym_int] = ACTIONS(844), + [anon_sym_long] = ACTIONS(844), + [anon_sym_char] = ACTIONS(844), + [anon_sym_float] = ACTIONS(844), + [anon_sym_double] = ACTIONS(844), + [sym_boolean_type] = ACTIONS(844), + [sym_void_type] = ACTIONS(844), + [sym_this] = ACTIONS(844), + [sym_super] = ACTIONS(844), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [201] = { - [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(837), - [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), - [sym_string_literal] = ACTIONS(839), - [sym_text_block] = ACTIONS(837), - [sym_null_literal] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(846), + [sym_identifier] = ACTIONS(848), + [sym_decimal_integer_literal] = ACTIONS(848), + [sym_hex_integer_literal] = ACTIONS(848), + [sym_octal_integer_literal] = ACTIONS(846), + [sym_binary_integer_literal] = ACTIONS(846), + [sym_decimal_floating_point_literal] = ACTIONS(846), + [sym_hex_floating_point_literal] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_character_literal] = ACTIONS(846), + [sym_string_literal] = ACTIONS(848), + [sym_text_block] = ACTIONS(846), + [sym_null_literal] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_TILDE] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_assert] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_synchronized] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_open] = ACTIONS(848), + [anon_sym_module] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_package] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_enum] = ACTIONS(848), + [anon_sym_public] = ACTIONS(848), + [anon_sym_protected] = ACTIONS(848), + [anon_sym_private] = ACTIONS(848), + [anon_sym_abstract] = ACTIONS(848), + [anon_sym_final] = ACTIONS(848), + [anon_sym_strictfp] = ACTIONS(848), + [anon_sym_native] = ACTIONS(848), + [anon_sym_transient] = ACTIONS(848), + [anon_sym_volatile] = ACTIONS(848), + [anon_sym_sealed] = ACTIONS(848), + [anon_sym_non_DASHsealed] = ACTIONS(846), + [anon_sym_record] = ACTIONS(848), + [anon_sym_ATinterface] = ACTIONS(846), + [anon_sym_interface] = ACTIONS(848), + [anon_sym_byte] = ACTIONS(848), + [anon_sym_short] = ACTIONS(848), + [anon_sym_int] = ACTIONS(848), + [anon_sym_long] = ACTIONS(848), + [anon_sym_char] = ACTIONS(848), + [anon_sym_float] = ACTIONS(848), + [anon_sym_double] = ACTIONS(848), + [sym_boolean_type] = ACTIONS(848), + [sym_void_type] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [202] = { - [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(841), - [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), - [sym_string_literal] = ACTIONS(843), - [sym_text_block] = ACTIONS(841), - [sym_null_literal] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [sym_decimal_integer_literal] = ACTIONS(852), + [sym_hex_integer_literal] = ACTIONS(852), + [sym_octal_integer_literal] = ACTIONS(850), + [sym_binary_integer_literal] = ACTIONS(850), + [sym_decimal_floating_point_literal] = ACTIONS(850), + [sym_hex_floating_point_literal] = ACTIONS(852), + [sym_true] = ACTIONS(852), + [sym_false] = ACTIONS(852), + [sym_character_literal] = ACTIONS(850), + [sym_string_literal] = ACTIONS(852), + [sym_text_block] = ACTIONS(850), + [sym_null_literal] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(850), + [anon_sym_new] = ACTIONS(852), + [anon_sym_class] = ACTIONS(852), + [anon_sym_switch] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_case] = ACTIONS(852), + [anon_sym_default] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_assert] = ACTIONS(852), + [anon_sym_do] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_synchronized] = ACTIONS(852), + [anon_sym_throw] = ACTIONS(852), + [anon_sym_try] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_AT] = ACTIONS(852), + [anon_sym_open] = ACTIONS(852), + [anon_sym_module] = ACTIONS(852), + [anon_sym_static] = ACTIONS(852), + [anon_sym_package] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_enum] = ACTIONS(852), + [anon_sym_public] = ACTIONS(852), + [anon_sym_protected] = ACTIONS(852), + [anon_sym_private] = ACTIONS(852), + [anon_sym_abstract] = ACTIONS(852), + [anon_sym_final] = ACTIONS(852), + [anon_sym_strictfp] = ACTIONS(852), + [anon_sym_native] = ACTIONS(852), + [anon_sym_transient] = ACTIONS(852), + [anon_sym_volatile] = ACTIONS(852), + [anon_sym_sealed] = ACTIONS(852), + [anon_sym_non_DASHsealed] = ACTIONS(850), + [anon_sym_record] = ACTIONS(852), + [anon_sym_ATinterface] = ACTIONS(850), + [anon_sym_interface] = ACTIONS(852), + [anon_sym_byte] = ACTIONS(852), + [anon_sym_short] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_long] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_double] = ACTIONS(852), + [sym_boolean_type] = ACTIONS(852), + [sym_void_type] = ACTIONS(852), + [sym_this] = ACTIONS(852), + [sym_super] = ACTIONS(852), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [203] = { - [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(845), - [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), - [sym_string_literal] = ACTIONS(847), - [sym_text_block] = ACTIONS(845), - [sym_null_literal] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(300), - [sym_identifier] = ACTIONS(302), - [sym_decimal_integer_literal] = ACTIONS(302), - [sym_hex_integer_literal] = ACTIONS(302), - [sym_octal_integer_literal] = ACTIONS(300), - [sym_binary_integer_literal] = ACTIONS(300), - [sym_decimal_floating_point_literal] = ACTIONS(300), - [sym_hex_floating_point_literal] = ACTIONS(302), - [sym_true] = ACTIONS(302), - [sym_false] = ACTIONS(302), - [sym_character_literal] = ACTIONS(300), - [sym_string_literal] = ACTIONS(302), - [sym_text_block] = ACTIONS(300), - [sym_null_literal] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_PLUS_PLUS] = ACTIONS(300), - [anon_sym_DASH_DASH] = ACTIONS(300), - [anon_sym_new] = ACTIONS(302), - [anon_sym_class] = ACTIONS(302), - [anon_sym_switch] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_assert] = ACTIONS(302), - [anon_sym_do] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_synchronized] = ACTIONS(302), - [anon_sym_throw] = ACTIONS(302), - [anon_sym_try] = ACTIONS(302), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_AT] = ACTIONS(302), - [anon_sym_open] = ACTIONS(302), - [anon_sym_module] = ACTIONS(302), - [anon_sym_static] = ACTIONS(302), - [anon_sym_package] = ACTIONS(302), - [anon_sym_import] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_public] = ACTIONS(302), - [anon_sym_protected] = ACTIONS(302), - [anon_sym_private] = ACTIONS(302), - [anon_sym_abstract] = ACTIONS(302), - [anon_sym_final] = ACTIONS(302), - [anon_sym_strictfp] = ACTIONS(302), - [anon_sym_native] = ACTIONS(302), - [anon_sym_transient] = ACTIONS(302), - [anon_sym_volatile] = ACTIONS(302), - [anon_sym_sealed] = ACTIONS(302), - [anon_sym_non_DASHsealed] = ACTIONS(300), - [anon_sym_ATinterface] = ACTIONS(300), - [anon_sym_interface] = ACTIONS(302), - [anon_sym_byte] = ACTIONS(302), - [anon_sym_short] = ACTIONS(302), - [anon_sym_int] = ACTIONS(302), - [anon_sym_long] = ACTIONS(302), - [anon_sym_char] = ACTIONS(302), - [anon_sym_float] = ACTIONS(302), - [anon_sym_double] = ACTIONS(302), - [sym_boolean_type] = ACTIONS(302), - [sym_void_type] = ACTIONS(302), - [sym_this] = ACTIONS(302), - [sym_super] = ACTIONS(302), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [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(849), - [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), - [sym_string_literal] = ACTIONS(851), - [sym_text_block] = ACTIONS(849), - [sym_null_literal] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [206] = { - [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(853), - [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), - [sym_string_literal] = ACTIONS(855), - [sym_text_block] = ACTIONS(853), - [sym_null_literal] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [207] = { - [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(857), - [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), - [sym_string_literal] = ACTIONS(859), - [sym_text_block] = ACTIONS(857), - [sym_null_literal] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), - }, - [208] = { - [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(861), - [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), - [sym_string_literal] = ACTIONS(863), - [sym_text_block] = ACTIONS(861), - [sym_null_literal] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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__literal] = STATE(407), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym_array_initializer] = STATE(901), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [204] = { + [ts_builtin_sym_end] = ACTIONS(854), + [sym_identifier] = ACTIONS(856), + [sym_decimal_integer_literal] = ACTIONS(856), + [sym_hex_integer_literal] = ACTIONS(856), + [sym_octal_integer_literal] = ACTIONS(854), + [sym_binary_integer_literal] = ACTIONS(854), + [sym_decimal_floating_point_literal] = ACTIONS(854), + [sym_hex_floating_point_literal] = ACTIONS(856), + [sym_true] = ACTIONS(856), + [sym_false] = ACTIONS(856), + [sym_character_literal] = ACTIONS(854), + [sym_string_literal] = ACTIONS(856), + [sym_text_block] = ACTIONS(854), + [sym_null_literal] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_new] = ACTIONS(856), + [anon_sym_class] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_case] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_assert] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(856), + [anon_sym_synchronized] = ACTIONS(856), + [anon_sym_throw] = ACTIONS(856), + [anon_sym_try] = ACTIONS(856), + [anon_sym_if] = ACTIONS(856), + [anon_sym_else] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_AT] = ACTIONS(856), + [anon_sym_open] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_static] = ACTIONS(856), + [anon_sym_package] = ACTIONS(856), + [anon_sym_import] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_abstract] = ACTIONS(856), + [anon_sym_final] = ACTIONS(856), + [anon_sym_strictfp] = ACTIONS(856), + [anon_sym_native] = ACTIONS(856), + [anon_sym_transient] = ACTIONS(856), + [anon_sym_volatile] = ACTIONS(856), + [anon_sym_sealed] = ACTIONS(856), + [anon_sym_non_DASHsealed] = ACTIONS(854), + [anon_sym_record] = ACTIONS(856), + [anon_sym_ATinterface] = ACTIONS(854), + [anon_sym_interface] = ACTIONS(856), + [anon_sym_byte] = ACTIONS(856), + [anon_sym_short] = ACTIONS(856), + [anon_sym_int] = ACTIONS(856), + [anon_sym_long] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_float] = ACTIONS(856), + [anon_sym_double] = ACTIONS(856), + [sym_boolean_type] = ACTIONS(856), + [sym_void_type] = ACTIONS(856), + [sym_this] = ACTIONS(856), + [sym_super] = ACTIONS(856), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [205] = { + [ts_builtin_sym_end] = ACTIONS(858), + [sym_identifier] = ACTIONS(860), + [sym_decimal_integer_literal] = ACTIONS(860), + [sym_hex_integer_literal] = ACTIONS(860), + [sym_octal_integer_literal] = ACTIONS(858), + [sym_binary_integer_literal] = ACTIONS(858), + [sym_decimal_floating_point_literal] = ACTIONS(858), + [sym_hex_floating_point_literal] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_character_literal] = ACTIONS(858), + [sym_string_literal] = ACTIONS(860), + [sym_text_block] = ACTIONS(858), + [sym_null_literal] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_new] = ACTIONS(860), + [anon_sym_class] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_case] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_do] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_synchronized] = ACTIONS(860), + [anon_sym_throw] = ACTIONS(860), + [anon_sym_try] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_else] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_open] = ACTIONS(860), + [anon_sym_module] = ACTIONS(860), + [anon_sym_static] = ACTIONS(860), + [anon_sym_package] = ACTIONS(860), + [anon_sym_import] = ACTIONS(860), + [anon_sym_enum] = ACTIONS(860), + [anon_sym_public] = ACTIONS(860), + [anon_sym_protected] = ACTIONS(860), + [anon_sym_private] = ACTIONS(860), + [anon_sym_abstract] = ACTIONS(860), + [anon_sym_final] = ACTIONS(860), + [anon_sym_strictfp] = ACTIONS(860), + [anon_sym_native] = ACTIONS(860), + [anon_sym_transient] = ACTIONS(860), + [anon_sym_volatile] = ACTIONS(860), + [anon_sym_sealed] = ACTIONS(860), + [anon_sym_non_DASHsealed] = ACTIONS(858), + [anon_sym_record] = ACTIONS(860), + [anon_sym_ATinterface] = ACTIONS(858), + [anon_sym_interface] = ACTIONS(860), + [anon_sym_byte] = ACTIONS(860), + [anon_sym_short] = ACTIONS(860), + [anon_sym_int] = ACTIONS(860), + [anon_sym_long] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_float] = ACTIONS(860), + [anon_sym_double] = ACTIONS(860), + [sym_boolean_type] = ACTIONS(860), + [sym_void_type] = ACTIONS(860), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [206] = { + [ts_builtin_sym_end] = ACTIONS(862), + [sym_identifier] = ACTIONS(864), + [sym_decimal_integer_literal] = ACTIONS(864), + [sym_hex_integer_literal] = ACTIONS(864), + [sym_octal_integer_literal] = ACTIONS(862), + [sym_binary_integer_literal] = ACTIONS(862), + [sym_decimal_floating_point_literal] = ACTIONS(862), + [sym_hex_floating_point_literal] = ACTIONS(864), + [sym_true] = ACTIONS(864), + [sym_false] = ACTIONS(864), + [sym_character_literal] = ACTIONS(862), + [sym_string_literal] = ACTIONS(864), + [sym_text_block] = ACTIONS(862), + [sym_null_literal] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(864), + [anon_sym_DASH] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [anon_sym_new] = ACTIONS(864), + [anon_sym_class] = ACTIONS(864), + [anon_sym_switch] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_case] = ACTIONS(864), + [anon_sym_default] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_assert] = ACTIONS(864), + [anon_sym_do] = ACTIONS(864), + [anon_sym_while] = ACTIONS(864), + [anon_sym_break] = ACTIONS(864), + [anon_sym_continue] = ACTIONS(864), + [anon_sym_return] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(864), + [anon_sym_synchronized] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(864), + [anon_sym_try] = ACTIONS(864), + [anon_sym_if] = ACTIONS(864), + [anon_sym_else] = ACTIONS(864), + [anon_sym_for] = ACTIONS(864), + [anon_sym_AT] = ACTIONS(864), + [anon_sym_open] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_static] = ACTIONS(864), + [anon_sym_package] = ACTIONS(864), + [anon_sym_import] = ACTIONS(864), + [anon_sym_enum] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_abstract] = ACTIONS(864), + [anon_sym_final] = ACTIONS(864), + [anon_sym_strictfp] = ACTIONS(864), + [anon_sym_native] = ACTIONS(864), + [anon_sym_transient] = ACTIONS(864), + [anon_sym_volatile] = ACTIONS(864), + [anon_sym_sealed] = ACTIONS(864), + [anon_sym_non_DASHsealed] = ACTIONS(862), + [anon_sym_record] = ACTIONS(864), + [anon_sym_ATinterface] = ACTIONS(862), + [anon_sym_interface] = ACTIONS(864), + [anon_sym_byte] = ACTIONS(864), + [anon_sym_short] = ACTIONS(864), + [anon_sym_int] = ACTIONS(864), + [anon_sym_long] = ACTIONS(864), + [anon_sym_char] = ACTIONS(864), + [anon_sym_float] = ACTIONS(864), + [anon_sym_double] = ACTIONS(864), + [sym_boolean_type] = ACTIONS(864), + [sym_void_type] = ACTIONS(864), + [sym_this] = ACTIONS(864), + [sym_super] = ACTIONS(864), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [207] = { + [ts_builtin_sym_end] = ACTIONS(866), + [sym_identifier] = ACTIONS(868), + [sym_decimal_integer_literal] = ACTIONS(868), + [sym_hex_integer_literal] = ACTIONS(868), + [sym_octal_integer_literal] = ACTIONS(866), + [sym_binary_integer_literal] = ACTIONS(866), + [sym_decimal_floating_point_literal] = ACTIONS(866), + [sym_hex_floating_point_literal] = ACTIONS(868), + [sym_true] = ACTIONS(868), + [sym_false] = ACTIONS(868), + [sym_character_literal] = ACTIONS(866), + [sym_string_literal] = ACTIONS(868), + [sym_text_block] = ACTIONS(866), + [sym_null_literal] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(868), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(866), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(868), + [anon_sym_class] = ACTIONS(868), + [anon_sym_switch] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_case] = ACTIONS(868), + [anon_sym_default] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_assert] = ACTIONS(868), + [anon_sym_do] = ACTIONS(868), + [anon_sym_while] = ACTIONS(868), + [anon_sym_break] = ACTIONS(868), + [anon_sym_continue] = ACTIONS(868), + [anon_sym_return] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(868), + [anon_sym_synchronized] = ACTIONS(868), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_try] = ACTIONS(868), + [anon_sym_if] = ACTIONS(868), + [anon_sym_else] = ACTIONS(868), + [anon_sym_for] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(868), + [anon_sym_open] = ACTIONS(868), + [anon_sym_module] = ACTIONS(868), + [anon_sym_static] = ACTIONS(868), + [anon_sym_package] = ACTIONS(868), + [anon_sym_import] = ACTIONS(868), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_public] = ACTIONS(868), + [anon_sym_protected] = ACTIONS(868), + [anon_sym_private] = ACTIONS(868), + [anon_sym_abstract] = ACTIONS(868), + [anon_sym_final] = ACTIONS(868), + [anon_sym_strictfp] = ACTIONS(868), + [anon_sym_native] = ACTIONS(868), + [anon_sym_transient] = ACTIONS(868), + [anon_sym_volatile] = ACTIONS(868), + [anon_sym_sealed] = ACTIONS(868), + [anon_sym_non_DASHsealed] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_ATinterface] = ACTIONS(866), + [anon_sym_interface] = ACTIONS(868), + [anon_sym_byte] = ACTIONS(868), + [anon_sym_short] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_long] = ACTIONS(868), + [anon_sym_char] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_double] = ACTIONS(868), + [sym_boolean_type] = ACTIONS(868), + [sym_void_type] = ACTIONS(868), + [sym_this] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(870), + [sym_identifier] = ACTIONS(872), + [sym_decimal_integer_literal] = ACTIONS(872), + [sym_hex_integer_literal] = ACTIONS(872), + [sym_octal_integer_literal] = ACTIONS(870), + [sym_binary_integer_literal] = ACTIONS(870), + [sym_decimal_floating_point_literal] = ACTIONS(870), + [sym_hex_floating_point_literal] = ACTIONS(872), + [sym_true] = ACTIONS(872), + [sym_false] = ACTIONS(872), + [sym_character_literal] = ACTIONS(870), + [sym_string_literal] = ACTIONS(872), + [sym_text_block] = ACTIONS(870), + [sym_null_literal] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_PLUS] = ACTIONS(872), + [anon_sym_DASH] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(870), + [anon_sym_TILDE] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(870), + [anon_sym_DASH_DASH] = ACTIONS(870), + [anon_sym_new] = ACTIONS(872), + [anon_sym_class] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(870), + [anon_sym_case] = ACTIONS(872), + [anon_sym_default] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_assert] = ACTIONS(872), + [anon_sym_do] = ACTIONS(872), + [anon_sym_while] = ACTIONS(872), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(872), + [anon_sym_return] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(872), + [anon_sym_synchronized] = ACTIONS(872), + [anon_sym_throw] = ACTIONS(872), + [anon_sym_try] = ACTIONS(872), + [anon_sym_if] = ACTIONS(872), + [anon_sym_else] = ACTIONS(872), + [anon_sym_for] = ACTIONS(872), + [anon_sym_AT] = ACTIONS(872), + [anon_sym_open] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_static] = ACTIONS(872), + [anon_sym_package] = ACTIONS(872), + [anon_sym_import] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(872), + [anon_sym_public] = ACTIONS(872), + [anon_sym_protected] = ACTIONS(872), + [anon_sym_private] = ACTIONS(872), + [anon_sym_abstract] = ACTIONS(872), + [anon_sym_final] = ACTIONS(872), + [anon_sym_strictfp] = ACTIONS(872), + [anon_sym_native] = ACTIONS(872), + [anon_sym_transient] = ACTIONS(872), + [anon_sym_volatile] = ACTIONS(872), + [anon_sym_sealed] = ACTIONS(872), + [anon_sym_non_DASHsealed] = ACTIONS(870), + [anon_sym_record] = ACTIONS(872), + [anon_sym_ATinterface] = ACTIONS(870), + [anon_sym_interface] = ACTIONS(872), + [anon_sym_byte] = ACTIONS(872), + [anon_sym_short] = ACTIONS(872), + [anon_sym_int] = ACTIONS(872), + [anon_sym_long] = ACTIONS(872), + [anon_sym_char] = ACTIONS(872), + [anon_sym_float] = ACTIONS(872), + [anon_sym_double] = ACTIONS(872), + [sym_boolean_type] = ACTIONS(872), + [sym_void_type] = ACTIONS(872), + [sym_this] = ACTIONS(872), + [sym_super] = ACTIONS(872), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [209] = { - [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(865), - [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), - [sym_string_literal] = ACTIONS(867), - [sym_text_block] = ACTIONS(865), - [sym_null_literal] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), + [sym_decimal_integer_literal] = ACTIONS(876), + [sym_hex_integer_literal] = ACTIONS(876), + [sym_octal_integer_literal] = ACTIONS(874), + [sym_binary_integer_literal] = ACTIONS(874), + [sym_decimal_floating_point_literal] = ACTIONS(874), + [sym_hex_floating_point_literal] = ACTIONS(876), + [sym_true] = ACTIONS(876), + [sym_false] = ACTIONS(876), + [sym_character_literal] = ACTIONS(874), + [sym_string_literal] = ACTIONS(876), + [sym_text_block] = ACTIONS(874), + [sym_null_literal] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_case] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_assert] = ACTIONS(876), + [anon_sym_do] = ACTIONS(876), + [anon_sym_while] = ACTIONS(876), + [anon_sym_break] = ACTIONS(876), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_return] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_synchronized] = ACTIONS(876), + [anon_sym_throw] = ACTIONS(876), + [anon_sym_try] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_else] = ACTIONS(876), + [anon_sym_for] = ACTIONS(876), + [anon_sym_AT] = ACTIONS(876), + [anon_sym_open] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_static] = ACTIONS(876), + [anon_sym_package] = ACTIONS(876), + [anon_sym_import] = ACTIONS(876), + [anon_sym_enum] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_abstract] = ACTIONS(876), + [anon_sym_final] = ACTIONS(876), + [anon_sym_strictfp] = ACTIONS(876), + [anon_sym_native] = ACTIONS(876), + [anon_sym_transient] = ACTIONS(876), + [anon_sym_volatile] = ACTIONS(876), + [anon_sym_sealed] = ACTIONS(876), + [anon_sym_non_DASHsealed] = ACTIONS(874), + [anon_sym_record] = ACTIONS(876), + [anon_sym_ATinterface] = ACTIONS(874), + [anon_sym_interface] = ACTIONS(876), + [anon_sym_byte] = ACTIONS(876), + [anon_sym_short] = ACTIONS(876), + [anon_sym_int] = ACTIONS(876), + [anon_sym_long] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_float] = ACTIONS(876), + [anon_sym_double] = ACTIONS(876), + [sym_boolean_type] = ACTIONS(876), + [sym_void_type] = ACTIONS(876), + [sym_this] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [210] = { - [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(869), - [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), - [sym_string_literal] = ACTIONS(871), - [sym_text_block] = ACTIONS(869), - [sym_null_literal] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_identifier] = ACTIONS(880), + [sym_decimal_integer_literal] = ACTIONS(880), + [sym_hex_integer_literal] = ACTIONS(880), + [sym_octal_integer_literal] = ACTIONS(878), + [sym_binary_integer_literal] = ACTIONS(878), + [sym_decimal_floating_point_literal] = ACTIONS(878), + [sym_hex_floating_point_literal] = ACTIONS(880), + [sym_true] = ACTIONS(880), + [sym_false] = ACTIONS(880), + [sym_character_literal] = ACTIONS(878), + [sym_string_literal] = ACTIONS(880), + [sym_text_block] = ACTIONS(878), + [sym_null_literal] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_BANG] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(878), + [anon_sym_PLUS_PLUS] = ACTIONS(878), + [anon_sym_DASH_DASH] = ACTIONS(878), + [anon_sym_new] = ACTIONS(880), + [anon_sym_class] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_assert] = ACTIONS(880), + [anon_sym_do] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_break] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_yield] = ACTIONS(880), + [anon_sym_synchronized] = ACTIONS(880), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_try] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_else] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_AT] = ACTIONS(880), + [anon_sym_open] = ACTIONS(880), + [anon_sym_module] = ACTIONS(880), + [anon_sym_static] = ACTIONS(880), + [anon_sym_package] = ACTIONS(880), + [anon_sym_import] = ACTIONS(880), + [anon_sym_enum] = ACTIONS(880), + [anon_sym_public] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(880), + [anon_sym_final] = ACTIONS(880), + [anon_sym_strictfp] = ACTIONS(880), + [anon_sym_native] = ACTIONS(880), + [anon_sym_transient] = ACTIONS(880), + [anon_sym_volatile] = ACTIONS(880), + [anon_sym_sealed] = ACTIONS(880), + [anon_sym_non_DASHsealed] = ACTIONS(878), + [anon_sym_record] = ACTIONS(880), + [anon_sym_ATinterface] = ACTIONS(878), + [anon_sym_interface] = ACTIONS(880), + [anon_sym_byte] = ACTIONS(880), + [anon_sym_short] = ACTIONS(880), + [anon_sym_int] = ACTIONS(880), + [anon_sym_long] = ACTIONS(880), + [anon_sym_char] = ACTIONS(880), + [anon_sym_float] = ACTIONS(880), + [anon_sym_double] = ACTIONS(880), + [sym_boolean_type] = ACTIONS(880), + [sym_void_type] = ACTIONS(880), + [sym_this] = ACTIONS(880), + [sym_super] = ACTIONS(880), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [211] = { - [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(873), - [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), - [sym_string_literal] = ACTIONS(875), - [sym_text_block] = ACTIONS(873), - [sym_null_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(882), + [sym_identifier] = ACTIONS(884), + [sym_decimal_integer_literal] = ACTIONS(884), + [sym_hex_integer_literal] = ACTIONS(884), + [sym_octal_integer_literal] = ACTIONS(882), + [sym_binary_integer_literal] = ACTIONS(882), + [sym_decimal_floating_point_literal] = ACTIONS(882), + [sym_hex_floating_point_literal] = ACTIONS(884), + [sym_true] = ACTIONS(884), + [sym_false] = ACTIONS(884), + [sym_character_literal] = ACTIONS(882), + [sym_string_literal] = ACTIONS(884), + [sym_text_block] = ACTIONS(882), + [sym_null_literal] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(884), + [anon_sym_class] = ACTIONS(884), + [anon_sym_switch] = ACTIONS(884), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_case] = ACTIONS(884), + [anon_sym_default] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_assert] = ACTIONS(884), + [anon_sym_do] = ACTIONS(884), + [anon_sym_while] = ACTIONS(884), + [anon_sym_break] = ACTIONS(884), + [anon_sym_continue] = ACTIONS(884), + [anon_sym_return] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(884), + [anon_sym_synchronized] = ACTIONS(884), + [anon_sym_throw] = ACTIONS(884), + [anon_sym_try] = ACTIONS(884), + [anon_sym_if] = ACTIONS(884), + [anon_sym_else] = ACTIONS(884), + [anon_sym_for] = ACTIONS(884), + [anon_sym_AT] = ACTIONS(884), + [anon_sym_open] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_static] = ACTIONS(884), + [anon_sym_package] = ACTIONS(884), + [anon_sym_import] = ACTIONS(884), + [anon_sym_enum] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_final] = ACTIONS(884), + [anon_sym_strictfp] = ACTIONS(884), + [anon_sym_native] = ACTIONS(884), + [anon_sym_transient] = ACTIONS(884), + [anon_sym_volatile] = ACTIONS(884), + [anon_sym_sealed] = ACTIONS(884), + [anon_sym_non_DASHsealed] = ACTIONS(882), + [anon_sym_record] = ACTIONS(884), + [anon_sym_ATinterface] = ACTIONS(882), + [anon_sym_interface] = ACTIONS(884), + [anon_sym_byte] = ACTIONS(884), + [anon_sym_short] = ACTIONS(884), + [anon_sym_int] = ACTIONS(884), + [anon_sym_long] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_float] = ACTIONS(884), + [anon_sym_double] = ACTIONS(884), + [sym_boolean_type] = ACTIONS(884), + [sym_void_type] = ACTIONS(884), + [sym_this] = ACTIONS(884), + [sym_super] = ACTIONS(884), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [212] = { - [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(877), - [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), - [sym_string_literal] = ACTIONS(879), - [sym_text_block] = ACTIONS(877), - [sym_null_literal] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(273), + [sym_identifier] = ACTIONS(275), + [sym_decimal_integer_literal] = ACTIONS(275), + [sym_hex_integer_literal] = ACTIONS(275), + [sym_octal_integer_literal] = ACTIONS(273), + [sym_binary_integer_literal] = ACTIONS(273), + [sym_decimal_floating_point_literal] = ACTIONS(273), + [sym_hex_floating_point_literal] = ACTIONS(275), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_character_literal] = ACTIONS(273), + [sym_string_literal] = ACTIONS(275), + [sym_text_block] = ACTIONS(273), + [sym_null_literal] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_new] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_yield] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_throw] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_open] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_abstract] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_strictfp] = ACTIONS(275), + [anon_sym_native] = ACTIONS(275), + [anon_sym_transient] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_sealed] = ACTIONS(275), + [anon_sym_non_DASHsealed] = ACTIONS(273), + [anon_sym_record] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_byte] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [sym_boolean_type] = ACTIONS(275), + [sym_void_type] = ACTIONS(275), + [sym_this] = ACTIONS(275), + [sym_super] = ACTIONS(275), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [213] = { - [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(881), - [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), - [sym_string_literal] = ACTIONS(883), - [sym_text_block] = ACTIONS(881), - [sym_null_literal] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(886), + [sym_identifier] = ACTIONS(888), + [sym_decimal_integer_literal] = ACTIONS(888), + [sym_hex_integer_literal] = ACTIONS(888), + [sym_octal_integer_literal] = ACTIONS(886), + [sym_binary_integer_literal] = ACTIONS(886), + [sym_decimal_floating_point_literal] = ACTIONS(886), + [sym_hex_floating_point_literal] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_character_literal] = ACTIONS(886), + [sym_string_literal] = ACTIONS(888), + [sym_text_block] = ACTIONS(886), + [sym_null_literal] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_new] = ACTIONS(888), + [anon_sym_class] = ACTIONS(888), + [anon_sym_switch] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_case] = ACTIONS(888), + [anon_sym_default] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_assert] = ACTIONS(888), + [anon_sym_do] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [anon_sym_break] = ACTIONS(888), + [anon_sym_continue] = ACTIONS(888), + [anon_sym_return] = ACTIONS(888), + [anon_sym_yield] = ACTIONS(888), + [anon_sym_synchronized] = ACTIONS(888), + [anon_sym_throw] = ACTIONS(888), + [anon_sym_try] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_else] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_open] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_static] = ACTIONS(888), + [anon_sym_package] = ACTIONS(888), + [anon_sym_import] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_abstract] = ACTIONS(888), + [anon_sym_final] = ACTIONS(888), + [anon_sym_strictfp] = ACTIONS(888), + [anon_sym_native] = ACTIONS(888), + [anon_sym_transient] = ACTIONS(888), + [anon_sym_volatile] = ACTIONS(888), + [anon_sym_sealed] = ACTIONS(888), + [anon_sym_non_DASHsealed] = ACTIONS(886), + [anon_sym_record] = ACTIONS(888), + [anon_sym_ATinterface] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_byte] = ACTIONS(888), + [anon_sym_short] = ACTIONS(888), + [anon_sym_int] = ACTIONS(888), + [anon_sym_long] = ACTIONS(888), + [anon_sym_char] = ACTIONS(888), + [anon_sym_float] = ACTIONS(888), + [anon_sym_double] = ACTIONS(888), + [sym_boolean_type] = ACTIONS(888), + [sym_void_type] = ACTIONS(888), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [214] = { - [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(885), - [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), - [sym_string_literal] = ACTIONS(887), - [sym_text_block] = ACTIONS(885), - [sym_null_literal] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(890), + [sym_identifier] = ACTIONS(892), + [sym_decimal_integer_literal] = ACTIONS(892), + [sym_hex_integer_literal] = ACTIONS(892), + [sym_octal_integer_literal] = ACTIONS(890), + [sym_binary_integer_literal] = ACTIONS(890), + [sym_decimal_floating_point_literal] = ACTIONS(890), + [sym_hex_floating_point_literal] = ACTIONS(892), + [sym_true] = ACTIONS(892), + [sym_false] = ACTIONS(892), + [sym_character_literal] = ACTIONS(890), + [sym_string_literal] = ACTIONS(892), + [sym_text_block] = ACTIONS(890), + [sym_null_literal] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_PLUS_PLUS] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_new] = ACTIONS(892), + [anon_sym_class] = ACTIONS(892), + [anon_sym_switch] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_case] = ACTIONS(892), + [anon_sym_default] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_assert] = ACTIONS(892), + [anon_sym_do] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_return] = ACTIONS(892), + [anon_sym_yield] = ACTIONS(892), + [anon_sym_synchronized] = ACTIONS(892), + [anon_sym_throw] = ACTIONS(892), + [anon_sym_try] = ACTIONS(892), + [anon_sym_if] = ACTIONS(892), + [anon_sym_else] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(892), + [anon_sym_open] = ACTIONS(892), + [anon_sym_module] = ACTIONS(892), + [anon_sym_static] = ACTIONS(892), + [anon_sym_package] = ACTIONS(892), + [anon_sym_import] = ACTIONS(892), + [anon_sym_enum] = ACTIONS(892), + [anon_sym_public] = ACTIONS(892), + [anon_sym_protected] = ACTIONS(892), + [anon_sym_private] = ACTIONS(892), + [anon_sym_abstract] = ACTIONS(892), + [anon_sym_final] = ACTIONS(892), + [anon_sym_strictfp] = ACTIONS(892), + [anon_sym_native] = ACTIONS(892), + [anon_sym_transient] = ACTIONS(892), + [anon_sym_volatile] = ACTIONS(892), + [anon_sym_sealed] = ACTIONS(892), + [anon_sym_non_DASHsealed] = ACTIONS(890), + [anon_sym_record] = ACTIONS(892), + [anon_sym_ATinterface] = ACTIONS(890), + [anon_sym_interface] = ACTIONS(892), + [anon_sym_byte] = ACTIONS(892), + [anon_sym_short] = ACTIONS(892), + [anon_sym_int] = ACTIONS(892), + [anon_sym_long] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_float] = ACTIONS(892), + [anon_sym_double] = ACTIONS(892), + [sym_boolean_type] = ACTIONS(892), + [sym_void_type] = ACTIONS(892), + [sym_this] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [215] = { - [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(889), - [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), - [sym_string_literal] = ACTIONS(891), - [sym_text_block] = ACTIONS(889), - [sym_null_literal] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(894), + [sym_identifier] = ACTIONS(896), + [sym_decimal_integer_literal] = ACTIONS(896), + [sym_hex_integer_literal] = ACTIONS(896), + [sym_octal_integer_literal] = ACTIONS(894), + [sym_binary_integer_literal] = ACTIONS(894), + [sym_decimal_floating_point_literal] = ACTIONS(894), + [sym_hex_floating_point_literal] = ACTIONS(896), + [sym_true] = ACTIONS(896), + [sym_false] = ACTIONS(896), + [sym_character_literal] = ACTIONS(894), + [sym_string_literal] = ACTIONS(896), + [sym_text_block] = ACTIONS(894), + [sym_null_literal] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_new] = ACTIONS(896), + [anon_sym_class] = ACTIONS(896), + [anon_sym_switch] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_case] = ACTIONS(896), + [anon_sym_default] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_do] = ACTIONS(896), + [anon_sym_while] = ACTIONS(896), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_return] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_synchronized] = ACTIONS(896), + [anon_sym_throw] = ACTIONS(896), + [anon_sym_try] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_AT] = ACTIONS(896), + [anon_sym_open] = ACTIONS(896), + [anon_sym_module] = ACTIONS(896), + [anon_sym_static] = ACTIONS(896), + [anon_sym_package] = ACTIONS(896), + [anon_sym_import] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(896), + [anon_sym_public] = ACTIONS(896), + [anon_sym_protected] = ACTIONS(896), + [anon_sym_private] = ACTIONS(896), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_final] = ACTIONS(896), + [anon_sym_strictfp] = ACTIONS(896), + [anon_sym_native] = ACTIONS(896), + [anon_sym_transient] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym_sealed] = ACTIONS(896), + [anon_sym_non_DASHsealed] = ACTIONS(894), + [anon_sym_record] = ACTIONS(896), + [anon_sym_ATinterface] = ACTIONS(894), + [anon_sym_interface] = ACTIONS(896), + [anon_sym_byte] = ACTIONS(896), + [anon_sym_short] = ACTIONS(896), + [anon_sym_int] = ACTIONS(896), + [anon_sym_long] = ACTIONS(896), + [anon_sym_char] = ACTIONS(896), + [anon_sym_float] = ACTIONS(896), + [anon_sym_double] = ACTIONS(896), + [sym_boolean_type] = ACTIONS(896), + [sym_void_type] = ACTIONS(896), + [sym_this] = ACTIONS(896), + [sym_super] = ACTIONS(896), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [216] = { - [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(893), - [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), - [sym_string_literal] = ACTIONS(895), - [sym_text_block] = ACTIONS(893), - [sym_null_literal] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(900), + [sym_decimal_integer_literal] = ACTIONS(900), + [sym_hex_integer_literal] = ACTIONS(900), + [sym_octal_integer_literal] = ACTIONS(898), + [sym_binary_integer_literal] = ACTIONS(898), + [sym_decimal_floating_point_literal] = ACTIONS(898), + [sym_hex_floating_point_literal] = ACTIONS(900), + [sym_true] = ACTIONS(900), + [sym_false] = ACTIONS(900), + [sym_character_literal] = ACTIONS(898), + [sym_string_literal] = ACTIONS(900), + [sym_text_block] = ACTIONS(898), + [sym_null_literal] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(898), + [anon_sym_new] = ACTIONS(900), + [anon_sym_class] = ACTIONS(900), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_case] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_assert] = ACTIONS(900), + [anon_sym_do] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_break] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_return] = ACTIONS(900), + [anon_sym_yield] = ACTIONS(900), + [anon_sym_synchronized] = ACTIONS(900), + [anon_sym_throw] = ACTIONS(900), + [anon_sym_try] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_else] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_AT] = ACTIONS(900), + [anon_sym_open] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_static] = ACTIONS(900), + [anon_sym_package] = ACTIONS(900), + [anon_sym_import] = ACTIONS(900), + [anon_sym_enum] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_abstract] = ACTIONS(900), + [anon_sym_final] = ACTIONS(900), + [anon_sym_strictfp] = ACTIONS(900), + [anon_sym_native] = ACTIONS(900), + [anon_sym_transient] = ACTIONS(900), + [anon_sym_volatile] = ACTIONS(900), + [anon_sym_sealed] = ACTIONS(900), + [anon_sym_non_DASHsealed] = ACTIONS(898), + [anon_sym_record] = ACTIONS(900), + [anon_sym_ATinterface] = ACTIONS(898), + [anon_sym_interface] = ACTIONS(900), + [anon_sym_byte] = ACTIONS(900), + [anon_sym_short] = ACTIONS(900), + [anon_sym_int] = ACTIONS(900), + [anon_sym_long] = ACTIONS(900), + [anon_sym_char] = ACTIONS(900), + [anon_sym_float] = ACTIONS(900), + [anon_sym_double] = ACTIONS(900), + [sym_boolean_type] = ACTIONS(900), + [sym_void_type] = ACTIONS(900), + [sym_this] = ACTIONS(900), + [sym_super] = ACTIONS(900), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [217] = { - [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(897), - [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), - [sym_string_literal] = ACTIONS(899), - [sym_text_block] = ACTIONS(897), - [sym_null_literal] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_DASH] = 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_RBRACE] = 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_final] = 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_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), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), + [sym_decimal_integer_literal] = ACTIONS(904), + [sym_hex_integer_literal] = ACTIONS(904), + [sym_octal_integer_literal] = ACTIONS(902), + [sym_binary_integer_literal] = ACTIONS(902), + [sym_decimal_floating_point_literal] = ACTIONS(902), + [sym_hex_floating_point_literal] = ACTIONS(904), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [sym_character_literal] = ACTIONS(902), + [sym_string_literal] = ACTIONS(904), + [sym_text_block] = ACTIONS(902), + [sym_null_literal] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(902), + [anon_sym_new] = ACTIONS(904), + [anon_sym_class] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_case] = ACTIONS(904), + [anon_sym_default] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_assert] = ACTIONS(904), + [anon_sym_do] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_return] = ACTIONS(904), + [anon_sym_yield] = ACTIONS(904), + [anon_sym_synchronized] = ACTIONS(904), + [anon_sym_throw] = ACTIONS(904), + [anon_sym_try] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_AT] = ACTIONS(904), + [anon_sym_open] = ACTIONS(904), + [anon_sym_module] = ACTIONS(904), + [anon_sym_static] = ACTIONS(904), + [anon_sym_package] = ACTIONS(904), + [anon_sym_import] = ACTIONS(904), + [anon_sym_enum] = ACTIONS(904), + [anon_sym_public] = ACTIONS(904), + [anon_sym_protected] = ACTIONS(904), + [anon_sym_private] = ACTIONS(904), + [anon_sym_abstract] = ACTIONS(904), + [anon_sym_final] = ACTIONS(904), + [anon_sym_strictfp] = ACTIONS(904), + [anon_sym_native] = ACTIONS(904), + [anon_sym_transient] = ACTIONS(904), + [anon_sym_volatile] = ACTIONS(904), + [anon_sym_sealed] = ACTIONS(904), + [anon_sym_non_DASHsealed] = ACTIONS(902), + [anon_sym_record] = ACTIONS(904), + [anon_sym_ATinterface] = ACTIONS(902), + [anon_sym_interface] = ACTIONS(904), + [anon_sym_byte] = ACTIONS(904), + [anon_sym_short] = ACTIONS(904), + [anon_sym_int] = ACTIONS(904), + [anon_sym_long] = ACTIONS(904), + [anon_sym_char] = ACTIONS(904), + [anon_sym_float] = ACTIONS(904), + [anon_sym_double] = ACTIONS(904), + [sym_boolean_type] = ACTIONS(904), + [sym_void_type] = ACTIONS(904), + [sym_this] = ACTIONS(904), + [sym_super] = ACTIONS(904), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(509), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(906), + [sym_identifier] = ACTIONS(908), + [sym_decimal_integer_literal] = ACTIONS(908), + [sym_hex_integer_literal] = ACTIONS(908), + [sym_octal_integer_literal] = ACTIONS(906), + [sym_binary_integer_literal] = ACTIONS(906), + [sym_decimal_floating_point_literal] = ACTIONS(906), + [sym_hex_floating_point_literal] = ACTIONS(908), + [sym_true] = ACTIONS(908), + [sym_false] = ACTIONS(908), + [sym_character_literal] = ACTIONS(906), + [sym_string_literal] = ACTIONS(908), + [sym_text_block] = ACTIONS(906), + [sym_null_literal] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(906), + [anon_sym_new] = ACTIONS(908), + [anon_sym_class] = ACTIONS(908), + [anon_sym_switch] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_case] = ACTIONS(908), + [anon_sym_default] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_assert] = ACTIONS(908), + [anon_sym_do] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_return] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(908), + [anon_sym_synchronized] = ACTIONS(908), + [anon_sym_throw] = ACTIONS(908), + [anon_sym_try] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_AT] = ACTIONS(908), + [anon_sym_open] = ACTIONS(908), + [anon_sym_module] = ACTIONS(908), + [anon_sym_static] = ACTIONS(908), + [anon_sym_package] = ACTIONS(908), + [anon_sym_import] = ACTIONS(908), + [anon_sym_enum] = ACTIONS(908), + [anon_sym_public] = ACTIONS(908), + [anon_sym_protected] = ACTIONS(908), + [anon_sym_private] = ACTIONS(908), + [anon_sym_abstract] = ACTIONS(908), + [anon_sym_final] = ACTIONS(908), + [anon_sym_strictfp] = ACTIONS(908), + [anon_sym_native] = ACTIONS(908), + [anon_sym_transient] = ACTIONS(908), + [anon_sym_volatile] = ACTIONS(908), + [anon_sym_sealed] = ACTIONS(908), + [anon_sym_non_DASHsealed] = ACTIONS(906), + [anon_sym_record] = ACTIONS(908), + [anon_sym_ATinterface] = ACTIONS(906), + [anon_sym_interface] = ACTIONS(908), + [anon_sym_byte] = ACTIONS(908), + [anon_sym_short] = ACTIONS(908), + [anon_sym_int] = ACTIONS(908), + [anon_sym_long] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_float] = ACTIONS(908), + [anon_sym_double] = ACTIONS(908), + [sym_boolean_type] = ACTIONS(908), + [sym_void_type] = ACTIONS(908), + [sym_this] = ACTIONS(908), + [sym_super] = ACTIONS(908), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(532), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(910), + [sym_identifier] = ACTIONS(912), + [sym_decimal_integer_literal] = ACTIONS(912), + [sym_hex_integer_literal] = ACTIONS(912), + [sym_octal_integer_literal] = ACTIONS(910), + [sym_binary_integer_literal] = ACTIONS(910), + [sym_decimal_floating_point_literal] = ACTIONS(910), + [sym_hex_floating_point_literal] = ACTIONS(912), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_character_literal] = ACTIONS(910), + [sym_string_literal] = ACTIONS(912), + [sym_text_block] = ACTIONS(910), + [sym_null_literal] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_new] = ACTIONS(912), + [anon_sym_class] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_assert] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_synchronized] = ACTIONS(912), + [anon_sym_throw] = ACTIONS(912), + [anon_sym_try] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_else] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_AT] = ACTIONS(912), + [anon_sym_open] = ACTIONS(912), + [anon_sym_module] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_package] = ACTIONS(912), + [anon_sym_import] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_public] = ACTIONS(912), + [anon_sym_protected] = ACTIONS(912), + [anon_sym_private] = ACTIONS(912), + [anon_sym_abstract] = ACTIONS(912), + [anon_sym_final] = ACTIONS(912), + [anon_sym_strictfp] = ACTIONS(912), + [anon_sym_native] = ACTIONS(912), + [anon_sym_transient] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_sealed] = ACTIONS(912), + [anon_sym_non_DASHsealed] = ACTIONS(910), + [anon_sym_record] = ACTIONS(912), + [anon_sym_ATinterface] = ACTIONS(910), + [anon_sym_interface] = ACTIONS(912), + [anon_sym_byte] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [anon_sym_int] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_float] = ACTIONS(912), + [anon_sym_double] = ACTIONS(912), + [sym_boolean_type] = ACTIONS(912), + [sym_void_type] = ACTIONS(912), + [sym_this] = ACTIONS(912), + [sym_super] = ACTIONS(912), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(504), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(914), + [sym_identifier] = ACTIONS(916), + [sym_decimal_integer_literal] = ACTIONS(916), + [sym_hex_integer_literal] = ACTIONS(916), + [sym_octal_integer_literal] = ACTIONS(914), + [sym_binary_integer_literal] = ACTIONS(914), + [sym_decimal_floating_point_literal] = ACTIONS(914), + [sym_hex_floating_point_literal] = ACTIONS(916), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_character_literal] = ACTIONS(914), + [sym_string_literal] = ACTIONS(916), + [sym_text_block] = ACTIONS(914), + [sym_null_literal] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_new] = ACTIONS(916), + [anon_sym_class] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_assert] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(916), + [anon_sym_synchronized] = ACTIONS(916), + [anon_sym_throw] = ACTIONS(916), + [anon_sym_try] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_else] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_AT] = ACTIONS(916), + [anon_sym_open] = ACTIONS(916), + [anon_sym_module] = ACTIONS(916), + [anon_sym_static] = ACTIONS(916), + [anon_sym_package] = ACTIONS(916), + [anon_sym_import] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_public] = ACTIONS(916), + [anon_sym_protected] = ACTIONS(916), + [anon_sym_private] = ACTIONS(916), + [anon_sym_abstract] = ACTIONS(916), + [anon_sym_final] = ACTIONS(916), + [anon_sym_strictfp] = ACTIONS(916), + [anon_sym_native] = ACTIONS(916), + [anon_sym_transient] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_sealed] = ACTIONS(916), + [anon_sym_non_DASHsealed] = ACTIONS(914), + [anon_sym_record] = ACTIONS(916), + [anon_sym_ATinterface] = ACTIONS(914), + [anon_sym_interface] = ACTIONS(916), + [anon_sym_byte] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [anon_sym_int] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_char] = ACTIONS(916), + [anon_sym_float] = ACTIONS(916), + [anon_sym_double] = ACTIONS(916), + [sym_boolean_type] = ACTIONS(916), + [sym_void_type] = ACTIONS(916), + [sym_this] = ACTIONS(916), + [sym_super] = ACTIONS(916), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(549), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(918), + [sym_identifier] = ACTIONS(920), + [sym_decimal_integer_literal] = ACTIONS(920), + [sym_hex_integer_literal] = ACTIONS(920), + [sym_octal_integer_literal] = ACTIONS(918), + [sym_binary_integer_literal] = ACTIONS(918), + [sym_decimal_floating_point_literal] = ACTIONS(918), + [sym_hex_floating_point_literal] = ACTIONS(920), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_character_literal] = ACTIONS(918), + [sym_string_literal] = ACTIONS(920), + [sym_text_block] = ACTIONS(918), + [sym_null_literal] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_new] = ACTIONS(920), + [anon_sym_class] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_assert] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_synchronized] = ACTIONS(920), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(920), + [anon_sym_open] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_static] = ACTIONS(920), + [anon_sym_package] = ACTIONS(920), + [anon_sym_import] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_public] = ACTIONS(920), + [anon_sym_protected] = ACTIONS(920), + [anon_sym_private] = ACTIONS(920), + [anon_sym_abstract] = ACTIONS(920), + [anon_sym_final] = ACTIONS(920), + [anon_sym_strictfp] = ACTIONS(920), + [anon_sym_native] = ACTIONS(920), + [anon_sym_transient] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_sealed] = ACTIONS(920), + [anon_sym_non_DASHsealed] = ACTIONS(918), + [anon_sym_record] = ACTIONS(920), + [anon_sym_ATinterface] = ACTIONS(918), + [anon_sym_interface] = ACTIONS(920), + [anon_sym_byte] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [anon_sym_int] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_char] = ACTIONS(920), + [anon_sym_float] = ACTIONS(920), + [anon_sym_double] = ACTIONS(920), + [sym_boolean_type] = ACTIONS(920), + [sym_void_type] = ACTIONS(920), + [sym_this] = ACTIONS(920), + [sym_super] = ACTIONS(920), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(510), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28220,7 +28458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(922), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28229,60 +28467,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [223] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(487), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(545), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28296,7 +28535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(911), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28304,61 +28542,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(924), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [224] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(488), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(545), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28372,7 +28612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(913), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28380,61 +28619,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(926), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [225] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(489), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(515), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28448,7 +28689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(928), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28457,60 +28698,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [226] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(499), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(553), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28524,7 +28766,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(917), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28533,60 +28774,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [227] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(490), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(486), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28600,7 +28843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(919), + [anon_sym_RPAREN] = ACTIONS(932), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28609,60 +28852,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [228] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(491), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28676,6 +28920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(934), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28683,62 +28928,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(921), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28759,62 +29004,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(936), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [230] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(534), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28835,62 +29081,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(925), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [231] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(482), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28904,7 +29151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(940), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28913,60 +29160,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [232] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(518), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28980,6 +29228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(942), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -28987,62 +29236,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(929), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [233] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(529), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(547), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29064,61 +29313,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [234] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(489), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29132,6 +29382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(946), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -29139,62 +29390,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(933), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [235] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(534), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(490), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29208,6 +29459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(948), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -29216,61 +29468,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(435), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29291,61 +29543,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(950), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(535), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29367,60 +29621,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(510), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(548), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29433,69 +29689,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [239] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(495), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(511), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29508,69 +29766,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(519), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(480), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29583,69 +29843,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [241] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(494), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(539), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29667,60 +29928,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [242] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(431), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(448), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29742,60 +30004,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [243] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(460), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29817,60 +30080,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [244] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(445), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29883,69 +30147,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(516), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(501), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29958,69 +30223,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [246] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(518), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(550), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30042,60 +30308,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(456), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30117,60 +30384,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(497), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(452), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30183,69 +30451,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [249] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(444), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(485), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30267,60 +30536,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [250] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(445), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(533), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30342,60 +30612,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [251] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(455), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(526), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30417,60 +30688,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [252] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(454), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(525), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30492,60 +30764,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [253] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(435), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(453), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30558,69 +30831,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [254] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(541), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(546), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30642,60 +30916,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [255] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(540), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(440), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30717,60 +30992,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [256] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(453), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30792,60 +31068,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [257] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(512), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(506), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30858,69 +31135,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [258] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(479), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(440), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30933,69 +31211,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [259] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(441), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31017,60 +31296,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [260] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(432), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(545), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31092,60 +31372,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [261] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(433), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(517), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31158,69 +31439,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [262] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(481), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(514), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31233,69 +31515,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [263] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(547), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(449), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31317,60 +31600,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [264] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(482), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(488), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31383,69 +31667,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [265] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(446), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(492), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31458,69 +31743,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [266] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(431), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(493), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31533,69 +31819,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [267] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(483), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(495), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31608,69 +31895,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [268] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(439), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(498), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31683,69 +31971,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [269] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(485), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(499), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31758,69 +32047,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [270] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(517), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(551), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31842,60 +32132,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [271] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(486), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym__literal] = STATE(407), + [sym_expression] = STATE(442), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31908,144 +32199,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [272] = { - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(695), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(695), - [sym_string_literal] = ACTIONS(693), - [sym_text_block] = ACTIONS(695), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [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(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(695), - [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_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_final] = 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(695), - [anon_sym_ATinterface] = ACTIONS(695), - [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), - }, - [273] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(542), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(500), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32058,69 +32275,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(521), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [273] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(470), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32142,60 +32360,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(502), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [275] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(466), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(503), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32208,69 +32503,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [276] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(407), + [sym_expression] = STATE(536), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32292,60 +32588,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [277] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(491), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [sym_identifier] = ACTIONS(800), + [sym_decimal_integer_literal] = ACTIONS(800), + [sym_hex_integer_literal] = ACTIONS(800), + [sym_octal_integer_literal] = ACTIONS(802), + [sym_binary_integer_literal] = ACTIONS(802), + [sym_decimal_floating_point_literal] = ACTIONS(802), + [sym_hex_floating_point_literal] = ACTIONS(800), + [sym_true] = ACTIONS(800), + [sym_false] = ACTIONS(800), + [sym_character_literal] = ACTIONS(802), + [sym_string_literal] = ACTIONS(800), + [sym_text_block] = ACTIONS(802), + [sym_null_literal] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(800), + [anon_sym_class] = ACTIONS(800), + [anon_sym_switch] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_case] = ACTIONS(800), + [anon_sym_default] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(802), + [anon_sym_assert] = ACTIONS(800), + [anon_sym_do] = ACTIONS(800), + [anon_sym_while] = ACTIONS(800), + [anon_sym_break] = ACTIONS(800), + [anon_sym_continue] = ACTIONS(800), + [anon_sym_return] = ACTIONS(800), + [anon_sym_yield] = ACTIONS(800), + [anon_sym_synchronized] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(800), + [anon_sym_try] = ACTIONS(800), + [anon_sym_if] = ACTIONS(800), + [anon_sym_for] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_open] = ACTIONS(800), + [anon_sym_module] = ACTIONS(800), + [anon_sym_static] = ACTIONS(800), + [anon_sym_package] = ACTIONS(800), + [anon_sym_import] = ACTIONS(800), + [anon_sym_enum] = ACTIONS(800), + [anon_sym_public] = ACTIONS(800), + [anon_sym_protected] = ACTIONS(800), + [anon_sym_private] = ACTIONS(800), + [anon_sym_abstract] = ACTIONS(800), + [anon_sym_final] = ACTIONS(800), + [anon_sym_strictfp] = ACTIONS(800), + [anon_sym_native] = ACTIONS(800), + [anon_sym_transient] = ACTIONS(800), + [anon_sym_volatile] = ACTIONS(800), + [anon_sym_sealed] = ACTIONS(800), + [anon_sym_non_DASHsealed] = ACTIONS(802), + [anon_sym_record] = ACTIONS(800), + [anon_sym_ATinterface] = ACTIONS(802), + [anon_sym_interface] = ACTIONS(800), + [anon_sym_byte] = ACTIONS(800), + [anon_sym_short] = ACTIONS(800), + [anon_sym_int] = ACTIONS(800), + [anon_sym_long] = ACTIONS(800), + [anon_sym_char] = ACTIONS(800), + [anon_sym_float] = ACTIONS(800), + [anon_sym_double] = ACTIONS(800), + [sym_boolean_type] = ACTIONS(800), + [sym_void_type] = ACTIONS(800), + [sym_this] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [278] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32358,69 +32731,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [279] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(473), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32442,60 +32816,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(546), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [280] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32517,60 +32892,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(538), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [281] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(445), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32592,60 +32968,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [281] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(439), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [282] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(542), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32667,60 +33044,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(448), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [283] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(474), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32742,60 +33120,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [284] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(455), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32817,60 +33196,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [284] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(513), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [285] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(448), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32883,69 +33263,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [285] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(432), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [286] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(441), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32958,69 +33339,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [287] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(457), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33042,60 +33424,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(433), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [288] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(497), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1113), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(339), + [sym_array_access] = STATE(339), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1113), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33108,69 +33491,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_record] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(450), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [289] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(528), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33192,60 +33576,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(452), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [290] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(464), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33267,60 +33652,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(475), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [291] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(442), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33333,60 +33719,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [292] = { + [sym__literal] = STATE(407), + [sym_expression] = STATE(465), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33399,216 +33795,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [292] = { - [sym_identifier] = ACTIONS(947), - [sym_decimal_integer_literal] = ACTIONS(947), - [sym_hex_integer_literal] = ACTIONS(947), - [sym_octal_integer_literal] = ACTIONS(949), - [sym_binary_integer_literal] = ACTIONS(949), - [sym_decimal_floating_point_literal] = ACTIONS(949), - [sym_hex_floating_point_literal] = ACTIONS(947), - [sym_true] = ACTIONS(947), - [sym_false] = ACTIONS(947), - [sym_character_literal] = ACTIONS(949), - [sym_string_literal] = ACTIONS(947), - [sym_text_block] = ACTIONS(949), - [sym_null_literal] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [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(947), - [anon_sym_class] = ACTIONS(947), - [anon_sym_switch] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_default] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [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_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_final] = 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(949), - [anon_sym_ATinterface] = ACTIONS(949), - [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), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [293] = { - [sym_identifier] = ACTIONS(951), - [sym_decimal_integer_literal] = ACTIONS(951), - [sym_hex_integer_literal] = ACTIONS(951), - [sym_octal_integer_literal] = ACTIONS(953), - [sym_binary_integer_literal] = ACTIONS(953), - [sym_decimal_floating_point_literal] = ACTIONS(953), - [sym_hex_floating_point_literal] = ACTIONS(951), - [sym_true] = ACTIONS(951), - [sym_false] = ACTIONS(951), - [sym_character_literal] = ACTIONS(953), - [sym_string_literal] = ACTIONS(951), - [sym_text_block] = ACTIONS(953), - [sym_null_literal] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [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(951), - [anon_sym_class] = ACTIONS(951), - [anon_sym_switch] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_default] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [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_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_final] = 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(953), - [anon_sym_ATinterface] = ACTIONS(953), - [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__literal] = STATE(407), + [sym_expression] = STATE(450), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [294] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym__literal] = STATE(407), + [sym_expression] = STATE(471), + [sym_cast_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_instanceof_expression] = STATE(447), + [sym_lambda_expression] = STATE(447), + [sym_inferred_parameters] = STATE(1095), + [sym_ternary_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_primary_expression] = STATE(416), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(328), + [sym_array_access] = STATE(328), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_switch_expression] = STATE(439), + [sym__annotation] = STATE(576), + [sym_marker_annotation] = STATE(576), + [sym_annotation] = STATE(576), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(664), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [sym_formal_parameters] = STATE(1095), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(293), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33621,216 +33947,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(320), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_record] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [295] = { - [sym_identifier] = ACTIONS(957), - [sym_decimal_integer_literal] = ACTIONS(957), - [sym_hex_integer_literal] = ACTIONS(957), - [sym_octal_integer_literal] = ACTIONS(959), - [sym_binary_integer_literal] = ACTIONS(959), - [sym_decimal_floating_point_literal] = ACTIONS(959), - [sym_hex_floating_point_literal] = ACTIONS(957), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_character_literal] = ACTIONS(959), - [sym_string_literal] = ACTIONS(957), - [sym_text_block] = ACTIONS(959), - [sym_null_literal] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [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(957), - [anon_sym_class] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_default] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [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_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_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_final] = 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(959), - [anon_sym_ATinterface] = ACTIONS(959), - [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), + [sym__literal] = STATE(407), + [sym_primary_expression] = STATE(936), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(796), + [sym_array_access] = STATE(407), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_resource] = STATE(970), + [sym__annotation] = STATE(523), + [sym_marker_annotation] = STATE(523), + [sym_annotation] = STATE(523), + [sym_modifiers] = STATE(616), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(621), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(958), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_default] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_open] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_static] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(291), + [anon_sym_record] = ACTIONS(966), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [296] = { - [sym_identifier] = ACTIONS(961), - [sym_decimal_integer_literal] = ACTIONS(961), - [sym_hex_integer_literal] = ACTIONS(961), - [sym_octal_integer_literal] = ACTIONS(963), - [sym_binary_integer_literal] = ACTIONS(963), - [sym_decimal_floating_point_literal] = ACTIONS(963), - [sym_hex_floating_point_literal] = ACTIONS(961), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_character_literal] = ACTIONS(963), - [sym_string_literal] = ACTIONS(961), - [sym_text_block] = ACTIONS(963), - [sym_null_literal] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [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(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_switch] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_default] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [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_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_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_final] = 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(963), - [anon_sym_ATinterface] = ACTIONS(963), - [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), + [sym_identifier] = ACTIONS(968), + [sym_decimal_integer_literal] = ACTIONS(968), + [sym_hex_integer_literal] = ACTIONS(968), + [sym_octal_integer_literal] = ACTIONS(970), + [sym_binary_integer_literal] = ACTIONS(970), + [sym_decimal_floating_point_literal] = ACTIONS(970), + [sym_hex_floating_point_literal] = ACTIONS(968), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_character_literal] = ACTIONS(970), + [sym_string_literal] = ACTIONS(968), + [sym_text_block] = ACTIONS(970), + [sym_null_literal] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(968), + [anon_sym_class] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_default] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_assert] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(968), + [anon_sym_synchronized] = ACTIONS(968), + [anon_sym_throw] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_AT] = ACTIONS(968), + [anon_sym_open] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_static] = ACTIONS(968), + [anon_sym_package] = ACTIONS(968), + [anon_sym_import] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_public] = ACTIONS(968), + [anon_sym_protected] = ACTIONS(968), + [anon_sym_private] = ACTIONS(968), + [anon_sym_abstract] = ACTIONS(968), + [anon_sym_final] = ACTIONS(968), + [anon_sym_strictfp] = ACTIONS(968), + [anon_sym_native] = ACTIONS(968), + [anon_sym_transient] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_sealed] = ACTIONS(968), + [anon_sym_non_DASHsealed] = ACTIONS(970), + [anon_sym_record] = ACTIONS(968), + [anon_sym_ATinterface] = ACTIONS(970), + [anon_sym_interface] = ACTIONS(968), + [anon_sym_byte] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [anon_sym_int] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_char] = ACTIONS(968), + [anon_sym_float] = ACTIONS(968), + [anon_sym_double] = ACTIONS(968), + [sym_boolean_type] = ACTIONS(968), + [sym_void_type] = ACTIONS(968), + [sym_this] = ACTIONS(968), + [sym_super] = ACTIONS(968), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [297] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(877), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym_identifier] = ACTIONS(972), + [sym_decimal_integer_literal] = ACTIONS(972), + [sym_hex_integer_literal] = ACTIONS(972), + [sym_octal_integer_literal] = ACTIONS(974), + [sym_binary_integer_literal] = ACTIONS(974), + [sym_decimal_floating_point_literal] = ACTIONS(974), + [sym_hex_floating_point_literal] = ACTIONS(972), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_character_literal] = ACTIONS(974), + [sym_string_literal] = ACTIONS(972), + [sym_text_block] = ACTIONS(974), + [sym_null_literal] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(972), + [anon_sym_class] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_default] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_assert] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_synchronized] = ACTIONS(972), + [anon_sym_throw] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(972), + [anon_sym_open] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_static] = ACTIONS(972), + [anon_sym_package] = ACTIONS(972), + [anon_sym_import] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_public] = ACTIONS(972), + [anon_sym_protected] = ACTIONS(972), + [anon_sym_private] = ACTIONS(972), + [anon_sym_abstract] = ACTIONS(972), + [anon_sym_final] = ACTIONS(972), + [anon_sym_strictfp] = ACTIONS(972), + [anon_sym_native] = ACTIONS(972), + [anon_sym_transient] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_sealed] = ACTIONS(972), + [anon_sym_non_DASHsealed] = ACTIONS(974), + [anon_sym_record] = ACTIONS(972), + [anon_sym_ATinterface] = ACTIONS(974), + [anon_sym_interface] = ACTIONS(972), + [anon_sym_byte] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [anon_sym_int] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_char] = ACTIONS(972), + [anon_sym_float] = ACTIONS(972), + [anon_sym_double] = ACTIONS(972), + [sym_boolean_type] = ACTIONS(972), + [sym_void_type] = ACTIONS(972), + [sym_this] = ACTIONS(972), + [sym_super] = ACTIONS(972), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [298] = { + [sym__literal] = STATE(407), + [sym_primary_expression] = STATE(936), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(796), + [sym_array_access] = STATE(407), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_resource] = STATE(970), + [sym__annotation] = STATE(523), + [sym_marker_annotation] = STATE(523), + [sym_annotation] = STATE(523), + [sym_modifiers] = STATE(616), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(621), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(958), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33843,67 +34239,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [298] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_new] = ACTIONS(964), + [anon_sym_default] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_open] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_static] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(291), + [anon_sym_record] = ACTIONS(966), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [299] = { + [sym_identifier] = ACTIONS(978), + [sym_decimal_integer_literal] = ACTIONS(978), + [sym_hex_integer_literal] = ACTIONS(978), + [sym_octal_integer_literal] = ACTIONS(980), + [sym_binary_integer_literal] = ACTIONS(980), + [sym_decimal_floating_point_literal] = ACTIONS(980), + [sym_hex_floating_point_literal] = ACTIONS(978), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_character_literal] = ACTIONS(980), + [sym_string_literal] = ACTIONS(978), + [sym_text_block] = ACTIONS(980), + [sym_null_literal] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(980), + [anon_sym_TILDE] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_new] = ACTIONS(978), + [anon_sym_class] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_default] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_assert] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_yield] = ACTIONS(978), + [anon_sym_synchronized] = ACTIONS(978), + [anon_sym_throw] = ACTIONS(978), + [anon_sym_try] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(978), + [anon_sym_open] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_static] = ACTIONS(978), + [anon_sym_package] = ACTIONS(978), + [anon_sym_import] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_public] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(978), + [anon_sym_final] = ACTIONS(978), + [anon_sym_strictfp] = ACTIONS(978), + [anon_sym_native] = ACTIONS(978), + [anon_sym_transient] = ACTIONS(978), + [anon_sym_volatile] = ACTIONS(978), + [anon_sym_sealed] = ACTIONS(978), + [anon_sym_non_DASHsealed] = ACTIONS(980), + [anon_sym_record] = ACTIONS(978), + [anon_sym_ATinterface] = ACTIONS(980), + [anon_sym_interface] = ACTIONS(978), + [anon_sym_byte] = ACTIONS(978), + [anon_sym_short] = ACTIONS(978), + [anon_sym_int] = ACTIONS(978), + [anon_sym_long] = ACTIONS(978), + [anon_sym_char] = ACTIONS(978), + [anon_sym_float] = ACTIONS(978), + [anon_sym_double] = ACTIONS(978), + [sym_boolean_type] = ACTIONS(978), + [sym_void_type] = ACTIONS(978), + [sym_this] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [300] = { + [sym_identifier] = ACTIONS(982), + [sym_decimal_integer_literal] = ACTIONS(982), + [sym_hex_integer_literal] = ACTIONS(982), + [sym_octal_integer_literal] = ACTIONS(984), + [sym_binary_integer_literal] = ACTIONS(984), + [sym_decimal_floating_point_literal] = ACTIONS(984), + [sym_hex_floating_point_literal] = ACTIONS(982), + [sym_true] = ACTIONS(982), + [sym_false] = ACTIONS(982), + [sym_character_literal] = ACTIONS(984), + [sym_string_literal] = ACTIONS(982), + [sym_text_block] = ACTIONS(984), + [sym_null_literal] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_new] = ACTIONS(982), + [anon_sym_class] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_default] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_assert] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_yield] = ACTIONS(982), + [anon_sym_synchronized] = ACTIONS(982), + [anon_sym_throw] = ACTIONS(982), + [anon_sym_try] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_AT] = ACTIONS(982), + [anon_sym_open] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_static] = ACTIONS(982), + [anon_sym_package] = ACTIONS(982), + [anon_sym_import] = ACTIONS(982), + [anon_sym_enum] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_protected] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_abstract] = ACTIONS(982), + [anon_sym_final] = ACTIONS(982), + [anon_sym_strictfp] = ACTIONS(982), + [anon_sym_native] = ACTIONS(982), + [anon_sym_transient] = ACTIONS(982), + [anon_sym_volatile] = ACTIONS(982), + [anon_sym_sealed] = ACTIONS(982), + [anon_sym_non_DASHsealed] = ACTIONS(984), + [anon_sym_record] = ACTIONS(982), + [anon_sym_ATinterface] = ACTIONS(984), + [anon_sym_interface] = ACTIONS(982), + [anon_sym_byte] = ACTIONS(982), + [anon_sym_short] = ACTIONS(982), + [anon_sym_int] = ACTIONS(982), + [anon_sym_long] = ACTIONS(982), + [anon_sym_char] = ACTIONS(982), + [anon_sym_float] = ACTIONS(982), + [anon_sym_double] = ACTIONS(982), + [sym_boolean_type] = ACTIONS(982), + [sym_void_type] = ACTIONS(982), + [sym_this] = ACTIONS(982), + [sym_super] = ACTIONS(982), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [301] = { + [sym__literal] = STATE(407), + [sym_primary_expression] = STATE(936), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(796), + [sym_array_access] = STATE(407), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_resource] = STATE(970), + [sym__annotation] = STATE(523), + [sym_marker_annotation] = STATE(523), + [sym_annotation] = STATE(523), + [sym_modifiers] = STATE(616), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(621), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(958), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_new] = ACTIONS(964), + [anon_sym_default] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_open] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_static] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(291), + [anon_sym_record] = ACTIONS(966), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [sym__literal] = STATE(407), + [sym_primary_expression] = STATE(936), + [sym_array_creation_expression] = STATE(407), + [sym_parenthesized_expression] = STATE(407), + [sym_class_literal] = STATE(407), + [sym_object_creation_expression] = STATE(407), + [sym__unqualified_object_creation_expression] = STATE(426), + [sym_field_access] = STATE(796), + [sym_array_access] = STATE(407), + [sym_method_invocation] = STATE(407), + [sym_method_reference] = STATE(407), + [sym_resource] = STATE(933), + [sym__annotation] = STATE(523), + [sym_marker_annotation] = STATE(523), + [sym_annotation] = STATE(523), + [sym_modifiers] = STATE(616), + [sym__type] = STATE(1092), + [sym__unannotated_type] = STATE(621), + [sym_annotated_type] = STATE(672), + [sym_scoped_type_identifier] = STATE(633), + [sym_generic_type] = STATE(653), + [sym_array_type] = STATE(600), + [sym_integral_type] = STATE(600), + [sym_floating_point_type] = STATE(600), + [aux_sym_dimensions_expr_repeat1] = STATE(576), + [aux_sym_modifiers_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(958), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33916,36 +34538,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_new] = ACTIONS(964), + [anon_sym_default] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_open] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_static] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(291), + [anon_sym_record] = ACTIONS(966), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -33953,71 +34576,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 28, - ACTIONS(965), 1, - sym_identifier, - ACTIONS(968), 1, - anon_sym_LT, - ACTIONS(971), 1, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(974), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(977), 1, - anon_sym_RBRACE, - ACTIONS(982), 1, - anon_sym_SEMI, - ACTIONS(985), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(988), 1, - anon_sym_static, - ACTIONS(991), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(994), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(997), 1, - anon_sym_record, - ACTIONS(1000), 1, + ACTIONS(73), 1, anon_sym_ATinterface, - ACTIONS(1003), 1, + ACTIONS(75), 1, anon_sym_interface, - STATE(520), 1, + ACTIONS(986), 1, + sym_identifier, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(990), 1, + anon_sym_RBRACE, + ACTIONS(992), 1, + anon_sym_SEMI, + ACTIONS(994), 1, + anon_sym_static, + ACTIONS(996), 1, + anon_sym_record, + STATE(530), 1, sym_modifiers, - STATE(569), 1, - sym_type_parameters, STATE(579), 1, + sym_type_parameters, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(608), 1, + STATE(613), 1, sym__unannotated_type, - STATE(777), 1, + STATE(813), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(920), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1012), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1006), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(299), 11, + STATE(305), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34029,7 +34652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(979), 12, + ACTIONS(29), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -34053,61 +34676,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, ACTIONS(73), 1, + anon_sym_ATinterface, + ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1015), 1, + ACTIONS(986), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(1019), 1, - anon_sym_RBRACE, - ACTIONS(1021), 1, - anon_sym_SEMI, - ACTIONS(1023), 1, + ACTIONS(994), 1, anon_sym_static, - ACTIONS(1025), 1, + ACTIONS(996), 1, anon_sym_record, - STATE(520), 1, + ACTIONS(998), 1, + anon_sym_RBRACE, + ACTIONS(1000), 1, + anon_sym_SEMI, + STATE(530), 1, sym_modifiers, - STATE(569), 1, - sym_type_parameters, STATE(579), 1, + sym_type_parameters, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(608), 1, + STATE(613), 1, sym__unannotated_type, - STATE(777), 1, + STATE(813), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(920), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(299), 11, + STATE(306), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34133,71 +34756,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [236] = 28, - ACTIONS(23), 1, + ACTIONS(1002), 1, + sym_identifier, + ACTIONS(1005), 1, + anon_sym_LT, + ACTIONS(1008), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(1011), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(1014), 1, + anon_sym_RBRACE, + ACTIONS(1019), 1, + anon_sym_SEMI, + ACTIONS(1022), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1025), 1, + anon_sym_static, + ACTIONS(1028), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1031), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, + ACTIONS(1034), 1, + anon_sym_record, + ACTIONS(1037), 1, anon_sym_ATinterface, - ACTIONS(73), 1, + ACTIONS(1040), 1, anon_sym_interface, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1023), 1, - anon_sym_static, - ACTIONS(1025), 1, - anon_sym_record, - ACTIONS(1027), 1, - anon_sym_RBRACE, - ACTIONS(1029), 1, - anon_sym_SEMI, - STATE(520), 1, + STATE(530), 1, sym_modifiers, - STATE(569), 1, - sym_type_parameters, STATE(579), 1, + sym_type_parameters, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(608), 1, + STATE(613), 1, sym__unannotated_type, - STATE(777), 1, + STATE(813), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(920), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1046), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1049), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(1043), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(300), 11, + STATE(305), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34209,7 +34832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(1016), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -34233,61 +34856,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, ACTIONS(73), 1, + anon_sym_ATinterface, + ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1015), 1, + ACTIONS(986), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(1021), 1, + ACTIONS(992), 1, anon_sym_SEMI, - ACTIONS(1023), 1, + ACTIONS(994), 1, anon_sym_static, - ACTIONS(1025), 1, + ACTIONS(996), 1, anon_sym_record, - ACTIONS(1031), 1, + ACTIONS(1052), 1, anon_sym_RBRACE, - STATE(520), 1, + STATE(530), 1, sym_modifiers, - STATE(569), 1, - sym_type_parameters, STATE(579), 1, + sym_type_parameters, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(608), 1, + STATE(613), 1, sym__unannotated_type, - STATE(777), 1, + STATE(813), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(920), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(299), 11, + STATE(305), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34323,61 +34946,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, ACTIONS(73), 1, + anon_sym_ATinterface, + ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1015), 1, + ACTIONS(986), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(1023), 1, + ACTIONS(994), 1, anon_sym_static, - ACTIONS(1025), 1, + ACTIONS(996), 1, anon_sym_record, - ACTIONS(1033), 1, + ACTIONS(1054), 1, anon_sym_RBRACE, - ACTIONS(1035), 1, + ACTIONS(1056), 1, anon_sym_SEMI, - STATE(520), 1, + STATE(530), 1, sym_modifiers, - STATE(569), 1, - sym_type_parameters, STATE(579), 1, + sym_type_parameters, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(608), 1, + STATE(613), 1, sym__unannotated_type, - STATE(777), 1, + STATE(813), 1, sym__constructor_declarator, - STATE(873), 1, + STATE(920), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(302), 11, + STATE(303), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -34402,113 +35025,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [590] = 24, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1039), 1, - anon_sym_RBRACE, - ACTIONS(1041), 1, - anon_sym_SEMI, - STATE(552), 1, - sym_modifiers, - STATE(567), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(614), 1, - sym__unannotated_type, - STATE(873), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(307), 7, - sym_enum_declaration, - sym_class_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_constant_declaration, - sym_method_declaration, - aux_sym_interface_body_repeat1, - ACTIONS(29), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [693] = 14, - ACTIONS(1045), 1, + [590] = 14, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(1055), 1, + ACTIONS(1070), 1, anon_sym_LT, - ACTIONS(1058), 1, + ACTIONS(1073), 1, anon_sym_DASH_GT, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1067), 1, + ACTIONS(1082), 1, anon_sym_AT, - STATE(401), 1, + STATE(425), 1, sym_argument_list, - STATE(591), 1, + STATE(586), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1075), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1043), 3, + ACTIONS(1058), 4, anon_sym_open, anon_sym_module, + anon_sym_record, sym_identifier, - ACTIONS(1053), 11, + ACTIONS(1068), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34520,7 +35065,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(1047), 14, + ACTIONS(1062), 14, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -34535,7 +35080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1049), 14, + ACTIONS(1064), 14, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -34550,7 +35095,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [776] = 24, + [674] = 24, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1087), 1, + anon_sym_LT, + ACTIONS(1090), 1, + anon_sym_class, + ACTIONS(1093), 1, + anon_sym_RBRACE, + ACTIONS(1098), 1, + anon_sym_SEMI, + ACTIONS(1101), 1, + anon_sym_AT, + ACTIONS(1104), 1, + anon_sym_enum, + ACTIONS(1107), 1, + anon_sym_non_DASHsealed, + ACTIONS(1110), 1, + anon_sym_ATinterface, + ACTIONS(1113), 1, + anon_sym_interface, + STATE(564), 1, + sym_modifiers, + STATE(574), 1, + sym_type_parameters, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(609), 1, + sym__unannotated_type, + STATE(920), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1119), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1122), 2, + sym_boolean_type, + sym_void_type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(373), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1116), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(309), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_constant_declaration, + sym_method_declaration, + aux_sym_interface_body_repeat1, + ACTIONS(1095), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [777] = 24, ACTIONS(23), 1, anon_sym_class, ACTIONS(57), 1, @@ -34559,55 +35183,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, ACTIONS(73), 1, + anon_sym_ATinterface, + ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1017), 1, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1127), 1, anon_sym_RBRACE, - ACTIONS(1071), 1, + ACTIONS(1129), 1, anon_sym_SEMI, - STATE(552), 1, + STATE(564), 1, sym_modifiers, - STATE(567), 1, + STATE(574), 1, sym_type_parameters, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(614), 1, + STATE(609), 1, sym__unannotated_type, - STATE(873), 1, + STATE(920), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(304), 7, + STATE(311), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -34629,64 +35253,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [879] = 24, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1076), 1, - anon_sym_LT, - ACTIONS(1079), 1, + [880] = 24, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(1082), 1, - anon_sym_RBRACE, - ACTIONS(1087), 1, - anon_sym_SEMI, - ACTIONS(1090), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1093), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(1096), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1099), 1, + ACTIONS(73), 1, anon_sym_ATinterface, - ACTIONS(1102), 1, + ACTIONS(75), 1, anon_sym_interface, - STATE(552), 1, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_RBRACE, + ACTIONS(1133), 1, + anon_sym_SEMI, + STATE(564), 1, sym_modifiers, - STATE(567), 1, + STATE(574), 1, sym_type_parameters, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(614), 1, + STATE(609), 1, sym__unannotated_type, - STATE(873), 1, + STATE(920), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1108), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1111), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1105), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(307), 7, + STATE(309), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -34694,7 +35318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(1084), 13, + ACTIONS(29), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -34708,44 +35332,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [982] = 18, - ACTIONS(1045), 1, + [983] = 18, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(1055), 1, + ACTIONS(1070), 1, anon_sym_LT, - ACTIONS(1058), 1, + ACTIONS(1073), 1, anon_sym_DASH_GT, - ACTIONS(1114), 1, + ACTIONS(1135), 1, anon_sym_AMP, - ACTIONS(1117), 1, + ACTIONS(1138), 1, anon_sym_RPAREN, - ACTIONS(1121), 1, + ACTIONS(1142), 1, anon_sym_COMMA, - ACTIONS(1123), 1, + ACTIONS(1144), 1, anon_sym_DOT, - STATE(401), 1, + STATE(425), 1, sym_argument_list, - STATE(591), 1, + STATE(586), 1, sym_type_arguments, - STATE(899), 1, + STATE(911), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1075), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1067), 2, + ACTIONS(1082), 2, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1043), 4, + ACTIONS(1058), 5, anon_sym_open, anon_sym_module, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1049), 9, + ACTIONS(1064), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -34755,7 +35380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1053), 11, + ACTIONS(1068), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34767,7 +35392,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(1047), 12, + ACTIONS(1062), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -34780,36 +35405,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1072] = 15, - ACTIONS(1045), 1, + [1074] = 15, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1066), 1, anon_sym_EQ, - ACTIONS(1055), 1, + ACTIONS(1070), 1, anon_sym_LT, - ACTIONS(1058), 1, + ACTIONS(1073), 1, anon_sym_DASH_GT, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1067), 1, + ACTIONS(1082), 1, anon_sym_AT, - ACTIONS(1127), 1, + ACTIONS(1148), 1, anon_sym_COLON, - STATE(401), 1, + STATE(425), 1, sym_argument_list, - STATE(591), 1, + STATE(586), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1075), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1043), 3, + ACTIONS(1058), 4, anon_sym_open, anon_sym_module, + anon_sym_record, sym_identifier, - ACTIONS(1049), 10, + ACTIONS(1064), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -34820,7 +35446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1053), 11, + ACTIONS(1068), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34832,7 +35458,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(1047), 13, + ACTIONS(1062), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -34846,15 +35472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1153] = 5, - ACTIONS(1045), 1, + [1156] = 5, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(419), 1, + STATE(422), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1129), 15, + ACTIONS(1150), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -34870,7 +35496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1131), 30, + ACTIONS(1152), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -34901,15 +35527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1213] = 5, - ACTIONS(1045), 1, + [1216] = 5, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(408), 1, + STATE(424), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1133), 15, + ACTIONS(1154), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -34925,7 +35551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1135), 30, + ACTIONS(1156), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -34956,15 +35582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1273] = 5, - ACTIONS(1045), 1, + [1276] = 5, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(411), 1, + STATE(421), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1137), 15, + ACTIONS(1158), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -34980,7 +35606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1139), 30, + ACTIONS(1160), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35011,15 +35637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1333] = 5, - ACTIONS(1045), 1, + [1336] = 5, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(417), 1, + STATE(427), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 15, + ACTIONS(1162), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35035,7 +35661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1143), 30, + ACTIONS(1164), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35066,17 +35692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1393] = 7, - ACTIONS(1045), 1, + [1396] = 10, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1149), 1, + ACTIONS(1166), 1, + sym_identifier, + ACTIONS(1170), 1, anon_sym_EQ, - STATE(402), 1, + STATE(415), 1, sym_argument_list, + STATE(904), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1151), 11, + ACTIONS(1176), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1172), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35088,7 +35722,21 @@ 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(1145), 14, + ACTIONS(1174), 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_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + ACTIONS(1168), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35102,74 +35750,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1147), 18, - 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, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [1456] = 19, + [1465] = 19, ACTIONS(23), 1, anon_sym_class, ACTIONS(57), 1, anon_sym_AT, ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, ACTIONS(73), 1, + anon_sym_ATinterface, + ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1153), 1, + ACTIONS(1178), 1, anon_sym_RBRACE, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(589), 1, - sym_modifiers, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(624), 1, + STATE(599), 1, + sym_modifiers, + STATE(627), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(316), 6, + STATE(320), 6, sym_class_declaration, sym_annotation_type_declaration, sym_annotation_type_element_declaration, @@ -35190,61 +35819,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1543] = 19, - ACTIONS(23), 1, + [1552] = 19, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(1183), 1, anon_sym_class, - ACTIONS(57), 1, + ACTIONS(1186), 1, + anon_sym_RBRACE, + ACTIONS(1191), 1, anon_sym_AT, - ACTIONS(69), 1, + ACTIONS(1194), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, + ACTIONS(1197), 1, anon_sym_ATinterface, - ACTIONS(73), 1, + ACTIONS(1200), 1, anon_sym_interface, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1155), 1, - anon_sym_RBRACE, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(589), 1, - sym_modifiers, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(624), 1, + STATE(599), 1, + sym_modifiers, + STATE(627), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1206), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1209), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(1203), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(317), 6, + STATE(320), 6, sym_class_declaration, sym_annotation_type_declaration, sym_annotation_type_element_declaration, sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, + ACTIONS(1188), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -35258,61 +35887,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1630] = 19, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1160), 1, + [1639] = 19, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(1163), 1, - anon_sym_RBRACE, - ACTIONS(1168), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1171), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1174), 1, + ACTIONS(73), 1, anon_sym_ATinterface, - ACTIONS(1177), 1, + ACTIONS(75), 1, anon_sym_interface, - STATE(579), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1212), 1, + anon_sym_RBRACE, + STATE(584), 1, sym_scoped_type_identifier, - STATE(589), 1, - sym_modifiers, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(624), 1, + STATE(599), 1, + sym_modifiers, + STATE(627), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1183), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1186), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(373), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1180), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(317), 6, + STATE(319), 6, sym_class_declaration, sym_annotation_type_declaration, sym_annotation_type_element_declaration, sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(1165), 13, + ACTIONS(29), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -35326,42 +35955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1717] = 13, - ACTIONS(1045), 1, + [1726] = 7, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, - anon_sym_LT, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, - anon_sym_AT, - ACTIONS(1189), 1, + ACTIONS(1170), 1, anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_DASH_GT, - STATE(401), 1, + STATE(415), 1, sym_argument_list, - STATE(591), 1, - sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1049), 11, - 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(1191), 11, + ACTIONS(1172), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35373,9 +35977,10 @@ 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(1047), 13, + ACTIONS(1168), 14, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -35387,11 +35992,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - [1791] = 3, + ACTIONS(1174), 18, + 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, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [1789] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 15, + ACTIONS(1162), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35407,7 +36031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1143), 30, + ACTIONS(1164), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35438,11 +36062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1845] = 3, + [1843] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1137), 15, + ACTIONS(1214), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35458,7 +36082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1139), 30, + ACTIONS(1216), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35489,69 +36113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1899] = 10, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1149), 1, - anon_sym_EQ, - ACTIONS(1196), 1, - sym_identifier, - STATE(402), 1, - sym_argument_list, - STATE(904), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1198), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(1151), 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(1147), 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_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - ACTIONS(1145), 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_instanceof, - [1967] = 3, + [1897] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1200), 15, + ACTIONS(1158), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -35567,7 +36133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1202), 30, + ACTIONS(1160), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -35598,13 +36164,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2021] = 5, - ACTIONS(1051), 1, + [1951] = 13, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1070), 1, + anon_sym_LT, + ACTIONS(1078), 1, + anon_sym_DOT, + ACTIONS(1082), 1, + anon_sym_AT, + ACTIONS(1218), 1, anon_sym_EQ, + ACTIONS(1222), 1, + anon_sym_DASH_GT, + STATE(425), 1, + sym_argument_list, + STATE(586), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1053), 11, + ACTIONS(1075), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1064), 11, + 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(1220), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35616,10 +36211,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(1047), 14, + ACTIONS(1062), 13, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -35631,49 +36225,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1049), 18, - 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, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [2078] = 13, - ACTIONS(1045), 1, + [2025] = 13, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(1070), 1, anon_sym_LT, - ACTIONS(1058), 1, + ACTIONS(1073), 1, anon_sym_DASH_GT, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1067), 1, + ACTIONS(1082), 1, anon_sym_AT, - ACTIONS(1204), 1, + ACTIONS(1225), 1, anon_sym_EQ, - STATE(401), 1, + STATE(425), 1, sym_argument_list, - STATE(591), 1, + STATE(586), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + ACTIONS(1075), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1049), 11, + ACTIONS(1064), 11, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35685,7 +36260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1053), 11, + ACTIONS(1068), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35697,7 +36272,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(1047), 12, + ACTIONS(1062), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -35710,17 +36285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - [2151] = 7, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1206), 1, + [2098] = 5, + ACTIONS(1066), 1, anon_sym_EQ, - STATE(402), 1, - sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 11, + ACTIONS(1068), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35732,7 +36303,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(1145), 14, + ACTIONS(1062), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35747,53 +36318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1147), 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_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [2211] = 9, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1214), 1, - anon_sym_LBRACK, - STATE(334), 1, - aux_sym_dimensions_repeat1, - STATE(413), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(702), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1210), 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(1212), 23, + ACTIONS(1064), 18, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35801,43 +36326,33 @@ 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_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2274] = 9, - ACTIONS(282), 1, + [2155] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1214), 1, + ACTIONS(1231), 1, anon_sym_LBRACK, - STATE(334), 1, + STATE(331), 1, aux_sym_dimensions_repeat1, - STATE(385), 1, - sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(702), 4, + STATE(697), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1216), 9, + ACTIONS(1227), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35846,8 +36361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, + anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1218), 23, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1229), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35860,7 +36380,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, @@ -35871,19 +36390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2337] = 8, - ACTIONS(1045), 1, + [2215] = 7, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1149), 1, + ACTIONS(1233), 1, anon_sym_EQ, - ACTIONS(1220), 1, - anon_sym_module, - STATE(402), 1, + STATE(415), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1151), 11, + ACTIONS(1235), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35895,7 +36412,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(1145), 13, + ACTIONS(1168), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35909,7 +36426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(1147), 14, + anon_sym_COLON, + ACTIONS(1174), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -35917,236 +36435,138 @@ 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_DOT, anon_sym_COLON_COLON, - anon_sym_SEMI, - [2398] = 5, - ACTIONS(1189), 1, - anon_sym_EQ, + [2275] = 7, + ACTIONS(1241), 1, + anon_sym_LBRACK, + ACTIONS(1244), 1, + anon_sym_AT, + STATE(331), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1191), 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(1047), 14, + STATE(697), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(1237), 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_instanceof, anon_sym_COLON, - ACTIONS(1049), 15, - anon_sym_GT_EQ, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1239), 22, + 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_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, - [2452] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1224), 8, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1222), 33, - 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_final, - 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, + [2335] = 8, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_EQ, + ACTIONS(1247), 1, sym_identifier, - [2502] = 3, + STATE(415), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 8, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_COMMA, + ACTIONS(1172), 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(1174), 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_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1226), 33, - 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_final, - 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, - [2552] = 19, - ACTIONS(278), 1, - anon_sym_RPAREN, - ACTIONS(282), 1, + ACTIONS(1168), 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_instanceof, + [2396] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1037), 1, - sym_identifier, - STATE(335), 1, - sym_receiver_parameter, - STATE(461), 1, - aux_sym_modifiers_repeat1, - STATE(571), 1, - aux_sym_dimensions_expr_repeat1, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(601), 1, - sym_modifiers, - STATE(625), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(950), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(526), 3, - sym__annotation, - sym_marker_annotation, - sym_annotation, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [2634] = 7, - ACTIONS(1234), 1, + ACTIONS(1231), 1, anon_sym_LBRACK, - ACTIONS(1237), 1, - anon_sym_AT, + STATE(329), 1, + aux_sym_dimensions_repeat1, + STATE(364), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(727), 4, + STATE(697), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1230), 9, + ACTIONS(1249), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36155,8 +36575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1232), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1251), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36169,33 +36593,86 @@ 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_RBRACE, + anon_sym_SEMI, + [2457] = 8, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_EQ, + ACTIONS(1253), 1, + anon_sym_module, + STATE(415), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1172), 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(1168), 13, + 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, + ACTIONS(1174), 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_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_RBRACE, anon_sym_SEMI, - [2691] = 7, - ACTIONS(282), 1, + [2518] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1244), 1, + ACTIONS(1231), 1, anon_sym_LBRACK, - STATE(336), 1, + STATE(329), 1, aux_sym_dimensions_repeat1, + STATE(364), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(697), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1240), 9, + ACTIONS(1255), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36204,8 +36681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1242), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1257), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36218,91 +36699,36 @@ 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_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2747] = 16, - ACTIONS(282), 1, + [2579] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1246), 1, - anon_sym_RPAREN, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(601), 1, - sym_modifiers, - STATE(632), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(885), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [2821] = 7, - ACTIONS(1252), 1, + ACTIONS(1263), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_AT, - STATE(336), 1, + STATE(329), 1, aux_sym_dimensions_repeat1, + STATE(413), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(342), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat1, + STATE(690), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1248), 9, + ACTIONS(1259), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36312,7 +36738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1250), 23, + ACTIONS(1261), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36336,24 +36762,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2877] = 8, - ACTIONS(282), 1, + [2642] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1244), 1, + ACTIONS(1263), 1, anon_sym_LBRACK, - STATE(334), 1, + STATE(329), 1, aux_sym_dimensions_repeat1, - STATE(428), 1, + STATE(423), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(342), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat1, + STATE(690), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1258), 8, + ACTIONS(1265), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36362,7 +36791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1260), 22, + anon_sym_COLON, + ACTIONS(1267), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36379,55 +36809,206 @@ 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_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2934] = 15, - ACTIONS(282), 1, + [2705] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1271), 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(1269), 33, + 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_final, + 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, + [2755] = 5, + ACTIONS(1218), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1220), 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(1062), 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(1064), 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_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [2809] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1275), 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(1273), 33, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - ACTIONS(286), 1, + 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_final, + 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, + [2859] = 19, + ACTIONS(283), 1, + anon_sym_RPAREN, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(291), 1, anon_sym_non_DASHsealed, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(343), 1, + sym_receiver_parameter, + STATE(458), 1, + aux_sym_modifiers_repeat1, + STATE(581), 1, + aux_sym_dimensions_expr_repeat1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(601), 1, + STATE(615), 1, sym_modifiers, - STATE(632), 1, + STATE(623), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(1059), 2, + STATE(861), 2, sym_formal_parameter, sym_spread_parameter, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(461), 4, + STATE(523), 3, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(280), 13, + ACTIONS(285), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -36441,24 +37022,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3005] = 8, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1244), 1, + [2941] = 7, + ACTIONS(1281), 1, anon_sym_LBRACK, - STATE(334), 1, - aux_sym_dimensions_repeat1, - STATE(428), 1, - sym_dimensions, + ACTIONS(1284), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, + STATE(342), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat1, + STATE(752), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1262), 8, + ACTIONS(1277), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36467,7 +37047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1264), 22, + anon_sym_COLON, + ACTIONS(1279), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36484,56 +37065,58 @@ 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_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3062] = 16, - ACTIONS(282), 1, + [2998] = 16, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(291), 1, anon_sym_non_DASHsealed, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + ACTIONS(1287), 1, + anon_sym_RPAREN, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(597), 1, + STATE(615), 1, sym_modifiers, - STATE(627), 1, + STATE(630), 1, sym__unannotated_type, - STATE(843), 1, - sym_catch_type, - STATE(1079), 1, - sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(916), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(461), 4, + STATE(458), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(280), 13, + ACTIONS(285), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -36547,103 +37130,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3135] = 6, - ACTIONS(1268), 1, - anon_sym_LPAREN, - ACTIONS(1272), 1, + [3072] = 6, + ACTIONS(1293), 1, + anon_sym_LT, + ACTIONS(1296), 1, anon_sym_DOT, - STATE(361), 1, - sym_annotation_argument_list, + STATE(360), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1266), 31, - 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_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, + ACTIONS(1289), 12, + 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_open, + anon_sym_module, 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, - [3187] = 6, - ACTIONS(1268), 1, - anon_sym_LPAREN, - ACTIONS(1278), 1, - anon_sym_DOT, - STATE(360), 1, - sym_annotation_argument_list, + ACTIONS(1291), 23, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [3125] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 3, + ACTIONS(1237), 14, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1274), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_COLON, 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_final, - 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, - [3239] = 3, + ACTIONS(1239), 24, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [3172] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(759), 12, + ACTIONS(890), 12, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, @@ -36656,7 +37238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_SEMI, anon_sym_AT, - ACTIONS(761), 25, + ACTIONS(892), 26, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -36670,6 +37252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_open, anon_sym_module, + anon_sym_record, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -36682,11 +37265,112 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [3285] = 3, + [3219] = 16, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(291), 1, + anon_sym_non_DASHsealed, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(603), 1, + sym_modifiers, + STATE(635), 1, + sym__unannotated_type, + STATE(795), 1, + sym_catch_type, + STATE(1129), 1, + sym_catch_formal_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(458), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(285), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3292] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1298), 14, + 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_COLON, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1300), 24, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [3339] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(735), 12, + ACTIONS(846), 12, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, @@ -36699,7 +37383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_SEMI, anon_sym_AT, - ACTIONS(737), 25, + ACTIONS(848), 26, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -36713,6 +37397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_open, anon_sym_module, + anon_sym_record, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -36725,25 +37410,30 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [3331] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(396), 1, - sym_class_body, + [3386] = 6, + ACTIONS(1302), 1, + anon_sym_LT, + ACTIONS(1305), 1, + anon_sym_DOT, + STATE(352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1280), 9, + ACTIONS(1058), 12, 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(1282), 24, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1082), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36756,70 +37446,78 @@ 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_RBRACE, anon_sym_SEMI, - [3379] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_class_body, + anon_sym_AT, + [3439] = 15, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(291), 1, + anon_sym_non_DASHsealed, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(615), 1, + sym_modifiers, + STATE(630), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1286), 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(1288), 24, - 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_RBRACE, - anon_sym_SEMI, - [3427] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(405), 1, - sym_class_body, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(1024), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(458), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(285), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3510] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1290), 9, + ACTIONS(1307), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36828,8 +37526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1292), 24, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1309), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36842,72 +37544,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_RBRACE, anon_sym_SEMI, - [3475] = 7, - ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1300), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1296), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(350), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1298), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1294), 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, - [3527] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_class_body, + [3556] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1302), 9, + ACTIONS(1311), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36916,8 +37569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1304), 24, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1313), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36930,80 +37587,41 @@ 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_RBRACE, anon_sym_SEMI, - [3575] = 7, - ACTIONS(1313), 1, anon_sym_AT, - ACTIONS(1316), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1308), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(350), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1310), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1306), 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, - [3627] = 3, + [3602] = 6, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1321), 1, + anon_sym_DOT, + STATE(387), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1321), 6, + ACTIONS(1319), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1319), 28, + ACTIONS(1315), 31, 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, @@ -37027,23 +37645,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3670] = 3, + [3654] = 6, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1327), 1, + anon_sym_DOT, + STATE(388), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1325), 6, + ACTIONS(1325), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1323), 28, + ACTIONS(1323), 31, 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, @@ -37067,251 +37691,184 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3713] = 3, + [3706] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1329), 6, + ACTIONS(1329), 13, + 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_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1331), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1327), 28, - 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_final, - 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, - [3756] = 3, + [3752] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1333), 6, + ACTIONS(1333), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1331), 28, - 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_final, - 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, sym_identifier, - [3799] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1337), 6, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(1335), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1335), 28, - 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_final, - 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, - [3842] = 3, + [3798] = 4, + ACTIONS(1296), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 6, + ACTIONS(1289), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1339), 28, - 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_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, 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, - [3885] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1345), 6, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(1291), 23, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1343), 28, - 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_final, - 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, - [3928] = 3, + [3846] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1349), 6, + ACTIONS(1337), 13, + 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_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1339), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1347), 28, - 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_final, - 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, - [3971] = 3, + [3892] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1351), 9, + ACTIONS(1341), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37320,8 +37877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1353), 25, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1343), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37334,104 +37895,66 @@ 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_RBRACE, anon_sym_SEMI, - [4014] = 3, + anon_sym_AT, + [3938] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 3, + ACTIONS(1345), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1355), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, 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_final, - 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, - [4057] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1361), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1359), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + ACTIONS(1347), 24, + 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_RBRACE, + anon_sym_SEMI, 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_final, - 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, - [4100] = 3, + [3984] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 9, + ACTIONS(1349), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37440,8 +37963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1365), 25, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1351), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37454,24 +37981,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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4143] = 3, + anon_sym_AT, + [4030] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1248), 9, + ACTIONS(1353), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37480,8 +38006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1250), 25, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1355), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37494,104 +38024,107 @@ 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_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4186] = 3, + [4076] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 3, + ACTIONS(1357), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1367), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, 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_final, - 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, - [4229] = 3, + ACTIONS(1359), 23, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4121] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1373), 3, + ACTIONS(1289), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1371), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, 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_final, - 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, - [4272] = 3, + ACTIONS(1291), 23, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4166] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1375), 9, + ACTIONS(1361), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37600,8 +38133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1377), 25, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1363), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37614,38 +38151,36 @@ 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_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4315] = 6, - ACTIONS(1379), 1, - anon_sym_LT, - ACTIONS(1382), 1, - anon_sym_DOT, - STATE(414), 1, - sym_type_arguments, + [4211] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 7, + ACTIONS(1365), 13, 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(1067), 24, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1367), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37658,7 +38193,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, @@ -37670,11 +38204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4364] = 3, + [4256] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 9, + ACTIONS(1369), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37684,7 +38222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1386), 25, + ACTIONS(1371), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37707,27 +38245,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4407] = 3, + [4304] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(419), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1390), 3, + ACTIONS(1375), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1388), 31, - anon_sym_class, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1377), 24, + 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_RBRACE, + anon_sym_SEMI, + [4352] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1379), 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(1381), 24, + 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_RBRACE, + anon_sym_SEMI, + [4400] = 7, + ACTIONS(1390), 1, + anon_sym_AT, + ACTIONS(1393), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1385), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(371), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1387), 13, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, - anon_sym_open, - anon_sym_module, anon_sym_static, - anon_sym_package, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + ACTIONS(1383), 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, + [4452] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1396), 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(1398), 24, + 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_RBRACE, + anon_sym_SEMI, + [4500] = 7, + ACTIONS(57), 1, + anon_sym_AT, + ACTIONS(1406), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1402), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(371), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1404), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, anon_sym_public, anon_sym_protected, anon_sym_private, @@ -37738,6 +38451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + ACTIONS(1400), 14, + anon_sym_class, + anon_sym_enum, anon_sym_record, anon_sym_interface, anon_sym_byte, @@ -37750,18 +38466,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4450] = 3, + [4552] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1394), 6, + ACTIONS(1410), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1392), 28, + ACTIONS(1408), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37790,18 +38506,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4493] = 3, + [4595] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1398), 6, + ACTIONS(1414), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1396), 28, + ACTIONS(1412), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37830,18 +38546,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4536] = 3, + [4638] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 6, + ACTIONS(1418), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1400), 28, + ACTIONS(1416), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37870,25 +38586,27 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4579] = 6, - ACTIONS(1408), 1, - anon_sym_LT, - ACTIONS(1411), 1, - anon_sym_DOT, - STATE(392), 1, - sym_type_arguments, + [4681] = 5, + ACTIONS(1420), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 7, + ACTIONS(1426), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1422), 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, - ACTIONS(1406), 24, + anon_sym_instanceof, + ACTIONS(1424), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37901,70 +38619,67 @@ 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4628] = 3, + [4728] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 6, + ACTIONS(1428), 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(1430), 25, + 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1413), 28, - 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_final, - 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, - [4671] = 3, + [4771] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 6, + ACTIONS(1434), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1417), 28, + ACTIONS(1432), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37993,18 +38708,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4714] = 3, + [4814] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 6, + ACTIONS(1438), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1421), 28, + ACTIONS(1436), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38033,18 +38748,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4757] = 3, + [4857] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 6, + ACTIONS(1442), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1425), 28, + ACTIONS(1440), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38073,11 +38788,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4800] = 3, + [4900] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 9, + ACTIONS(1444), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38087,7 +38802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1431), 25, + ACTIONS(1446), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38113,23 +38828,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4843] = 3, + [4943] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 6, + ACTIONS(1450), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1433), 28, + ACTIONS(1448), 31, 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, @@ -38153,481 +38868,211 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4886] = 3, + [4986] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1454), 3, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1439), 25, - 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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [4929] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1047), 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(1049), 24, - 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_RBRACE, - anon_sym_SEMI, - [4971] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1441), 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(1443), 24, - 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_RBRACE, - anon_sym_SEMI, - [5013] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1445), 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(1447), 24, - 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_RBRACE, - anon_sym_SEMI, - [5055] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 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(1451), 24, - 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_RBRACE, - anon_sym_SEMI, - [5097] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1453), 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(1455), 24, - 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_RBRACE, - anon_sym_SEMI, - [5139] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1457), 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(1459), 24, - 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_RBRACE, - anon_sym_SEMI, - [5181] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1461), 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(1463), 25, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1452), 31, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [5223] = 3, + 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_final, + 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, + [5029] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 8, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1458), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1467), 25, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1456), 28, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [5265] = 3, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [5072] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 8, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1462), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1471), 25, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1460), 28, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [5307] = 3, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [5115] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1466), 3, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1475), 24, - 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_RBRACE, - anon_sym_SEMI, - [5349] = 4, - ACTIONS(1411), 1, - anon_sym_DOT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1464), 31, + 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_final, + 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, + [5158] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 8, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1470), 3, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1406), 24, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1468), 31, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [5393] = 3, + 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_final, + 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, + [5201] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 8, + ACTIONS(1472), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38636,7 +39081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1479), 25, + anon_sym_COLON, + ACTIONS(1474), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38653,20 +39099,20 @@ 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_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5435] = 3, + [5244] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 9, + ACTIONS(1476), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38676,7 +39122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1483), 24, + ACTIONS(1478), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38699,13 +39145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [5477] = 3, + [5287] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 9, + ACTIONS(1255), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38714,8 +39161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1487), 24, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1257), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38728,23 +39179,300 @@ 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_RBRACE, anon_sym_SEMI, - [5519] = 3, + [5330] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1482), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1480), 28, + 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_final, + 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, + [5373] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1486), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1484), 28, + 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_final, + 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, + [5416] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1490), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1488), 28, + 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_final, + 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, + [5459] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1494), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1492), 28, + 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_final, + 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, + [5502] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1498), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1496), 28, + 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_final, + 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, + [5545] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1502), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1500), 28, + 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_final, + 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, + [5588] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1506), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1504), 31, + 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_final, + 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, + [5631] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 9, + ACTIONS(1508), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38754,7 +39482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1491), 24, + ACTIONS(1510), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38777,13 +39505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [5561] = 3, + [5674] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 9, + ACTIONS(1512), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38793,7 +39522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1495), 24, + ACTIONS(1514), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38818,11 +39547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5603] = 3, + [5716] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 9, + ACTIONS(1516), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38832,7 +39561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1499), 24, + ACTIONS(1518), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38857,11 +39586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5645] = 3, + [5758] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 9, + ACTIONS(1520), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38871,7 +39600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1503), 24, + ACTIONS(1522), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38896,11 +39625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5687] = 3, + [5800] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 9, + ACTIONS(1524), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38910,7 +39639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1507), 24, + ACTIONS(1526), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38935,11 +39664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5729] = 3, + [5842] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 9, + ACTIONS(1528), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38949,7 +39678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1511), 24, + ACTIONS(1530), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38974,11 +39703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5771] = 3, + [5884] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 9, + ACTIONS(1532), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38988,7 +39717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1515), 24, + ACTIONS(1534), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39013,11 +39742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5813] = 3, + [5926] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 9, + ACTIONS(1536), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39027,7 +39756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1519), 24, + ACTIONS(1538), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39052,11 +39781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5855] = 3, + [5968] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1521), 8, + ACTIONS(1062), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39065,7 +39794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1523), 25, + anon_sym_COLON, + ACTIONS(1064), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39082,20 +39812,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5897] = 3, + [6010] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 9, + ACTIONS(1540), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39105,7 +39834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1527), 24, + ACTIONS(1542), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39130,11 +39859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5939] = 3, + [6052] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 9, + ACTIONS(1544), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39144,7 +39873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1531), 24, + ACTIONS(1546), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39169,11 +39898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5981] = 3, + [6094] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 8, + ACTIONS(1548), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39182,7 +39911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1535), 25, + anon_sym_COLON, + ACTIONS(1550), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39199,62 +39929,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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [6023] = 6, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1539), 1, - anon_sym_DOT, - ACTIONS(1541), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(272), 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(274), 21, - 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_RBRACE, anon_sym_SEMI, - [6071] = 3, + [6136] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1543), 9, + ACTIONS(1552), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39264,7 +39951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1545), 24, + ACTIONS(1554), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39289,11 +39976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6113] = 3, + [6178] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1547), 9, + ACTIONS(1556), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39303,7 +39990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1549), 24, + ACTIONS(1558), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39328,11 +40015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6155] = 3, + [6220] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1551), 9, + ACTIONS(1560), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39342,7 +40029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1553), 24, + ACTIONS(1562), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39367,11 +40054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6197] = 3, + [6262] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1555), 9, + ACTIONS(1564), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39381,7 +40068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1557), 24, + ACTIONS(1566), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39406,11 +40093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6239] = 3, + [6304] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1559), 8, + ACTIONS(1568), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39419,7 +40106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1561), 25, + anon_sym_COLON, + ACTIONS(1570), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39436,59 +40124,25 @@ 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6281] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1563), 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(1565), 24, - 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, + [6346] = 6, + ACTIONS(1572), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1574), 1, anon_sym_DOT, + ACTIONS(1576), 1, anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [6323] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1567), 8, + ACTIONS(277), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39497,7 +40151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1569), 25, + anon_sym_COLON, + ACTIONS(279), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39514,20 +40169,16 @@ 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6365] = 3, + [6394] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1571), 9, + ACTIONS(1578), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39537,7 +40188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1573), 24, + ACTIONS(1580), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39562,11 +40213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6407] = 3, + [6436] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1575), 9, + ACTIONS(1582), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39576,7 +40227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1577), 24, + ACTIONS(1584), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39601,11 +40252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6449] = 3, + [6478] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1579), 9, + ACTIONS(1586), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39615,7 +40266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1581), 24, + ACTIONS(1588), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39640,11 +40291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6491] = 3, + [6520] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 9, + ACTIONS(1590), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39654,7 +40305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1585), 24, + ACTIONS(1592), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39679,11 +40330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6533] = 3, + [6562] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1587), 9, + ACTIONS(1594), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39693,7 +40344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1589), 24, + ACTIONS(1596), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39718,11 +40369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6575] = 3, + [6604] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1591), 8, + ACTIONS(1598), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39731,87 +40382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1593), 25, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [6617] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_block, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1597), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1595), 28, - 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_final, - 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, - [6663] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1599), 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(1601), 24, + ACTIONS(1600), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39828,95 +40400,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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [6704] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1605), 5, - anon_sym_LT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1603), 27, - 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_final, - 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, - [6745] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1609), 5, - anon_sym_LT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1607), 27, - 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_final, - 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, - [6786] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [6646] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1611), 8, + ACTIONS(1602), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39925,7 +40421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1613), 24, + anon_sym_COLON, + ACTIONS(1604), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39942,19 +40439,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6827] = 3, + [6688] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 8, + ACTIONS(1606), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39963,7 +40460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1406), 24, + anon_sym_COLON, + ACTIONS(1608), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39980,59 +40478,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6868] = 5, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1597), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1618), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1615), 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(1595), 16, - 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_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - [6913] = 3, + [6730] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1620), 8, + ACTIONS(1610), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40041,7 +40499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1622), 24, + anon_sym_COLON, + ACTIONS(1612), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40058,58 +40517,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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6954] = 5, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(1024), 1, - sym_parenthesized_expression, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1597), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1595), 27, - 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_final, - 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, - [6998] = 3, + [6772] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1624), 8, + ACTIONS(1614), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40118,7 +40538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1626), 22, + anon_sym_COLON, + ACTIONS(1616), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40135,20 +40556,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_RBRACE, anon_sym_SEMI, - [7037] = 4, + [6814] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1628), 8, + ACTIONS(1618), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40157,7 +40577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1630), 20, + anon_sym_COLON, + ACTIONS(1620), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40174,15 +40595,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_RBRACE, anon_sym_SEMI, - [7078] = 3, + [6856] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1624), 8, + ACTIONS(1622), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40191,7 +40616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1626), 22, + anon_sym_COLON, + ACTIONS(1624), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40208,17 +40634,101 @@ 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_RBRACE, anon_sym_SEMI, - [7117] = 3, + [6898] = 5, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(385), 1, + sym_block, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1628), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1626), 28, + 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_final, + 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, + [6944] = 5, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1628), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1633), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1630), 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(1626), 17, + 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_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + [6990] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1634), 8, + ACTIONS(1635), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40227,7 +40737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1636), 22, + anon_sym_COLON, + ACTIONS(1637), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40244,17 +40755,135 @@ 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_RBRACE, + anon_sym_SEMI, + [7032] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1641), 5, + anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1639), 27, + 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_final, + 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, + [7073] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1645), 5, + anon_sym_LT, anon_sym_RBRACE, anon_sym_SEMI, - [7156] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1643), 27, + 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_final, + 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, + [7114] = 5, + ACTIONS(960), 1, + anon_sym_LPAREN, + STATE(1068), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1628), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1626), 28, + 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_final, + 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, + [7159] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 12, + ACTIONS(1347), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -40267,13 +40896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1469), 18, + ACTIONS(1345), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40286,48 +40916,48 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7195] = 4, + [7199] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1638), 8, + ACTIONS(1313), 12, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1640), 20, - 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_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, - [7236] = 3, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1311), 19, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + 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, + [7239] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 12, + ACTIONS(1351), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -40340,13 +40970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1461), 18, + ACTIONS(1349), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40359,11 +40990,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7275] = 3, + [7279] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, + ACTIONS(1647), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40372,7 +41003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(274), 22, + ACTIONS(1649), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40395,11 +41026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7314] = 3, + [7318] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1258), 8, + ACTIONS(277), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40408,7 +41039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1260), 22, + ACTIONS(279), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40431,14 +41062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7353] = 4, + [7357] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 8, + ACTIONS(1651), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40447,7 +41078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1644), 20, + ACTIONS(1653), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40468,11 +41099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7394] = 3, + [7398] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1646), 8, + ACTIONS(1647), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40481,7 +41112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1648), 22, + ACTIONS(1649), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40504,11 +41135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7433] = 3, + [7437] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1657), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40517,7 +41151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(274), 22, + ACTIONS(1659), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40535,52 +41169,14 @@ 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_RBRACE, anon_sym_SEMI, - [7472] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1523), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1521), 18, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - 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, - [7511] = 3, + [7478] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1650), 8, + ACTIONS(1661), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40589,7 +41185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1652), 22, + ACTIONS(1663), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40612,32 +41208,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7550] = 9, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, + [7517] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1642), 4, + ACTIONS(1665), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(1644), 15, + anon_sym_GT_GT, + ACTIONS(1667), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40645,168 +41229,108 @@ 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_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7600] = 12, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, + [7556] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 2, + ACTIONS(1669), 8, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1671), 20, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1644), 12, - anon_sym_RPAREN, 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_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7656] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, + [7597] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1673), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1675), 22, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 6, - anon_sym_RPAREN, + 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_RBRACE, anon_sym_SEMI, - [7724] = 6, - ACTIONS(1689), 1, - anon_sym_AT, - ACTIONS(1692), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(447), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1306), 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(1686), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [7768] = 7, - ACTIONS(1658), 1, - anon_sym_SLASH, + [7636] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 5, + ACTIONS(277), 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(1644), 17, + ACTIONS(279), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40814,25 +41338,26 @@ 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_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7814] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(1118), 1, - sym_argument_list, + [7675] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 8, + ACTIONS(1677), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40841,7 +41366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1049), 19, + ACTIONS(1679), 22, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -40854,68 +41380,122 @@ 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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_SEMI, - [7856] = 14, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1658), 1, + [7714] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, + ACTIONS(1711), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1683), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [7782] = 16, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 10, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 8, 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_RBRACE, anon_sym_SEMI, - [7916] = 3, + [7846] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1697), 3, + ACTIONS(1715), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1695), 26, + ACTIONS(1713), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -40942,336 +41522,195 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7954] = 15, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1658), 1, + [7884] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1682), 1, - anon_sym_CARET, + ACTIONS(1711), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 9, - 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_RBRACE, - anon_sym_SEMI, - [8016] = 6, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 7, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1644), 17, - 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_CARET, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + ACTIONS(1717), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8060] = 16, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [7952] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1680), 1, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 8, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8124] = 15, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1644), 9, + ACTIONS(1719), 6, 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_RBRACE, anon_sym_SEMI, - [8186] = 13, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, + [8020] = 5, + ACTIONS(1060), 1, + anon_sym_LPAREN, + STATE(1136), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1642), 2, + ACTIONS(1062), 8, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1064), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 10, - anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_CARET, - anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_SEMI, - [8244] = 18, - ACTIONS(1658), 1, + [8062] = 7, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1657), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1659), 17, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1652), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8312] = 6, - ACTIONS(1699), 1, - anon_sym_LPAREN, - ACTIONS(1701), 1, - anon_sym_DOT, - STATE(511), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1270), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1266), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [8356] = 6, - ACTIONS(1699), 1, - anon_sym_LPAREN, - ACTIONS(1703), 1, - anon_sym_DOT, - STATE(477), 1, - sym_annotation_argument_list, + 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, + anon_sym_instanceof, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8108] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 3, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1723), 3, + anon_sym_RBRACE, anon_sym_non_DASHsealed, - ACTIONS(1274), 23, + anon_sym_ATinterface, + ACTIONS(1721), 26, + anon_sym_class, anon_sym_default, anon_sym_synchronized, + anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41283,6 +41722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41293,70 +41733,66 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8400] = 18, - ACTIONS(1658), 1, + [8146] = 14, + ACTIONS(1657), 1, + anon_sym_PIPE, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 6, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 10, 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_RBRACE, anon_sym_SEMI, - [8468] = 6, - ACTIONS(282), 1, + [8206] = 6, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1709), 1, + ACTIONS(1727), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(447), 4, + STATE(472), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1294), 10, + ACTIONS(1400), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41367,7 +41803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1707), 13, + ACTIONS(1725), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41381,19 +41817,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [8512] = 3, + [8250] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1713), 3, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1675), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_SEMI, + [8318] = 6, + ACTIONS(1729), 1, + anon_sym_LPAREN, + ACTIONS(1731), 1, + anon_sym_DOT, + STATE(521), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1319), 3, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1711), 26, - anon_sym_class, + ACTIONS(1315), 23, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41405,7 +41895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41416,19 +41905,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8550] = 3, + [8362] = 6, + ACTIONS(1729), 1, + anon_sym_LPAREN, + ACTIONS(1733), 1, + anon_sym_DOT, + STATE(519), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1717), 3, - anon_sym_RBRACE, + ACTIONS(1325), 3, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1715), 26, - anon_sym_class, + ACTIONS(1323), 23, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41440,7 +41933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41451,15 +41943,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8588] = 3, + [8406] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1721), 3, + ACTIONS(1737), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1719), 26, + ACTIONS(1735), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41486,15 +41978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8626] = 3, + [8444] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1725), 3, + ACTIONS(1741), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1723), 26, + ACTIONS(1739), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41521,65 +42013,100 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8664] = 18, - ACTIONS(1658), 1, + [8482] = 15, + ACTIONS(1657), 1, + anon_sym_PIPE, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1659), 9, + 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_RBRACE, + anon_sym_SEMI, + [8544] = 6, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1657), 7, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1659), 17, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 6, - anon_sym_RPAREN, + 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, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8732] = 3, + [8588] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1731), 3, + ACTIONS(1745), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1729), 26, + ACTIONS(1743), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41606,15 +42133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8770] = 3, + [8626] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, + ACTIONS(1749), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1733), 26, + ACTIONS(1747), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41641,15 +42168,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8808] = 3, + [8664] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 3, + ACTIONS(1753), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1737), 26, + ACTIONS(1751), 26, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -41676,53 +42203,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8846] = 3, + [8702] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 5, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AT, + ACTIONS(1757), 3, + anon_sym_RBRACE, anon_sym_non_DASHsealed, - ACTIONS(1226), 23, + anon_sym_ATinterface, + ACTIONS(1755), 26, + anon_sym_class, anon_sym_default, anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [8883] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1224), 5, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1222), 23, - anon_sym_default, - anon_sym_synchronized, anon_sym_static, anon_sym_public, anon_sym_protected, @@ -41734,6 +42227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41744,204 +42238,271 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8920] = 6, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - anon_sym_DOT, + [8740] = 13, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1657), 2, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 10, + 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_RBRACE, + anon_sym_SEMI, + [8798] = 15, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(274), 16, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + ACTIONS(1659), 9, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COMMA, anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_SEMI, - [8962] = 7, - ACTIONS(282), 1, + [8860] = 6, + ACTIONS(1762), 1, anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - STATE(476), 1, - aux_sym_dimensions_repeat1, + ACTIONS(1765), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(472), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1240), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, + aux_sym_modifiers_repeat1, + ACTIONS(1383), 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(1242), 10, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [9006] = 18, - ACTIONS(1658), 1, + ACTIONS(1759), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [8904] = 9, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1657), 4, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + ACTIONS(1659), 15, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [9072] = 20, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, - anon_sym_AMP, - ACTIONS(1755), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1767), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(1775), 1, + anon_sym_instanceof, anon_sym_COMMA, - ACTIONS(1777), 1, anon_sym_QMARK, - STATE(770), 1, - aux_sym_argument_list_repeat1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8954] = 12, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1657), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1773), 2, - anon_sym_DASH_GT, + ACTIONS(1659), 12, + 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, - [9142] = 7, - ACTIONS(1255), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [9010] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1275), 5, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1273), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [9047] = 7, + ACTIONS(1244), 1, anon_sym_AT, - ACTIONS(1779), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, STATE(476), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1248), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1250), 10, + ACTIONS(1239), 10, anon_sym_AMP, anon_sym_RPAREN, anon_sym_EQ, @@ -41952,15 +42513,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - [9186] = 3, + ACTIONS(1237), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + [9092] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 3, + ACTIONS(1271), 5, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1355), 23, + ACTIONS(1269), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41984,636 +42559,727 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9221] = 12, - ACTIONS(282), 1, + [9129] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - ACTIONS(1784), 1, - anon_sym_COMMA, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1788), 1, - anon_sym_SEMI, - STATE(761), 1, - sym_enum_constant, - STATE(1141), 1, - sym_modifiers, - STATE(1142), 1, - sym_enum_body_declarations, + ACTIONS(1771), 1, + anon_sym_LBRACK, + STATE(476), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(461), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [9274] = 12, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1642), 2, + aux_sym_dimensions_expr_repeat1, + ACTIONS(1229), 10, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(1751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1644), 9, - 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, - [9327] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1790), 1, anon_sym_COMMA, - ACTIONS(1792), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, - STATE(931), 1, - aux_sym_for_statement_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [9396] = 15, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1227), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + [9174] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, + ACTIONS(1773), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9455] = 16, - ACTIONS(1668), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + [9240] = 20, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1775), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1783), 1, anon_sym_AMP_AMP, - ACTIONS(1763), 1, + ACTIONS(1785), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1791), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1793), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1795), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1799), 1, anon_sym_GT_GT, + ACTIONS(1803), 1, + anon_sym_COMMA, + ACTIONS(1805), 1, + anon_sym_QMARK, + STATE(842), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1789), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 5, - anon_sym_PIPE_PIPE, + ACTIONS(1801), 2, anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - [9516] = 6, - ACTIONS(1763), 1, - anon_sym_SLASH, + [9310] = 6, + ACTIONS(1572), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_COLON_COLON, + ACTIONS(1807), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 7, + ACTIONS(277), 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(1644), 14, + ACTIONS(279), 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_DASH_GT, - anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, - [9557] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [9352] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, + ACTIONS(1809), 1, + anon_sym_RPAREN, + ACTIONS(1811), 1, + anon_sym_COMMA, + STATE(954), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1652), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [9622] = 15, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + [9421] = 15, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1813), 1, + anon_sym_GT, + ACTIONS(1815), 1, + anon_sym_QMARK, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(611), 1, + sym__unannotated_type, + STATE(672), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(918), 2, + sym_wildcard, + sym__type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(569), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [9480] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1506), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1504), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [9515] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1767), 1, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1817), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 6, + [9584] = 20, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, anon_sym_AMP_AMP, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9681] = 14, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, - anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1771), 1, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1811), 1, + anon_sym_COMMA, + ACTIONS(1819), 1, + anon_sym_RPAREN, + STATE(948), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 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, - [9738] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [9653] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1794), 1, - anon_sym_RPAREN, - ACTIONS(1796), 1, + ACTIONS(1821), 1, anon_sym_COMMA, - STATE(948), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1823), 1, + anon_sym_SEMI, + STATE(946), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [9722] = 13, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1791), 1, + anon_sym_SLASH, + ACTIONS(1799), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1657), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9807] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 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, + [9777] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1798), 1, - anon_sym_RPAREN, - ACTIONS(1800), 1, + ACTIONS(1811), 1, anon_sym_COMMA, - STATE(907), 1, + ACTIONS(1825), 1, + anon_sym_RPAREN, + STATE(886), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [9846] = 20, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1811), 1, + anon_sym_COMMA, + ACTIONS(1827), 1, + anon_sym_RPAREN, + STATE(932), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9876] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [9915] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1800), 1, + ACTIONS(1817), 1, anon_sym_COMMA, - ACTIONS(1802), 1, + ACTIONS(1829), 1, anon_sym_RPAREN, - STATE(910), 1, - aux_sym_for_statement_repeat2, + STATE(931), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9945] = 20, - ACTIONS(1658), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [9984] = 9, + ACTIONS(1791), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1799), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1804), 1, - anon_sym_RPAREN, - STATE(872), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1789), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1657), 4, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + ACTIONS(1659), 12, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10014] = 7, - ACTIONS(1763), 1, + 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, + [10031] = 12, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1791), 1, anon_sym_SLASH, + ACTIONS(1799), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 5, + ACTIONS(1657), 2, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1644), 14, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 9, 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, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [10057] = 3, + [10084] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1808), 3, + ACTIONS(1833), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1806), 23, + ACTIONS(1831), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42637,15 +43303,59 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10092] = 3, + [10119] = 15, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1775), 1, + anon_sym_AMP, + ACTIONS(1791), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, + anon_sym_PIPE, + ACTIONS(1795), 1, + anon_sym_CARET, + ACTIONS(1799), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [10178] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1373), 3, + ACTIONS(1454), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1371), 23, + ACTIONS(1452), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42669,497 +43379,312 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10127] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1810), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [10192] = 18, - ACTIONS(1668), 1, + [10213] = 18, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1775), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1783), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1785), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1791), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1793), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1795), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1799), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1789), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1705), 3, + ACTIONS(1719), 3, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, - [10257] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [10278] = 16, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1775), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1783), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1791), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1795), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1812), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [10322] = 13, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1771), 1, + ACTIONS(1799), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1789), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 7, - anon_sym_AMP_AMP, + ACTIONS(1659), 5, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [10377] = 15, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1814), 1, - anon_sym_GT, - ACTIONS(1816), 1, - anon_sym_QMARK, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(861), 2, - sym_wildcard, - sym__type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(564), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [10436] = 20, - ACTIONS(1658), 1, + [10339] = 6, + ACTIONS(1791), 1, anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(918), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1789), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1657), 7, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1659), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10505] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1822), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1820), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10540] = 20, - ACTIONS(1658), 1, + 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, + [10380] = 15, + ACTIONS(1657), 1, + anon_sym_PIPE, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1775), 1, + anon_sym_AMP, + ACTIONS(1791), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1795), 1, + anon_sym_CARET, + ACTIONS(1799), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [10439] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1824), 1, - anon_sym_RPAREN, - STATE(858), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1835), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [10504] = 14, + ACTIONS(1657), 1, + anon_sym_PIPE, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1775), 1, + anon_sym_AMP, + ACTIONS(1791), 1, + anon_sym_SLASH, + ACTIONS(1799), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10609] = 15, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1816), 1, - anon_sym_QMARK, - ACTIONS(1826), 1, - anon_sym_GT, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(921), 2, - sym_wildcard, - sym__type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(564), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [10668] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1830), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1828), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10703] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1659), 7, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, + anon_sym_DASH_GT, anon_sym_COMMA, - ACTIONS(1832), 1, - anon_sym_RPAREN, - STATE(927), 1, - aux_sym_for_statement_repeat2, + anon_sym_QMARK, + anon_sym_COLON, + [10561] = 7, + ACTIONS(1791), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1789), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1657), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1659), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10772] = 3, + 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, + [10604] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 3, - anon_sym_LBRACK, + ACTIONS(1839), 3, + anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1367), 23, + ACTIONS(1837), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43183,64 +43708,34 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10807] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1773), 1, - anon_sym_COLON, - ACTIONS(1796), 1, + [10639] = 12, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(291), 1, + anon_sym_non_DASHsealed, + ACTIONS(1841), 1, + sym_identifier, + ACTIONS(1843), 1, anon_sym_COMMA, - STATE(952), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [10876] = 3, + ACTIONS(1845), 1, + anon_sym_RBRACE, + ACTIONS(1847), 1, + anon_sym_SEMI, + STATE(761), 1, + sym_enum_constant, + STATE(1100), 1, + sym_modifiers, + STATE(1103), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1390), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1388), 23, + STATE(458), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(285), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43254,170 +43749,156 @@ 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, - [10911] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [10692] = 18, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1775), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1783), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1785), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1791), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1795), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1799), 1, + anon_sym_GT_GT, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1834), 1, - anon_sym_RPAREN, - STATE(864), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10980] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1835), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10757] = 18, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1775), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1783), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1785), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1791), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1795), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1836), 1, - anon_sym_RPAREN, - STATE(857), 1, - aux_sym_for_statement_repeat2, + ACTIONS(1799), 1, + anon_sym_GT_GT, + ACTIONS(1805), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11049] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1675), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10822] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1727), 3, - anon_sym_DASH_GT, + ACTIONS(1849), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [11114] = 3, + anon_sym_SEMI, + [10887] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 3, - anon_sym_LBRACK, + ACTIONS(1853), 3, + anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1359), 23, + ACTIONS(1851), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43441,149 +43922,113 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11149] = 9, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1642), 4, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - ACTIONS(1644), 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_CARET, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [11196] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + [10922] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, + ACTIONS(1811), 1, + anon_sym_COMMA, + ACTIONS(1855), 1, + anon_sym_RPAREN, + STATE(927), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1810), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11261] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [10991] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1838), 1, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(1840), 1, - anon_sym_RBRACE, - STATE(949), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(1857), 1, + anon_sym_RPAREN, + STATE(924), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11330] = 3, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [11060] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1844), 3, - anon_sym_RPAREN, + ACTIONS(1450), 3, + anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1842), 23, + ACTIONS(1448), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43607,473 +44052,442 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11365] = 18, - ACTIONS(1668), 1, + [11095] = 15, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_GT, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(611), 1, + sym__unannotated_type, + STATE(672), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(877), 2, + sym_wildcard, + sym__type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(569), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [11154] = 18, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1775), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1783), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1785), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + ACTIONS(1791), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1793), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1795), 1, anon_sym_CARET, - ACTIONS(1771), 1, + ACTIONS(1799), 1, anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1789), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1672), 3, + ACTIONS(1683), 3, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, - [11430] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [11219] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1846), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [11494] = 19, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1848), 1, - anon_sym_COLON, - ACTIONS(1850), 1, - anon_sym_SEMI, + ACTIONS(1811), 1, + anon_sym_COMMA, + ACTIONS(1861), 1, + anon_sym_RPAREN, + STATE(869), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11560] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1852), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [11624] = 18, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1856), 1, - anon_sym_enum, - ACTIONS(1858), 1, - anon_sym_record, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(615), 1, - sym__unannotated_type, - STATE(826), 1, - sym__constructor_declarator, - STATE(940), 1, - sym__method_header, + [11288] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(1865), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1863), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, - [11688] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [11323] = 18, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1775), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1783), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1785), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1791), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1795), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1799), 1, + anon_sym_GT_GT, + ACTIONS(1805), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1864), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [11752] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1789), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1717), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [11388] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, + ACTIONS(1811), 1, + anon_sym_COMMA, + ACTIONS(1867), 1, + anon_sym_RPAREN, + STATE(883), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1866), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [11816] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [11457] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1470), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1468), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [11492] = 20, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(1871), 1, + anon_sym_RBRACE, + STATE(908), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1868), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [11880] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1816), 1, - anon_sym_QMARK, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [11561] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(988), 2, - sym_wildcard, - sym__type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(564), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(1466), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1464), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, - [11936] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [11596] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, - anon_sym_RPAREN, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1873), 2, anon_sym_COMMA, - [12000] = 5, - ACTIONS(1597), 1, + anon_sym_RBRACE, + [11660] = 5, + ACTIONS(1628), 1, anon_sym_non_DASHsealed, - ACTIONS(1870), 1, + ACTIONS(1875), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1615), 10, + ACTIONS(1630), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -44084,7 +44498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1595), 13, + ACTIONS(1626), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -44098,32 +44512,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [12038] = 11, - ACTIONS(282), 1, + [11698] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1773), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [11762] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1878), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [11826] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1880), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [11890] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(291), 1, anon_sym_non_DASHsealed, - ACTIONS(1782), 1, + ACTIONS(1841), 1, sym_identifier, - ACTIONS(1788), 1, + ACTIONS(1847), 1, anon_sym_SEMI, - ACTIONS(1873), 1, + ACTIONS(1882), 1, anon_sym_RBRACE, - STATE(898), 1, + STATE(940), 1, sym_enum_constant, - STATE(1121), 1, - sym_enum_body_declarations, - STATE(1141), 1, + STATE(1100), 1, sym_modifiers, + STATE(1142), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(461), 4, + STATE(458), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(280), 13, + ACTIONS(285), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -44137,32 +44689,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [12088] = 11, - ACTIONS(282), 1, + [11940] = 19, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1884), 1, + anon_sym_COLON, + ACTIONS(1886), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12006] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(291), 1, anon_sym_non_DASHsealed, - ACTIONS(1782), 1, + ACTIONS(1841), 1, sym_identifier, - ACTIONS(1788), 1, + ACTIONS(1847), 1, anon_sym_SEMI, - ACTIONS(1875), 1, + ACTIONS(1888), 1, anon_sym_RBRACE, - STATE(898), 1, + STATE(940), 1, sym_enum_constant, - STATE(1094), 1, + STATE(1096), 1, sym_enum_body_declarations, - STATE(1141), 1, + STATE(1100), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(461), 4, + STATE(458), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(280), 13, + ACTIONS(285), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -44176,1368 +44775,1545 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [12138] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [12056] = 18, + ACTIONS(986), 1, + sym_identifier, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(1890), 1, + anon_sym_class, + ACTIONS(1892), 1, + anon_sym_enum, + ACTIONS(1894), 1, + anon_sym_record, + ACTIONS(1896), 1, + anon_sym_ATinterface, + ACTIONS(1898), 1, + anon_sym_interface, + STATE(579), 1, + sym_type_parameters, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(612), 1, + sym__unannotated_type, + STATE(834), 1, + sym__constructor_declarator, + STATE(862), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [12120] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1877), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12201] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1879), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [12264] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1900), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [12184] = 14, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_QMARK, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(611), 1, + sym__unannotated_type, + STATE(672), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(963), 2, + sym_wildcard, + sym__type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(569), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [12240] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1881), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12327] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1902), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [12304] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1883), 1, + ACTIONS(1904), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12390] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - STATE(846), 1, - sym__type, - STATE(1027), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(572), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12445] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12367] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1885), 1, + ACTIONS(1906), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12508] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12430] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1887), 1, - anon_sym_RPAREN, + ACTIONS(1908), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12571] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12493] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1889), 1, - anon_sym_RPAREN, + ACTIONS(1910), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12634] = 14, - ACTIONS(321), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12556] = 14, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1912), 1, anon_sym_open, - ACTIONS(1893), 1, + ACTIONS(1914), 1, anon_sym_module, - ACTIONS(1895), 1, + ACTIONS(1916), 1, anon_sym_package, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, STATE(596), 1, + sym_generic_type, + STATE(601), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [12689] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [12611] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1897), 1, - anon_sym_COLON, + ACTIONS(1918), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12752] = 14, - ACTIONS(321), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12674] = 14, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(672), 1, sym_annotated_type, - STATE(846), 1, + STATE(805), 1, sym__type, - STATE(1086), 1, + STATE(989), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(576), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [12729] = 14, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(611), 1, + sym__unannotated_type, + STATE(672), 1, + sym_annotated_type, + STATE(805), 1, + sym__type, + STATE(1138), 1, + sym_type_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [12807] = 18, - ACTIONS(1658), 1, + [12784] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1920), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12847] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1922), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12910] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12973] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1709), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1926), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13036] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1899), 1, - anon_sym_SEMI, + ACTIONS(1928), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12870] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13099] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1901), 1, - anon_sym_COLON, + ACTIONS(1930), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12933] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13162] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1903), 1, - anon_sym_RBRACK, + ACTIONS(1932), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12996] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13225] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1934), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13059] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13288] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1907), 1, + ACTIONS(1936), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1685), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1687), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [13351] = 18, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_AMP_AMP, + ACTIONS(1693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_PIPE, + ACTIONS(1703), 1, + anon_sym_CARET, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1938), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1655), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13122] = 14, - ACTIONS(321), 1, + ACTIONS(1695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1697), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13414] = 14, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(672), 1, sym_annotated_type, - STATE(846), 1, + STATE(805), 1, sym__type, - STATE(956), 1, + STATE(1035), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13177] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [13469] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1909), 1, + ACTIONS(1940), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13240] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1911), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [13303] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, + [13532] = 18, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1691), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1693), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1699), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1703), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1707), 1, + anon_sym_GT_GT, + ACTIONS(1709), 1, + anon_sym_instanceof, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1913), 1, + ACTIONS(1942), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1655), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1685), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1687), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1689), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13366] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1915), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1697), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [13595] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1237), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1239), 12, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [13627] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1298), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1300), 12, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [13429] = 13, - ACTIONS(321), 1, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1037), 1, + anon_sym_DOT_DOT_DOT, + [13659] = 13, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(672), 1, sym_annotated_type, - STATE(823), 1, + STATE(993), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13481] = 13, - ACTIONS(321), 1, + [13711] = 13, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(672), 1, sym_annotated_type, - STATE(1056), 1, + STATE(909), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13533] = 16, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1037), 1, + [13763] = 13, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1856), 1, - anon_sym_enum, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(567), 1, - sym_type_parameters, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(612), 1, + STATE(611), 1, sym__unannotated_type, - STATE(940), 1, - sym__method_header, + STATE(672), 1, + sym_annotated_type, + STATE(816), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + STATE(576), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13591] = 13, - ACTIONS(321), 1, + [13815] = 13, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(672), 1, sym_annotated_type, - STATE(982), 1, + STATE(824), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13643] = 13, - ACTIONS(321), 1, + [13867] = 13, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(672), 1, sym_annotated_type, - STATE(829), 1, + STATE(906), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13695] = 13, - ACTIONS(321), 1, + [13919] = 13, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(611), 1, sym__unannotated_type, - STATE(666), 1, + STATE(672), 1, sym_annotated_type, - STATE(837), 1, + STATE(1031), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13747] = 13, - ACTIONS(321), 1, + [13971] = 13, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(337), 1, - sym__unannotated_type, - STATE(373), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(391), 1, + STATE(596), 1, sym_generic_type, - STATE(438), 1, + STATE(611), 1, + sym__unannotated_type, + STATE(672), 1, sym_annotated_type, - STATE(440), 1, + STATE(841), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1923), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(426), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(570), 4, + STATE(576), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1919), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13799] = 13, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, + [14023] = 16, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + ACTIONS(1890), 1, + anon_sym_class, + ACTIONS(1892), 1, + anon_sym_enum, + ACTIONS(1896), 1, + anon_sym_ATinterface, + ACTIONS(1898), 1, + anon_sym_interface, + STATE(574), 1, + sym_type_parameters, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(602), 1, + STATE(606), 1, sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - STATE(887), 1, - sym__type, + STATE(862), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13851] = 13, - ACTIONS(321), 1, + [14081] = 13, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1944), 1, sym_identifier, - STATE(579), 1, + STATE(335), 1, + sym__unannotated_type, + STATE(344), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(358), 1, sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - STATE(896), 1, + STATE(377), 1, sym__type, + STATE(391), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1948), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1950), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(365), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(575), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(1946), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13903] = 8, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - STATE(898), 1, - sym_enum_constant, - STATE(1141), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [13944] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1429), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1431), 12, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [13975] = 6, - ACTIONS(1925), 1, + [14133] = 6, + ACTIONS(1952), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1954), 1, anon_sym_DOT, - STATE(582), 1, + STATE(598), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 6, + ACTIONS(1319), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1266), 13, + ACTIONS(1315), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45551,24 +46327,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14012] = 6, - ACTIONS(1925), 1, + [14170] = 6, + ACTIONS(1952), 1, anon_sym_LPAREN, - ACTIONS(1929), 1, + ACTIONS(1956), 1, anon_sym_DOT, - STATE(581), 1, + STATE(594), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 6, + ACTIONS(1325), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1274), 13, + ACTIONS(1323), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45582,76 +46358,108 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14049] = 3, + [14207] = 8, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(291), 1, + anon_sym_non_DASHsealed, + ACTIONS(1841), 1, + sym_identifier, + STATE(940), 1, + sym_enum_constant, + STATE(1100), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1248), 10, - anon_sym_COLON, - anon_sym_DOT, + STATE(458), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(285), 13, anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1250), 12, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [14080] = 12, - ACTIONS(321), 1, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [14248] = 12, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1931), 1, + ACTIONS(1958), 1, anon_sym_QMARK, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, STATE(596), 1, + sym_generic_type, + STATE(601), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14129] = 3, + [14297] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1331), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [14327] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 8, + ACTIONS(1271), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -45660,7 +46468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1226), 13, + ACTIONS(1269), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45674,291 +46482,279 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14159] = 3, + [14357] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 8, + ACTIONS(1337), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1339), 13, anon_sym_LPAREN, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1222), 13, + anon_sym_DOT_DOT_DOT, + [14387] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1333), 8, + anon_sym_DOT, 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, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - [14189] = 11, - ACTIONS(321), 1, + ACTIONS(1335), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1037), 1, + anon_sym_DOT_DOT_DOT, + [14417] = 11, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(646), 1, + STATE(636), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(582), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14235] = 11, - ACTIONS(321), 1, + [14463] = 11, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1944), 1, sym_identifier, - STATE(579), 1, + STATE(333), 1, + sym__unannotated_type, + STATE(344), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(358), 1, sym_generic_type, - STATE(647), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(1948), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(1950), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(365), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(1946), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14281] = 11, - ACTIONS(321), 1, + [14509] = 11, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1933), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(646), 1, + STATE(601), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(568), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14327] = 11, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1917), 1, - sym_identifier, - STATE(339), 1, - sym__unannotated_type, - STATE(373), 1, - sym_scoped_type_identifier, - STATE(391), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1921), 2, anon_sym_float, anon_sym_double, - ACTIONS(1923), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(426), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1919), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14373] = 11, - ACTIONS(321), 1, + [14555] = 11, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1125), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(658), 1, + STATE(648), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14419] = 11, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(596), 1, - sym__unannotated_type, + [14601] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(1960), 1, + anon_sym_DOT, + STATE(586), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14465] = 11, - ACTIONS(321), 1, + ACTIONS(1058), 7, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1082), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1037), 1, + anon_sym_DOT_DOT_DOT, + [14637] = 11, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(1962), 1, sym_identifier, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(628), 1, + STATE(636), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(582), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14511] = 3, + [14683] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 7, + ACTIONS(1353), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1535), 13, + ACTIONS(1355), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -45972,141 +46768,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14540] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1559), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1561), 13, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, + [14713] = 11, + ACTIONS(320), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [14569] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1935), 1, - anon_sym_DOT, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1043), 6, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1067), 11, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [14604] = 3, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(666), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1591), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1593), 13, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(597), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14759] = 11, + ACTIONS(320), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [14633] = 13, - ACTIONS(1037), 1, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(639), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(597), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14805] = 14, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1854), 1, + ACTIONS(1890), 1, anon_sym_class, - ACTIONS(1856), 1, + ACTIONS(1892), 1, anon_sym_enum, - ACTIONS(1860), 1, + ACTIONS(1894), 1, + anon_sym_record, + ACTIONS(1896), 1, anon_sym_ATinterface, - ACTIONS(1862), 1, + ACTIONS(1898), 1, anon_sym_interface, - STATE(579), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(621), 1, + STATE(629), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14682] = 6, - ACTIONS(85), 1, + [14857] = 6, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1937), 1, + ACTIONS(1964), 1, anon_sym_DOT, STATE(587), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 6, + ACTIONS(1289), 7, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1406), 11, + ACTIONS(1291), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46118,44 +46906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14717] = 3, + [14893] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1467), 13, + ACTIONS(1275), 8, anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [14746] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1355), 13, + ACTIONS(1273), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46169,69 +46933,46 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14774] = 3, + [14923] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1359), 13, + ACTIONS(1307), 8, + anon_sym_DOT, 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, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - [14802] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1373), 6, + ACTIONS(1309), 12, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1371), 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, - [14830] = 3, + anon_sym_DOT_DOT_DOT, + [14952] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 7, + ACTIONS(1341), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1601), 12, + ACTIONS(1343), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46244,44 +46985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14858] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1390), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1388), 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, - [14886] = 3, + [14981] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1611), 7, + ACTIONS(1365), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1613), 12, + ACTIONS(1367), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46294,19 +47011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14914] = 3, + [15010] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 7, + ACTIONS(1361), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1479), 12, + ACTIONS(1363), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -46319,20 +47037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14942] = 5, - ACTIONS(1941), 1, - anon_sym_QMARK, - ACTIONS(1943), 1, - anon_sym_AT, + [15039] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1939), 13, + ACTIONS(1450), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1448), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46346,52 +47062,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14974] = 12, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(623), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15020] = 3, + [15067] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 6, + ACTIONS(1506), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1367), 13, + ACTIONS(1504), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46405,78 +47087,105 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15048] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1567), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1569), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [15076] = 13, - ACTIONS(282), 1, + [15095] = 13, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1966), 1, sym_identifier, - ACTIONS(1948), 1, + ACTIONS(1968), 1, anon_sym_DOT, - ACTIONS(1952), 1, + ACTIONS(1972), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1954), 1, + ACTIONS(1974), 1, sym_this, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(970), 1, + STATE(968), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(1260), 3, + ACTIONS(1257), 3, anon_sym_AMP, anon_sym_RPAREN, anon_sym_COLON_COLON, - STATE(721), 4, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15123] = 3, + [15143] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1454), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1452), 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, + [15171] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1470), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1468), 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, + [15199] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 7, + ACTIONS(1357), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1406), 11, + ACTIONS(1359), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46488,19 +47197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15150] = 3, + [15227] = 4, + ACTIONS(1964), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1620), 7, - anon_sym_DOT, + ACTIONS(1289), 7, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1622), 11, + ACTIONS(1291), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46512,20 +47223,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15177] = 4, - ACTIONS(1937), 1, - anon_sym_DOT, + [15257] = 5, + ACTIONS(1978), 1, + anon_sym_QMARK, + ACTIONS(1980), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(597), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + ACTIONS(1976), 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, + [15289] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1466), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1464), 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, + [15317] = 12, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1890), 1, + anon_sym_class, + ACTIONS(1896), 1, + anon_sym_ATinterface, + ACTIONS(1898), 1, + anon_sym_interface, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, + sym_generic_type, + STATE(624), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(600), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15363] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 6, + ACTIONS(1289), 8, + anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1406), 11, + ACTIONS(1291), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46537,24 +47334,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15206] = 7, - ACTIONS(282), 1, + [15391] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1264), 9, + ACTIONS(1251), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46564,172 +47361,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [15240] = 10, - ACTIONS(1037), 1, + [15425] = 13, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(1257), 1, + anon_sym_COLON_COLON, + ACTIONS(1771), 1, + anon_sym_LBRACK, + ACTIONS(1983), 1, sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, + ACTIONS(1985), 1, + anon_sym_DOT, + STATE(478), 1, + aux_sym_dimensions_repeat1, STATE(595), 1, + sym_dimensions, + STATE(847), 1, + sym__variable_declarator_id, + STATE(907), 1, + sym_variable_declarator, + STATE(1121), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [15471] = 10, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, sym_generic_type, - STATE(627), 1, + STATE(635), 1, sym__unannotated_type, - STATE(806), 1, + STATE(773), 1, sym_catch_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15280] = 13, - ACTIONS(282), 1, + [15511] = 13, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1260), 1, + ACTIONS(1257), 1, anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(1958), 1, + ACTIONS(1985), 1, anon_sym_DOT, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(791), 1, + STATE(817), 1, sym__variable_declarator_id, - STATE(913), 1, + STATE(907), 1, sym_variable_declarator, - STATE(1126), 1, + STATE(1091), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15325] = 10, - ACTIONS(85), 1, + [15557] = 10, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1960), 1, + ACTIONS(1987), 1, sym_identifier, - STATE(611), 1, - sym_scoped_type_identifier, - STATE(622), 1, + STATE(631), 1, sym_type_arguments, - STATE(637), 1, + STATE(785), 1, + sym_scoped_type_identifier, + STATE(905), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1989), 2, + sym_boolean_type, + sym_void_type, + STATE(1052), 2, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15596] = 12, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(1771), 1, + anon_sym_LBRACK, + ACTIONS(1991), 1, + sym_identifier, + STATE(478), 1, + aux_sym_dimensions_repeat1, + STATE(595), 1, + sym_dimensions, + STATE(802), 1, + sym__method_declarator, + STATE(817), 1, + sym__variable_declarator_id, + STATE(907), 1, + sym_variable_declarator, + STATE(1141), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1993), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [15639] = 9, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, sym_generic_type, + STATE(641), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1962), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(645), 2, + STATE(600), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15364] = 10, - ACTIONS(85), 1, + [15676] = 10, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1964), 1, + ACTIONS(1995), 1, sym_identifier, - STATE(618), 1, + STATE(620), 1, sym_scoped_type_identifier, - STATE(622), 1, + STATE(631), 1, sym_type_arguments, - STATE(629), 1, + STATE(643), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1966), 2, + ACTIONS(1997), 2, sym_boolean_type, sym_void_type, - STATE(642), 2, + STATE(652), 2, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15403] = 9, - ACTIONS(1037), 1, + [15715] = 12, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(1771), 1, + anon_sym_LBRACK, + ACTIONS(1991), 1, sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, + STATE(478), 1, + aux_sym_dimensions_repeat1, STATE(595), 1, + sym_dimensions, + STATE(802), 1, + sym__method_declarator, + STATE(817), 1, + sym__variable_declarator_id, + STATE(907), 1, + sym_variable_declarator, + STATE(1078), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1993), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [15758] = 9, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, + sym_scoped_type_identifier, + STATE(596), 1, sym_generic_type, - STATE(636), 1, + STATE(626), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15440] = 7, - ACTIONS(282), 1, + [15795] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(1260), 8, + ACTIONS(1257), 8, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46738,193 +47659,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [15473] = 13, - ACTIONS(282), 1, + [15828] = 12, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1260), 1, - anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(1991), 1, sym_identifier, - ACTIONS(1958), 1, - anon_sym_DOT, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(776), 1, + STATE(802), 1, + sym__method_declarator, + STATE(817), 1, sym__variable_declarator_id, - STATE(913), 1, + STATE(907), 1, sym_variable_declarator, - STATE(1110), 1, + STATE(1098), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1993), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [15871] = 12, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(1771), 1, + anon_sym_LBRACK, + ACTIONS(1991), 1, + sym_identifier, + STATE(478), 1, + aux_sym_dimensions_repeat1, + STATE(595), 1, + sym_dimensions, + STATE(802), 1, + sym__method_declarator, + STATE(817), 1, + sym__variable_declarator_id, + STATE(907), 1, + sym_variable_declarator, + STATE(1127), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1993), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15518] = 9, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(619), 1, - sym__unannotated_type, + [15914] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(2001), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(1999), 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, - [15555] = 9, - ACTIONS(1037), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, sym_identifier, - STATE(579), 1, + [15939] = 9, + ACTIONS(1125), 1, + sym_identifier, + STATE(584), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(596), 1, sym_generic_type, - STATE(649), 1, + STATE(634), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(600), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15592] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1968), 1, + [15976] = 9, + ACTIONS(1125), 1, sym_identifier, - STATE(622), 1, - sym_type_arguments, - STATE(747), 1, + STATE(584), 1, sym_scoped_type_identifier, - STATE(892), 1, + STATE(596), 1, sym_generic_type, + STATE(645), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1970), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(964), 2, + STATE(600), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15631] = 9, - ACTIONS(1037), 1, + [16013] = 10, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2003), 1, sym_identifier, - STATE(579), 1, + STATE(622), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(631), 1, + sym_type_arguments, + STATE(649), 1, sym_generic_type, - STATE(643), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2005), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, + STATE(650), 2, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15668] = 12, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1972), 1, - sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, - sym_variable_declarator, - STATE(1097), 1, - sym__variable_declarator_list, + [16052] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15710] = 4, - ACTIONS(1976), 1, + ACTIONS(2009), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1745), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1618), 10, + ACTIONS(2007), 13, + anon_sym_extends, + anon_sym_implements, + anon_sym_permits, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -46935,17 +47850,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15736] = 3, + [16077] = 4, + ACTIONS(2011), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1980), 2, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(1978), 13, - anon_sym_extends, - anon_sym_implements, - anon_sym_permits, + ACTIONS(1773), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1633), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -46956,883 +47872,836 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15760] = 12, - ACTIONS(85), 1, + [16103] = 12, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, + ACTIONS(2015), 1, anon_sym_DOT, - STATE(349), 1, + STATE(368), 1, sym_argument_list, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, STATE(587), 1, sym_type_arguments, - STATE(976), 1, + STATE(1002), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, + STATE(656), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15802] = 12, - ACTIONS(282), 1, + [16145] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1257), 1, + anon_sym_COLON_COLON, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1983), 1, sym_identifier, - STATE(473), 1, + ACTIONS(1985), 1, + anon_sym_DOT, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(791), 1, + STATE(1143), 1, sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, - sym_variable_declarator, - STATE(1095), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15844] = 3, + [16185] = 12, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2015), 1, + anon_sym_DOT, + STATE(368), 1, + sym_argument_list, + STATE(478), 1, + aux_sym_dimensions_repeat1, + STATE(587), 1, + sym_type_arguments, + STATE(1002), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1988), 2, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(1986), 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, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [15868] = 12, - ACTIONS(282), 1, + STATE(336), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat1, + STATE(747), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [16227] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1966), 1, sym_identifier, - STATE(473), 1, + ACTIONS(1972), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1974), 1, + sym_this, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(791), 1, + STATE(968), 1, sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, - sym_variable_declarator, - STATE(1065), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15910] = 12, - ACTIONS(282), 1, + [16267] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(2017), 1, sym_identifier, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(791), 1, + STATE(817), 1, sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, + STATE(907), 1, sym_variable_declarator, - STATE(1074), 1, + STATE(1141), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15952] = 12, - ACTIONS(85), 1, + [16307] = 12, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1990), 1, + ACTIONS(2019), 1, anon_sym_DOT, - STATE(347), 1, + STATE(370), 1, sym_argument_list, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(591), 1, + STATE(586), 1, sym_type_arguments, - STATE(977), 1, + STATE(982), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(650), 2, + STATE(337), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [15994] = 12, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(282), 1, + [16349] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1990), 1, - anon_sym_DOT, - STATE(347), 1, - sym_argument_list, - STATE(473), 1, + ACTIONS(1983), 1, + sym_identifier, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(591), 1, - sym_type_arguments, - STATE(977), 1, + STATE(595), 1, sym_dimensions, + STATE(843), 1, + sym__variable_declarator_id, + STATE(907), 1, + sym_variable_declarator, + STATE(1134), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(327), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16036] = 12, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(282), 1, + [16389] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, + ACTIONS(2021), 1, + sym_identifier, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(587), 1, - sym_type_arguments, - STATE(976), 1, + STATE(595), 1, sym_dimensions, + STATE(817), 1, + sym__variable_declarator_id, + STATE(907), 1, + sym_variable_declarator, + STATE(1078), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16078] = 11, - ACTIONS(282), 1, + [16429] = 12, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, - sym_identifier, - STATE(473), 1, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(370), 1, + sym_argument_list, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(586), 1, + sym_type_arguments, + STATE(982), 1, sym_dimensions, - STATE(839), 1, - sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1123), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + STATE(654), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat1, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16117] = 11, - ACTIONS(282), 1, + [16471] = 11, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1260), 1, - anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(1958), 1, - anon_sym_DOT, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(1111), 1, + STATE(817), 1, sym__variable_declarator_id, + STATE(907), 1, + sym_variable_declarator, + STATE(1146), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16156] = 11, - ACTIONS(282), 1, + [16511] = 10, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(1972), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1983), 1, sym_identifier, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(791), 1, + STATE(968), 1, sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1072), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16195] = 8, - ACTIONS(1992), 1, + [16548] = 8, + ACTIONS(2023), 1, sym_identifier, - STATE(760), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(863), 1, + STATE(952), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1994), 2, + ACTIONS(2025), 2, sym_boolean_type, sym_void_type, - STATE(978), 2, + STATE(980), 2, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16228] = 11, - ACTIONS(282), 1, + [16581] = 10, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1078), 1, + anon_sym_DOT, + ACTIONS(1082), 1, anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1996), 1, - sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1095), 1, - sym__variable_declarator_list, + STATE(425), 1, + sym_argument_list, + STATE(586), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1075), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(2027), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1058), 4, anon_sym_open, anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16267] = 11, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, + anon_sym_record, sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1065), 1, - sym__variable_declarator_list, + [16618] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2029), 1, + anon_sym_DOT, + STATE(587), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1289), 5, anon_sym_open, anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16306] = 11, - ACTIONS(282), 1, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1291), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_AT, - ACTIONS(1743), 1, + anon_sym_DOT_DOT_DOT, + [16647] = 10, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1946), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2032), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1954), 1, - sym_this, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(970), 1, + STATE(994), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16345] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2000), 1, - anon_sym_DOT, - STATE(587), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1404), 4, - anon_sym_open, - anon_sym_module, - sym_this, - sym_identifier, - ACTIONS(1406), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16373] = 9, - ACTIONS(282), 1, + [16684] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2036), 1, anon_sym_PIPE, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(750), 1, + STATE(741), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 3, + ACTIONS(2034), 4, anon_sym_open, anon_sym_module, + anon_sym_record, sym_identifier, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16407] = 9, - ACTIONS(282), 1, + [16719] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2007), 1, + ACTIONS(2038), 1, sym_identifier, - ACTIONS(2009), 1, - sym_this, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, + STATE(804), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1264), 3, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - STATE(721), 4, + ACTIONS(2040), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16441] = 10, - ACTIONS(282), 1, + [16753] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(662), 1, + sym_formal_parameters, + STATE(777), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(2044), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16477] = 9, - ACTIONS(2011), 1, - anon_sym_RBRACE, - ACTIONS(2013), 1, - anon_sym_requires, - ACTIONS(2015), 1, - anon_sym_exports, - ACTIONS(2017), 1, - anon_sym_opens, - ACTIONS(2019), 1, - anon_sym_uses, - ACTIONS(2021), 1, - anon_sym_provides, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(640), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(701), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [16511] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, + [16787] = 9, + ACTIONS(287), 1, anon_sym_AT, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, + ACTIONS(1771), 1, + anon_sym_LBRACK, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(478), 1, + aux_sym_dimensions_repeat1, + STATE(661), 1, + sym_formal_parameters, + STATE(772), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(2023), 2, - anon_sym_RPAREN, + ACTIONS(2046), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(1043), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [16547] = 10, - ACTIONS(282), 1, + STATE(702), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [16821] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1952), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1956), 1, + ACTIONS(2038), 1, sym_identifier, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, - STATE(970), 1, - sym__variable_declarator_id, + STATE(800), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2040), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16583] = 9, - ACTIONS(2025), 1, - anon_sym_RBRACE, - ACTIONS(2027), 1, - anon_sym_requires, - ACTIONS(2030), 1, - anon_sym_exports, - ACTIONS(2033), 1, - anon_sym_opens, - ACTIONS(2036), 1, - anon_sym_uses, - ACTIONS(2039), 1, - anon_sym_provides, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(633), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(701), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [16617] = 9, - ACTIONS(282), 1, + [16855] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(653), 1, - sym_formal_parameters, - STATE(768), 1, + STATE(772), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16651] = 9, - ACTIONS(282), 1, + ACTIONS(2046), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [16885] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(473), 1, + ACTIONS(2050), 1, + anon_sym_PIPE, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(654), 1, - sym_formal_parameters, - STATE(766), 1, + STATE(595), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(721), 4, + ACTIONS(2048), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16685] = 10, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1956), 1, - sym_identifier, - ACTIONS(2048), 1, - anon_sym_DOT_DOT_DOT, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(1055), 1, - sym__variable_declarator_id, + [16917] = 9, + ACTIONS(2052), 1, + anon_sym_RBRACE, + ACTIONS(2054), 1, + anon_sym_requires, + ACTIONS(2057), 1, + anon_sym_exports, + ACTIONS(2060), 1, + anon_sym_opens, + ACTIONS(2063), 1, + anon_sym_uses, + ACTIONS(2066), 1, + anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16721] = 10, - ACTIONS(282), 1, + STATE(642), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(730), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [16951] = 10, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, + ACTIONS(2015), 1, anon_sym_DOT, - STATE(349), 1, + STATE(368), 1, sym_argument_list, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(1002), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, + STATE(656), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16757] = 7, - ACTIONS(282), 1, + [16987] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(766), 1, + STATE(777), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(2046), 5, + ACTIONS(2044), 5, anon_sym_RPAREN, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_SEMI, - [16787] = 7, - ACTIONS(282), 1, + [17017] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - STATE(473), 1, + ACTIONS(1983), 1, + sym_identifier, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(595), 1, sym_dimensions, + STATE(1132), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - ACTIONS(2044), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [16817] = 9, - ACTIONS(2013), 1, + [17051] = 9, + ACTIONS(2069), 1, + anon_sym_RBRACE, + ACTIONS(2071), 1, anon_sym_requires, - ACTIONS(2015), 1, + ACTIONS(2073), 1, anon_sym_exports, - ACTIONS(2017), 1, + ACTIONS(2075), 1, anon_sym_opens, - ACTIONS(2019), 1, + ACTIONS(2077), 1, anon_sym_uses, - ACTIONS(2021), 1, + ACTIONS(2079), 1, anon_sym_provides, - ACTIONS(2050), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(647), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(730), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [17085] = 9, + ACTIONS(2071), 1, + anon_sym_requires, + ACTIONS(2073), 1, + anon_sym_exports, + ACTIONS(2075), 1, + anon_sym_opens, + ACTIONS(2077), 1, + anon_sym_uses, + ACTIONS(2079), 1, + anon_sym_provides, + ACTIONS(2081), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(633), 2, + STATE(642), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(701), 5, + STATE(730), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [16851] = 8, - ACTIONS(282), 1, + [17119] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1982), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - STATE(413), 1, - sym_dimensions, - STATE(473), 1, + ACTIONS(2083), 1, + sym_identifier, + ACTIONS(2085), 1, + sym_this, + STATE(478), 1, aux_sym_dimensions_repeat1, + STATE(595), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1212), 2, - anon_sym_DOT, + ACTIONS(1251), 3, + anon_sym_AMP, + anon_sym_RPAREN, anon_sym_COLON_COLON, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16882] = 9, - ACTIONS(282), 1, + [17153] = 10, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - STATE(349), 1, + ACTIONS(2015), 1, + anon_sym_DOT, + STATE(368), 1, sym_argument_list, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(1002), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, + STATE(336), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16915] = 8, - ACTIONS(282), 1, + [17189] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(2054), 1, - anon_sym_PIPE, - STATE(473), 1, + STATE(368), 1, + sym_argument_list, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(1002), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - STATE(721), 4, + STATE(336), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat1, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16946] = 8, - ACTIONS(282), 1, + [17222] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(777), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, @@ -47841,93 +48710,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [16977] = 9, - ACTIONS(282), 1, + [17253] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - STATE(349), 1, + STATE(368), 1, sym_argument_list, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(1002), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, + STATE(656), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17010] = 9, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(2058), 1, - sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(831), 1, - sym__method_declarator, + [17286] = 4, + ACTIONS(2029), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 2, + ACTIONS(1289), 5, anon_sym_open, anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17043] = 9, - ACTIONS(282), 1, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1291), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [17309] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(2058), 1, - sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(423), 1, sym_dimensions, - STATE(822), 1, - sym__method_declarator, + STATE(478), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + ACTIONS(1267), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(342), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat1, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17076] = 8, - ACTIONS(282), 1, + [17340] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2089), 1, anon_sym_LPAREN, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(777), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, @@ -47936,385 +48799,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17107] = 9, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1956), 1, - sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(1076), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17140] = 8, - ACTIONS(282), 1, + [17371] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1982), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - STATE(385), 1, + STATE(413), 1, sym_dimensions, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1218), 2, + ACTIONS(1261), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(333), 2, + STATE(342), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + STATE(747), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17171] = 9, - ACTIONS(282), 1, + [17402] = 8, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(586), 1, + sym_type_arguments, + STATE(1017), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1082), 2, + anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1058), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [17432] = 8, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(586), 1, + sym_type_arguments, + STATE(1025), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1082), 2, anon_sym_LBRACK, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2066), 1, - anon_sym_SEMI, - STATE(473), 1, + anon_sym_AT, + ACTIONS(1058), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [17462] = 8, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(1771), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_DOT, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(947), 1, + STATE(777), 1, sym_dimensions, - STATE(1140), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + ACTIONS(2044), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17203] = 8, - ACTIONS(282), 1, + [17492] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2068), 1, - anon_sym_DOT, - STATE(473), 1, + ACTIONS(2093), 1, + anon_sym_default, + ACTIONS(2095), 1, + anon_sym_SEMI, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(959), 1, sym_dimensions, + STATE(1157), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17233] = 7, - ACTIONS(282), 1, + [17524] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(866), 1, + STATE(864), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 3, + ACTIONS(2097), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_throws, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17261] = 7, - ACTIONS(282), 1, + [17552] = 7, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, STATE(865), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2072), 3, + ACTIONS(2099), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_throws, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17289] = 9, - ACTIONS(282), 1, + [17580] = 9, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, + ACTIONS(2093), 1, anon_sym_default, - ACTIONS(2074), 1, + ACTIONS(2101), 1, anon_sym_SEMI, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(890), 1, + STATE(925), 1, sym_dimensions, - STATE(1113), 1, + STATE(1115), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17321] = 4, - ACTIONS(2000), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1404), 4, - anon_sym_open, - anon_sym_module, - sym_this, - sym_identifier, - ACTIONS(1406), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [17343] = 8, - ACTIONS(282), 1, + [17612] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1260), 1, + ACTIONS(1257), 1, anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1958), 1, + ACTIONS(1985), 1, anon_sym_DOT, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17372] = 8, - ACTIONS(282), 1, + [17641] = 11, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, + anon_sym_extends, + ACTIONS(2105), 1, + anon_sym_implements, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(91), 1, + sym_class_body, + STATE(675), 1, + sym_type_parameters, + STATE(756), 1, + sym_superclass, + STATE(849), 1, + sym_super_interfaces, + STATE(972), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [17676] = 8, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(2007), 1, + ACTIONS(2083), 1, sym_identifier, - ACTIONS(2009), 1, + ACTIONS(2085), 1, sym_this, - STATE(473), 1, + STATE(478), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(595), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(702), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17401] = 8, - ACTIONS(85), 1, + [17705] = 9, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1990), 1, - anon_sym_DOT, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(591), 1, + ACTIONS(2109), 1, + sym_identifier, + ACTIONS(2111), 1, + anon_sym_new, + ACTIONS(2115), 1, + sym_this, + ACTIONS(2117), 1, + sym_super, + STATE(428), 1, + sym__unqualified_object_creation_expression, + STATE(820), 1, sym_type_arguments, - STATE(999), 1, - sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1043), 3, + ACTIONS(2113), 3, anon_sym_open, anon_sym_module, - sym_identifier, - [17430] = 8, - ACTIONS(85), 1, + anon_sym_record, + [17736] = 9, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1990), 1, - anon_sym_DOT, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(591), 1, + ACTIONS(2109), 1, + sym_identifier, + ACTIONS(2111), 1, + anon_sym_new, + ACTIONS(2115), 1, + sym_this, + ACTIONS(2119), 1, + sym_super, + STATE(428), 1, + sym__unqualified_object_creation_expression, + STATE(793), 1, sym_type_arguments, - STATE(1036), 1, - sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1043), 3, + ACTIONS(2113), 3, anon_sym_open, anon_sym_module, - sym_identifier, - [17459] = 11, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_extends, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(134), 1, - sym_class_body, - STATE(672), 1, - sym_type_parameters, - STATE(714), 1, - sym_superclass, - STATE(787), 1, - sym_super_interfaces, - STATE(965), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [17494] = 11, - ACTIONS(1017), 1, + anon_sym_record, + [17767] = 11, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(1284), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(2076), 1, + ACTIONS(2103), 1, anon_sym_extends, - ACTIONS(2078), 1, + ACTIONS(2105), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - STATE(104), 1, + STATE(97), 1, sym_class_body, - STATE(667), 1, + STATE(678), 1, sym_type_parameters, - STATE(708), 1, + STATE(694), 1, sym_superclass, - STATE(828), 1, + STATE(838), 1, sym_super_interfaces, - STATE(980), 1, + STATE(1058), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17529] = 9, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2082), 1, + [17802] = 7, + ACTIONS(2121), 1, sym_identifier, - ACTIONS(2084), 1, - anon_sym_new, - ACTIONS(2088), 1, - sym_this, - ACTIONS(2090), 1, - sym_super, - STATE(394), 1, - sym__unqualified_object_creation_expression, - STATE(778), 1, - sym_type_arguments, + STATE(673), 1, + aux_sym_requires_module_directive_repeat1, + STATE(708), 1, + sym_requires_modifier, + STATE(962), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 2, + ACTIONS(2125), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2123), 3, anon_sym_open, anon_sym_module, - [17559] = 8, - ACTIONS(2092), 1, + anon_sym_record, + [17828] = 8, + ACTIONS(2127), 1, anon_sym_RBRACE, - ACTIONS(2094), 1, + ACTIONS(2129), 1, anon_sym_case, - ACTIONS(2096), 1, + ACTIONS(2131), 1, anon_sym_default, STATE(3), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1004), 1, + STATE(973), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(673), 2, + STATE(683), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - STATE(706), 2, + STATE(758), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [17587] = 9, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2082), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_new, - ACTIONS(2088), 1, - sym_this, - ACTIONS(2098), 1, - sym_super, - STATE(394), 1, - sym__unqualified_object_creation_expression, - STATE(929), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 2, - anon_sym_open, - anon_sym_module, - [17617] = 2, + [17856] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1260), 9, + ACTIONS(1257), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -48324,4587 +49168,4666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [17633] = 9, - ACTIONS(1284), 1, + [17872] = 9, + ACTIONS(2133), 1, + sym_identifier, + ACTIONS(2135), 1, + anon_sym_open, + ACTIONS(2137), 1, + anon_sym_module, + ACTIONS(2139), 1, + anon_sym_record, + STATE(674), 1, + aux_sym_requires_module_directive_repeat1, + STATE(708), 1, + sym_requires_modifier, + STATE(981), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2125), 2, + anon_sym_transitive, + anon_sym_static, + [17902] = 5, + STATE(674), 1, + aux_sym_requires_module_directive_repeat1, + STATE(708), 1, + sym_requires_modifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2143), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2141), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [17923] = 9, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(2076), 1, + ACTIONS(2103), 1, anon_sym_extends, - ACTIONS(2078), 1, + ACTIONS(2105), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - STATE(113), 1, + STATE(128), 1, sym_class_body, - STATE(696), 1, + STATE(712), 1, sym_superclass, - STATE(841), 1, + STATE(830), 1, sym_super_interfaces, - STATE(1026), 1, + STATE(983), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17662] = 7, - ACTIONS(2100), 1, - sym_identifier, - STATE(671), 1, - aux_sym_requires_module_directive_repeat1, - STATE(762), 1, - sym_requires_modifier, - STATE(1047), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2102), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(2104), 2, - anon_sym_transitive, - anon_sym_static, - [17687] = 9, - ACTIONS(1017), 1, + [17952] = 9, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - ACTIONS(2106), 1, + ACTIONS(2146), 1, anon_sym_extends, - ACTIONS(2108), 1, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(129), 1, + STATE(84), 1, sym_interface_body, - STATE(699), 1, + STATE(743), 1, sym_type_parameters, - STATE(782), 1, + STATE(848), 1, sym_extends_interfaces, - STATE(969), 1, + STATE(1071), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17716] = 9, - ACTIONS(1017), 1, + [17981] = 9, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - ACTIONS(2106), 1, + ACTIONS(2146), 1, anon_sym_extends, - ACTIONS(2108), 1, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(73), 1, + STATE(137), 1, sym_interface_body, - STATE(738), 1, + STATE(700), 1, sym_type_parameters, - STATE(803), 1, + STATE(818), 1, sym_extends_interfaces, - STATE(1020), 1, + STATE(1057), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17745] = 8, - ACTIONS(2110), 1, - sym_identifier, - ACTIONS(2112), 1, - anon_sym_open, - ACTIONS(2114), 1, - anon_sym_module, - STATE(676), 1, - aux_sym_requires_module_directive_repeat1, - STATE(762), 1, - sym_requires_modifier, - STATE(1010), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2104), 2, - anon_sym_transitive, - anon_sym_static, - [17772] = 9, - ACTIONS(1284), 1, + [18010] = 9, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(2076), 1, + ACTIONS(2103), 1, anon_sym_extends, - ACTIONS(2078), 1, + ACTIONS(2105), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - STATE(86), 1, + STATE(102), 1, sym_class_body, - STATE(697), 1, + STATE(695), 1, sym_superclass, - STATE(796), 1, + STATE(835), 1, sym_super_interfaces, - STATE(1050), 1, + STATE(1055), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17801] = 7, - ACTIONS(2096), 1, - anon_sym_default, - ACTIONS(2116), 1, + [18039] = 7, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2109), 1, + sym_identifier, + ACTIONS(2115), 1, + sym_this, + ACTIONS(2117), 1, + sym_super, + STATE(820), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2113), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [18064] = 5, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(2150), 1, + sym_identifier, + STATE(890), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(699), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [18084] = 5, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(2150), 1, + sym_identifier, + STATE(1032), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(699), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [18104] = 7, + ACTIONS(2152), 1, anon_sym_RBRACE, - ACTIONS(2118), 1, + ACTIONS(2154), 1, anon_sym_case, + ACTIONS(2157), 1, + anon_sym_default, STATE(3), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1084), 1, + STATE(1155), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(680), 2, + STATE(682), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [17825] = 6, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(756), 1, - sym_argument_list, - STATE(895), 1, - sym_class_body, + [18128] = 7, + ACTIONS(2131), 1, + anon_sym_default, + ACTIONS(2160), 1, + anon_sym_RBRACE, + ACTIONS(2162), 1, + anon_sym_case, + STATE(3), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1155), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2120), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [17847] = 7, - ACTIONS(85), 1, + STATE(682), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [18152] = 6, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(2082), 1, + ACTIONS(2164), 1, sym_identifier, - ACTIONS(2088), 1, + ACTIONS(2168), 1, sym_this, - ACTIONS(2098), 1, - sym_super, - STATE(929), 1, + STATE(836), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 2, + ACTIONS(2166), 3, anon_sym_open, anon_sym_module, - [17871] = 5, - STATE(676), 1, - aux_sym_requires_module_directive_repeat1, - STATE(762), 1, - sym_requires_modifier, + anon_sym_record, + [18174] = 6, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(797), 1, + sym_argument_list, + STATE(938), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2124), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2122), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [17891] = 6, - ACTIONS(1045), 1, + ACTIONS(2170), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [18196] = 6, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1284), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(764), 1, + STATE(762), 1, sym_argument_list, - STATE(869), 1, + STATE(900), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [17913] = 5, - ACTIONS(321), 1, + ACTIONS(2172), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [18218] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2174), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18231] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2176), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18244] = 5, + ACTIONS(1983), 1, + sym_identifier, + STATE(817), 1, + sym__variable_declarator_id, + STATE(1072), 1, + sym_variable_declarator, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [18263] = 4, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(2129), 1, - sym_identifier, - STATE(1042), 1, - sym_type_parameter, + ACTIONS(2178), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(740), 4, + STATE(711), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17933] = 5, - ACTIONS(321), 1, + [18280] = 4, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(2129), 1, + ACTIONS(2180), 1, sym_identifier, - STATE(851), 1, - sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(740), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [17953] = 7, - ACTIONS(2131), 1, - anon_sym_RBRACE, - ACTIONS(2133), 1, - anon_sym_case, - ACTIONS(2136), 1, - anon_sym_default, - STATE(3), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1084), 1, - sym_switch_label, + [18297] = 5, + ACTIONS(1983), 1, + sym_identifier, + STATE(817), 1, + sym__variable_declarator_id, + STATE(1042), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(680), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [17977] = 2, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [18316] = 4, + ACTIONS(2182), 1, + anon_sym_PIPE, + STATE(693), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [17990] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2141), 1, + ACTIONS(2048), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, sym_identifier, + [18333] = 7, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2105), 1, + anon_sym_implements, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(103), 1, + sym_class_body, + STATE(831), 1, + sym_super_interfaces, + STATE(1054), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [18356] = 7, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2105), 1, + anon_sym_implements, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(123), 1, + sym_class_body, + STATE(799), 1, + sym_super_interfaces, + STATE(998), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [18379] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2185), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [18392] = 4, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(2187), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(711), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [18007] = 4, - ACTIONS(321), 1, + [18409] = 4, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(2143), 1, + ACTIONS(2189), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(717), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [18024] = 2, + [18426] = 4, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(2191), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18037] = 2, + STATE(597), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [18443] = 7, + ACTIONS(2107), 1, + anon_sym_permits, + ACTIONS(2146), 1, + anon_sym_extends, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(116), 1, + sym_interface_body, + STATE(819), 1, + sym_extends_interfaces, + STATE(1038), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2145), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18050] = 6, - ACTIONS(2147), 1, + [18466] = 6, + ACTIONS(2193), 1, anon_sym_RBRACE, - ACTIONS(2149), 1, + ACTIONS(2195), 1, anon_sym_case, - ACTIONS(2152), 1, + ACTIONS(2198), 1, anon_sym_default, - STATE(1083), 1, + STATE(1153), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(686), 2, + STATE(701), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [18071] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2145), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18084] = 2, + [18487] = 4, + ACTIONS(287), 1, + anon_sym_AT, + ACTIONS(2201), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18097] = 4, - ACTIONS(321), 1, + STATE(711), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [18504] = 4, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(2157), 1, + ACTIONS(2203), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(722), 4, + STATE(691), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [18114] = 2, + [18521] = 4, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(2205), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18127] = 4, - ACTIONS(282), 1, + STATE(597), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [18538] = 4, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(2161), 1, - anon_sym_LBRACK, + ACTIONS(2207), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [18144] = 2, + [18555] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18157] = 2, + ACTIONS(2209), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [18568] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18170] = 2, + ACTIONS(2211), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [18581] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18183] = 2, + ACTIONS(2213), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, + sym_identifier, + [18594] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18196] = 7, - ACTIONS(1284), 1, + ACTIONS(2215), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, + sym_identifier, + [18607] = 5, + ACTIONS(1983), 1, + sym_identifier, + STATE(817), 1, + sym__variable_declarator_id, + STATE(979), 1, + sym_variable_declarator, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [18626] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(711), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [18643] = 7, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(2078), 1, + ACTIONS(2105), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - STATE(115), 1, + STATE(101), 1, sym_class_body, - STATE(836), 1, + STATE(832), 1, sym_super_interfaces, - STATE(1006), 1, + STATE(1003), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18219] = 7, - ACTIONS(1284), 1, + [18666] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2220), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(87), 1, - sym_class_body, - STATE(795), 1, - sym_super_interfaces, - STATE(995), 1, - sym_permits, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [18679] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18242] = 2, + ACTIONS(2222), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18692] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 6, + ACTIONS(2224), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18255] = 7, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2106), 1, - anon_sym_extends, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(75), 1, - sym_interface_body, - STATE(842), 1, - sym_extends_interfaces, - STATE(1046), 1, - sym_permits, + [18705] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18278] = 4, - ACTIONS(321), 1, + ACTIONS(2226), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18718] = 4, + ACTIONS(320), 1, anon_sym_AT, - ACTIONS(2173), 1, + ACTIONS(2228), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [18295] = 2, + [18735] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 6, + ACTIONS(2230), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18308] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2177), 1, - anon_sym_LBRACK, + [18748] = 5, + ACTIONS(2232), 1, + sym_identifier, + ACTIONS(2236), 1, + anon_sym_static, + STATE(1059), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18325] = 2, + ACTIONS(2234), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [18767] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2179), 6, + ACTIONS(2238), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18338] = 2, + [18780] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 6, + ACTIONS(2240), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18351] = 2, + [18793] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 6, + ACTIONS(2242), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18364] = 6, - ACTIONS(2094), 1, - anon_sym_case, - ACTIONS(2096), 1, - anon_sym_default, - ACTIONS(2116), 1, - anon_sym_RBRACE, - STATE(1083), 1, - sym_switch_label, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(686), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [18385] = 2, + [18806] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 6, + ACTIONS(2244), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18398] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(116), 1, - sym_class_body, - STATE(840), 1, - sym_super_interfaces, - STATE(1021), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18421] = 2, + [18819] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 6, + ACTIONS(2246), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18434] = 2, + [18832] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 6, + ACTIONS(2248), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18447] = 2, + [18845] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2250), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18460] = 2, + [18858] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 6, + ACTIONS(2252), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18473] = 2, + [18871] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 6, + ACTIONS(2254), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18486] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(82), 1, - sym_class_body, - STATE(779), 1, - sym_super_interfaces, - STATE(1049), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18509] = 2, + [18884] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 6, + ACTIONS(2256), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18522] = 2, + [18897] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 6, + ACTIONS(2258), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18535] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2201), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(683), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18552] = 2, + [18910] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 6, + ACTIONS(2260), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18565] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2205), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18582] = 2, + [18923] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 6, + ACTIONS(2262), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18595] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2209), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18612] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2211), 1, - sym_identifier, + [18936] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18629] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2213), 1, - sym_identifier, - ACTIONS(2217), 1, - sym_this, - STATE(878), 1, - sym_type_arguments, + ACTIONS(2264), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18949] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 2, - anon_sym_open, - anon_sym_module, - [18650] = 2, + ACTIONS(2266), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [18962] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 6, + ACTIONS(2268), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18663] = 2, + [18975] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 6, + ACTIONS(2270), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18676] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2223), 1, - sym_identifier, + [18988] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(682), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18693] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2225), 1, - anon_sym_LBRACK, + ACTIONS(2272), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19001] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18710] = 2, + ACTIONS(2274), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19014] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2227), 6, + ACTIONS(2276), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18723] = 2, + [19027] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 6, + ACTIONS(2278), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18736] = 2, + [19040] = 4, + ACTIONS(2036), 1, + anon_sym_PIPE, + STATE(693), 1, + aux_sym_catch_type_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2280), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19057] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 6, + ACTIONS(2282), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18749] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2233), 1, - sym_identifier, + [19070] = 7, + ACTIONS(2107), 1, + anon_sym_permits, + ACTIONS(2146), 1, + anon_sym_extends, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(113), 1, + sym_interface_body, + STATE(821), 1, + sym_extends_interfaces, + STATE(1043), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(700), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18766] = 2, + [19093] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 6, + ACTIONS(2284), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18779] = 2, + [19106] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2237), 6, + ACTIONS(2286), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18792] = 4, - ACTIONS(1941), 1, - anon_sym_LBRACK, - ACTIONS(2239), 1, + [19119] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2288), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19132] = 4, + ACTIONS(287), 1, anon_sym_AT, + ACTIONS(2290), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, + STATE(711), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [18809] = 2, + [19149] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 6, + ACTIONS(2292), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18822] = 2, + [19162] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 6, + ACTIONS(2294), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18835] = 2, + [19175] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 6, + ACTIONS(2296), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18848] = 7, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2106), 1, - anon_sym_extends, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(119), 1, - sym_interface_body, - STATE(814), 1, - sym_extends_interfaces, - STATE(957), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18871] = 2, + [19188] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 6, + ACTIONS(2298), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18884] = 4, - ACTIONS(321), 1, + [19201] = 4, + ACTIONS(287), 1, anon_sym_AT, - ACTIONS(2250), 1, - sym_identifier, + ACTIONS(2300), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(711), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_dimensions_expr_repeat1, - [18901] = 2, + [19218] = 4, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(2302), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18914] = 2, + STATE(705), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [19235] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 6, + ACTIONS(2246), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18927] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2256), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18940] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2258), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18953] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2260), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18966] = 6, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(1875), 1, - anon_sym_RBRACE, - ACTIONS(2262), 1, - anon_sym_COMMA, - STATE(783), 1, - aux_sym_enum_body_repeat1, - STATE(1094), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18986] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(587), 1, - sym_type_arguments, + [19248] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19006] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1990), 1, - anon_sym_DOT, - STATE(347), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, + ACTIONS(2246), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19261] = 7, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2105), 1, + anon_sym_implements, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(130), 1, + sym_class_body, + STATE(823), 1, + sym_super_interfaces, + STATE(965), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19026] = 5, - ACTIONS(2264), 1, + [19284] = 4, + ACTIONS(320), 1, + anon_sym_AT, + ACTIONS(2304), 1, sym_identifier, - ACTIONS(2268), 1, - anon_sym_static, - STATE(1001), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 2, - anon_sym_open, - anon_sym_module, - [19044] = 4, - ACTIONS(2005), 1, - anon_sym_PIPE, - STATE(759), 1, - aux_sym_catch_type_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2270), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [19060] = 4, - STATE(1032), 1, - sym__wildcard_bounds, + STATE(704), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_dimensions_expr_repeat1, + [19301] = 6, + ACTIONS(2129), 1, + anon_sym_case, + ACTIONS(2131), 1, + anon_sym_default, + ACTIONS(2160), 1, + anon_sym_RBRACE, + STATE(1153), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 2, - anon_sym_GT, - anon_sym_COMMA, - ACTIONS(2274), 2, - anon_sym_extends, - sym_super, - [19076] = 3, + STATE(701), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [19322] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1049), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [19090] = 4, - ACTIONS(1045), 1, + ACTIONS(2260), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [19335] = 4, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(402), 1, + STATE(415), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1147), 3, + ACTIONS(1174), 3, anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [19106] = 4, - ACTIONS(2276), 1, - anon_sym_COMMA, - STATE(754), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2279), 3, - anon_sym_LBRACE, + [19351] = 6, + ACTIONS(1847), 1, anon_sym_SEMI, - anon_sym_permits, - [19122] = 5, - ACTIONS(1956), 1, - sym_identifier, - STATE(791), 1, - sym__variable_declarator_id, - STATE(1057), 1, - sym_variable_declarator, + ACTIONS(2306), 1, + anon_sym_COMMA, + ACTIONS(2308), 1, + anon_sym_RBRACE, + STATE(763), 1, + aux_sym_enum_body_repeat1, + STATE(1084), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - [19140] = 4, - ACTIONS(1284), 1, + [19371] = 4, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(883), 1, + STATE(944), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 3, + ACTIONS(2310), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [19156] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2283), 5, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - sym_identifier, - [19168] = 5, - ACTIONS(1956), 1, - sym_identifier, - STATE(791), 1, - sym__variable_declarator_id, - STATE(973), 1, - sym_variable_declarator, + [19387] = 6, + ACTIONS(1847), 1, + anon_sym_SEMI, + ACTIONS(1882), 1, + anon_sym_RBRACE, + ACTIONS(2312), 1, + anon_sym_COMMA, + STATE(801), 1, + aux_sym_enum_body_repeat1, + STATE(1142), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - [19186] = 4, - ACTIONS(2285), 1, - anon_sym_PIPE, - STATE(759), 1, - aux_sym_catch_type_repeat1, + [19407] = 5, + ACTIONS(2314), 1, + anon_sym_catch, + ACTIONS(2316), 1, + anon_sym_finally, + STATE(193), 1, + sym_finally_clause, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [19202] = 6, - ACTIONS(85), 1, + STATE(57), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [19425] = 6, + ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1045), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1984), 1, + ACTIONS(2015), 1, anon_sym_DOT, - STATE(345), 1, + STATE(372), 1, sym_argument_list, STATE(587), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19222] = 6, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(2288), 1, - anon_sym_COMMA, - ACTIONS(2290), 1, - anon_sym_RBRACE, - STATE(746), 1, - aux_sym_enum_body_repeat1, - STATE(1067), 1, - sym_enum_body_declarations, + [19445] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(369), 1, + sym_argument_list, + STATE(586), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19242] = 2, + [19465] = 4, + ACTIONS(2318), 1, + sym_identifier, + STATE(355), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 5, + ACTIONS(2320), 3, anon_sym_open, anon_sym_module, - anon_sym_transitive, - anon_sym_static, + anon_sym_record, + [19481] = 4, + ACTIONS(2322), 1, sym_identifier, - [19254] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1990), 1, - anon_sym_DOT, - STATE(346), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [19274] = 4, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_class_body, + STATE(921), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19290] = 4, - STATE(992), 1, - sym__wildcard_bounds, + ACTIONS(2324), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19497] = 4, + ACTIONS(2326), 1, + sym_identifier, + STATE(1009), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 2, - anon_sym_extends, - sym_super, - ACTIONS(2296), 2, - anon_sym_GT, - anon_sym_COMMA, - [19306] = 2, + ACTIONS(2328), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19513] = 4, + ACTIONS(2330), 1, + sym_identifier, + STATE(888), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [19318] = 5, - ACTIONS(2300), 1, - anon_sym_catch, - ACTIONS(2302), 1, - anon_sym_finally, - STATE(204), 1, - sym_finally_clause, + ACTIONS(2332), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19529] = 4, + ACTIONS(2334), 1, + sym_identifier, + STATE(928), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(58), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [19336] = 2, + ACTIONS(2336), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19545] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 5, + ACTIONS(2338), 5, anon_sym_RPAREN, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_SEMI, - [19348] = 5, - ACTIONS(1956), 1, + [19557] = 4, + ACTIONS(1983), 1, sym_identifier, - STATE(791), 1, + STATE(1137), 1, sym__variable_declarator_id, - STATE(971), 1, - sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(1970), 3, anon_sym_open, anon_sym_module, - [19366] = 4, - ACTIONS(1775), 1, - anon_sym_COMMA, - STATE(847), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2306), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [19381] = 4, - ACTIONS(2308), 1, + anon_sym_record, + [19573] = 4, + ACTIONS(2340), 1, sym_identifier, - STATE(810), 1, + STATE(891), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 2, + ACTIONS(2342), 3, anon_sym_open, anon_sym_module, - [19396] = 4, - ACTIONS(2312), 1, + anon_sym_record, + [19589] = 4, + ACTIONS(2344), 1, sym_identifier, - STATE(812), 1, + STATE(1028), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 2, + ACTIONS(2346), 3, anon_sym_open, anon_sym_module, - [19411] = 4, - ACTIONS(2316), 1, + anon_sym_record, + [19605] = 4, + ACTIONS(2348), 1, sym_identifier, - STATE(817), 1, + STATE(1037), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 2, + ACTIONS(2350), 3, anon_sym_open, anon_sym_module, - [19426] = 4, - ACTIONS(2320), 1, + anon_sym_record, + [19621] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2352), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19633] = 4, + ACTIONS(2354), 1, sym_identifier, - STATE(805), 1, + STATE(852), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 2, + ACTIONS(2356), 3, anon_sym_open, anon_sym_module, - [19441] = 4, - ACTIONS(2324), 1, + anon_sym_record, + [19649] = 4, + ACTIONS(2358), 1, sym_identifier, - STATE(800), 1, + STATE(1062), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 2, + ACTIONS(2360), 3, anon_sym_open, anon_sym_module, - [19456] = 4, - ACTIONS(2328), 1, - anon_sym_EQ, - ACTIONS(2332), 1, - anon_sym_COLON, + anon_sym_record, + [19665] = 4, + ACTIONS(2362), 1, + sym_identifier, + STATE(854), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 2, + ACTIONS(2364), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19681] = 4, + ACTIONS(2366), 1, anon_sym_COMMA, - anon_sym_SEMI, - [19471] = 5, - ACTIONS(2334), 1, - anon_sym_LBRACE, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(379), 1, - sym_constructor_body, - STATE(1002), 1, - sym_throws, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [19488] = 4, - ACTIONS(2338), 1, - sym_identifier, - ACTIONS(2342), 1, - sym_super, + STATE(781), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 2, - anon_sym_open, - anon_sym_module, - [19503] = 5, - ACTIONS(1284), 1, + ACTIONS(2369), 3, anon_sym_LBRACE, - ACTIONS(2080), 1, + anon_sym_SEMI, anon_sym_permits, - STATE(92), 1, - sym_class_body, - STATE(990), 1, - sym_permits, + [19697] = 4, + ACTIONS(2371), 1, + sym_identifier, + STATE(856), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19520] = 4, - ACTIONS(2344), 1, + ACTIONS(2373), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19713] = 4, + ACTIONS(2375), 1, sym_identifier, - STATE(809), 1, + STATE(894), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 2, + ACTIONS(2377), 3, anon_sym_open, anon_sym_module, - [19535] = 4, - ACTIONS(2348), 1, - anon_sym_AMP, - STATE(781), 1, - aux_sym_type_bound_repeat1, + anon_sym_record, + [19729] = 4, + ACTIONS(2379), 1, + sym_identifier, + STATE(858), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 2, - anon_sym_GT, - anon_sym_COMMA, - [19550] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(103), 1, - sym_interface_body, - STATE(1045), 1, - sym_permits, + ACTIONS(2381), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19745] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2015), 1, + anon_sym_DOT, + STATE(368), 1, + sym_argument_list, + STATE(587), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19567] = 4, - ACTIONS(2353), 1, - anon_sym_COMMA, - STATE(783), 1, - aux_sym_enum_body_repeat1, + [19765] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(370), 1, + sym_argument_list, + STATE(586), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [19582] = 4, - ACTIONS(2358), 1, + [19785] = 4, + ACTIONS(2383), 1, sym_identifier, - STATE(1052), 1, + STATE(850), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 2, + ACTIONS(2385), 3, anon_sym_open, anon_sym_module, - [19597] = 4, - ACTIONS(2362), 1, + anon_sym_record, + [19801] = 4, + ACTIONS(2387), 1, sym_identifier, - STATE(1060), 1, + STATE(827), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 2, + ACTIONS(2389), 3, anon_sym_open, anon_sym_module, - [19612] = 4, - ACTIONS(2366), 1, + anon_sym_record, + [19817] = 4, + STATE(999), 1, + sym__wildcard_bounds, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2391), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2393), 2, + anon_sym_extends, + sym_super, + [19833] = 4, + ACTIONS(2395), 1, sym_identifier, - STATE(914), 1, + STATE(567), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 2, + ACTIONS(2397), 3, anon_sym_open, anon_sym_module, - [19627] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(81), 1, - sym_class_body, - STATE(1048), 1, - sym_permits, + anon_sym_record, + [19849] = 4, + STATE(1045), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19644] = 4, - ACTIONS(2370), 1, + ACTIONS(2393), 2, + anon_sym_extends, + sym_super, + ACTIONS(2399), 2, + anon_sym_GT, + anon_sym_COMMA, + [19865] = 4, + ACTIONS(2401), 1, sym_identifier, - STATE(979), 1, + STATE(461), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 2, + ACTIONS(2403), 3, anon_sym_open, anon_sym_module, - [19659] = 4, - ACTIONS(2374), 1, + anon_sym_record, + [19881] = 4, + ACTIONS(2405), 1, sym_identifier, - STATE(902), 1, - sym_scoped_identifier, + ACTIONS(2409), 1, + sym_super, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 2, + ACTIONS(2407), 3, anon_sym_open, anon_sym_module, - [19674] = 4, - ACTIONS(2378), 1, + anon_sym_record, + [19897] = 4, + ACTIONS(2411), 1, sym_identifier, - STATE(1061), 1, + STATE(1011), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 2, + ACTIONS(2413), 3, anon_sym_open, anon_sym_module, - [19689] = 3, - ACTIONS(2328), 1, - anon_sym_EQ, + anon_sym_record, + [19913] = 4, + ACTIONS(1983), 1, + sym_identifier, + STATE(1128), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 3, + ACTIONS(1970), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [19929] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2027), 2, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_SEMI, - [19702] = 5, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2382), 1, + ACTIONS(1064), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [19943] = 4, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(77), 1, - sym_enum_body, - STATE(1058), 1, - sym_super_interfaces, + STATE(895), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19719] = 4, - ACTIONS(2384), 1, + ACTIONS(2415), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [19959] = 4, + ACTIONS(2417), 1, sym_identifier, - STATE(915), 1, + STATE(937), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 2, + ACTIONS(2419), 3, anon_sym_open, anon_sym_module, - [19734] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2388), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19745] = 5, - ACTIONS(1284), 1, + anon_sym_record, + [19975] = 5, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - STATE(123), 1, + STATE(135), 1, sym_class_body, - STATE(972), 1, + STATE(1049), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19762] = 5, - ACTIONS(1284), 1, + [19992] = 4, + ACTIONS(2423), 1, + anon_sym_throws, + STATE(1022), 1, + sym_throws, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2421), 2, anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(88), 1, - sym_class_body, - STATE(991), 1, - sym_permits, + anon_sym_SEMI, + [20007] = 4, + ACTIONS(2425), 1, + anon_sym_COMMA, + STATE(801), 1, + aux_sym_enum_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19779] = 4, - ACTIONS(2390), 1, - sym_identifier, - STATE(944), 1, - sym_scoped_identifier, + ACTIONS(2428), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [20022] = 4, + ACTIONS(2423), 1, + anon_sym_throws, + STATE(1001), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 2, - anon_sym_open, - anon_sym_module, - [19794] = 2, + ACTIONS(2430), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [20037] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2394), 4, + ACTIONS(2432), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [19805] = 4, - ACTIONS(2396), 1, - sym_identifier, - STATE(860), 1, - sym_scoped_identifier, + [20048] = 4, + ACTIONS(2423), 1, + anon_sym_throws, + STATE(1023), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2398), 2, - anon_sym_open, - anon_sym_module, - [19820] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COMMA, - ACTIONS(2402), 1, + ACTIONS(2434), 2, + anon_sym_LBRACE, anon_sym_SEMI, - STATE(943), 1, - aux_sym_provides_module_directive_repeat1, + [20063] = 4, + ACTIONS(2436), 1, + anon_sym_COMMA, + STATE(837), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2438), 2, + anon_sym_LBRACE, + anon_sym_permits, + [20078] = 4, + ACTIONS(2440), 1, + anon_sym_COMMA, + STATE(806), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19837] = 5, - ACTIONS(2404), 1, + ACTIONS(1835), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [20093] = 5, + ACTIONS(2443), 1, anon_sym_LPAREN, - ACTIONS(2406), 1, + ACTIONS(2445), 1, anon_sym_LBRACE, - STATE(767), 1, + STATE(764), 1, sym_block, - STATE(1015), 1, + STATE(1066), 1, sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19854] = 4, - ACTIONS(2408), 1, - sym_identifier, - STATE(561), 1, - sym_scoped_identifier, + [20110] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 2, - anon_sym_open, - anon_sym_module, - [19869] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(68), 1, - sym_interface_body, - STATE(959), 1, - sym_permits, + ACTIONS(2447), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20121] = 4, + ACTIONS(2449), 1, + anon_sym_COMMA, + STATE(809), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19886] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COMMA, - ACTIONS(2412), 1, - anon_sym_SEMI, - STATE(941), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(1835), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [20136] = 5, + ACTIONS(1576), 1, + anon_sym_COLON_COLON, + ACTIONS(2452), 1, + anon_sym_AMP, + ACTIONS(2454), 1, + anon_sym_RPAREN, + STATE(912), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19903] = 5, - ACTIONS(1272), 1, + [20153] = 5, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_COLON_COLON, + ACTIONS(2456), 1, anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COMMA, - ACTIONS(2414), 1, - anon_sym_SEMI, - STATE(939), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1136), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19920] = 4, - ACTIONS(1956), 1, - sym_identifier, - STATE(1125), 1, - sym__variable_declarator_id, + [20170] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - [19935] = 4, - ACTIONS(2416), 1, - sym_identifier, - STATE(875), 1, - sym_scoped_identifier, + ACTIONS(2458), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20181] = 5, + ACTIONS(2423), 1, + anon_sym_throws, + ACTIONS(2460), 1, + anon_sym_LBRACE, + STATE(381), 1, + sym_constructor_body, + STATE(988), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 2, - anon_sym_open, - anon_sym_module, - [19950] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2400), 1, + [20198] = 4, + ACTIONS(2462), 1, + anon_sym_AMP, + STATE(814), 1, + aux_sym_type_bound_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2465), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2420), 1, - anon_sym_SEMI, - STATE(937), 1, - aux_sym_provides_module_directive_repeat1, + [20213] = 4, + ACTIONS(2469), 1, + anon_sym_extends, + STATE(1029), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19967] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2467), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2424), 1, - anon_sym_SEMI, - STATE(922), 1, - aux_sym_exports_module_directive_repeat1, + [20228] = 4, + ACTIONS(2471), 1, + anon_sym_AMP, + STATE(829), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19984] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2473), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2426), 1, - anon_sym_SEMI, - STATE(934), 1, - aux_sym_exports_module_directive_repeat1, + [20243] = 3, + ACTIONS(2477), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20001] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2475), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2428), 1, anon_sym_SEMI, - STATE(932), 1, - aux_sym_exports_module_directive_repeat1, + [20256] = 5, + ACTIONS(2107), 1, + anon_sym_permits, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(112), 1, + sym_interface_body, + STATE(1040), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20018] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2430), 1, - anon_sym_SEMI, - STATE(930), 1, - aux_sym_exports_module_directive_repeat1, + [20273] = 5, + ACTIONS(2107), 1, + anon_sym_permits, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(92), 1, + sym_interface_body, + STATE(1070), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20035] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2432), 1, - anon_sym_SEMI, - STATE(928), 1, - aux_sym_exports_module_directive_repeat1, + [20290] = 3, + ACTIONS(2405), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20052] = 5, - ACTIONS(2080), 1, + ACTIONS(2407), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20303] = 5, + ACTIONS(2107), 1, anon_sym_permits, - ACTIONS(2108), 1, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(91), 1, + STATE(81), 1, sym_interface_body, - STATE(1054), 1, + STATE(1064), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20069] = 4, - ACTIONS(2434), 1, - anon_sym_AMP, - STATE(781), 1, - aux_sym_type_bound_repeat1, + [20320] = 4, + ACTIONS(2469), 1, + anon_sym_extends, + STATE(1005), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 2, + ACTIONS(2479), 2, anon_sym_GT, anon_sym_COMMA, - [20084] = 4, - ACTIONS(2438), 1, + [20335] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(129), 1, + sym_class_body, + STATE(1041), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20352] = 4, + ACTIONS(2436), 1, anon_sym_COMMA, - STATE(816), 1, - aux_sym_argument_list_repeat1, + STATE(833), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [20099] = 5, - ACTIONS(1272), 1, + ACTIONS(2481), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [20367] = 4, + ACTIONS(87), 1, + anon_sym_LT, + STATE(1047), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2483), 2, + anon_sym_new, + sym_identifier, + [20382] = 5, + ACTIONS(2105), 1, + anon_sym_implements, + ACTIONS(2485), 1, + anon_sym_LBRACE, + STATE(96), 1, + sym_enum_body, + STATE(1060), 1, + sym_super_interfaces, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20399] = 5, + ACTIONS(1327), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_SEMI, - STATE(926), 1, - aux_sym_exports_module_directive_repeat1, + STATE(961), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20116] = 5, - ACTIONS(1278), 1, + [20416] = 5, + ACTIONS(1321), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2443), 1, + ACTIONS(2491), 1, anon_sym_SEMI, - STATE(924), 1, - aux_sym_exports_module_directive_repeat1, + STATE(960), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20133] = 4, - ACTIONS(2447), 1, - anon_sym_extends, - STATE(1041), 1, - sym_type_bound, + [20433] = 4, + ACTIONS(2471), 1, + anon_sym_AMP, + STATE(814), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2445), 2, + ACTIONS(2493), 2, anon_sym_GT, anon_sym_COMMA, - [20148] = 5, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2451), 1, - anon_sym_RPAREN, - STATE(923), 1, - aux_sym_cast_expression_repeat1, + [20448] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(100), 1, + sym_class_body, + STATE(1006), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20165] = 4, - ACTIONS(2453), 1, - sym_identifier, - STATE(341), 1, - sym_scoped_identifier, + [20465] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(117), 1, + sym_class_body, + STATE(1014), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 2, - anon_sym_open, - anon_sym_module, - [20180] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(967), 1, - sym_throws, + [20482] = 5, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(2107), 1, + anon_sym_permits, + STATE(122), 1, + sym_class_body, + STATE(1000), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20499] = 4, + ACTIONS(2436), 1, + anon_sym_COMMA, + STATE(781), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 2, + ACTIONS(2495), 2, anon_sym_LBRACE, anon_sym_SEMI, - [20195] = 2, + [20514] = 5, + ACTIONS(2423), 1, + anon_sym_throws, + ACTIONS(2460), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_constructor_body, + STATE(1063), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 4, - anon_sym_COMMA, + [20531] = 5, + ACTIONS(1373), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2107), 1, anon_sym_permits, - [20206] = 4, - ACTIONS(2459), 1, - sym_identifier, - STATE(458), 1, - sym_scoped_identifier, + STATE(121), 1, + sym_class_body, + STATE(1012), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2461), 2, - anon_sym_open, - anon_sym_module, - [20221] = 4, - ACTIONS(2463), 1, + [20548] = 3, + ACTIONS(2497), 1, sym_identifier, - STATE(1008), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 2, + ACTIONS(2499), 3, anon_sym_open, anon_sym_module, - [20236] = 5, - ACTIONS(2334), 1, - anon_sym_LBRACE, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(352), 1, - sym_constructor_body, - STATE(1038), 1, - sym_throws, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20253] = 4, - ACTIONS(2467), 1, + anon_sym_record, + [20561] = 4, + ACTIONS(2436), 1, anon_sym_COMMA, - STATE(754), 1, + STATE(781), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2469), 2, + ACTIONS(2501), 2, anon_sym_LBRACE, - anon_sym_SEMI, - [20268] = 5, - ACTIONS(1284), 1, + anon_sym_permits, + [20576] = 5, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - STATE(117), 1, + STATE(108), 1, sym_class_body, - STATE(955), 1, + STATE(1053), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20285] = 4, - ACTIONS(2467), 1, - anon_sym_COMMA, - STATE(827), 1, - aux_sym_type_list_repeat1, + [20593] = 5, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(1034), 1, + sym_type_parameters, + STATE(1036), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 2, + [20610] = 5, + ACTIONS(2105), 1, + anon_sym_implements, + ACTIONS(2485), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [20300] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, - anon_sym_DOT, - STATE(1118), 1, - sym_argument_list, + STATE(139), 1, + sym_enum_body, + STATE(1020), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20317] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(983), 1, - sym_throws, + [20627] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 2, + ACTIONS(2369), 4, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - [20332] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(1019), 1, - sym_throws, + anon_sym_permits, + [20638] = 4, + ACTIONS(1803), 1, + anon_sym_COMMA, + STATE(809), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [20347] = 4, - ACTIONS(2447), 1, - anon_sym_extends, - STATE(993), 1, - sym_type_bound, + ACTIONS(2503), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [20653] = 4, + ACTIONS(2477), 1, + anon_sym_EQ, + ACTIONS(2505), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2479), 2, - anon_sym_GT, - anon_sym_COMMA, - [20362] = 4, - ACTIONS(2467), 1, + ACTIONS(2475), 2, anon_sym_COMMA, - STATE(754), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2481), 2, - anon_sym_LBRACE, - anon_sym_permits, - [20377] = 2, + anon_sym_SEMI, + [20668] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 4, + ACTIONS(2507), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20388] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(69), 1, - sym_class_body, - STATE(1030), 1, - sym_permits, + [20679] = 5, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(1065), 1, + sym_type_parameters, + STATE(1067), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20405] = 4, - ACTIONS(2434), 1, + [20696] = 5, + ACTIONS(1576), 1, + anon_sym_COLON_COLON, + ACTIONS(2452), 1, anon_sym_AMP, - STATE(815), 1, - aux_sym_type_bound_repeat1, + ACTIONS(2509), 1, + anon_sym_RPAREN, + STATE(878), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 2, - anon_sym_GT, - anon_sym_COMMA, - [20420] = 5, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2382), 1, - anon_sym_LBRACE, - STATE(132), 1, - sym_enum_body, - STATE(968), 1, - sym_super_interfaces, + [20713] = 4, + ACTIONS(2477), 1, + anon_sym_EQ, + ACTIONS(2511), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20437] = 4, - ACTIONS(2328), 1, - anon_sym_EQ, - ACTIONS(2487), 1, - anon_sym_COLON, + ACTIONS(2475), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [20728] = 5, + ACTIONS(2107), 1, + anon_sym_permits, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(120), 1, + sym_interface_body, + STATE(1039), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [20452] = 5, - ACTIONS(1284), 1, + [20745] = 5, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2107), 1, anon_sym_permits, - STATE(111), 1, + STATE(131), 1, sym_class_body, - STATE(1023), 1, + STATE(967), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20469] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(114), 1, - sym_class_body, - STATE(1017), 1, - sym_permits, + [20762] = 5, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2487), 1, + anon_sym_COMMA, + ACTIONS(2513), 1, + anon_sym_SEMI, + STATE(958), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20486] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(97), 1, - sym_interface_body, - STATE(987), 1, - sym_permits, + [20779] = 5, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2517), 1, + anon_sym_SEMI, + STATE(939), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20503] = 4, - ACTIONS(1956), 1, - sym_identifier, - STATE(1091), 1, - sym__variable_declarator_id, + [20796] = 5, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2519), 1, + anon_sym_SEMI, + STATE(941), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - [20518] = 2, + [20813] = 5, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2521), 1, + anon_sym_SEMI, + STATE(943), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2489), 4, - anon_sym_RPAREN, + [20830] = 5, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2523), 1, anon_sym_SEMI, - [20529] = 5, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_RPAREN, - STATE(894), 1, - aux_sym_cast_expression_repeat1, + STATE(945), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20546] = 4, - ACTIONS(2467), 1, + [20847] = 5, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2515), 1, anon_sym_COMMA, - STATE(834), 1, - aux_sym_type_list_repeat1, + ACTIONS(2525), 1, + anon_sym_SEMI, + STATE(947), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 2, - anon_sym_LBRACE, - anon_sym_permits, - [20561] = 4, - ACTIONS(2495), 1, + [20864] = 5, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2515), 1, anon_sym_COMMA, - STATE(847), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2527), 1, + anon_sym_SEMI, + STATE(949), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [20576] = 4, - ACTIONS(85), 1, - anon_sym_LT, - STATE(1022), 1, - sym_type_arguments, + [20881] = 5, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2529), 1, + anon_sym_SEMI, + STATE(951), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 2, - anon_sym_new, - sym_identifier, - [20591] = 5, - ACTIONS(1278), 1, + [20898] = 5, + ACTIONS(1327), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2500), 1, + ACTIONS(2531), 1, anon_sym_SEMI, - STATE(920), 1, + STATE(953), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20608] = 4, - ACTIONS(2502), 1, - anon_sym_RPAREN, - ACTIONS(2504), 1, + [20915] = 5, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2487), 1, + anon_sym_COMMA, + ACTIONS(2533), 1, anon_sym_SEMI, - STATE(850), 1, - aux_sym_resource_specification_repeat1, + STATE(956), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20622] = 4, - ACTIONS(2507), 1, - anon_sym_GT, - ACTIONS(2509), 1, + [20932] = 4, + ACTIONS(2535), 1, anon_sym_COMMA, - STATE(935), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2537), 1, + anon_sym_SEMI, + STATE(902), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20636] = 4, - ACTIONS(2511), 1, + [20946] = 4, + ACTIONS(1287), 1, anon_sym_RPAREN, - ACTIONS(2513), 1, + ACTIONS(2539), 1, anon_sym_COMMA, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(914), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20650] = 4, - ACTIONS(2516), 1, - anon_sym_COMMA, - ACTIONS(2519), 1, + [20960] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(2541), 1, anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + STATE(392), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20664] = 4, - ACTIONS(2521), 1, + [20974] = 4, + ACTIONS(2543), 1, + anon_sym_GT, + ACTIONS(2545), 1, anon_sym_COMMA, - ACTIONS(2523), 1, - anon_sym_RBRACE, - STATE(912), 1, - aux_sym_element_value_array_initializer_repeat1, + STATE(910), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20678] = 4, - ACTIONS(2525), 1, - anon_sym_RPAREN, - ACTIONS(2527), 1, - anon_sym_COMMA, - STATE(855), 1, - aux_sym_inferred_parameters_repeat1, + [20988] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20692] = 4, - ACTIONS(1788), 1, + ACTIONS(2547), 3, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(2290), 1, - anon_sym_RBRACE, - STATE(1067), 1, - sym_enum_body_declarations, + anon_sym_throws, + [20998] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2549), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + [21008] = 4, + ACTIONS(2551), 1, + anon_sym_RPAREN, + ACTIONS(2553), 1, + anon_sym_COMMA, + STATE(957), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20706] = 4, - ACTIONS(1800), 1, + [21022] = 4, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2530), 1, + ACTIONS(2555), 1, anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(866), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21036] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(1871), 1, + anon_sym_RBRACE, + STATE(908), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20720] = 4, - ACTIONS(1800), 1, + [21050] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(2532), 1, + ACTIONS(2557), 1, anon_sym_RPAREN, - STATE(852), 1, + STATE(880), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20734] = 4, - ACTIONS(2534), 1, + [21064] = 4, + ACTIONS(2559), 1, + anon_sym_AMP, + ACTIONS(2562), 1, anon_sym_RPAREN, - ACTIONS(2536), 1, + STATE(870), 1, + aux_sym_cast_expression_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21078] = 4, + ACTIONS(2553), 1, anon_sym_COMMA, - STATE(906), 1, + ACTIONS(2564), 1, + anon_sym_RPAREN, + STATE(957), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20748] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, + [21092] = 4, + ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2566), 1, + anon_sym_RPAREN, + STATE(871), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 2, + [21106] = 4, + ACTIONS(2568), 1, anon_sym_COMMA, - anon_sym_SEMI, - [20760] = 4, - ACTIONS(2540), 1, + ACTIONS(2571), 1, + anon_sym_RBRACE, + STATE(873), 1, + aux_sym_element_value_array_initializer_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21120] = 4, + ACTIONS(2573), 1, anon_sym_GT, - ACTIONS(2542), 1, + ACTIONS(2575), 1, anon_sym_COMMA, - STATE(889), 1, + STATE(879), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20774] = 4, - ACTIONS(2544), 1, - anon_sym_COMMA, - ACTIONS(2547), 1, - anon_sym_RBRACE, - STATE(862), 1, - aux_sym_element_value_array_initializer_repeat1, + [21134] = 4, + ACTIONS(2577), 1, + anon_sym_RPAREN, + ACTIONS(2579), 1, + anon_sym_SEMI, + STATE(875), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20788] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(345), 1, - sym_argument_list, + [21148] = 4, + ACTIONS(2582), 1, + anon_sym_RPAREN, + ACTIONS(2584), 1, + anon_sym_COMMA, + STATE(876), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20802] = 4, - ACTIONS(1800), 1, + [21162] = 4, + ACTIONS(2575), 1, anon_sym_COMMA, - ACTIONS(2549), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2587), 1, + anon_sym_GT, + STATE(874), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20816] = 2, + [21176] = 4, + ACTIONS(2452), 1, + anon_sym_AMP, + ACTIONS(2589), 1, + anon_sym_RPAREN, + STATE(870), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2551), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [20826] = 2, + [21190] = 4, + ACTIONS(2591), 1, + anon_sym_GT, + ACTIONS(2593), 1, + anon_sym_COMMA, + STATE(879), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [20836] = 4, - ACTIONS(2555), 1, + [21204] = 4, + ACTIONS(2596), 1, + anon_sym_RPAREN, + ACTIONS(2598), 1, anon_sym_COMMA, - ACTIONS(2558), 1, - anon_sym_SEMI, - STATE(867), 1, - aux_sym_for_statement_repeat1, + STATE(880), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20850] = 4, - ACTIONS(2560), 1, - anon_sym_AMP, - ACTIONS(2563), 1, + [21218] = 4, + ACTIONS(2601), 1, anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, + ACTIONS(2603), 1, + anon_sym_COMMA, + STATE(881), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20864] = 2, + [21232] = 4, + ACTIONS(2606), 1, + anon_sym_COMMA, + ACTIONS(2609), 1, + anon_sym_SEMI, + STATE(882), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 3, + [21246] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20874] = 4, - ACTIONS(1866), 1, - anon_sym_RBRACE, - ACTIONS(2567), 1, + ACTIONS(2611), 1, + anon_sym_RPAREN, + STATE(880), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21260] = 4, + ACTIONS(2613), 1, anon_sym_COMMA, - STATE(870), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2615), 1, + anon_sym_RBRACE, + STATE(955), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20888] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, + [21274] = 4, + ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2617), 1, + anon_sym_RPAREN, + STATE(957), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2570), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [20900] = 4, - ACTIONS(1800), 1, + [21288] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(2572), 1, + ACTIONS(2619), 1, anon_sym_RPAREN, - STATE(852), 1, + STATE(880), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20914] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [21302] = 4, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2621), 1, anon_sym_SEMI, - STATE(376), 1, - sym_block, + ACTIONS(2623), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20928] = 4, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1539), 1, + [21316] = 4, + ACTIONS(1327), 1, anon_sym_DOT, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, + ACTIONS(2625), 1, + anon_sym_SEMI, + ACTIONS(2627), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20942] = 3, - ACTIONS(1272), 1, + [21330] = 4, + ACTIONS(1321), 1, anon_sym_DOT, + ACTIONS(2629), 1, + anon_sym_SEMI, + ACTIONS(2631), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2576), 2, + [21344] = 4, + ACTIONS(2545), 1, anon_sym_COMMA, - anon_sym_SEMI, - [20954] = 4, - ACTIONS(2536), 1, - anon_sym_COMMA, - ACTIONS(2578), 1, - anon_sym_RPAREN, - STATE(942), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2633), 1, + anon_sym_GT, + STATE(863), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20968] = 4, - ACTIONS(2580), 1, - anon_sym_RPAREN, - ACTIONS(2582), 1, + [21358] = 4, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2635), 1, anon_sym_SEMI, - STATE(938), 1, - aux_sym_resource_specification_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20982] = 3, - ACTIONS(2584), 1, - sym_identifier, + ACTIONS(2637), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 2, - anon_sym_open, - anon_sym_module, - [20994] = 4, - ACTIONS(2588), 1, + [21372] = 4, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(2639), 1, anon_sym_COMMA, - ACTIONS(2591), 1, - anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(892), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21008] = 4, - ACTIONS(2536), 1, + [21386] = 4, + ACTIONS(1817), 1, anon_sym_COMMA, - ACTIONS(2593), 1, - anon_sym_RPAREN, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2503), 1, + anon_sym_COLON, + STATE(806), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21022] = 3, - ACTIONS(1278), 1, + [21400] = 4, + ACTIONS(1327), 1, anon_sym_DOT, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(156), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2595), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [21034] = 4, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(2599), 1, - anon_sym_STAR, - STATE(1063), 1, - sym_asterisk, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21048] = 2, + [21414] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 3, + ACTIONS(2644), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21058] = 4, - ACTIONS(2536), 1, + [21424] = 4, + ACTIONS(2539), 1, anon_sym_COMMA, - ACTIONS(2603), 1, + ACTIONS(2646), 1, anon_sym_RPAREN, - STATE(880), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21072] = 4, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(2607), 1, - anon_sym_COMMA, - STATE(891), 1, + STATE(876), 1, aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21086] = 4, - ACTIONS(2609), 1, - anon_sym_RPAREN, - ACTIONS(2611), 1, - anon_sym_COMMA, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, + [21438] = 4, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(169), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21100] = 2, + [21452] = 4, + ACTIONS(2575), 1, + anon_sym_COMMA, + ACTIONS(2648), 1, + anon_sym_GT, + STATE(879), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 3, - anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [21110] = 4, - ACTIONS(2599), 1, - anon_sym_STAR, - ACTIONS(2616), 1, + [21466] = 4, + ACTIONS(2650), 1, sym_identifier, - STATE(1064), 1, + ACTIONS(2652), 1, + anon_sym_STAR, + STATE(1106), 1, sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21124] = 4, - ACTIONS(2542), 1, - anon_sym_COMMA, - ACTIONS(2618), 1, - anon_sym_GT, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + [21480] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21138] = 4, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2620), 1, + ACTIONS(2654), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(1096), 1, - sym__default_value, + [21490] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21152] = 4, - ACTIONS(2607), 1, - anon_sym_COMMA, - ACTIONS(2622), 1, + ACTIONS(1849), 3, anon_sym_RPAREN, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_COMMA, + anon_sym_SEMI, + [21500] = 4, + ACTIONS(2656), 1, + anon_sym_COMMA, + ACTIONS(2659), 1, + anon_sym_SEMI, + STATE(902), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21166] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, + [21514] = 4, + ACTIONS(1321), 1, anon_sym_DOT, - STATE(349), 1, - sym_argument_list, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21180] = 4, - ACTIONS(1278), 1, + [21528] = 4, + ACTIONS(1327), 1, anon_sym_DOT, - ACTIONS(2624), 1, + ACTIONS(2642), 1, anon_sym_LBRACE, - STATE(208), 1, + STATE(167), 1, sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21194] = 4, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2626), 1, - anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, + [21542] = 4, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2015), 1, + anon_sym_DOT, + STATE(368), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21208] = 2, + [21556] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2628), 3, + ACTIONS(2661), 3, + anon_sym_LBRACE, + anon_sym_implements, + anon_sym_permits, + [21566] = 4, + ACTIONS(2535), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2663), 1, anon_sym_SEMI, - [21218] = 2, + STATE(860), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 3, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - [21228] = 4, - ACTIONS(2542), 1, + [21580] = 4, + ACTIONS(588), 1, + anon_sym_RBRACE, + ACTIONS(2665), 1, anon_sym_COMMA, - ACTIONS(2630), 1, - anon_sym_GT, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + STATE(892), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21242] = 2, + [21594] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 3, + ACTIONS(2465), 3, + anon_sym_AMP, + anon_sym_GT, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21252] = 4, - ACTIONS(1121), 1, + [21604] = 4, + ACTIONS(2667), 1, + anon_sym_GT, + ACTIONS(2669), 1, + anon_sym_COMMA, + STATE(910), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21618] = 4, + ACTIONS(1142), 1, anon_sym_COMMA, - ACTIONS(2632), 1, + ACTIONS(2672), 1, anon_sym_RPAREN, - STATE(855), 1, + STATE(881), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21266] = 4, - ACTIONS(1045), 1, + [21632] = 4, + ACTIONS(2452), 1, + anon_sym_AMP, + ACTIONS(2674), 1, + anon_sym_RPAREN, + STATE(870), 1, + aux_sym_cast_expression_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21646] = 4, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2676), 1, anon_sym_DOT, - STATE(1138), 1, + STATE(1152), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21280] = 2, + [21660] = 4, + ACTIONS(2539), 1, + anon_sym_COMMA, + ACTIONS(2678), 1, + anon_sym_RPAREN, + STATE(876), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + [21674] = 4, + ACTIONS(1847), 1, anon_sym_SEMI, - [21290] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_module_body, + ACTIONS(2308), 1, + anon_sym_RBRACE, + STATE(1084), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21304] = 4, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(2607), 1, + [21688] = 4, + ACTIONS(2539), 1, anon_sym_COMMA, - STATE(886), 1, + ACTIONS(2678), 1, + anon_sym_RPAREN, + STATE(896), 1, aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21318] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_module_body, + [21702] = 4, + ACTIONS(2650), 1, + sym_identifier, + ACTIONS(2652), 1, + anon_sym_STAR, + STATE(1087), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21332] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(172), 1, - sym_module_body, + [21716] = 4, + ACTIONS(2575), 1, + anon_sym_COMMA, + ACTIONS(2680), 1, + anon_sym_GT, + STATE(898), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21346] = 4, - ACTIONS(2638), 1, - anon_sym_RPAREN, - ACTIONS(2640), 1, - anon_sym_COMMA, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + [21730] = 4, + ACTIONS(2652), 1, + anon_sym_STAR, + ACTIONS(2682), 1, + sym_identifier, + STATE(1123), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21360] = 4, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(2643), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + [21744] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(2684), 1, + anon_sym_SEMI, + STATE(379), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21374] = 4, - ACTIONS(2645), 1, - anon_sym_COMMA, - ACTIONS(2648), 1, - anon_sym_SEMI, - STATE(908), 1, - aux_sym__variable_declarator_list_repeat1, + [21758] = 4, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21388] = 2, + [21772] = 4, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(187), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1812), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [21398] = 4, - ACTIONS(1800), 1, + [21786] = 4, + ACTIONS(2652), 1, + anon_sym_STAR, + ACTIONS(2682), 1, + sym_identifier, + STATE(1088), 1, + sym_asterisk, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21800] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(2650), 1, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(852), 1, + STATE(880), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21412] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(143), 1, - sym_module_body, + [21814] = 4, + ACTIONS(2093), 1, + anon_sym_default, + ACTIONS(2688), 1, + anon_sym_SEMI, + STATE(1104), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21426] = 4, - ACTIONS(387), 1, - anon_sym_RBRACE, - ACTIONS(2652), 1, + [21828] = 4, + ACTIONS(2690), 1, anon_sym_COMMA, - STATE(862), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2693), 1, + anon_sym_SEMI, + STATE(926), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21440] = 4, - ACTIONS(2654), 1, + [21842] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(2656), 1, - anon_sym_SEMI, - STATE(953), 1, - aux_sym__variable_declarator_list_repeat1, + ACTIONS(2695), 1, + anon_sym_RPAREN, + STATE(880), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21454] = 4, - ACTIONS(1272), 1, + [21856] = 3, + ACTIONS(1327), 1, anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(144), 1, - sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21468] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2658), 1, + ACTIONS(2697), 2, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2660), 1, - anon_sym_to, + [21868] = 3, + ACTIONS(1321), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21482] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2662), 1, + ACTIONS(2699), 2, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2664), 1, - anon_sym_to, + [21880] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21496] = 4, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(2599), 1, - anon_sym_STAR, - STATE(1144), 1, - sym_asterisk, + ACTIONS(2701), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [21890] = 4, + ACTIONS(1817), 1, + anon_sym_COMMA, + ACTIONS(2703), 1, + anon_sym_RPAREN, + STATE(806), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21510] = 4, - ACTIONS(1800), 1, + [21904] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(2666), 1, + ACTIONS(2705), 1, anon_sym_RPAREN, - STATE(852), 1, + STATE(880), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21524] = 4, - ACTIONS(2599), 1, - anon_sym_STAR, - ACTIONS(2616), 1, - sym_identifier, - STATE(1145), 1, - sym_asterisk, + [21918] = 4, + ACTIONS(2707), 1, + anon_sym_RPAREN, + ACTIONS(2709), 1, + anon_sym_SEMI, + STATE(950), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21538] = 4, - ACTIONS(2422), 1, + [21932] = 4, + ACTIONS(2711), 1, anon_sym_COMMA, - ACTIONS(2668), 1, + ACTIONS(2714), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(934), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21552] = 4, - ACTIONS(2542), 1, + [21946] = 4, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2670), 1, - anon_sym_GT, - STATE(897), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2716), 1, + anon_sym_RPAREN, + STATE(885), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21566] = 4, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2672), 1, - anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + [21960] = 4, + ACTIONS(1572), 1, + anon_sym_LBRACK, + ACTIONS(1574), 1, + anon_sym_DOT, + ACTIONS(1576), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21580] = 4, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2674), 1, - anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, + [21974] = 3, + ACTIONS(1327), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21594] = 4, - ACTIONS(2422), 1, + ACTIONS(2718), 2, anon_sym_COMMA, - ACTIONS(2676), 1, anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + [21986] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21608] = 4, - ACTIONS(2678), 1, - anon_sym_GT, - ACTIONS(2680), 1, + ACTIONS(2720), 3, anon_sym_COMMA, - STATE(925), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21622] = 4, - ACTIONS(2422), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + [21996] = 4, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2683), 1, + ACTIONS(2722), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(934), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21636] = 4, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(2685), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + [22010] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21650] = 4, - ACTIONS(2422), 1, + ACTIONS(2428), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22020] = 4, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2687), 1, + ACTIONS(2724), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(934), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21664] = 3, - ACTIONS(2338), 1, - sym_identifier, + [22034] = 3, + ACTIONS(1321), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 2, - anon_sym_open, - anon_sym_module, - [21676] = 4, - ACTIONS(2422), 1, + ACTIONS(2726), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [22046] = 4, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2689), 1, + ACTIONS(2728), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(934), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21690] = 4, - ACTIONS(1790), 1, - anon_sym_COMMA, - ACTIONS(2691), 1, - anon_sym_SEMI, - STATE(867), 1, - aux_sym_for_statement_repeat1, + [22060] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21704] = 4, - ACTIONS(2422), 1, + ACTIONS(2730), 3, anon_sym_COMMA, - ACTIONS(2693), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + [22070] = 4, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2732), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(934), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21718] = 4, - ACTIONS(1838), 1, + [22084] = 4, + ACTIONS(1821), 1, anon_sym_COMMA, - ACTIONS(1840), 1, - anon_sym_RBRACE, - STATE(949), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2734), 1, + anon_sym_SEMI, + STATE(882), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21732] = 4, - ACTIONS(2422), 1, + [22098] = 4, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2695), 1, + ACTIONS(2736), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(934), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21746] = 4, - ACTIONS(2509), 1, + [22112] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(2697), 1, - anon_sym_GT, - STATE(946), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21760] = 2, + ACTIONS(2738), 1, + anon_sym_RPAREN, + STATE(880), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2699), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [21770] = 4, - ACTIONS(2400), 1, + [22126] = 4, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2701), 1, + ACTIONS(2740), 1, anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(934), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21784] = 4, - ACTIONS(941), 1, + [22140] = 4, + ACTIONS(962), 1, anon_sym_RPAREN, - ACTIONS(2703), 1, + ACTIONS(2742), 1, anon_sym_SEMI, - STATE(850), 1, + STATE(875), 1, aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21798] = 4, - ACTIONS(2400), 1, + [22154] = 4, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2705), 1, + ACTIONS(2744), 1, anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(934), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21812] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_SEMI, + [22168] = 4, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(2015), 1, + anon_sym_DOT, STATE(372), 1, - sym_block, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21826] = 4, - ACTIONS(2400), 1, + [22182] = 4, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2709), 1, + ACTIONS(2746), 1, anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(934), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21840] = 4, - ACTIONS(2536), 1, + [22196] = 4, + ACTIONS(1811), 1, anon_sym_COMMA, - ACTIONS(2711), 1, + ACTIONS(2748), 1, anon_sym_RPAREN, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(880), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21854] = 4, - ACTIONS(2400), 1, + [22210] = 4, + ACTIONS(336), 1, + anon_sym_RBRACE, + ACTIONS(2750), 1, anon_sym_COMMA, - ACTIONS(2713), 1, - anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(873), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21868] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2715), 1, + [22224] = 4, + ACTIONS(2487), 1, + anon_sym_COMMA, + ACTIONS(2752), 1, anon_sym_SEMI, - ACTIONS(2717), 1, - anon_sym_to, + STATE(926), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21882] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2719), 1, - anon_sym_SEMI, - ACTIONS(2721), 1, - anon_sym_to, + [22238] = 4, + ACTIONS(2754), 1, + anon_sym_RPAREN, + ACTIONS(2756), 1, + anon_sym_COMMA, + STATE(957), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21896] = 4, - ACTIONS(2723), 1, - anon_sym_GT, - ACTIONS(2725), 1, + [22252] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - STATE(946), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2759), 1, + anon_sym_SEMI, + STATE(926), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21910] = 4, - ACTIONS(2064), 1, + [22266] = 4, + ACTIONS(2093), 1, anon_sym_default, - ACTIONS(2728), 1, + ACTIONS(2761), 1, anon_sym_SEMI, STATE(1107), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21924] = 4, - ACTIONS(1796), 1, + [22280] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - ACTIONS(2730), 1, - anon_sym_RPAREN, - STATE(816), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2763), 1, + anon_sym_SEMI, + STATE(926), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21938] = 4, - ACTIONS(599), 1, - anon_sym_RBRACE, - ACTIONS(2732), 1, + [22294] = 4, + ACTIONS(2487), 1, anon_sym_COMMA, - STATE(870), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2765), 1, + anon_sym_SEMI, + STATE(926), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21952] = 4, - ACTIONS(1246), 1, - anon_sym_RPAREN, - ACTIONS(2607), 1, - anon_sym_COMMA, - STATE(903), 1, - aux_sym_formal_parameters_repeat1, + [22308] = 3, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2767), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21966] = 4, - ACTIONS(2536), 1, - anon_sym_COMMA, - ACTIONS(2734), 1, - anon_sym_RPAREN, - STATE(859), 1, - aux_sym_annotation_argument_list_repeat1, + [22319] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21980] = 4, - ACTIONS(1796), 1, + ACTIONS(2591), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_COLON, - STATE(816), 1, - aux_sym_argument_list_repeat1, + [22328] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21994] = 4, - ACTIONS(2654), 1, + ACTIONS(2769), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2736), 1, - anon_sym_SEMI, - STATE(908), 1, - aux_sym__variable_declarator_list_repeat1, + [22337] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(82), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22008] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2738), 1, - anon_sym_with, + [22348] = 3, + ACTIONS(960), 1, + anon_sym_LPAREN, + STATE(1150), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22019] = 3, - ACTIONS(1284), 1, + [22359] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(109), 1, + STATE(99), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22030] = 2, + [22370] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 2, - anon_sym_LBRACE, - anon_sym_permits, - [22039] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(98), 1, - sym_interface_body, + ACTIONS(2771), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [22379] = 3, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2773), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22050] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(1031), 1, - sym_parenthesized_expression, + [22390] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22061] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(90), 1, - sym_interface_body, + ACTIONS(2577), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [22399] = 3, + ACTIONS(1060), 1, + anon_sym_LPAREN, + STATE(1073), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22072] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(1106), 1, - sym_argument_list, + [22410] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(132), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22083] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(383), 1, - sym_argument_list, + [22421] = 3, + ACTIONS(2775), 1, + anon_sym_DASH_GT, + ACTIONS(2777), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22094] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(40), 1, - sym_parenthesized_expression, + [22432] = 3, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2779), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22105] = 3, - ACTIONS(1045), 1, + [22443] = 3, + ACTIONS(960), 1, anon_sym_LPAREN, - STATE(398), 1, - sym_argument_list, + STATE(1069), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22116] = 3, - ACTIONS(1045), 1, + [22454] = 3, + ACTIONS(960), 1, anon_sym_LPAREN, - STATE(349), 1, - sym_argument_list, + STATE(36), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22127] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(79), 1, - sym_class_body, + [22465] = 3, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2781), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22138] = 3, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2744), 1, + [22476] = 3, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2783), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22149] = 2, + [22487] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22158] = 3, - ACTIONS(2382), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_enum_body, + ACTIONS(2785), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [22496] = 3, + ACTIONS(1060), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22169] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(74), 1, - sym_interface_body, + [22507] = 3, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22180] = 2, + [22518] = 3, + ACTIONS(346), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22189] = 2, + [22529] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 2, - anon_sym_COMMA, + [22540] = 3, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2789), 1, anon_sym_SEMI, - [22198] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(131), 1, - sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22209] = 2, + [22551] = 3, + ACTIONS(2791), 1, + anon_sym_LBRACE, + STATE(72), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22218] = 3, - ACTIONS(2754), 1, + [22562] = 3, + ACTIONS(2793), 1, sym_identifier, - ACTIONS(2756), 1, + ACTIONS(2795), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22229] = 2, + [22573] = 3, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22238] = 3, - ACTIONS(491), 1, + [22584] = 3, + ACTIONS(2460), 1, anon_sym_LBRACE, - STATE(416), 1, - sym_array_initializer, + STATE(394), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22249] = 3, - ACTIONS(491), 1, - anon_sym_LBRACE, - STATE(400), 1, - sym_array_initializer, + [22595] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22260] = 3, - ACTIONS(1045), 1, + ACTIONS(2801), 2, + anon_sym_LBRACE, + anon_sym_permits, + [22604] = 3, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(403), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22271] = 3, - ACTIONS(2758), 1, - anon_sym_DOT, - ACTIONS(2760), 1, - anon_sym_SEMI, + [22615] = 3, + ACTIONS(960), 1, + anon_sym_LPAREN, + STATE(25), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22282] = 3, - ACTIONS(1284), 1, + [22626] = 3, + ACTIONS(2445), 1, anon_sym_LBRACE, - STATE(120), 1, - sym_class_body, + STATE(67), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22293] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(1103), 1, - sym_argument_list, + [22637] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22304] = 2, + ACTIONS(2803), 2, + anon_sym_AMP, + anon_sym_RPAREN, + [22646] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2762), 2, - anon_sym_GT, + ACTIONS(2805), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [22313] = 2, + [22655] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22322] = 3, - ACTIONS(939), 1, + [22666] = 3, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(1114), 1, - sym_parenthesized_expression, + STATE(402), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22333] = 3, - ACTIONS(1284), 1, + [22677] = 3, + ACTIONS(1060), 1, + anon_sym_LPAREN, + STATE(1105), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22688] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(140), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22344] = 2, + [22699] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 2, + ACTIONS(2807), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_RBRACE, - [22353] = 3, - ACTIONS(2108), 1, + [22708] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(127), 1, - sym_interface_body, + STATE(87), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22364] = 2, + [22719] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2678), 2, - anon_sym_GT, - anon_sym_COMMA, - [22373] = 3, - ACTIONS(27), 1, + ACTIONS(2809), 2, anon_sym_LBRACE, - STATE(145), 1, - sym_block, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22384] = 3, - ACTIONS(1284), 1, + anon_sym_SEMI, + [22728] = 3, + ACTIONS(346), 1, anon_sym_LBRACE, - STATE(126), 1, - sym_class_body, + STATE(412), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22395] = 3, - ACTIONS(1284), 1, + [22739] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(125), 1, + STATE(106), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22406] = 2, + [22750] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2766), 2, - anon_sym_GT, + ACTIONS(2601), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [22415] = 2, + [22759] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 2, + ACTIONS(2811), 2, anon_sym_GT, anon_sym_COMMA, - [22424] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, + [22768] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(105), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22435] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(124), 1, - sym_class_body, + [22779] = 3, + ACTIONS(2813), 1, + sym_identifier, + STATE(1010), 1, + sym_element_value_pair, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22446] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(1040), 1, - sym_formal_parameters, + [22790] = 3, + ACTIONS(2815), 1, + anon_sym_DOT, + ACTIONS(2817), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22457] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(397), 1, - sym_argument_list, + [22801] = 3, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(2821), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22468] = 3, - ACTIONS(2770), 1, - anon_sym_LBRACE, - STATE(76), 1, - sym_annotation_type_body, + [22812] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22479] = 2, + ACTIONS(2754), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [22821] = 3, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2823), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 2, + [22832] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - anon_sym_throws, - [22488] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(399), 1, - sym_argument_list, + STATE(141), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22499] = 3, - ACTIONS(2774), 1, + [22843] = 3, + ACTIONS(1321), 1, anon_sym_DOT, - ACTIONS(2776), 1, + ACTIONS(2825), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22510] = 3, - ACTIONS(2334), 1, + [22854] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(371), 1, - sym_constructor_body, + STATE(142), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22865] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22521] = 3, - ACTIONS(2778), 1, + ACTIONS(2827), 2, + sym_this, + sym_super, + [22874] = 3, + ACTIONS(1321), 1, anon_sym_DOT, - ACTIONS(2780), 1, + ACTIONS(2829), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22532] = 3, - ACTIONS(2782), 1, - anon_sym_DASH_GT, - ACTIONS(2784), 1, - anon_sym_COLON, + [22885] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22543] = 2, + ACTIONS(2831), 2, + anon_sym_LBRACE, + anon_sym_throws, + [22894] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22552] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(70), 1, - sym_class_body, + ACTIONS(2571), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [22903] = 3, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(662), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22563] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2788), 1, - anon_sym_SEMI, + [22914] = 3, + ACTIONS(2485), 1, + anon_sym_LBRACE, + STATE(127), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22574] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2790), 1, - anon_sym_SEMI, + [22925] = 3, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22585] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2792), 1, - anon_sym_SEMI, + [22936] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22596] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2794), 1, + ACTIONS(2833), 2, + anon_sym_LBRACE, anon_sym_SEMI, + [22945] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22607] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2796), 1, + ACTIONS(2835), 2, + anon_sym_LBRACE, anon_sym_SEMI, + [22954] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22618] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2798), 1, - anon_sym_SEMI, + ACTIONS(2582), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [22963] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22629] = 3, - ACTIONS(1278), 1, + ACTIONS(2837), 2, + anon_sym_LBRACE, + anon_sym_throws, + [22972] = 3, + ACTIONS(1576), 1, + anon_sym_COLON_COLON, + ACTIONS(2456), 1, anon_sym_DOT, - ACTIONS(2800), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22640] = 3, - ACTIONS(2802), 1, + [22983] = 3, + ACTIONS(1321), 1, anon_sym_DOT, - ACTIONS(2804), 1, + ACTIONS(2839), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22651] = 3, - ACTIONS(2406), 1, - anon_sym_LBRACE, - STATE(59), 1, - sym_block, + [22994] = 3, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2841), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22662] = 2, + [23005] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2638), 2, - anon_sym_RPAREN, + ACTIONS(2843), 2, + anon_sym_GT, anon_sym_COMMA, - [22671] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(66), 1, - sym_class_body, + [23014] = 3, + ACTIONS(1321), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22682] = 2, + [23025] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, - anon_sym_RPAREN, + ACTIONS(2847), 2, + anon_sym_GT, anon_sym_COMMA, - [22691] = 2, + [23034] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22700] = 3, - ACTIONS(2108), 1, + ACTIONS(2667), 2, + anon_sym_GT, + anon_sym_COMMA, + [23043] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(105), 1, - sym_interface_body, + STATE(79), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22711] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(110), 1, - sym_class_body, + [23054] = 3, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(1033), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22722] = 2, + [23065] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 2, - anon_sym_new, - sym_identifier, - [22731] = 3, - ACTIONS(1284), 1, + ACTIONS(2849), 2, + anon_sym_LBRACE, + anon_sym_permits, + [23074] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(71), 1, + STATE(133), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22742] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_block, + [23085] = 3, + ACTIONS(1327), 1, + anon_sym_DOT, + ACTIONS(2851), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22753] = 3, - ACTIONS(2406), 1, + [23096] = 3, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(107), 1, - sym_block, + STATE(90), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22764] = 3, - ACTIONS(1284), 1, + [23107] = 3, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(112), 1, - sym_class_body, + STATE(83), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22775] = 2, + [23118] = 3, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(94), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 2, + [23129] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - anon_sym_permits, - [22784] = 2, + STATE(104), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [22793] = 3, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, - anon_sym_DOT, + [23140] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22804] = 3, - ACTIONS(1284), 1, + ACTIONS(2853), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [23149] = 3, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(106), 1, - sym_class_body, + STATE(78), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22815] = 3, - ACTIONS(2814), 1, - anon_sym_LBRACE, - STATE(49), 1, - sym_switch_block, + [23160] = 3, + ACTIONS(1060), 1, + anon_sym_LPAREN, + STATE(408), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22826] = 2, + [23171] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 2, + ACTIONS(2391), 2, anon_sym_GT, anon_sym_COMMA, - [22835] = 2, + [23180] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 2, - sym_this, - sym_super, - [22844] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_formal_parameters, + ACTIONS(1873), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [23189] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22855] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(654), 1, - sym_formal_parameters, + ACTIONS(2855), 2, + anon_sym_new, + sym_identifier, + [23198] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22866] = 2, + ACTIONS(2857), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [23207] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 2, + [23218] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - anon_sym_throws, - [22875] = 3, - ACTIONS(2820), 1, - sym_identifier, - STATE(1016), 1, - sym_element_value_pair, + STATE(77), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22886] = 3, - ACTIONS(2334), 1, - anon_sym_LBRACE, - STATE(357), 1, - sym_constructor_body, + [23229] = 3, + ACTIONS(1060), 1, + anon_sym_LPAREN, + STATE(409), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22897] = 3, - ACTIONS(2042), 1, + [23240] = 3, + ACTIONS(1060), 1, anon_sym_LPAREN, - STATE(985), 1, - sym_formal_parameters, + STATE(368), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22908] = 3, - ACTIONS(1284), 1, + [23251] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(358), 1, + STATE(75), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22919] = 2, + [23262] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(89), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 2, - anon_sym_GT, - anon_sym_COMMA, - [22928] = 2, + [23273] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(119), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2723), 2, - anon_sym_GT, - anon_sym_COMMA, - [22937] = 3, - ACTIONS(2770), 1, + [23284] = 3, + ACTIONS(2791), 1, anon_sym_LBRACE, - STATE(101), 1, + STATE(144), 1, sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22948] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2824), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22959] = 3, - ACTIONS(2108), 1, + [23295] = 3, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(100), 1, + STATE(114), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22970] = 3, - ACTIONS(2108), 1, + [23306] = 3, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(96), 1, - sym_interface_body, + STATE(109), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22981] = 3, - ACTIONS(1272), 1, + [23317] = 3, + ACTIONS(2859), 1, anon_sym_DOT, - ACTIONS(2826), 1, + ACTIONS(2861), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22992] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(95), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23003] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(94), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23014] = 3, - ACTIONS(1284), 1, + [23328] = 3, + ACTIONS(2485), 1, anon_sym_LBRACE, - STATE(89), 1, - sym_class_body, + STATE(110), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23025] = 3, - ACTIONS(1278), 1, + [23339] = 3, + ACTIONS(2863), 1, anon_sym_DOT, - ACTIONS(2828), 1, + ACTIONS(2865), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23036] = 3, - ACTIONS(1272), 1, + [23350] = 3, + ACTIONS(1327), 1, anon_sym_DOT, - ACTIONS(2830), 1, + ACTIONS(2867), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23047] = 2, + [23361] = 3, + ACTIONS(2460), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23056] = 3, - ACTIONS(2108), 1, + [23372] = 3, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(84), 1, + STATE(73), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23067] = 2, + [23383] = 3, + ACTIONS(2042), 1, + anon_sym_LPAREN, + STATE(1050), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23076] = 2, + [23394] = 3, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(58), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2834), 2, - anon_sym_AMP, - anon_sym_RPAREN, - [23085] = 2, + [23405] = 3, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(111), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23094] = 3, - ACTIONS(2382), 1, + [23416] = 3, + ACTIONS(27), 1, anon_sym_LBRACE, - STATE(121), 1, - sym_enum_body, + STATE(220), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23105] = 2, + [23427] = 3, + ACTIONS(2869), 1, + anon_sym_LBRACE, + STATE(47), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23114] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2838), 1, - anon_sym_with, + [23438] = 3, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(124), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23125] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2840), 1, - anon_sym_SEMI, + [23449] = 3, + ACTIONS(2148), 1, + anon_sym_LBRACE, + STATE(118), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23136] = 2, - ACTIONS(2597), 1, - sym_identifier, + [23460] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23144] = 2, - ACTIONS(2842), 1, + ACTIONS(2871), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [23469] = 2, + ACTIONS(2873), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23152] = 2, - ACTIONS(2844), 1, + [23477] = 2, + ACTIONS(2875), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23160] = 2, - ACTIONS(2846), 1, + [23485] = 2, + ACTIONS(2877), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23168] = 2, - ACTIONS(2848), 1, - anon_sym_DASH_GT, + [23493] = 2, + ACTIONS(2879), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23176] = 2, - ACTIONS(1875), 1, - anon_sym_RBRACE, + [23501] = 2, + ACTIONS(2676), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23184] = 2, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, + [23509] = 2, + ACTIONS(2881), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23192] = 2, - ACTIONS(2850), 1, - anon_sym_module, + [23517] = 2, + ACTIONS(2883), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23200] = 2, - ACTIONS(933), 1, - anon_sym_RBRACK, + [23525] = 2, + ACTIONS(2885), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23208] = 2, - ACTIONS(2852), 1, - anon_sym_DOT, + [23533] = 2, + ACTIONS(2887), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23216] = 2, - ACTIONS(2854), 1, - anon_sym_SEMI, + [23541] = 2, + ACTIONS(2889), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23224] = 2, - ACTIONS(1058), 1, - anon_sym_DASH_GT, + [23549] = 2, + ACTIONS(2891), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23232] = 2, - ACTIONS(2856), 1, - anon_sym_SEMI, + [23557] = 2, + ACTIONS(1882), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23240] = 2, - ACTIONS(2858), 1, - ts_builtin_sym_end, + [23565] = 2, + ACTIONS(2893), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23248] = 2, - ACTIONS(2860), 1, - anon_sym_EQ, + [23573] = 2, + ACTIONS(2895), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23256] = 2, - ACTIONS(2523), 1, - anon_sym_RBRACE, + [23581] = 2, + ACTIONS(2897), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23264] = 2, - ACTIONS(2862), 1, - sym_identifier, + [23589] = 2, + ACTIONS(2899), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23272] = 2, - ACTIONS(2864), 1, - anon_sym_RPAREN, + [23597] = 2, + ACTIONS(950), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23280] = 2, - ACTIONS(2734), 1, - anon_sym_RPAREN, + [23605] = 2, + ACTIONS(2901), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23288] = 2, - ACTIONS(2866), 1, - anon_sym_while, + [23613] = 2, + ACTIONS(2903), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23296] = 2, - ACTIONS(2868), 1, - anon_sym_LBRACE, + [23621] = 2, + ACTIONS(1576), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23304] = 2, - ACTIONS(2782), 1, - anon_sym_DASH_GT, + [23629] = 2, + ACTIONS(2905), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23312] = 2, - ACTIONS(2784), 1, - anon_sym_COLON, + [23637] = 2, + ACTIONS(2907), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23320] = 2, - ACTIONS(2870), 1, - anon_sym_SEMI, + [23645] = 2, + ACTIONS(1073), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23328] = 2, - ACTIONS(2872), 1, - anon_sym_LBRACE, + [23653] = 2, + ACTIONS(2909), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23336] = 2, - ACTIONS(2874), 1, - sym_identifier, + [23661] = 2, + ACTIONS(2911), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23344] = 2, - ACTIONS(2876), 1, - sym_identifier, + [23669] = 2, + ACTIONS(2913), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23352] = 2, - ACTIONS(2878), 1, - anon_sym_SEMI, + [23677] = 2, + ACTIONS(2915), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23360] = 2, - ACTIONS(2880), 1, - anon_sym_LBRACE, + [23685] = 2, + ACTIONS(2917), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23368] = 2, - ACTIONS(2882), 1, - anon_sym_RPAREN, + [23693] = 2, + ACTIONS(2919), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23376] = 2, - ACTIONS(2634), 1, - anon_sym_DOT, + [23701] = 2, + ACTIONS(2921), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23384] = 2, - ACTIONS(2884), 1, - anon_sym_EQ, + [23709] = 2, + ACTIONS(2308), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23392] = 2, - ACTIONS(1873), 1, - anon_sym_RBRACE, + [23717] = 2, + ACTIONS(2923), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23400] = 2, - ACTIONS(2886), 1, + [23725] = 2, + ACTIONS(2925), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23408] = 2, - ACTIONS(2888), 1, + [23733] = 2, + ACTIONS(2927), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23416] = 2, - ACTIONS(2890), 1, + [23741] = 2, + ACTIONS(2929), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23424] = 2, - ACTIONS(2892), 1, + [23749] = 2, + ACTIONS(2650), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23432] = 2, - ACTIONS(2894), 1, - anon_sym_RPAREN, + [23757] = 2, + ACTIONS(2931), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23440] = 2, - ACTIONS(2896), 1, - sym_this, + [23765] = 2, + ACTIONS(2933), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23448] = 2, - ACTIONS(2898), 1, + [23773] = 2, + ACTIONS(2935), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23456] = 2, - ACTIONS(2900), 1, + [23781] = 2, + ACTIONS(2937), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23789] = 2, + ACTIONS(2939), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23464] = 2, - ACTIONS(2902), 1, - anon_sym_SEMI, + [23797] = 2, + ACTIONS(2615), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23472] = 2, - ACTIONS(2904), 1, - anon_sym_LPAREN, + [23805] = 2, + ACTIONS(2941), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23480] = 2, - ACTIONS(2906), 1, - anon_sym_LBRACE, + [23813] = 2, + ACTIONS(1871), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23488] = 2, - ACTIONS(2908), 1, - anon_sym_SEMI, + [23821] = 2, + ACTIONS(2943), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23496] = 2, - ACTIONS(2910), 1, - anon_sym_SEMI, + [23829] = 2, + ACTIONS(2945), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23504] = 2, - ACTIONS(2912), 1, - anon_sym_SEMI, + [23837] = 2, + ACTIONS(2947), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23512] = 2, - ACTIONS(921), 1, + [23845] = 2, + ACTIONS(936), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23520] = 2, - ACTIONS(2914), 1, + [23853] = 2, + ACTIONS(2949), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23528] = 2, - ACTIONS(2916), 1, - anon_sym_EQ, + [23861] = 2, + ACTIONS(2682), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23536] = 2, - ACTIONS(1840), 1, - anon_sym_RBRACE, + [23869] = 2, + ACTIONS(2951), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23544] = 2, - ACTIONS(2918), 1, + [23877] = 2, + ACTIONS(2953), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23552] = 2, - ACTIONS(2920), 1, - anon_sym_SEMI, + [23885] = 2, + ACTIONS(2955), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23560] = 2, - ACTIONS(2616), 1, - sym_identifier, + [23893] = 2, + ACTIONS(2957), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23568] = 2, - ACTIONS(2922), 1, - anon_sym_LPAREN, + [23901] = 2, + ACTIONS(2959), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23576] = 2, - ACTIONS(2924), 1, - sym_this, + [23909] = 2, + ACTIONS(2961), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23584] = 2, - ACTIONS(2926), 1, - anon_sym_SEMI, + [23917] = 2, + ACTIONS(2963), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23592] = 2, - ACTIONS(2928), 1, + [23925] = 2, + ACTIONS(2965), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23600] = 2, - ACTIONS(2930), 1, + [23933] = 2, + ACTIONS(2967), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23608] = 2, - ACTIONS(2932), 1, - anon_sym_RBRACE, + [23941] = 2, + ACTIONS(2969), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23616] = 2, - ACTIONS(2934), 1, + [23949] = 2, + ACTIONS(2716), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23624] = 2, - ACTIONS(2936), 1, + [23957] = 2, + ACTIONS(2971), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23632] = 2, - ACTIONS(925), 1, + [23965] = 2, + ACTIONS(926), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23640] = 2, - ACTIONS(2938), 1, - anon_sym_RPAREN, + [23973] = 2, + ACTIONS(2973), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23648] = 2, - ACTIONS(2940), 1, - anon_sym_SEMI, + [23981] = 2, + ACTIONS(2975), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23656] = 2, - ACTIONS(929), 1, - anon_sym_RBRACK, + [23989] = 2, + ACTIONS(2977), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23664] = 2, - ACTIONS(2942), 1, - anon_sym_DASH_GT, + [23997] = 2, + ACTIONS(2979), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23672] = 2, - ACTIONS(2603), 1, + [24005] = 2, + ACTIONS(2566), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23680] = 2, - ACTIONS(2944), 1, - anon_sym_class, + [24013] = 2, + ACTIONS(2981), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23688] = 2, - ACTIONS(2946), 1, - sym_identifier, + [24021] = 2, + ACTIONS(1888), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23696] = 2, - ACTIONS(2948), 1, - sym_identifier, + [24029] = 2, + ACTIONS(2983), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23704] = 2, - ACTIONS(2950), 1, + [24037] = 2, + ACTIONS(2985), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23712] = 2, - ACTIONS(2952), 1, + [24045] = 2, + ACTIONS(2987), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23720] = 2, - ACTIONS(2954), 1, - sym_identifier, + [24053] = 2, + ACTIONS(2989), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23728] = 2, - ACTIONS(2578), 1, + [24061] = 2, + ACTIONS(2555), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23736] = 2, - ACTIONS(2956), 1, - sym_identifier, + [24069] = 2, + ACTIONS(2991), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23744] = 2, - ACTIONS(2958), 1, - anon_sym_SEMI, + [24077] = 2, + ACTIONS(2993), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23752] = 2, - ACTIONS(2960), 1, - sym_identifier, + [24085] = 2, + ACTIONS(2995), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23760] = 2, - ACTIONS(2962), 1, - anon_sym_SEMI, + [24093] = 2, + ACTIONS(2997), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23768] = 2, - ACTIONS(2964), 1, - sym_identifier, + [24101] = 2, + ACTIONS(2999), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23776] = 2, - ACTIONS(2290), 1, - anon_sym_RBRACE, + [24109] = 2, + ACTIONS(2775), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23784] = 2, - ACTIONS(2966), 1, + [24117] = 2, + ACTIONS(3001), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23792] = 2, - ACTIONS(2968), 1, - anon_sym_SEMI, + [24125] = 2, + ACTIONS(2777), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23800] = 2, - ACTIONS(2970), 1, - anon_sym_SEMI, + [24133] = 2, + ACTIONS(924), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23808] = 2, - ACTIONS(2972), 1, + [24141] = 2, + ACTIONS(3003), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, @@ -52912,854 +53835,861 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(299)] = 0, - [SMALL_STATE(300)] = 118, - [SMALL_STATE(301)] = 236, - [SMALL_STATE(302)] = 354, - [SMALL_STATE(303)] = 472, - [SMALL_STATE(304)] = 590, - [SMALL_STATE(305)] = 693, - [SMALL_STATE(306)] = 776, - [SMALL_STATE(307)] = 879, - [SMALL_STATE(308)] = 982, - [SMALL_STATE(309)] = 1072, - [SMALL_STATE(310)] = 1153, - [SMALL_STATE(311)] = 1213, - [SMALL_STATE(312)] = 1273, - [SMALL_STATE(313)] = 1333, - [SMALL_STATE(314)] = 1393, - [SMALL_STATE(315)] = 1456, - [SMALL_STATE(316)] = 1543, - [SMALL_STATE(317)] = 1630, - [SMALL_STATE(318)] = 1717, - [SMALL_STATE(319)] = 1791, - [SMALL_STATE(320)] = 1845, - [SMALL_STATE(321)] = 1899, - [SMALL_STATE(322)] = 1967, - [SMALL_STATE(323)] = 2021, - [SMALL_STATE(324)] = 2078, - [SMALL_STATE(325)] = 2151, - [SMALL_STATE(326)] = 2211, - [SMALL_STATE(327)] = 2274, - [SMALL_STATE(328)] = 2337, - [SMALL_STATE(329)] = 2398, - [SMALL_STATE(330)] = 2452, - [SMALL_STATE(331)] = 2502, - [SMALL_STATE(332)] = 2552, - [SMALL_STATE(333)] = 2634, - [SMALL_STATE(334)] = 2691, - [SMALL_STATE(335)] = 2747, - [SMALL_STATE(336)] = 2821, - [SMALL_STATE(337)] = 2877, - [SMALL_STATE(338)] = 2934, - [SMALL_STATE(339)] = 3005, - [SMALL_STATE(340)] = 3062, - [SMALL_STATE(341)] = 3135, - [SMALL_STATE(342)] = 3187, - [SMALL_STATE(343)] = 3239, - [SMALL_STATE(344)] = 3285, - [SMALL_STATE(345)] = 3331, - [SMALL_STATE(346)] = 3379, - [SMALL_STATE(347)] = 3427, - [SMALL_STATE(348)] = 3475, - [SMALL_STATE(349)] = 3527, - [SMALL_STATE(350)] = 3575, - [SMALL_STATE(351)] = 3627, - [SMALL_STATE(352)] = 3670, - [SMALL_STATE(353)] = 3713, - [SMALL_STATE(354)] = 3756, - [SMALL_STATE(355)] = 3799, - [SMALL_STATE(356)] = 3842, - [SMALL_STATE(357)] = 3885, - [SMALL_STATE(358)] = 3928, - [SMALL_STATE(359)] = 3971, - [SMALL_STATE(360)] = 4014, - [SMALL_STATE(361)] = 4057, - [SMALL_STATE(362)] = 4100, - [SMALL_STATE(363)] = 4143, - [SMALL_STATE(364)] = 4186, - [SMALL_STATE(365)] = 4229, - [SMALL_STATE(366)] = 4272, - [SMALL_STATE(367)] = 4315, - [SMALL_STATE(368)] = 4364, - [SMALL_STATE(369)] = 4407, - [SMALL_STATE(370)] = 4450, - [SMALL_STATE(371)] = 4493, - [SMALL_STATE(372)] = 4536, - [SMALL_STATE(373)] = 4579, - [SMALL_STATE(374)] = 4628, - [SMALL_STATE(375)] = 4671, - [SMALL_STATE(376)] = 4714, - [SMALL_STATE(377)] = 4757, - [SMALL_STATE(378)] = 4800, - [SMALL_STATE(379)] = 4843, - [SMALL_STATE(380)] = 4886, - [SMALL_STATE(381)] = 4929, - [SMALL_STATE(382)] = 4971, - [SMALL_STATE(383)] = 5013, - [SMALL_STATE(384)] = 5055, - [SMALL_STATE(385)] = 5097, - [SMALL_STATE(386)] = 5139, - [SMALL_STATE(387)] = 5181, - [SMALL_STATE(388)] = 5223, - [SMALL_STATE(389)] = 5265, - [SMALL_STATE(390)] = 5307, - [SMALL_STATE(391)] = 5349, - [SMALL_STATE(392)] = 5393, - [SMALL_STATE(393)] = 5435, - [SMALL_STATE(394)] = 5477, - [SMALL_STATE(395)] = 5519, - [SMALL_STATE(396)] = 5561, - [SMALL_STATE(397)] = 5603, - [SMALL_STATE(398)] = 5645, - [SMALL_STATE(399)] = 5687, - [SMALL_STATE(400)] = 5729, - [SMALL_STATE(401)] = 5771, - [SMALL_STATE(402)] = 5813, - [SMALL_STATE(403)] = 5855, - [SMALL_STATE(404)] = 5897, - [SMALL_STATE(405)] = 5939, - [SMALL_STATE(406)] = 5981, - [SMALL_STATE(407)] = 6023, - [SMALL_STATE(408)] = 6071, - [SMALL_STATE(409)] = 6113, - [SMALL_STATE(410)] = 6155, - [SMALL_STATE(411)] = 6197, - [SMALL_STATE(412)] = 6239, - [SMALL_STATE(413)] = 6281, - [SMALL_STATE(414)] = 6323, - [SMALL_STATE(415)] = 6365, - [SMALL_STATE(416)] = 6407, - [SMALL_STATE(417)] = 6449, - [SMALL_STATE(418)] = 6491, - [SMALL_STATE(419)] = 6533, - [SMALL_STATE(420)] = 6575, - [SMALL_STATE(421)] = 6617, - [SMALL_STATE(422)] = 6663, - [SMALL_STATE(423)] = 6704, - [SMALL_STATE(424)] = 6745, - [SMALL_STATE(425)] = 6786, - [SMALL_STATE(426)] = 6827, - [SMALL_STATE(427)] = 6868, - [SMALL_STATE(428)] = 6913, - [SMALL_STATE(429)] = 6954, - [SMALL_STATE(430)] = 6998, - [SMALL_STATE(431)] = 7037, - [SMALL_STATE(432)] = 7078, - [SMALL_STATE(433)] = 7117, - [SMALL_STATE(434)] = 7156, - [SMALL_STATE(435)] = 7195, - [SMALL_STATE(436)] = 7236, - [SMALL_STATE(437)] = 7275, - [SMALL_STATE(438)] = 7314, - [SMALL_STATE(439)] = 7353, - [SMALL_STATE(440)] = 7394, - [SMALL_STATE(441)] = 7433, - [SMALL_STATE(442)] = 7472, - [SMALL_STATE(443)] = 7511, - [SMALL_STATE(444)] = 7550, - [SMALL_STATE(445)] = 7600, - [SMALL_STATE(446)] = 7656, - [SMALL_STATE(447)] = 7724, - [SMALL_STATE(448)] = 7768, - [SMALL_STATE(449)] = 7814, - [SMALL_STATE(450)] = 7856, - [SMALL_STATE(451)] = 7916, - [SMALL_STATE(452)] = 7954, - [SMALL_STATE(453)] = 8016, - [SMALL_STATE(454)] = 8060, - [SMALL_STATE(455)] = 8124, - [SMALL_STATE(456)] = 8186, - [SMALL_STATE(457)] = 8244, - [SMALL_STATE(458)] = 8312, - [SMALL_STATE(459)] = 8356, - [SMALL_STATE(460)] = 8400, - [SMALL_STATE(461)] = 8468, - [SMALL_STATE(462)] = 8512, - [SMALL_STATE(463)] = 8550, - [SMALL_STATE(464)] = 8588, - [SMALL_STATE(465)] = 8626, - [SMALL_STATE(466)] = 8664, - [SMALL_STATE(467)] = 8732, - [SMALL_STATE(468)] = 8770, - [SMALL_STATE(469)] = 8808, - [SMALL_STATE(470)] = 8846, - [SMALL_STATE(471)] = 8883, - [SMALL_STATE(472)] = 8920, - [SMALL_STATE(473)] = 8962, - [SMALL_STATE(474)] = 9006, - [SMALL_STATE(475)] = 9072, - [SMALL_STATE(476)] = 9142, - [SMALL_STATE(477)] = 9186, - [SMALL_STATE(478)] = 9221, - [SMALL_STATE(479)] = 9274, - [SMALL_STATE(480)] = 9327, - [SMALL_STATE(481)] = 9396, - [SMALL_STATE(482)] = 9455, - [SMALL_STATE(483)] = 9516, - [SMALL_STATE(484)] = 9557, - [SMALL_STATE(485)] = 9622, - [SMALL_STATE(486)] = 9681, - [SMALL_STATE(487)] = 9738, - [SMALL_STATE(488)] = 9807, - [SMALL_STATE(489)] = 9876, - [SMALL_STATE(490)] = 9945, - [SMALL_STATE(491)] = 10014, - [SMALL_STATE(492)] = 10057, - [SMALL_STATE(493)] = 10092, - [SMALL_STATE(494)] = 10127, - [SMALL_STATE(495)] = 10192, - [SMALL_STATE(496)] = 10257, - [SMALL_STATE(497)] = 10322, - [SMALL_STATE(498)] = 10377, - [SMALL_STATE(499)] = 10436, - [SMALL_STATE(500)] = 10505, - [SMALL_STATE(501)] = 10540, - [SMALL_STATE(502)] = 10609, - [SMALL_STATE(503)] = 10668, - [SMALL_STATE(504)] = 10703, - [SMALL_STATE(505)] = 10772, - [SMALL_STATE(506)] = 10807, - [SMALL_STATE(507)] = 10876, - [SMALL_STATE(508)] = 10911, - [SMALL_STATE(509)] = 10980, - [SMALL_STATE(510)] = 11049, - [SMALL_STATE(511)] = 11114, - [SMALL_STATE(512)] = 11149, - [SMALL_STATE(513)] = 11196, - [SMALL_STATE(514)] = 11261, - [SMALL_STATE(515)] = 11330, - [SMALL_STATE(516)] = 11365, - [SMALL_STATE(517)] = 11430, - [SMALL_STATE(518)] = 11494, - [SMALL_STATE(519)] = 11560, - [SMALL_STATE(520)] = 11624, - [SMALL_STATE(521)] = 11688, - [SMALL_STATE(522)] = 11752, - [SMALL_STATE(523)] = 11816, - [SMALL_STATE(524)] = 11880, - [SMALL_STATE(525)] = 11936, - [SMALL_STATE(526)] = 12000, - [SMALL_STATE(527)] = 12038, - [SMALL_STATE(528)] = 12088, - [SMALL_STATE(529)] = 12138, - [SMALL_STATE(530)] = 12201, - [SMALL_STATE(531)] = 12264, - [SMALL_STATE(532)] = 12327, - [SMALL_STATE(533)] = 12390, - [SMALL_STATE(534)] = 12445, - [SMALL_STATE(535)] = 12508, - [SMALL_STATE(536)] = 12571, - [SMALL_STATE(537)] = 12634, - [SMALL_STATE(538)] = 12689, - [SMALL_STATE(539)] = 12752, - [SMALL_STATE(540)] = 12807, - [SMALL_STATE(541)] = 12870, - [SMALL_STATE(542)] = 12933, - [SMALL_STATE(543)] = 12996, - [SMALL_STATE(544)] = 13059, - [SMALL_STATE(545)] = 13122, - [SMALL_STATE(546)] = 13177, - [SMALL_STATE(547)] = 13240, - [SMALL_STATE(548)] = 13303, - [SMALL_STATE(549)] = 13366, - [SMALL_STATE(550)] = 13429, - [SMALL_STATE(551)] = 13481, - [SMALL_STATE(552)] = 13533, - [SMALL_STATE(553)] = 13591, - [SMALL_STATE(554)] = 13643, - [SMALL_STATE(555)] = 13695, - [SMALL_STATE(556)] = 13747, - [SMALL_STATE(557)] = 13799, - [SMALL_STATE(558)] = 13851, - [SMALL_STATE(559)] = 13903, - [SMALL_STATE(560)] = 13944, - [SMALL_STATE(561)] = 13975, - [SMALL_STATE(562)] = 14012, - [SMALL_STATE(563)] = 14049, - [SMALL_STATE(564)] = 14080, - [SMALL_STATE(565)] = 14129, - [SMALL_STATE(566)] = 14159, - [SMALL_STATE(567)] = 14189, - [SMALL_STATE(568)] = 14235, - [SMALL_STATE(569)] = 14281, - [SMALL_STATE(570)] = 14327, - [SMALL_STATE(571)] = 14373, - [SMALL_STATE(572)] = 14419, - [SMALL_STATE(573)] = 14465, - [SMALL_STATE(574)] = 14511, - [SMALL_STATE(575)] = 14540, - [SMALL_STATE(576)] = 14569, - [SMALL_STATE(577)] = 14604, - [SMALL_STATE(578)] = 14633, - [SMALL_STATE(579)] = 14682, - [SMALL_STATE(580)] = 14717, - [SMALL_STATE(581)] = 14746, - [SMALL_STATE(582)] = 14774, - [SMALL_STATE(583)] = 14802, - [SMALL_STATE(584)] = 14830, - [SMALL_STATE(585)] = 14858, - [SMALL_STATE(586)] = 14886, - [SMALL_STATE(587)] = 14914, - [SMALL_STATE(588)] = 14942, - [SMALL_STATE(589)] = 14974, - [SMALL_STATE(590)] = 15020, - [SMALL_STATE(591)] = 15048, - [SMALL_STATE(592)] = 15076, - [SMALL_STATE(593)] = 15123, - [SMALL_STATE(594)] = 15150, - [SMALL_STATE(595)] = 15177, - [SMALL_STATE(596)] = 15206, - [SMALL_STATE(597)] = 15240, - [SMALL_STATE(598)] = 15280, - [SMALL_STATE(599)] = 15325, - [SMALL_STATE(600)] = 15364, - [SMALL_STATE(601)] = 15403, - [SMALL_STATE(602)] = 15440, - [SMALL_STATE(603)] = 15473, - [SMALL_STATE(604)] = 15518, - [SMALL_STATE(605)] = 15555, - [SMALL_STATE(606)] = 15592, - [SMALL_STATE(607)] = 15631, - [SMALL_STATE(608)] = 15668, - [SMALL_STATE(609)] = 15710, - [SMALL_STATE(610)] = 15736, - [SMALL_STATE(611)] = 15760, - [SMALL_STATE(612)] = 15802, - [SMALL_STATE(613)] = 15844, - [SMALL_STATE(614)] = 15868, - [SMALL_STATE(615)] = 15910, - [SMALL_STATE(616)] = 15952, - [SMALL_STATE(617)] = 15994, - [SMALL_STATE(618)] = 16036, - [SMALL_STATE(619)] = 16078, - [SMALL_STATE(620)] = 16117, - [SMALL_STATE(621)] = 16156, - [SMALL_STATE(622)] = 16195, - [SMALL_STATE(623)] = 16228, + [SMALL_STATE(303)] = 0, + [SMALL_STATE(304)] = 118, + [SMALL_STATE(305)] = 236, + [SMALL_STATE(306)] = 354, + [SMALL_STATE(307)] = 472, + [SMALL_STATE(308)] = 590, + [SMALL_STATE(309)] = 674, + [SMALL_STATE(310)] = 777, + [SMALL_STATE(311)] = 880, + [SMALL_STATE(312)] = 983, + [SMALL_STATE(313)] = 1074, + [SMALL_STATE(314)] = 1156, + [SMALL_STATE(315)] = 1216, + [SMALL_STATE(316)] = 1276, + [SMALL_STATE(317)] = 1336, + [SMALL_STATE(318)] = 1396, + [SMALL_STATE(319)] = 1465, + [SMALL_STATE(320)] = 1552, + [SMALL_STATE(321)] = 1639, + [SMALL_STATE(322)] = 1726, + [SMALL_STATE(323)] = 1789, + [SMALL_STATE(324)] = 1843, + [SMALL_STATE(325)] = 1897, + [SMALL_STATE(326)] = 1951, + [SMALL_STATE(327)] = 2025, + [SMALL_STATE(328)] = 2098, + [SMALL_STATE(329)] = 2155, + [SMALL_STATE(330)] = 2215, + [SMALL_STATE(331)] = 2275, + [SMALL_STATE(332)] = 2335, + [SMALL_STATE(333)] = 2396, + [SMALL_STATE(334)] = 2457, + [SMALL_STATE(335)] = 2518, + [SMALL_STATE(336)] = 2579, + [SMALL_STATE(337)] = 2642, + [SMALL_STATE(338)] = 2705, + [SMALL_STATE(339)] = 2755, + [SMALL_STATE(340)] = 2809, + [SMALL_STATE(341)] = 2859, + [SMALL_STATE(342)] = 2941, + [SMALL_STATE(343)] = 2998, + [SMALL_STATE(344)] = 3072, + [SMALL_STATE(345)] = 3125, + [SMALL_STATE(346)] = 3172, + [SMALL_STATE(347)] = 3219, + [SMALL_STATE(348)] = 3292, + [SMALL_STATE(349)] = 3339, + [SMALL_STATE(350)] = 3386, + [SMALL_STATE(351)] = 3439, + [SMALL_STATE(352)] = 3510, + [SMALL_STATE(353)] = 3556, + [SMALL_STATE(354)] = 3602, + [SMALL_STATE(355)] = 3654, + [SMALL_STATE(356)] = 3706, + [SMALL_STATE(357)] = 3752, + [SMALL_STATE(358)] = 3798, + [SMALL_STATE(359)] = 3846, + [SMALL_STATE(360)] = 3892, + [SMALL_STATE(361)] = 3938, + [SMALL_STATE(362)] = 3984, + [SMALL_STATE(363)] = 4030, + [SMALL_STATE(364)] = 4076, + [SMALL_STATE(365)] = 4121, + [SMALL_STATE(366)] = 4166, + [SMALL_STATE(367)] = 4211, + [SMALL_STATE(368)] = 4256, + [SMALL_STATE(369)] = 4304, + [SMALL_STATE(370)] = 4352, + [SMALL_STATE(371)] = 4400, + [SMALL_STATE(372)] = 4452, + [SMALL_STATE(373)] = 4500, + [SMALL_STATE(374)] = 4552, + [SMALL_STATE(375)] = 4595, + [SMALL_STATE(376)] = 4638, + [SMALL_STATE(377)] = 4681, + [SMALL_STATE(378)] = 4728, + [SMALL_STATE(379)] = 4771, + [SMALL_STATE(380)] = 4814, + [SMALL_STATE(381)] = 4857, + [SMALL_STATE(382)] = 4900, + [SMALL_STATE(383)] = 4943, + [SMALL_STATE(384)] = 4986, + [SMALL_STATE(385)] = 5029, + [SMALL_STATE(386)] = 5072, + [SMALL_STATE(387)] = 5115, + [SMALL_STATE(388)] = 5158, + [SMALL_STATE(389)] = 5201, + [SMALL_STATE(390)] = 5244, + [SMALL_STATE(391)] = 5287, + [SMALL_STATE(392)] = 5330, + [SMALL_STATE(393)] = 5373, + [SMALL_STATE(394)] = 5416, + [SMALL_STATE(395)] = 5459, + [SMALL_STATE(396)] = 5502, + [SMALL_STATE(397)] = 5545, + [SMALL_STATE(398)] = 5588, + [SMALL_STATE(399)] = 5631, + [SMALL_STATE(400)] = 5674, + [SMALL_STATE(401)] = 5716, + [SMALL_STATE(402)] = 5758, + [SMALL_STATE(403)] = 5800, + [SMALL_STATE(404)] = 5842, + [SMALL_STATE(405)] = 5884, + [SMALL_STATE(406)] = 5926, + [SMALL_STATE(407)] = 5968, + [SMALL_STATE(408)] = 6010, + [SMALL_STATE(409)] = 6052, + [SMALL_STATE(410)] = 6094, + [SMALL_STATE(411)] = 6136, + [SMALL_STATE(412)] = 6178, + [SMALL_STATE(413)] = 6220, + [SMALL_STATE(414)] = 6262, + [SMALL_STATE(415)] = 6304, + [SMALL_STATE(416)] = 6346, + [SMALL_STATE(417)] = 6394, + [SMALL_STATE(418)] = 6436, + [SMALL_STATE(419)] = 6478, + [SMALL_STATE(420)] = 6520, + [SMALL_STATE(421)] = 6562, + [SMALL_STATE(422)] = 6604, + [SMALL_STATE(423)] = 6646, + [SMALL_STATE(424)] = 6688, + [SMALL_STATE(425)] = 6730, + [SMALL_STATE(426)] = 6772, + [SMALL_STATE(427)] = 6814, + [SMALL_STATE(428)] = 6856, + [SMALL_STATE(429)] = 6898, + [SMALL_STATE(430)] = 6944, + [SMALL_STATE(431)] = 6990, + [SMALL_STATE(432)] = 7032, + [SMALL_STATE(433)] = 7073, + [SMALL_STATE(434)] = 7114, + [SMALL_STATE(435)] = 7159, + [SMALL_STATE(436)] = 7199, + [SMALL_STATE(437)] = 7239, + [SMALL_STATE(438)] = 7279, + [SMALL_STATE(439)] = 7318, + [SMALL_STATE(440)] = 7357, + [SMALL_STATE(441)] = 7398, + [SMALL_STATE(442)] = 7437, + [SMALL_STATE(443)] = 7478, + [SMALL_STATE(444)] = 7517, + [SMALL_STATE(445)] = 7556, + [SMALL_STATE(446)] = 7597, + [SMALL_STATE(447)] = 7636, + [SMALL_STATE(448)] = 7675, + [SMALL_STATE(449)] = 7714, + [SMALL_STATE(450)] = 7782, + [SMALL_STATE(451)] = 7846, + [SMALL_STATE(452)] = 7884, + [SMALL_STATE(453)] = 7952, + [SMALL_STATE(454)] = 8020, + [SMALL_STATE(455)] = 8062, + [SMALL_STATE(456)] = 8108, + [SMALL_STATE(457)] = 8146, + [SMALL_STATE(458)] = 8206, + [SMALL_STATE(459)] = 8250, + [SMALL_STATE(460)] = 8318, + [SMALL_STATE(461)] = 8362, + [SMALL_STATE(462)] = 8406, + [SMALL_STATE(463)] = 8444, + [SMALL_STATE(464)] = 8482, + [SMALL_STATE(465)] = 8544, + [SMALL_STATE(466)] = 8588, + [SMALL_STATE(467)] = 8626, + [SMALL_STATE(468)] = 8664, + [SMALL_STATE(469)] = 8702, + [SMALL_STATE(470)] = 8740, + [SMALL_STATE(471)] = 8798, + [SMALL_STATE(472)] = 8860, + [SMALL_STATE(473)] = 8904, + [SMALL_STATE(474)] = 8954, + [SMALL_STATE(475)] = 9010, + [SMALL_STATE(476)] = 9047, + [SMALL_STATE(477)] = 9092, + [SMALL_STATE(478)] = 9129, + [SMALL_STATE(479)] = 9174, + [SMALL_STATE(480)] = 9240, + [SMALL_STATE(481)] = 9310, + [SMALL_STATE(482)] = 9352, + [SMALL_STATE(483)] = 9421, + [SMALL_STATE(484)] = 9480, + [SMALL_STATE(485)] = 9515, + [SMALL_STATE(486)] = 9584, + [SMALL_STATE(487)] = 9653, + [SMALL_STATE(488)] = 9722, + [SMALL_STATE(489)] = 9777, + [SMALL_STATE(490)] = 9846, + [SMALL_STATE(491)] = 9915, + [SMALL_STATE(492)] = 9984, + [SMALL_STATE(493)] = 10031, + [SMALL_STATE(494)] = 10084, + [SMALL_STATE(495)] = 10119, + [SMALL_STATE(496)] = 10178, + [SMALL_STATE(497)] = 10213, + [SMALL_STATE(498)] = 10278, + [SMALL_STATE(499)] = 10339, + [SMALL_STATE(500)] = 10380, + [SMALL_STATE(501)] = 10439, + [SMALL_STATE(502)] = 10504, + [SMALL_STATE(503)] = 10561, + [SMALL_STATE(504)] = 10604, + [SMALL_STATE(505)] = 10639, + [SMALL_STATE(506)] = 10692, + [SMALL_STATE(507)] = 10757, + [SMALL_STATE(508)] = 10822, + [SMALL_STATE(509)] = 10887, + [SMALL_STATE(510)] = 10922, + [SMALL_STATE(511)] = 10991, + [SMALL_STATE(512)] = 11060, + [SMALL_STATE(513)] = 11095, + [SMALL_STATE(514)] = 11154, + [SMALL_STATE(515)] = 11219, + [SMALL_STATE(516)] = 11288, + [SMALL_STATE(517)] = 11323, + [SMALL_STATE(518)] = 11388, + [SMALL_STATE(519)] = 11457, + [SMALL_STATE(520)] = 11492, + [SMALL_STATE(521)] = 11561, + [SMALL_STATE(522)] = 11596, + [SMALL_STATE(523)] = 11660, + [SMALL_STATE(524)] = 11698, + [SMALL_STATE(525)] = 11762, + [SMALL_STATE(526)] = 11826, + [SMALL_STATE(527)] = 11890, + [SMALL_STATE(528)] = 11940, + [SMALL_STATE(529)] = 12006, + [SMALL_STATE(530)] = 12056, + [SMALL_STATE(531)] = 12120, + [SMALL_STATE(532)] = 12184, + [SMALL_STATE(533)] = 12240, + [SMALL_STATE(534)] = 12304, + [SMALL_STATE(535)] = 12367, + [SMALL_STATE(536)] = 12430, + [SMALL_STATE(537)] = 12493, + [SMALL_STATE(538)] = 12556, + [SMALL_STATE(539)] = 12611, + [SMALL_STATE(540)] = 12674, + [SMALL_STATE(541)] = 12729, + [SMALL_STATE(542)] = 12784, + [SMALL_STATE(543)] = 12847, + [SMALL_STATE(544)] = 12910, + [SMALL_STATE(545)] = 12973, + [SMALL_STATE(546)] = 13036, + [SMALL_STATE(547)] = 13099, + [SMALL_STATE(548)] = 13162, + [SMALL_STATE(549)] = 13225, + [SMALL_STATE(550)] = 13288, + [SMALL_STATE(551)] = 13351, + [SMALL_STATE(552)] = 13414, + [SMALL_STATE(553)] = 13469, + [SMALL_STATE(554)] = 13532, + [SMALL_STATE(555)] = 13595, + [SMALL_STATE(556)] = 13627, + [SMALL_STATE(557)] = 13659, + [SMALL_STATE(558)] = 13711, + [SMALL_STATE(559)] = 13763, + [SMALL_STATE(560)] = 13815, + [SMALL_STATE(561)] = 13867, + [SMALL_STATE(562)] = 13919, + [SMALL_STATE(563)] = 13971, + [SMALL_STATE(564)] = 14023, + [SMALL_STATE(565)] = 14081, + [SMALL_STATE(566)] = 14133, + [SMALL_STATE(567)] = 14170, + [SMALL_STATE(568)] = 14207, + [SMALL_STATE(569)] = 14248, + [SMALL_STATE(570)] = 14297, + [SMALL_STATE(571)] = 14327, + [SMALL_STATE(572)] = 14357, + [SMALL_STATE(573)] = 14387, + [SMALL_STATE(574)] = 14417, + [SMALL_STATE(575)] = 14463, + [SMALL_STATE(576)] = 14509, + [SMALL_STATE(577)] = 14555, + [SMALL_STATE(578)] = 14601, + [SMALL_STATE(579)] = 14637, + [SMALL_STATE(580)] = 14683, + [SMALL_STATE(581)] = 14713, + [SMALL_STATE(582)] = 14759, + [SMALL_STATE(583)] = 14805, + [SMALL_STATE(584)] = 14857, + [SMALL_STATE(585)] = 14893, + [SMALL_STATE(586)] = 14923, + [SMALL_STATE(587)] = 14952, + [SMALL_STATE(588)] = 14981, + [SMALL_STATE(589)] = 15010, + [SMALL_STATE(590)] = 15039, + [SMALL_STATE(591)] = 15067, + [SMALL_STATE(592)] = 15095, + [SMALL_STATE(593)] = 15143, + [SMALL_STATE(594)] = 15171, + [SMALL_STATE(595)] = 15199, + [SMALL_STATE(596)] = 15227, + [SMALL_STATE(597)] = 15257, + [SMALL_STATE(598)] = 15289, + [SMALL_STATE(599)] = 15317, + [SMALL_STATE(600)] = 15363, + [SMALL_STATE(601)] = 15391, + [SMALL_STATE(602)] = 15425, + [SMALL_STATE(603)] = 15471, + [SMALL_STATE(604)] = 15511, + [SMALL_STATE(605)] = 15557, + [SMALL_STATE(606)] = 15596, + [SMALL_STATE(607)] = 15639, + [SMALL_STATE(608)] = 15676, + [SMALL_STATE(609)] = 15715, + [SMALL_STATE(610)] = 15758, + [SMALL_STATE(611)] = 15795, + [SMALL_STATE(612)] = 15828, + [SMALL_STATE(613)] = 15871, + [SMALL_STATE(614)] = 15914, + [SMALL_STATE(615)] = 15939, + [SMALL_STATE(616)] = 15976, + [SMALL_STATE(617)] = 16013, + [SMALL_STATE(618)] = 16052, + [SMALL_STATE(619)] = 16077, + [SMALL_STATE(620)] = 16103, + [SMALL_STATE(621)] = 16145, + [SMALL_STATE(622)] = 16185, + [SMALL_STATE(623)] = 16227, [SMALL_STATE(624)] = 16267, - [SMALL_STATE(625)] = 16306, - [SMALL_STATE(626)] = 16345, - [SMALL_STATE(627)] = 16373, - [SMALL_STATE(628)] = 16407, - [SMALL_STATE(629)] = 16441, - [SMALL_STATE(630)] = 16477, - [SMALL_STATE(631)] = 16511, - [SMALL_STATE(632)] = 16547, - [SMALL_STATE(633)] = 16583, - [SMALL_STATE(634)] = 16617, - [SMALL_STATE(635)] = 16651, - [SMALL_STATE(636)] = 16685, - [SMALL_STATE(637)] = 16721, - [SMALL_STATE(638)] = 16757, - [SMALL_STATE(639)] = 16787, - [SMALL_STATE(640)] = 16817, - [SMALL_STATE(641)] = 16851, - [SMALL_STATE(642)] = 16882, - [SMALL_STATE(643)] = 16915, - [SMALL_STATE(644)] = 16946, - [SMALL_STATE(645)] = 16977, - [SMALL_STATE(646)] = 17010, - [SMALL_STATE(647)] = 17043, - [SMALL_STATE(648)] = 17076, - [SMALL_STATE(649)] = 17107, - [SMALL_STATE(650)] = 17140, - [SMALL_STATE(651)] = 17171, - [SMALL_STATE(652)] = 17203, - [SMALL_STATE(653)] = 17233, - [SMALL_STATE(654)] = 17261, - [SMALL_STATE(655)] = 17289, - [SMALL_STATE(656)] = 17321, - [SMALL_STATE(657)] = 17343, - [SMALL_STATE(658)] = 17372, - [SMALL_STATE(659)] = 17401, - [SMALL_STATE(660)] = 17430, - [SMALL_STATE(661)] = 17459, - [SMALL_STATE(662)] = 17494, - [SMALL_STATE(663)] = 17529, - [SMALL_STATE(664)] = 17559, - [SMALL_STATE(665)] = 17587, - [SMALL_STATE(666)] = 17617, - [SMALL_STATE(667)] = 17633, - [SMALL_STATE(668)] = 17662, - [SMALL_STATE(669)] = 17687, - [SMALL_STATE(670)] = 17716, - [SMALL_STATE(671)] = 17745, - [SMALL_STATE(672)] = 17772, - [SMALL_STATE(673)] = 17801, - [SMALL_STATE(674)] = 17825, - [SMALL_STATE(675)] = 17847, - [SMALL_STATE(676)] = 17871, - [SMALL_STATE(677)] = 17891, - [SMALL_STATE(678)] = 17913, - [SMALL_STATE(679)] = 17933, - [SMALL_STATE(680)] = 17953, - [SMALL_STATE(681)] = 17977, - [SMALL_STATE(682)] = 17990, - [SMALL_STATE(683)] = 18007, - [SMALL_STATE(684)] = 18024, - [SMALL_STATE(685)] = 18037, - [SMALL_STATE(686)] = 18050, - [SMALL_STATE(687)] = 18071, - [SMALL_STATE(688)] = 18084, - [SMALL_STATE(689)] = 18097, - [SMALL_STATE(690)] = 18114, - [SMALL_STATE(691)] = 18127, - [SMALL_STATE(692)] = 18144, - [SMALL_STATE(693)] = 18157, - [SMALL_STATE(694)] = 18170, - [SMALL_STATE(695)] = 18183, - [SMALL_STATE(696)] = 18196, - [SMALL_STATE(697)] = 18219, - [SMALL_STATE(698)] = 18242, - [SMALL_STATE(699)] = 18255, - [SMALL_STATE(700)] = 18278, - [SMALL_STATE(701)] = 18295, - [SMALL_STATE(702)] = 18308, - [SMALL_STATE(703)] = 18325, - [SMALL_STATE(704)] = 18338, - [SMALL_STATE(705)] = 18351, - [SMALL_STATE(706)] = 18364, - [SMALL_STATE(707)] = 18385, - [SMALL_STATE(708)] = 18398, - [SMALL_STATE(709)] = 18421, - [SMALL_STATE(710)] = 18434, - [SMALL_STATE(711)] = 18447, - [SMALL_STATE(712)] = 18460, - [SMALL_STATE(713)] = 18473, - [SMALL_STATE(714)] = 18486, - [SMALL_STATE(715)] = 18509, - [SMALL_STATE(716)] = 18522, - [SMALL_STATE(717)] = 18535, - [SMALL_STATE(718)] = 18552, - [SMALL_STATE(719)] = 18565, - [SMALL_STATE(720)] = 18582, - [SMALL_STATE(721)] = 18595, - [SMALL_STATE(722)] = 18612, - [SMALL_STATE(723)] = 18629, - [SMALL_STATE(724)] = 18650, - [SMALL_STATE(725)] = 18663, - [SMALL_STATE(726)] = 18676, - [SMALL_STATE(727)] = 18693, - [SMALL_STATE(728)] = 18710, - [SMALL_STATE(729)] = 18723, - [SMALL_STATE(730)] = 18736, - [SMALL_STATE(731)] = 18749, - [SMALL_STATE(732)] = 18766, - [SMALL_STATE(733)] = 18779, - [SMALL_STATE(734)] = 18792, - [SMALL_STATE(735)] = 18809, - [SMALL_STATE(736)] = 18822, - [SMALL_STATE(737)] = 18835, - [SMALL_STATE(738)] = 18848, - [SMALL_STATE(739)] = 18871, - [SMALL_STATE(740)] = 18884, - [SMALL_STATE(741)] = 18901, - [SMALL_STATE(742)] = 18914, - [SMALL_STATE(743)] = 18927, - [SMALL_STATE(744)] = 18940, - [SMALL_STATE(745)] = 18953, - [SMALL_STATE(746)] = 18966, - [SMALL_STATE(747)] = 18986, - [SMALL_STATE(748)] = 19006, - [SMALL_STATE(749)] = 19026, - [SMALL_STATE(750)] = 19044, - [SMALL_STATE(751)] = 19060, - [SMALL_STATE(752)] = 19076, - [SMALL_STATE(753)] = 19090, - [SMALL_STATE(754)] = 19106, - [SMALL_STATE(755)] = 19122, - [SMALL_STATE(756)] = 19140, - [SMALL_STATE(757)] = 19156, - [SMALL_STATE(758)] = 19168, - [SMALL_STATE(759)] = 19186, - [SMALL_STATE(760)] = 19202, - [SMALL_STATE(761)] = 19222, - [SMALL_STATE(762)] = 19242, - [SMALL_STATE(763)] = 19254, - [SMALL_STATE(764)] = 19274, - [SMALL_STATE(765)] = 19290, - [SMALL_STATE(766)] = 19306, - [SMALL_STATE(767)] = 19318, - [SMALL_STATE(768)] = 19336, - [SMALL_STATE(769)] = 19348, - [SMALL_STATE(770)] = 19366, - [SMALL_STATE(771)] = 19381, - [SMALL_STATE(772)] = 19396, - [SMALL_STATE(773)] = 19411, - [SMALL_STATE(774)] = 19426, - [SMALL_STATE(775)] = 19441, - [SMALL_STATE(776)] = 19456, - [SMALL_STATE(777)] = 19471, - [SMALL_STATE(778)] = 19488, - [SMALL_STATE(779)] = 19503, - [SMALL_STATE(780)] = 19520, - [SMALL_STATE(781)] = 19535, - [SMALL_STATE(782)] = 19550, - [SMALL_STATE(783)] = 19567, - [SMALL_STATE(784)] = 19582, - [SMALL_STATE(785)] = 19597, - [SMALL_STATE(786)] = 19612, - [SMALL_STATE(787)] = 19627, - [SMALL_STATE(788)] = 19644, - [SMALL_STATE(789)] = 19659, - [SMALL_STATE(790)] = 19674, - [SMALL_STATE(791)] = 19689, - [SMALL_STATE(792)] = 19702, - [SMALL_STATE(793)] = 19719, - [SMALL_STATE(794)] = 19734, - [SMALL_STATE(795)] = 19745, - [SMALL_STATE(796)] = 19762, - [SMALL_STATE(797)] = 19779, - [SMALL_STATE(798)] = 19794, - [SMALL_STATE(799)] = 19805, - [SMALL_STATE(800)] = 19820, - [SMALL_STATE(801)] = 19837, - [SMALL_STATE(802)] = 19854, - [SMALL_STATE(803)] = 19869, - [SMALL_STATE(804)] = 19886, - [SMALL_STATE(805)] = 19903, - [SMALL_STATE(806)] = 19920, - [SMALL_STATE(807)] = 19935, - [SMALL_STATE(808)] = 19950, - [SMALL_STATE(809)] = 19967, - [SMALL_STATE(810)] = 19984, - [SMALL_STATE(811)] = 20001, - [SMALL_STATE(812)] = 20018, - [SMALL_STATE(813)] = 20035, - [SMALL_STATE(814)] = 20052, - [SMALL_STATE(815)] = 20069, - [SMALL_STATE(816)] = 20084, - [SMALL_STATE(817)] = 20099, - [SMALL_STATE(818)] = 20116, - [SMALL_STATE(819)] = 20133, - [SMALL_STATE(820)] = 20148, - [SMALL_STATE(821)] = 20165, - [SMALL_STATE(822)] = 20180, - [SMALL_STATE(823)] = 20195, - [SMALL_STATE(824)] = 20206, - [SMALL_STATE(825)] = 20221, - [SMALL_STATE(826)] = 20236, - [SMALL_STATE(827)] = 20253, - [SMALL_STATE(828)] = 20268, - [SMALL_STATE(829)] = 20285, - [SMALL_STATE(830)] = 20300, - [SMALL_STATE(831)] = 20317, - [SMALL_STATE(832)] = 20332, - [SMALL_STATE(833)] = 20347, - [SMALL_STATE(834)] = 20362, - [SMALL_STATE(835)] = 20377, - [SMALL_STATE(836)] = 20388, - [SMALL_STATE(837)] = 20405, - [SMALL_STATE(838)] = 20420, - [SMALL_STATE(839)] = 20437, - [SMALL_STATE(840)] = 20452, - [SMALL_STATE(841)] = 20469, - [SMALL_STATE(842)] = 20486, - [SMALL_STATE(843)] = 20503, - [SMALL_STATE(844)] = 20518, - [SMALL_STATE(845)] = 20529, - [SMALL_STATE(846)] = 20546, - [SMALL_STATE(847)] = 20561, - [SMALL_STATE(848)] = 20576, - [SMALL_STATE(849)] = 20591, - [SMALL_STATE(850)] = 20608, - [SMALL_STATE(851)] = 20622, - [SMALL_STATE(852)] = 20636, - [SMALL_STATE(853)] = 20650, - [SMALL_STATE(854)] = 20664, - [SMALL_STATE(855)] = 20678, - [SMALL_STATE(856)] = 20692, - [SMALL_STATE(857)] = 20706, - [SMALL_STATE(858)] = 20720, - [SMALL_STATE(859)] = 20734, - [SMALL_STATE(860)] = 20748, - [SMALL_STATE(861)] = 20760, - [SMALL_STATE(862)] = 20774, - [SMALL_STATE(863)] = 20788, - [SMALL_STATE(864)] = 20802, - [SMALL_STATE(865)] = 20816, - [SMALL_STATE(866)] = 20826, - [SMALL_STATE(867)] = 20836, - [SMALL_STATE(868)] = 20850, - [SMALL_STATE(869)] = 20864, - [SMALL_STATE(870)] = 20874, - [SMALL_STATE(871)] = 20888, - [SMALL_STATE(872)] = 20900, - [SMALL_STATE(873)] = 20914, - [SMALL_STATE(874)] = 20928, - [SMALL_STATE(875)] = 20942, - [SMALL_STATE(876)] = 20954, - [SMALL_STATE(877)] = 20968, - [SMALL_STATE(878)] = 20982, - [SMALL_STATE(879)] = 20994, - [SMALL_STATE(880)] = 21008, - [SMALL_STATE(881)] = 21022, - [SMALL_STATE(882)] = 21034, - [SMALL_STATE(883)] = 21048, - [SMALL_STATE(884)] = 21058, - [SMALL_STATE(885)] = 21072, - [SMALL_STATE(886)] = 21086, - [SMALL_STATE(887)] = 21100, - [SMALL_STATE(888)] = 21110, - [SMALL_STATE(889)] = 21124, - [SMALL_STATE(890)] = 21138, - [SMALL_STATE(891)] = 21152, - [SMALL_STATE(892)] = 21166, - [SMALL_STATE(893)] = 21180, - [SMALL_STATE(894)] = 21194, - [SMALL_STATE(895)] = 21208, - [SMALL_STATE(896)] = 21218, - [SMALL_STATE(897)] = 21228, - [SMALL_STATE(898)] = 21242, - [SMALL_STATE(899)] = 21252, - [SMALL_STATE(900)] = 21266, - [SMALL_STATE(901)] = 21280, - [SMALL_STATE(902)] = 21290, - [SMALL_STATE(903)] = 21304, - [SMALL_STATE(904)] = 21318, - [SMALL_STATE(905)] = 21332, - [SMALL_STATE(906)] = 21346, - [SMALL_STATE(907)] = 21360, - [SMALL_STATE(908)] = 21374, - [SMALL_STATE(909)] = 21388, - [SMALL_STATE(910)] = 21398, - [SMALL_STATE(911)] = 21412, - [SMALL_STATE(912)] = 21426, - [SMALL_STATE(913)] = 21440, - [SMALL_STATE(914)] = 21454, - [SMALL_STATE(915)] = 21468, - [SMALL_STATE(916)] = 21482, - [SMALL_STATE(917)] = 21496, - [SMALL_STATE(918)] = 21510, - [SMALL_STATE(919)] = 21524, - [SMALL_STATE(920)] = 21538, - [SMALL_STATE(921)] = 21552, - [SMALL_STATE(922)] = 21566, - [SMALL_STATE(923)] = 21580, - [SMALL_STATE(924)] = 21594, - [SMALL_STATE(925)] = 21608, - [SMALL_STATE(926)] = 21622, - [SMALL_STATE(927)] = 21636, - [SMALL_STATE(928)] = 21650, - [SMALL_STATE(929)] = 21664, - [SMALL_STATE(930)] = 21676, - [SMALL_STATE(931)] = 21690, - [SMALL_STATE(932)] = 21704, - [SMALL_STATE(933)] = 21718, - [SMALL_STATE(934)] = 21732, - [SMALL_STATE(935)] = 21746, - [SMALL_STATE(936)] = 21760, - [SMALL_STATE(937)] = 21770, - [SMALL_STATE(938)] = 21784, - [SMALL_STATE(939)] = 21798, - [SMALL_STATE(940)] = 21812, - [SMALL_STATE(941)] = 21826, - [SMALL_STATE(942)] = 21840, - [SMALL_STATE(943)] = 21854, - [SMALL_STATE(944)] = 21868, - [SMALL_STATE(945)] = 21882, - [SMALL_STATE(946)] = 21896, - [SMALL_STATE(947)] = 21910, - [SMALL_STATE(948)] = 21924, - [SMALL_STATE(949)] = 21938, - [SMALL_STATE(950)] = 21952, - [SMALL_STATE(951)] = 21966, - [SMALL_STATE(952)] = 21980, - [SMALL_STATE(953)] = 21994, - [SMALL_STATE(954)] = 22008, - [SMALL_STATE(955)] = 22019, - [SMALL_STATE(956)] = 22030, - [SMALL_STATE(957)] = 22039, - [SMALL_STATE(958)] = 22050, - [SMALL_STATE(959)] = 22061, - [SMALL_STATE(960)] = 22072, - [SMALL_STATE(961)] = 22083, - [SMALL_STATE(962)] = 22094, - [SMALL_STATE(963)] = 22105, - [SMALL_STATE(964)] = 22116, - [SMALL_STATE(965)] = 22127, - [SMALL_STATE(966)] = 22138, - [SMALL_STATE(967)] = 22149, - [SMALL_STATE(968)] = 22158, - [SMALL_STATE(969)] = 22169, - [SMALL_STATE(970)] = 22180, - [SMALL_STATE(971)] = 22189, - [SMALL_STATE(972)] = 22198, - [SMALL_STATE(973)] = 22209, - [SMALL_STATE(974)] = 22218, - [SMALL_STATE(975)] = 22229, - [SMALL_STATE(976)] = 22238, - [SMALL_STATE(977)] = 22249, - [SMALL_STATE(978)] = 22260, - [SMALL_STATE(979)] = 22271, - [SMALL_STATE(980)] = 22282, - [SMALL_STATE(981)] = 22293, - [SMALL_STATE(982)] = 22304, - [SMALL_STATE(983)] = 22313, - [SMALL_STATE(984)] = 22322, - [SMALL_STATE(985)] = 22333, - [SMALL_STATE(986)] = 22344, - [SMALL_STATE(987)] = 22353, - [SMALL_STATE(988)] = 22364, - [SMALL_STATE(989)] = 22373, - [SMALL_STATE(990)] = 22384, - [SMALL_STATE(991)] = 22395, - [SMALL_STATE(992)] = 22406, - [SMALL_STATE(993)] = 22415, - [SMALL_STATE(994)] = 22424, - [SMALL_STATE(995)] = 22435, - [SMALL_STATE(996)] = 22446, - [SMALL_STATE(997)] = 22457, - [SMALL_STATE(998)] = 22468, - [SMALL_STATE(999)] = 22479, - [SMALL_STATE(1000)] = 22488, - [SMALL_STATE(1001)] = 22499, - [SMALL_STATE(1002)] = 22510, - [SMALL_STATE(1003)] = 22521, - [SMALL_STATE(1004)] = 22532, - [SMALL_STATE(1005)] = 22543, - [SMALL_STATE(1006)] = 22552, - [SMALL_STATE(1007)] = 22563, - [SMALL_STATE(1008)] = 22574, - [SMALL_STATE(1009)] = 22585, - [SMALL_STATE(1010)] = 22596, - [SMALL_STATE(1011)] = 22607, - [SMALL_STATE(1012)] = 22618, - [SMALL_STATE(1013)] = 22629, - [SMALL_STATE(1014)] = 22640, - [SMALL_STATE(1015)] = 22651, - [SMALL_STATE(1016)] = 22662, - [SMALL_STATE(1017)] = 22671, - [SMALL_STATE(1018)] = 22682, - [SMALL_STATE(1019)] = 22691, - [SMALL_STATE(1020)] = 22700, - [SMALL_STATE(1021)] = 22711, - [SMALL_STATE(1022)] = 22722, - [SMALL_STATE(1023)] = 22731, - [SMALL_STATE(1024)] = 22742, - [SMALL_STATE(1025)] = 22753, - [SMALL_STATE(1026)] = 22764, - [SMALL_STATE(1027)] = 22775, - [SMALL_STATE(1028)] = 22784, - [SMALL_STATE(1029)] = 22793, - [SMALL_STATE(1030)] = 22804, - [SMALL_STATE(1031)] = 22815, - [SMALL_STATE(1032)] = 22826, - [SMALL_STATE(1033)] = 22835, - [SMALL_STATE(1034)] = 22844, - [SMALL_STATE(1035)] = 22855, - [SMALL_STATE(1036)] = 22866, - [SMALL_STATE(1037)] = 22875, - [SMALL_STATE(1038)] = 22886, - [SMALL_STATE(1039)] = 22897, - [SMALL_STATE(1040)] = 22908, - [SMALL_STATE(1041)] = 22919, - [SMALL_STATE(1042)] = 22928, - [SMALL_STATE(1043)] = 22937, - [SMALL_STATE(1044)] = 22948, - [SMALL_STATE(1045)] = 22959, - [SMALL_STATE(1046)] = 22970, - [SMALL_STATE(1047)] = 22981, - [SMALL_STATE(1048)] = 22992, - [SMALL_STATE(1049)] = 23003, - [SMALL_STATE(1050)] = 23014, - [SMALL_STATE(1051)] = 23025, - [SMALL_STATE(1052)] = 23036, - [SMALL_STATE(1053)] = 23047, - [SMALL_STATE(1054)] = 23056, - [SMALL_STATE(1055)] = 23067, - [SMALL_STATE(1056)] = 23076, - [SMALL_STATE(1057)] = 23085, - [SMALL_STATE(1058)] = 23094, - [SMALL_STATE(1059)] = 23105, - [SMALL_STATE(1060)] = 23114, - [SMALL_STATE(1061)] = 23125, - [SMALL_STATE(1062)] = 23136, - [SMALL_STATE(1063)] = 23144, - [SMALL_STATE(1064)] = 23152, - [SMALL_STATE(1065)] = 23160, - [SMALL_STATE(1066)] = 23168, - [SMALL_STATE(1067)] = 23176, - [SMALL_STATE(1068)] = 23184, - [SMALL_STATE(1069)] = 23192, - [SMALL_STATE(1070)] = 23200, - [SMALL_STATE(1071)] = 23208, - [SMALL_STATE(1072)] = 23216, - [SMALL_STATE(1073)] = 23224, - [SMALL_STATE(1074)] = 23232, - [SMALL_STATE(1075)] = 23240, - [SMALL_STATE(1076)] = 23248, - [SMALL_STATE(1077)] = 23256, - [SMALL_STATE(1078)] = 23264, - [SMALL_STATE(1079)] = 23272, - [SMALL_STATE(1080)] = 23280, - [SMALL_STATE(1081)] = 23288, - [SMALL_STATE(1082)] = 23296, - [SMALL_STATE(1083)] = 23304, - [SMALL_STATE(1084)] = 23312, - [SMALL_STATE(1085)] = 23320, - [SMALL_STATE(1086)] = 23328, - [SMALL_STATE(1087)] = 23336, - [SMALL_STATE(1088)] = 23344, - [SMALL_STATE(1089)] = 23352, - [SMALL_STATE(1090)] = 23360, - [SMALL_STATE(1091)] = 23368, - [SMALL_STATE(1092)] = 23376, - [SMALL_STATE(1093)] = 23384, - [SMALL_STATE(1094)] = 23392, - [SMALL_STATE(1095)] = 23400, - [SMALL_STATE(1096)] = 23408, - [SMALL_STATE(1097)] = 23416, - [SMALL_STATE(1098)] = 23424, - [SMALL_STATE(1099)] = 23432, - [SMALL_STATE(1100)] = 23440, - [SMALL_STATE(1101)] = 23448, - [SMALL_STATE(1102)] = 23456, - [SMALL_STATE(1103)] = 23464, - [SMALL_STATE(1104)] = 23472, - [SMALL_STATE(1105)] = 23480, - [SMALL_STATE(1106)] = 23488, - [SMALL_STATE(1107)] = 23496, - [SMALL_STATE(1108)] = 23504, - [SMALL_STATE(1109)] = 23512, - [SMALL_STATE(1110)] = 23520, - [SMALL_STATE(1111)] = 23528, - [SMALL_STATE(1112)] = 23536, - [SMALL_STATE(1113)] = 23544, - [SMALL_STATE(1114)] = 23552, - [SMALL_STATE(1115)] = 23560, - [SMALL_STATE(1116)] = 23568, - [SMALL_STATE(1117)] = 23576, - [SMALL_STATE(1118)] = 23584, - [SMALL_STATE(1119)] = 23592, - [SMALL_STATE(1120)] = 23600, - [SMALL_STATE(1121)] = 23608, - [SMALL_STATE(1122)] = 23616, - [SMALL_STATE(1123)] = 23624, - [SMALL_STATE(1124)] = 23632, - [SMALL_STATE(1125)] = 23640, - [SMALL_STATE(1126)] = 23648, - [SMALL_STATE(1127)] = 23656, - [SMALL_STATE(1128)] = 23664, - [SMALL_STATE(1129)] = 23672, - [SMALL_STATE(1130)] = 23680, - [SMALL_STATE(1131)] = 23688, - [SMALL_STATE(1132)] = 23696, - [SMALL_STATE(1133)] = 23704, - [SMALL_STATE(1134)] = 23712, - [SMALL_STATE(1135)] = 23720, - [SMALL_STATE(1136)] = 23728, - [SMALL_STATE(1137)] = 23736, - [SMALL_STATE(1138)] = 23744, - [SMALL_STATE(1139)] = 23752, - [SMALL_STATE(1140)] = 23760, - [SMALL_STATE(1141)] = 23768, - [SMALL_STATE(1142)] = 23776, - [SMALL_STATE(1143)] = 23784, - [SMALL_STATE(1144)] = 23792, - [SMALL_STATE(1145)] = 23800, - [SMALL_STATE(1146)] = 23808, + [SMALL_STATE(625)] = 16307, + [SMALL_STATE(626)] = 16349, + [SMALL_STATE(627)] = 16389, + [SMALL_STATE(628)] = 16429, + [SMALL_STATE(629)] = 16471, + [SMALL_STATE(630)] = 16511, + [SMALL_STATE(631)] = 16548, + [SMALL_STATE(632)] = 16581, + [SMALL_STATE(633)] = 16618, + [SMALL_STATE(634)] = 16647, + [SMALL_STATE(635)] = 16684, + [SMALL_STATE(636)] = 16719, + [SMALL_STATE(637)] = 16753, + [SMALL_STATE(638)] = 16787, + [SMALL_STATE(639)] = 16821, + [SMALL_STATE(640)] = 16855, + [SMALL_STATE(641)] = 16885, + [SMALL_STATE(642)] = 16917, + [SMALL_STATE(643)] = 16951, + [SMALL_STATE(644)] = 16987, + [SMALL_STATE(645)] = 17017, + [SMALL_STATE(646)] = 17051, + [SMALL_STATE(647)] = 17085, + [SMALL_STATE(648)] = 17119, + [SMALL_STATE(649)] = 17153, + [SMALL_STATE(650)] = 17189, + [SMALL_STATE(651)] = 17222, + [SMALL_STATE(652)] = 17253, + [SMALL_STATE(653)] = 17286, + [SMALL_STATE(654)] = 17309, + [SMALL_STATE(655)] = 17340, + [SMALL_STATE(656)] = 17371, + [SMALL_STATE(657)] = 17402, + [SMALL_STATE(658)] = 17432, + [SMALL_STATE(659)] = 17462, + [SMALL_STATE(660)] = 17492, + [SMALL_STATE(661)] = 17524, + [SMALL_STATE(662)] = 17552, + [SMALL_STATE(663)] = 17580, + [SMALL_STATE(664)] = 17612, + [SMALL_STATE(665)] = 17641, + [SMALL_STATE(666)] = 17676, + [SMALL_STATE(667)] = 17705, + [SMALL_STATE(668)] = 17736, + [SMALL_STATE(669)] = 17767, + [SMALL_STATE(670)] = 17802, + [SMALL_STATE(671)] = 17828, + [SMALL_STATE(672)] = 17856, + [SMALL_STATE(673)] = 17872, + [SMALL_STATE(674)] = 17902, + [SMALL_STATE(675)] = 17923, + [SMALL_STATE(676)] = 17952, + [SMALL_STATE(677)] = 17981, + [SMALL_STATE(678)] = 18010, + [SMALL_STATE(679)] = 18039, + [SMALL_STATE(680)] = 18064, + [SMALL_STATE(681)] = 18084, + [SMALL_STATE(682)] = 18104, + [SMALL_STATE(683)] = 18128, + [SMALL_STATE(684)] = 18152, + [SMALL_STATE(685)] = 18174, + [SMALL_STATE(686)] = 18196, + [SMALL_STATE(687)] = 18218, + [SMALL_STATE(688)] = 18231, + [SMALL_STATE(689)] = 18244, + [SMALL_STATE(690)] = 18263, + [SMALL_STATE(691)] = 18280, + [SMALL_STATE(692)] = 18297, + [SMALL_STATE(693)] = 18316, + [SMALL_STATE(694)] = 18333, + [SMALL_STATE(695)] = 18356, + [SMALL_STATE(696)] = 18379, + [SMALL_STATE(697)] = 18392, + [SMALL_STATE(698)] = 18409, + [SMALL_STATE(699)] = 18426, + [SMALL_STATE(700)] = 18443, + [SMALL_STATE(701)] = 18466, + [SMALL_STATE(702)] = 18487, + [SMALL_STATE(703)] = 18504, + [SMALL_STATE(704)] = 18521, + [SMALL_STATE(705)] = 18538, + [SMALL_STATE(706)] = 18555, + [SMALL_STATE(707)] = 18568, + [SMALL_STATE(708)] = 18581, + [SMALL_STATE(709)] = 18594, + [SMALL_STATE(710)] = 18607, + [SMALL_STATE(711)] = 18626, + [SMALL_STATE(712)] = 18643, + [SMALL_STATE(713)] = 18666, + [SMALL_STATE(714)] = 18679, + [SMALL_STATE(715)] = 18692, + [SMALL_STATE(716)] = 18705, + [SMALL_STATE(717)] = 18718, + [SMALL_STATE(718)] = 18735, + [SMALL_STATE(719)] = 18748, + [SMALL_STATE(720)] = 18767, + [SMALL_STATE(721)] = 18780, + [SMALL_STATE(722)] = 18793, + [SMALL_STATE(723)] = 18806, + [SMALL_STATE(724)] = 18819, + [SMALL_STATE(725)] = 18832, + [SMALL_STATE(726)] = 18845, + [SMALL_STATE(727)] = 18858, + [SMALL_STATE(728)] = 18871, + [SMALL_STATE(729)] = 18884, + [SMALL_STATE(730)] = 18897, + [SMALL_STATE(731)] = 18910, + [SMALL_STATE(732)] = 18923, + [SMALL_STATE(733)] = 18936, + [SMALL_STATE(734)] = 18949, + [SMALL_STATE(735)] = 18962, + [SMALL_STATE(736)] = 18975, + [SMALL_STATE(737)] = 18988, + [SMALL_STATE(738)] = 19001, + [SMALL_STATE(739)] = 19014, + [SMALL_STATE(740)] = 19027, + [SMALL_STATE(741)] = 19040, + [SMALL_STATE(742)] = 19057, + [SMALL_STATE(743)] = 19070, + [SMALL_STATE(744)] = 19093, + [SMALL_STATE(745)] = 19106, + [SMALL_STATE(746)] = 19119, + [SMALL_STATE(747)] = 19132, + [SMALL_STATE(748)] = 19149, + [SMALL_STATE(749)] = 19162, + [SMALL_STATE(750)] = 19175, + [SMALL_STATE(751)] = 19188, + [SMALL_STATE(752)] = 19201, + [SMALL_STATE(753)] = 19218, + [SMALL_STATE(754)] = 19235, + [SMALL_STATE(755)] = 19248, + [SMALL_STATE(756)] = 19261, + [SMALL_STATE(757)] = 19284, + [SMALL_STATE(758)] = 19301, + [SMALL_STATE(759)] = 19322, + [SMALL_STATE(760)] = 19335, + [SMALL_STATE(761)] = 19351, + [SMALL_STATE(762)] = 19371, + [SMALL_STATE(763)] = 19387, + [SMALL_STATE(764)] = 19407, + [SMALL_STATE(765)] = 19425, + [SMALL_STATE(766)] = 19445, + [SMALL_STATE(767)] = 19465, + [SMALL_STATE(768)] = 19481, + [SMALL_STATE(769)] = 19497, + [SMALL_STATE(770)] = 19513, + [SMALL_STATE(771)] = 19529, + [SMALL_STATE(772)] = 19545, + [SMALL_STATE(773)] = 19557, + [SMALL_STATE(774)] = 19573, + [SMALL_STATE(775)] = 19589, + [SMALL_STATE(776)] = 19605, + [SMALL_STATE(777)] = 19621, + [SMALL_STATE(778)] = 19633, + [SMALL_STATE(779)] = 19649, + [SMALL_STATE(780)] = 19665, + [SMALL_STATE(781)] = 19681, + [SMALL_STATE(782)] = 19697, + [SMALL_STATE(783)] = 19713, + [SMALL_STATE(784)] = 19729, + [SMALL_STATE(785)] = 19745, + [SMALL_STATE(786)] = 19765, + [SMALL_STATE(787)] = 19785, + [SMALL_STATE(788)] = 19801, + [SMALL_STATE(789)] = 19817, + [SMALL_STATE(790)] = 19833, + [SMALL_STATE(791)] = 19849, + [SMALL_STATE(792)] = 19865, + [SMALL_STATE(793)] = 19881, + [SMALL_STATE(794)] = 19897, + [SMALL_STATE(795)] = 19913, + [SMALL_STATE(796)] = 19929, + [SMALL_STATE(797)] = 19943, + [SMALL_STATE(798)] = 19959, + [SMALL_STATE(799)] = 19975, + [SMALL_STATE(800)] = 19992, + [SMALL_STATE(801)] = 20007, + [SMALL_STATE(802)] = 20022, + [SMALL_STATE(803)] = 20037, + [SMALL_STATE(804)] = 20048, + [SMALL_STATE(805)] = 20063, + [SMALL_STATE(806)] = 20078, + [SMALL_STATE(807)] = 20093, + [SMALL_STATE(808)] = 20110, + [SMALL_STATE(809)] = 20121, + [SMALL_STATE(810)] = 20136, + [SMALL_STATE(811)] = 20153, + [SMALL_STATE(812)] = 20170, + [SMALL_STATE(813)] = 20181, + [SMALL_STATE(814)] = 20198, + [SMALL_STATE(815)] = 20213, + [SMALL_STATE(816)] = 20228, + [SMALL_STATE(817)] = 20243, + [SMALL_STATE(818)] = 20256, + [SMALL_STATE(819)] = 20273, + [SMALL_STATE(820)] = 20290, + [SMALL_STATE(821)] = 20303, + [SMALL_STATE(822)] = 20320, + [SMALL_STATE(823)] = 20335, + [SMALL_STATE(824)] = 20352, + [SMALL_STATE(825)] = 20367, + [SMALL_STATE(826)] = 20382, + [SMALL_STATE(827)] = 20399, + [SMALL_STATE(828)] = 20416, + [SMALL_STATE(829)] = 20433, + [SMALL_STATE(830)] = 20448, + [SMALL_STATE(831)] = 20465, + [SMALL_STATE(832)] = 20482, + [SMALL_STATE(833)] = 20499, + [SMALL_STATE(834)] = 20514, + [SMALL_STATE(835)] = 20531, + [SMALL_STATE(836)] = 20548, + [SMALL_STATE(837)] = 20561, + [SMALL_STATE(838)] = 20576, + [SMALL_STATE(839)] = 20593, + [SMALL_STATE(840)] = 20610, + [SMALL_STATE(841)] = 20627, + [SMALL_STATE(842)] = 20638, + [SMALL_STATE(843)] = 20653, + [SMALL_STATE(844)] = 20668, + [SMALL_STATE(845)] = 20679, + [SMALL_STATE(846)] = 20696, + [SMALL_STATE(847)] = 20713, + [SMALL_STATE(848)] = 20728, + [SMALL_STATE(849)] = 20745, + [SMALL_STATE(850)] = 20762, + [SMALL_STATE(851)] = 20779, + [SMALL_STATE(852)] = 20796, + [SMALL_STATE(853)] = 20813, + [SMALL_STATE(854)] = 20830, + [SMALL_STATE(855)] = 20847, + [SMALL_STATE(856)] = 20864, + [SMALL_STATE(857)] = 20881, + [SMALL_STATE(858)] = 20898, + [SMALL_STATE(859)] = 20915, + [SMALL_STATE(860)] = 20932, + [SMALL_STATE(861)] = 20946, + [SMALL_STATE(862)] = 20960, + [SMALL_STATE(863)] = 20974, + [SMALL_STATE(864)] = 20988, + [SMALL_STATE(865)] = 20998, + [SMALL_STATE(866)] = 21008, + [SMALL_STATE(867)] = 21022, + [SMALL_STATE(868)] = 21036, + [SMALL_STATE(869)] = 21050, + [SMALL_STATE(870)] = 21064, + [SMALL_STATE(871)] = 21078, + [SMALL_STATE(872)] = 21092, + [SMALL_STATE(873)] = 21106, + [SMALL_STATE(874)] = 21120, + [SMALL_STATE(875)] = 21134, + [SMALL_STATE(876)] = 21148, + [SMALL_STATE(877)] = 21162, + [SMALL_STATE(878)] = 21176, + [SMALL_STATE(879)] = 21190, + [SMALL_STATE(880)] = 21204, + [SMALL_STATE(881)] = 21218, + [SMALL_STATE(882)] = 21232, + [SMALL_STATE(883)] = 21246, + [SMALL_STATE(884)] = 21260, + [SMALL_STATE(885)] = 21274, + [SMALL_STATE(886)] = 21288, + [SMALL_STATE(887)] = 21302, + [SMALL_STATE(888)] = 21316, + [SMALL_STATE(889)] = 21330, + [SMALL_STATE(890)] = 21344, + [SMALL_STATE(891)] = 21358, + [SMALL_STATE(892)] = 21372, + [SMALL_STATE(893)] = 21386, + [SMALL_STATE(894)] = 21400, + [SMALL_STATE(895)] = 21414, + [SMALL_STATE(896)] = 21424, + [SMALL_STATE(897)] = 21438, + [SMALL_STATE(898)] = 21452, + [SMALL_STATE(899)] = 21466, + [SMALL_STATE(900)] = 21480, + [SMALL_STATE(901)] = 21490, + [SMALL_STATE(902)] = 21500, + [SMALL_STATE(903)] = 21514, + [SMALL_STATE(904)] = 21528, + [SMALL_STATE(905)] = 21542, + [SMALL_STATE(906)] = 21556, + [SMALL_STATE(907)] = 21566, + [SMALL_STATE(908)] = 21580, + [SMALL_STATE(909)] = 21594, + [SMALL_STATE(910)] = 21604, + [SMALL_STATE(911)] = 21618, + [SMALL_STATE(912)] = 21632, + [SMALL_STATE(913)] = 21646, + [SMALL_STATE(914)] = 21660, + [SMALL_STATE(915)] = 21674, + [SMALL_STATE(916)] = 21688, + [SMALL_STATE(917)] = 21702, + [SMALL_STATE(918)] = 21716, + [SMALL_STATE(919)] = 21730, + [SMALL_STATE(920)] = 21744, + [SMALL_STATE(921)] = 21758, + [SMALL_STATE(922)] = 21772, + [SMALL_STATE(923)] = 21786, + [SMALL_STATE(924)] = 21800, + [SMALL_STATE(925)] = 21814, + [SMALL_STATE(926)] = 21828, + [SMALL_STATE(927)] = 21842, + [SMALL_STATE(928)] = 21856, + [SMALL_STATE(929)] = 21868, + [SMALL_STATE(930)] = 21880, + [SMALL_STATE(931)] = 21890, + [SMALL_STATE(932)] = 21904, + [SMALL_STATE(933)] = 21918, + [SMALL_STATE(934)] = 21932, + [SMALL_STATE(935)] = 21946, + [SMALL_STATE(936)] = 21960, + [SMALL_STATE(937)] = 21974, + [SMALL_STATE(938)] = 21986, + [SMALL_STATE(939)] = 21996, + [SMALL_STATE(940)] = 22010, + [SMALL_STATE(941)] = 22020, + [SMALL_STATE(942)] = 22034, + [SMALL_STATE(943)] = 22046, + [SMALL_STATE(944)] = 22060, + [SMALL_STATE(945)] = 22070, + [SMALL_STATE(946)] = 22084, + [SMALL_STATE(947)] = 22098, + [SMALL_STATE(948)] = 22112, + [SMALL_STATE(949)] = 22126, + [SMALL_STATE(950)] = 22140, + [SMALL_STATE(951)] = 22154, + [SMALL_STATE(952)] = 22168, + [SMALL_STATE(953)] = 22182, + [SMALL_STATE(954)] = 22196, + [SMALL_STATE(955)] = 22210, + [SMALL_STATE(956)] = 22224, + [SMALL_STATE(957)] = 22238, + [SMALL_STATE(958)] = 22252, + [SMALL_STATE(959)] = 22266, + [SMALL_STATE(960)] = 22280, + [SMALL_STATE(961)] = 22294, + [SMALL_STATE(962)] = 22308, + [SMALL_STATE(963)] = 22319, + [SMALL_STATE(964)] = 22328, + [SMALL_STATE(965)] = 22337, + [SMALL_STATE(966)] = 22348, + [SMALL_STATE(967)] = 22359, + [SMALL_STATE(968)] = 22370, + [SMALL_STATE(969)] = 22379, + [SMALL_STATE(970)] = 22390, + [SMALL_STATE(971)] = 22399, + [SMALL_STATE(972)] = 22410, + [SMALL_STATE(973)] = 22421, + [SMALL_STATE(974)] = 22432, + [SMALL_STATE(975)] = 22443, + [SMALL_STATE(976)] = 22454, + [SMALL_STATE(977)] = 22465, + [SMALL_STATE(978)] = 22476, + [SMALL_STATE(979)] = 22487, + [SMALL_STATE(980)] = 22496, + [SMALL_STATE(981)] = 22507, + [SMALL_STATE(982)] = 22518, + [SMALL_STATE(983)] = 22529, + [SMALL_STATE(984)] = 22540, + [SMALL_STATE(985)] = 22551, + [SMALL_STATE(986)] = 22562, + [SMALL_STATE(987)] = 22573, + [SMALL_STATE(988)] = 22584, + [SMALL_STATE(989)] = 22595, + [SMALL_STATE(990)] = 22604, + [SMALL_STATE(991)] = 22615, + [SMALL_STATE(992)] = 22626, + [SMALL_STATE(993)] = 22637, + [SMALL_STATE(994)] = 22646, + [SMALL_STATE(995)] = 22655, + [SMALL_STATE(996)] = 22666, + [SMALL_STATE(997)] = 22677, + [SMALL_STATE(998)] = 22688, + [SMALL_STATE(999)] = 22699, + [SMALL_STATE(1000)] = 22708, + [SMALL_STATE(1001)] = 22719, + [SMALL_STATE(1002)] = 22728, + [SMALL_STATE(1003)] = 22739, + [SMALL_STATE(1004)] = 22750, + [SMALL_STATE(1005)] = 22759, + [SMALL_STATE(1006)] = 22768, + [SMALL_STATE(1007)] = 22779, + [SMALL_STATE(1008)] = 22790, + [SMALL_STATE(1009)] = 22801, + [SMALL_STATE(1010)] = 22812, + [SMALL_STATE(1011)] = 22821, + [SMALL_STATE(1012)] = 22832, + [SMALL_STATE(1013)] = 22843, + [SMALL_STATE(1014)] = 22854, + [SMALL_STATE(1015)] = 22865, + [SMALL_STATE(1016)] = 22874, + [SMALL_STATE(1017)] = 22885, + [SMALL_STATE(1018)] = 22894, + [SMALL_STATE(1019)] = 22903, + [SMALL_STATE(1020)] = 22914, + [SMALL_STATE(1021)] = 22925, + [SMALL_STATE(1022)] = 22936, + [SMALL_STATE(1023)] = 22945, + [SMALL_STATE(1024)] = 22954, + [SMALL_STATE(1025)] = 22963, + [SMALL_STATE(1026)] = 22972, + [SMALL_STATE(1027)] = 22983, + [SMALL_STATE(1028)] = 22994, + [SMALL_STATE(1029)] = 23005, + [SMALL_STATE(1030)] = 23014, + [SMALL_STATE(1031)] = 23025, + [SMALL_STATE(1032)] = 23034, + [SMALL_STATE(1033)] = 23043, + [SMALL_STATE(1034)] = 23054, + [SMALL_STATE(1035)] = 23065, + [SMALL_STATE(1036)] = 23074, + [SMALL_STATE(1037)] = 23085, + [SMALL_STATE(1038)] = 23096, + [SMALL_STATE(1039)] = 23107, + [SMALL_STATE(1040)] = 23118, + [SMALL_STATE(1041)] = 23129, + [SMALL_STATE(1042)] = 23140, + [SMALL_STATE(1043)] = 23149, + [SMALL_STATE(1044)] = 23160, + [SMALL_STATE(1045)] = 23171, + [SMALL_STATE(1046)] = 23180, + [SMALL_STATE(1047)] = 23189, + [SMALL_STATE(1048)] = 23198, + [SMALL_STATE(1049)] = 23207, + [SMALL_STATE(1050)] = 23218, + [SMALL_STATE(1051)] = 23229, + [SMALL_STATE(1052)] = 23240, + [SMALL_STATE(1053)] = 23251, + [SMALL_STATE(1054)] = 23262, + [SMALL_STATE(1055)] = 23273, + [SMALL_STATE(1056)] = 23284, + [SMALL_STATE(1057)] = 23295, + [SMALL_STATE(1058)] = 23306, + [SMALL_STATE(1059)] = 23317, + [SMALL_STATE(1060)] = 23328, + [SMALL_STATE(1061)] = 23339, + [SMALL_STATE(1062)] = 23350, + [SMALL_STATE(1063)] = 23361, + [SMALL_STATE(1064)] = 23372, + [SMALL_STATE(1065)] = 23383, + [SMALL_STATE(1066)] = 23394, + [SMALL_STATE(1067)] = 23405, + [SMALL_STATE(1068)] = 23416, + [SMALL_STATE(1069)] = 23427, + [SMALL_STATE(1070)] = 23438, + [SMALL_STATE(1071)] = 23449, + [SMALL_STATE(1072)] = 23460, + [SMALL_STATE(1073)] = 23469, + [SMALL_STATE(1074)] = 23477, + [SMALL_STATE(1075)] = 23485, + [SMALL_STATE(1076)] = 23493, + [SMALL_STATE(1077)] = 23501, + [SMALL_STATE(1078)] = 23509, + [SMALL_STATE(1079)] = 23517, + [SMALL_STATE(1080)] = 23525, + [SMALL_STATE(1081)] = 23533, + [SMALL_STATE(1082)] = 23541, + [SMALL_STATE(1083)] = 23549, + [SMALL_STATE(1084)] = 23557, + [SMALL_STATE(1085)] = 23565, + [SMALL_STATE(1086)] = 23573, + [SMALL_STATE(1087)] = 23581, + [SMALL_STATE(1088)] = 23589, + [SMALL_STATE(1089)] = 23597, + [SMALL_STATE(1090)] = 23605, + [SMALL_STATE(1091)] = 23613, + [SMALL_STATE(1092)] = 23621, + [SMALL_STATE(1093)] = 23629, + [SMALL_STATE(1094)] = 23637, + [SMALL_STATE(1095)] = 23645, + [SMALL_STATE(1096)] = 23653, + [SMALL_STATE(1097)] = 23661, + [SMALL_STATE(1098)] = 23669, + [SMALL_STATE(1099)] = 23677, + [SMALL_STATE(1100)] = 23685, + [SMALL_STATE(1101)] = 23693, + [SMALL_STATE(1102)] = 23701, + [SMALL_STATE(1103)] = 23709, + [SMALL_STATE(1104)] = 23717, + [SMALL_STATE(1105)] = 23725, + [SMALL_STATE(1106)] = 23733, + [SMALL_STATE(1107)] = 23741, + [SMALL_STATE(1108)] = 23749, + [SMALL_STATE(1109)] = 23757, + [SMALL_STATE(1110)] = 23765, + [SMALL_STATE(1111)] = 23773, + [SMALL_STATE(1112)] = 23781, + [SMALL_STATE(1113)] = 23789, + [SMALL_STATE(1114)] = 23797, + [SMALL_STATE(1115)] = 23805, + [SMALL_STATE(1116)] = 23813, + [SMALL_STATE(1117)] = 23821, + [SMALL_STATE(1118)] = 23829, + [SMALL_STATE(1119)] = 23837, + [SMALL_STATE(1120)] = 23845, + [SMALL_STATE(1121)] = 23853, + [SMALL_STATE(1122)] = 23861, + [SMALL_STATE(1123)] = 23869, + [SMALL_STATE(1124)] = 23877, + [SMALL_STATE(1125)] = 23885, + [SMALL_STATE(1126)] = 23893, + [SMALL_STATE(1127)] = 23901, + [SMALL_STATE(1128)] = 23909, + [SMALL_STATE(1129)] = 23917, + [SMALL_STATE(1130)] = 23925, + [SMALL_STATE(1131)] = 23933, + [SMALL_STATE(1132)] = 23941, + [SMALL_STATE(1133)] = 23949, + [SMALL_STATE(1134)] = 23957, + [SMALL_STATE(1135)] = 23965, + [SMALL_STATE(1136)] = 23973, + [SMALL_STATE(1137)] = 23981, + [SMALL_STATE(1138)] = 23989, + [SMALL_STATE(1139)] = 23997, + [SMALL_STATE(1140)] = 24005, + [SMALL_STATE(1141)] = 24013, + [SMALL_STATE(1142)] = 24021, + [SMALL_STATE(1143)] = 24029, + [SMALL_STATE(1144)] = 24037, + [SMALL_STATE(1145)] = 24045, + [SMALL_STATE(1146)] = 24053, + [SMALL_STATE(1147)] = 24061, + [SMALL_STATE(1148)] = 24069, + [SMALL_STATE(1149)] = 24077, + [SMALL_STATE(1150)] = 24085, + [SMALL_STATE(1151)] = 24093, + [SMALL_STATE(1152)] = 24101, + [SMALL_STATE(1153)] = 24109, + [SMALL_STATE(1154)] = 24117, + [SMALL_STATE(1155)] = 24125, + [SMALL_STATE(1156)] = 24133, + [SMALL_STATE(1157)] = 24141, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -53767,1420 +54697,1435 @@ 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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), - [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(309), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(55), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(261), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(261), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(260), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(599), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1143), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(958), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(178), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(246), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(962), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(966), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(974), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(219), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(279), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(429), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(244), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(801), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(994), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1104), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(821), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(328), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(321), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(825), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(749), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1098), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1088), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(586), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(584), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(593), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(381), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1029), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1116), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 113), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 113), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 111), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 111), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 114), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 114), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 100), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 100), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 131), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 131), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 91), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 91), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 133), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 133), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 134), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 134), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 136), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 136), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 80), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 80), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 145), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 145), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 52), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 52), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 53), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 53), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 159), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 159), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 162), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 162), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 163), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 163), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 183), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 183), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 59), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 59), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 102), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 102), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 103), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 103), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 171), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 171), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 117), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 117), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 170), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 170), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 187), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 187), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 169), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 169), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 186), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 186), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 185), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 185), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 168), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 168), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 190), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 190), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 167), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 167), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 118), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 118), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(276), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1005), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 60), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 60), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 60), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 60), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 188), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 188), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 66), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 66), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 60), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 60), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 189), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 189), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 152), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 152), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 211), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 211), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 151), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 151), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 212), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 212), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 150), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 150), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 213), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 213), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 218), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 218), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 58), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 58), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 59), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 59), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 184), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 184), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 165), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 165), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 210), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 210), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 217), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 217), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(659), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(679), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1143), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(348), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(299), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(821), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(421), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1098), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(348), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1078), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1088), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1087), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(586), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(584), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(593), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(498), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(689), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(576), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(679), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1143), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(348), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(307), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(821), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1098), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(348), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1088), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1087), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(586), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(584), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(593), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1117] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1128), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1123] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(689), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 92), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 92), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 93), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 93), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(576), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1143), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(348), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(821), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(348), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1088), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1087), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(586), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(584), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(593), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(193), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 65), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 65), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(283), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(824), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1109), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(824), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(350), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(821), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(350), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 104), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 104), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 164), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 164), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 66), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 66), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 139), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 139), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 138), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 138), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(502), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 106), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 106), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(502), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 105), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 105), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 77), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 77), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 76), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 76), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 74), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 74), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 94), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 94), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 70), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 70), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 158), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 158), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 95), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 95), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 157), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 157), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 62), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 62), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 63), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 63), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 64), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 64), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 129), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 129), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 128), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 128), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 66), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 66), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 71), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 71), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 96), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(447), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(824), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(447), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 182), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 182), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 219), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 219), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 216), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 216), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 215), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 215), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 214), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 214), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 209), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 209), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 208), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 208), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 206), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 206), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1127), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 69), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 148), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 115), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 144), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 86), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(802), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(717), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(668), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(797), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(793), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(790), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(785), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), + [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), + [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(313), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(431), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(431), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(55), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(242), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(242), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(259), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(617), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1154), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(975), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(373), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(212), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(289), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(976), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(986), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(987), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(226), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(246), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(434), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(247), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(807), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(991), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1118), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(767), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(334), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(318), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(779), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(719), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1111), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(373), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(332), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1110), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1109), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(589), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(588), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(600), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(407), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1026), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1125), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 150), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 150), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 168), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 168), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 141), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 141), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), + [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 93), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 93), + [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 142), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 142), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 85), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 85), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 143), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 148), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 148), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 83), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 83), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 94), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 94), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 187), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 187), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 95), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 95), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 59), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 59), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 86), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 81), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 81), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 102), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 102), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 119), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 119), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 117), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 117), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 103), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 103), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 105), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 105), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 136), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 136), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 116), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 116), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 52), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 52), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 84), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 84), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 53), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 53), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 61), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 61), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 164), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 164), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 165), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 165), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 166), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 166), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 167), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 167), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 87), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 87), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 60), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 60), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 170), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 170), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 29), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 29), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 108), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 108), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 123), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 123), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 171), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 171), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 60), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 60), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 29), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 29), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 29), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 29), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 60), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 60), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 107), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 107), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 28), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 28), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 222), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 222), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 172), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 172), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 88), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 88), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 174), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 174), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 122), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 122), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 217), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 217), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 216), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 216), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 215), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 215), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 59), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 59), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 58), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 58), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(249), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1048), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 195), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 195), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 194), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 194), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 175), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 175), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 176), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 176), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 193), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 193), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 177), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 177), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 192), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 192), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 191), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 191), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 152), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 152), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 190), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 190), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 189), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 189), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 69), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 69), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 169), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 169), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 221), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 221), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 214), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 214), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 188), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 188), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(657), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(680), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1154), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(373), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(305), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(767), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(429), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1111), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(373), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1094), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1110), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1109), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(589), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(588), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(600), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(483), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1078] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(698), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(578), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(680), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1154), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(373), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(309), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(767), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1111), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(373), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1110), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1109), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(589), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(588), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(600), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1138] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1101), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1144] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(698), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 30), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 30), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 96), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 96), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 97), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 97), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(578), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1154), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(373), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(767), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(373), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1110), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1109), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(589), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(588), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(600), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 68), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 68), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(153), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1120), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(792), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(256), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(792), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(513), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(513), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 65), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 65), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 73), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 73), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(371), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(767), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(371), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 144), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 144), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 80), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 80), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 79), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 79), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 77), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 77), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 111), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 111), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 39), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 39), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 114), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 114), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 110), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 110), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 69), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 69), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 163), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 163), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 162), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 162), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 98), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 98), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 99), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 99), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 64), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 64), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 63), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 63), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 133), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 133), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 134), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 134), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 69), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 69), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 44), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 44), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 66), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 66), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 67), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 67), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 74), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 74), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 223), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 223), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 100), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 220), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 220), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 219), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 219), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 218), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 218), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 186), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 186), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 213), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 213), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 212), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 212), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 210), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 210), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(472), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(792), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(472), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1089), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 72), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 149), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 120), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 153), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 89), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(790), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(703), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 73), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 110), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 122), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 122), SHIFT_REPEAT(757), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(276), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1005), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 155), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 154), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(290), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1005), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 125), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 194), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 124), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 123), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 124), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 123), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 196), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 43), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 181), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 121), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 197), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 180), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 120), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 179), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 198), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 194), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 196), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 197), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 198), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 178), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 201), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 177), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 203), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 176), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 175), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 174), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 177), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(824), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 204), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 176), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 175), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 174), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 205), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(550), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(607), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 88), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 37), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(558), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(559), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(241), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 72), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 140), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 108), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 75), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(670), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(770), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(774), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(775), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(776), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 115), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 76), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 127), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 127), SHIFT_REPEAT(709), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(249), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1048), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 178), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 128), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(607), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(240), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1048), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 91), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(792), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 179), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 180), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 181), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 43), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 130), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 129), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 209), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 208), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 159), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 129), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 207), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 205), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 202), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 128), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 160), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 201), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 200), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 178), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 179), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 180), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 198), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 202), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 181), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 126), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 125), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 201), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 200), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 198), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 182), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 183), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 184), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 185), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 37), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(563), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 145), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(568), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 78), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 113), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(245), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(257), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(558), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 75), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(284), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(298), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 149), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 149), SHIFT_REPEAT(270), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 195), SHIFT_REPEAT(799), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 195), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1139), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 193), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(135), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 141), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 142), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 87), SHIFT_REPEAT(278), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 87), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), SHIFT_REPEAT(551), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 89), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(168), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 199), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 200), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 202), SHIFT_REPEAT(807), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 202), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 192), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 156), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(338), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 126), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1037), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 68), SHIFT_REPEAT(769), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 68), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(524), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(678), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 40), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 140), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 67), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 108), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 73), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 119), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 75), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 107), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 72), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 42), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 43), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2858] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 116), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 207), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 146), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 40), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 146), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 147), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), SHIFT_REPEAT(557), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(98), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(301), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(351), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(532), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 154), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 154), SHIFT_REPEAT(243), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1102), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 90), SHIFT_REPEAT(250), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 90), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(148), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 161), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 92), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 71), SHIFT_REPEAT(689), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 71), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(681), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 206), SHIFT_REPEAT(771), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 206), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 204), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 203), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 199), SHIFT_REPEAT(798), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 199), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 197), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 196), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 131), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), + [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1007), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 124), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 43), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 42), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 78), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 76), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 145), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 113), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 112), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 75), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 70), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2911] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 211), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 121), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 151), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index cbbc7b4ee..2b14ac104 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /* diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 0fc1e5cef..0daeb9cf5 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -595,10 +595,50 @@ enum HandSign { (enum_constant name: (identifier)) (enum_constant name: (identifier))))) - -================= +================== record declaration -================= +================== + +public record Foo(int bar) { +} + +--- + +(program + (record_declaration + (modifiers) + name: (identifier) + parameters: (formal_parameters + (formal_parameter + type: (integral_type) + name: (identifier))) + body: (class_body))) + +================================ +record declaration with generics +================================ + +public record Foo(T bar) { +} + +--- + +(program + (record_declaration + (modifiers) + name: (identifier) + type_parameters: (type_parameters + (type_parameter + (type_identifier))) + parameters: (formal_parameters + (formal_parameter + type: (type_identifier) + name: (identifier))) + body: (class_body))) + +================================= +record declaration inside a class +================================= public class Usecase { public static record Commande(@NotNull String param) { diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 62eb04875..ee3cf4f17 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -65,6 +65,7 @@ instanceof expressions a instanceof C.D; a instanceof List; c instanceof C[]; +c instanceof C foo; --- @@ -77,7 +78,12 @@ c instanceof C[]; (generic_type (type_identifier) (type_arguments (type_identifier))))) (expression_statement (instanceof_expression (identifier) - (array_type (type_identifier) (dimensions))))) + (array_type (type_identifier) (dimensions)))) + (expression_statement (instanceof_expression + (identifier) + (type_identifier) + (identifier)))) + =========================================================== if statements From 123fab57882c7641766cf2efa4de0474ebdb62cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Mah=C3=A9?= Date: Mon, 15 Aug 2022 14:20:27 -0700 Subject: [PATCH 06/23] Inferred parameters needs to support reserved identifiers --- grammar.js | 3 +- src/grammar.json | 30 +- src/parser.c | 58846 +++++++++++++++++----------------- test/corpus/expressions.txt | 2 +- 4 files changed, 29506 insertions(+), 29375 deletions(-) diff --git a/grammar.js b/grammar.js index 436047ac4..f28fe9f19 100644 --- a/grammar.js +++ b/grammar.js @@ -68,6 +68,7 @@ module.exports = grammar({ [$.expression, $.statement], // Only conflicts in switch expressions [$.lambda_expression, $.primary_expression], + [$.inferred_parameters, $.primary_expression], ], word: $ => $.identifier, @@ -241,7 +242,7 @@ module.exports = grammar({ inferred_parameters: $ => seq( '(', - commaSep1($.identifier), + commaSep1(choice($.identifier, $._reserved_identifier)), ')' ), diff --git a/src/grammar.json b/src/grammar.json index 24b089f51..11242f8f0 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2104,8 +2104,17 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] }, { "type": "REPEAT", @@ -2117,8 +2126,17 @@ "value": "," }, { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] } ] } @@ -7077,6 +7095,10 @@ [ "lambda_expression", "primary_expression" + ], + [ + "inferred_parameters", + "primary_expression" ] ], "precedences": [], diff --git a/src/parser.c b/src/parser.c index 28f42196b..6675c231a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1262 +#define STATE_COUNT 1267 #define LARGE_STATE_COUNT 350 #define SYMBOL_COUNT 291 #define ALIAS_COUNT 1 @@ -2172,22 +2172,22 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [11] = {.index = 9, .length = 2}, [12] = {.index = 11, .length = 1}, [13] = {.index = 12, .length = 2}, - [14] = {.index = 14, .length = 3}, - [15] = {.index = 17, .length = 2}, - [16] = {.index = 19, .length = 2}, - [17] = {.index = 17, .length = 2}, - [18] = {.index = 19, .length = 2}, - [19] = {.index = 21, .length = 2}, - [20] = {.index = 23, .length = 2}, - [21] = {.index = 25, .length = 1}, - [22] = {.index = 26, .length = 1}, - [23] = {.index = 27, .length = 2}, - [24] = {.index = 29, .length = 2}, - [25] = {.index = 31, .length = 2}, + [15] = {.index = 14, .length = 3}, + [16] = {.index = 17, .length = 2}, + [17] = {.index = 19, .length = 2}, + [18] = {.index = 17, .length = 2}, + [19] = {.index = 19, .length = 2}, + [20] = {.index = 21, .length = 2}, + [21] = {.index = 23, .length = 2}, + [22] = {.index = 25, .length = 1}, + [23] = {.index = 26, .length = 1}, + [24] = {.index = 27, .length = 2}, + [25] = {.index = 29, .length = 2}, [26] = {.index = 31, .length = 2}, - [27] = {.index = 33, .length = 3}, - [28] = {.index = 36, .length = 2}, - [29] = {.index = 21, .length = 2}, + [27] = {.index = 31, .length = 2}, + [28] = {.index = 33, .length = 3}, + [29] = {.index = 36, .length = 2}, + [30] = {.index = 21, .length = 2}, [31] = {.index = 38, .length = 2}, [32] = {.index = 38, .length = 2}, [33] = {.index = 33, .length = 3}, @@ -3104,23 +3104,23 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [9] = { [0] = sym_identifier, }, - [17] = { - [1] = alias_sym_type_identifier, + [14] = { + [1] = sym_identifier, }, [18] = { [1] = alias_sym_type_identifier, }, - [25] = { - [1] = sym_identifier, + [19] = { + [1] = alias_sym_type_identifier, }, - [27] = { - [0] = sym_identifier, + [26] = { + [1] = sym_identifier, }, [28] = { [0] = sym_identifier, }, [29] = { - [1] = sym_identifier, + [0] = sym_identifier, }, [30] = { [1] = sym_identifier, @@ -6878,9 +6878,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [76] = {.lex_state = 59}, [77] = {.lex_state = 60}, [78] = {.lex_state = 60}, - [79] = {.lex_state = 60}, + [79] = {.lex_state = 59}, [80] = {.lex_state = 60}, - [81] = {.lex_state = 59}, + [81] = {.lex_state = 60}, [82] = {.lex_state = 60}, [83] = {.lex_state = 60}, [84] = {.lex_state = 4}, @@ -6897,13 +6897,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [95] = {.lex_state = 3}, [96] = {.lex_state = 3}, [97] = {.lex_state = 3}, - [98] = {.lex_state = 60}, + [98] = {.lex_state = 3}, [99] = {.lex_state = 60}, - [100] = {.lex_state = 3}, - [101] = {.lex_state = 3}, - [102] = {.lex_state = 60}, + [100] = {.lex_state = 60}, + [101] = {.lex_state = 60}, + [102] = {.lex_state = 3}, [103] = {.lex_state = 60}, - [104] = {.lex_state = 3}, + [104] = {.lex_state = 60}, [105] = {.lex_state = 60}, [106] = {.lex_state = 60}, [107] = {.lex_state = 60}, @@ -6913,8 +6913,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [111] = {.lex_state = 60}, [112] = {.lex_state = 60}, [113] = {.lex_state = 60}, - [114] = {.lex_state = 60}, - [115] = {.lex_state = 60}, + [114] = {.lex_state = 3}, + [115] = {.lex_state = 3}, [116] = {.lex_state = 60}, [117] = {.lex_state = 60}, [118] = {.lex_state = 60}, @@ -6925,7 +6925,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [123] = {.lex_state = 60}, [124] = {.lex_state = 60}, [125] = {.lex_state = 60}, - [126] = {.lex_state = 60}, + [126] = {.lex_state = 3}, [127] = {.lex_state = 60}, [128] = {.lex_state = 60}, [129] = {.lex_state = 60}, @@ -6933,10 +6933,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [131] = {.lex_state = 60}, [132] = {.lex_state = 60}, [133] = {.lex_state = 60}, - [134] = {.lex_state = 3}, + [134] = {.lex_state = 60}, [135] = {.lex_state = 60}, [136] = {.lex_state = 60}, - [137] = {.lex_state = 3}, + [137] = {.lex_state = 60}, [138] = {.lex_state = 60}, [139] = {.lex_state = 60}, [140] = {.lex_state = 60}, @@ -6951,7 +6951,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [149] = {.lex_state = 60}, [150] = {.lex_state = 60}, [151] = {.lex_state = 60}, - [152] = {.lex_state = 60}, + [152] = {.lex_state = 3}, [153] = {.lex_state = 60}, [154] = {.lex_state = 60}, [155] = {.lex_state = 60}, @@ -6962,24 +6962,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [160] = {.lex_state = 60}, [161] = {.lex_state = 60}, [162] = {.lex_state = 60}, - [163] = {.lex_state = 60}, + [163] = {.lex_state = 3}, [164] = {.lex_state = 60}, [165] = {.lex_state = 60}, [166] = {.lex_state = 60}, - [167] = {.lex_state = 3}, + [167] = {.lex_state = 60}, [168] = {.lex_state = 60}, [169] = {.lex_state = 60}, [170] = {.lex_state = 60}, [171] = {.lex_state = 60}, [172] = {.lex_state = 60}, [173] = {.lex_state = 60}, - [174] = {.lex_state = 3}, + [174] = {.lex_state = 60}, [175] = {.lex_state = 60}, [176] = {.lex_state = 60}, - [177] = {.lex_state = 3}, - [178] = {.lex_state = 60}, + [177] = {.lex_state = 60}, + [178] = {.lex_state = 3}, [179] = {.lex_state = 60}, - [180] = {.lex_state = 60}, + [180] = {.lex_state = 3}, [181] = {.lex_state = 60}, [182] = {.lex_state = 60}, [183] = {.lex_state = 60}, @@ -7007,17 +7007,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 60}, [206] = {.lex_state = 60}, [207] = {.lex_state = 60}, - [208] = {.lex_state = 3}, + [208] = {.lex_state = 60}, [209] = {.lex_state = 60}, [210] = {.lex_state = 60}, [211] = {.lex_state = 60}, [212] = {.lex_state = 60}, [213] = {.lex_state = 60}, - [214] = {.lex_state = 60}, + [214] = {.lex_state = 3}, [215] = {.lex_state = 60}, - [216] = {.lex_state = 3}, + [216] = {.lex_state = 60}, [217] = {.lex_state = 60}, - [218] = {.lex_state = 3}, + [218] = {.lex_state = 60}, [219] = {.lex_state = 60}, [220] = {.lex_state = 60}, [221] = {.lex_state = 60}, @@ -7034,20 +7034,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [232] = {.lex_state = 60}, [233] = {.lex_state = 60}, [234] = {.lex_state = 60}, - [235] = {.lex_state = 60}, + [235] = {.lex_state = 3}, [236] = {.lex_state = 60}, [237] = {.lex_state = 60}, [238] = {.lex_state = 60}, [239] = {.lex_state = 60}, [240] = {.lex_state = 60}, [241] = {.lex_state = 60}, - [242] = {.lex_state = 3}, + [242] = {.lex_state = 60}, [243] = {.lex_state = 60}, [244] = {.lex_state = 60}, [245] = {.lex_state = 60}, [246] = {.lex_state = 60}, [247] = {.lex_state = 60}, - [248] = {.lex_state = 60}, + [248] = {.lex_state = 3}, [249] = {.lex_state = 60}, [250] = {.lex_state = 60}, [251] = {.lex_state = 60}, @@ -7107,7 +7107,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [305] = {.lex_state = 3}, [306] = {.lex_state = 3}, [307] = {.lex_state = 3}, - [308] = {.lex_state = 60}, + [308] = {.lex_state = 3}, [309] = {.lex_state = 3}, [310] = {.lex_state = 3}, [311] = {.lex_state = 3}, @@ -7123,7 +7123,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [321] = {.lex_state = 3}, [322] = {.lex_state = 3}, [323] = {.lex_state = 3}, - [324] = {.lex_state = 3}, + [324] = {.lex_state = 60}, [325] = {.lex_state = 3}, [326] = {.lex_state = 3}, [327] = {.lex_state = 3}, @@ -7142,11 +7142,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [340] = {.lex_state = 3}, [341] = {.lex_state = 3}, [342] = {.lex_state = 60}, - [343] = {.lex_state = 4}, + [343] = {.lex_state = 60}, [344] = {.lex_state = 60}, [345] = {.lex_state = 60}, [346] = {.lex_state = 4}, - [347] = {.lex_state = 60}, + [347] = {.lex_state = 4}, [348] = {.lex_state = 4}, [349] = {.lex_state = 4}, [350] = {.lex_state = 0}, @@ -7157,8 +7157,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [355] = {.lex_state = 5}, [356] = {.lex_state = 0}, [357] = {.lex_state = 0}, - [358] = {.lex_state = 5}, - [359] = {.lex_state = 0}, + [358] = {.lex_state = 0}, + [359] = {.lex_state = 5}, [360] = {.lex_state = 5}, [361] = {.lex_state = 5}, [362] = {.lex_state = 0}, @@ -7177,23 +7177,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [375] = {.lex_state = 5}, [376] = {.lex_state = 5}, [377] = {.lex_state = 5}, - [378] = {.lex_state = 5}, + [378] = {.lex_state = 6}, [379] = {.lex_state = 5}, [380] = {.lex_state = 6}, - [381] = {.lex_state = 6}, - [382] = {.lex_state = 6}, - [383] = {.lex_state = 3}, - [384] = {.lex_state = 6}, - [385] = {.lex_state = 6}, - [386] = {.lex_state = 3}, + [381] = {.lex_state = 5}, + [382] = {.lex_state = 5}, + [383] = {.lex_state = 6}, + [384] = {.lex_state = 3}, + [385] = {.lex_state = 3}, + [386] = {.lex_state = 6}, [387] = {.lex_state = 6}, - [388] = {.lex_state = 4}, - [389] = {.lex_state = 5}, - [390] = {.lex_state = 14}, + [388] = {.lex_state = 6}, + [389] = {.lex_state = 4}, + [390] = {.lex_state = 5}, [391] = {.lex_state = 14}, - [392] = {.lex_state = 6}, - [393] = {.lex_state = 4}, - [394] = {.lex_state = 6}, + [392] = {.lex_state = 14}, + [393] = {.lex_state = 6}, + [394] = {.lex_state = 4}, [395] = {.lex_state = 4}, [396] = {.lex_state = 4}, [397] = {.lex_state = 6}, @@ -7201,54 +7201,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [399] = {.lex_state = 3}, [400] = {.lex_state = 3}, [401] = {.lex_state = 6}, - [402] = {.lex_state = 14}, + [402] = {.lex_state = 6}, [403] = {.lex_state = 6}, [404] = {.lex_state = 6}, [405] = {.lex_state = 6}, [406] = {.lex_state = 6}, - [407] = {.lex_state = 6}, + [407] = {.lex_state = 14}, [408] = {.lex_state = 14}, [409] = {.lex_state = 6}, [410] = {.lex_state = 6}, [411] = {.lex_state = 6}, [412] = {.lex_state = 6}, [413] = {.lex_state = 6}, - [414] = {.lex_state = 3}, + [414] = {.lex_state = 6}, [415] = {.lex_state = 3}, [416] = {.lex_state = 3}, [417] = {.lex_state = 3}, - [418] = {.lex_state = 6}, - [419] = {.lex_state = 0}, + [418] = {.lex_state = 3}, + [419] = {.lex_state = 6}, [420] = {.lex_state = 6}, [421] = {.lex_state = 6}, [422] = {.lex_state = 6}, [423] = {.lex_state = 0}, [424] = {.lex_state = 0}, [425] = {.lex_state = 0}, - [426] = {.lex_state = 6}, - [427] = {.lex_state = 3}, + [426] = {.lex_state = 0}, + [427] = {.lex_state = 6}, [428] = {.lex_state = 0}, - [429] = {.lex_state = 3}, + [429] = {.lex_state = 0}, [430] = {.lex_state = 0}, - [431] = {.lex_state = 0}, - [432] = {.lex_state = 6}, + [431] = {.lex_state = 6}, + [432] = {.lex_state = 3}, [433] = {.lex_state = 0}, [434] = {.lex_state = 0}, [435] = {.lex_state = 0}, [436] = {.lex_state = 0}, [437] = {.lex_state = 0}, [438] = {.lex_state = 0}, - [439] = {.lex_state = 6}, + [439] = {.lex_state = 0}, [440] = {.lex_state = 0}, [441] = {.lex_state = 0}, - [442] = {.lex_state = 6}, - [443] = {.lex_state = 0}, - [444] = {.lex_state = 0}, + [442] = {.lex_state = 3}, + [443] = {.lex_state = 6}, + [444] = {.lex_state = 6}, [445] = {.lex_state = 0}, [446] = {.lex_state = 0}, [447] = {.lex_state = 0}, [448] = {.lex_state = 0}, - [449] = {.lex_state = 6}, + [449] = {.lex_state = 0}, [450] = {.lex_state = 6}, [451] = {.lex_state = 6}, [452] = {.lex_state = 6}, @@ -7259,17 +7259,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [457] = {.lex_state = 6}, [458] = {.lex_state = 6}, [459] = {.lex_state = 6}, - [460] = {.lex_state = 0}, + [460] = {.lex_state = 6}, [461] = {.lex_state = 6}, - [462] = {.lex_state = 0}, + [462] = {.lex_state = 6}, [463] = {.lex_state = 6}, [464] = {.lex_state = 6}, - [465] = {.lex_state = 6}, + [465] = {.lex_state = 0}, [466] = {.lex_state = 6}, [467] = {.lex_state = 6}, [468] = {.lex_state = 6}, [469] = {.lex_state = 6}, - [470] = {.lex_state = 6}, + [470] = {.lex_state = 0}, [471] = {.lex_state = 6}, [472] = {.lex_state = 6}, [473] = {.lex_state = 6}, @@ -7285,74 +7285,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [483] = {.lex_state = 6}, [484] = {.lex_state = 6}, [485] = {.lex_state = 6}, - [486] = {.lex_state = 0}, + [486] = {.lex_state = 6}, [487] = {.lex_state = 0}, [488] = {.lex_state = 0}, - [489] = {.lex_state = 12}, + [489] = {.lex_state = 0}, [490] = {.lex_state = 12}, [491] = {.lex_state = 12}, - [492] = {.lex_state = 0}, - [493] = {.lex_state = 3}, + [492] = {.lex_state = 12}, + [493] = {.lex_state = 0}, [494] = {.lex_state = 3}, [495] = {.lex_state = 3}, - [496] = {.lex_state = 0}, + [496] = {.lex_state = 3}, [497] = {.lex_state = 3}, [498] = {.lex_state = 0}, - [499] = {.lex_state = 0}, - [500] = {.lex_state = 0}, + [499] = {.lex_state = 3}, + [500] = {.lex_state = 3}, [501] = {.lex_state = 3}, [502] = {.lex_state = 3}, - [503] = {.lex_state = 3}, - [504] = {.lex_state = 3}, - [505] = {.lex_state = 3}, + [503] = {.lex_state = 0}, + [504] = {.lex_state = 0}, + [505] = {.lex_state = 0}, [506] = {.lex_state = 3}, [507] = {.lex_state = 0}, [508] = {.lex_state = 3}, - [509] = {.lex_state = 0}, + [509] = {.lex_state = 3}, [510] = {.lex_state = 0}, - [511] = {.lex_state = 3}, + [511] = {.lex_state = 0}, [512] = {.lex_state = 3}, - [513] = {.lex_state = 4}, + [513] = {.lex_state = 3}, [514] = {.lex_state = 3}, [515] = {.lex_state = 3}, - [516] = {.lex_state = 15}, + [516] = {.lex_state = 3}, [517] = {.lex_state = 3}, - [518] = {.lex_state = 6}, + [518] = {.lex_state = 3}, [519] = {.lex_state = 3}, [520] = {.lex_state = 3}, [521] = {.lex_state = 3}, [522] = {.lex_state = 3}, [523] = {.lex_state = 3}, - [524] = {.lex_state = 15}, - [525] = {.lex_state = 3}, - [526] = {.lex_state = 4}, - [527] = {.lex_state = 3}, - [528] = {.lex_state = 3}, - [529] = {.lex_state = 3}, - [530] = {.lex_state = 12}, + [524] = {.lex_state = 3}, + [525] = {.lex_state = 4}, + [526] = {.lex_state = 3}, + [527] = {.lex_state = 4}, + [528] = {.lex_state = 15}, + [529] = {.lex_state = 15}, + [530] = {.lex_state = 6}, [531] = {.lex_state = 15}, - [532] = {.lex_state = 12}, - [533] = {.lex_state = 15}, - [534] = {.lex_state = 6}, - [535] = {.lex_state = 3}, + [532] = {.lex_state = 15}, + [533] = {.lex_state = 12}, + [534] = {.lex_state = 12}, + [535] = {.lex_state = 6}, [536] = {.lex_state = 3}, - [537] = {.lex_state = 12}, - [538] = {.lex_state = 4}, - [539] = {.lex_state = 3}, - [540] = {.lex_state = 4}, - [541] = {.lex_state = 4}, - [542] = {.lex_state = 3}, + [537] = {.lex_state = 3}, + [538] = {.lex_state = 3}, + [539] = {.lex_state = 12}, + [540] = {.lex_state = 3}, + [541] = {.lex_state = 3}, + [542] = {.lex_state = 4}, [543] = {.lex_state = 3}, [544] = {.lex_state = 3}, - [545] = {.lex_state = 3}, + [545] = {.lex_state = 4}, [546] = {.lex_state = 3}, [547] = {.lex_state = 3}, [548] = {.lex_state = 3}, [549] = {.lex_state = 3}, - [550] = {.lex_state = 3}, + [550] = {.lex_state = 4}, [551] = {.lex_state = 4}, - [552] = {.lex_state = 3}, - [553] = {.lex_state = 3}, + [552] = {.lex_state = 4}, + [553] = {.lex_state = 4}, [554] = {.lex_state = 3}, [555] = {.lex_state = 4}, [556] = {.lex_state = 3}, @@ -7363,17 +7363,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [561] = {.lex_state = 3}, [562] = {.lex_state = 3}, [563] = {.lex_state = 3}, - [564] = {.lex_state = 4}, - [565] = {.lex_state = 4}, + [564] = {.lex_state = 3}, + [565] = {.lex_state = 3}, [566] = {.lex_state = 3}, [567] = {.lex_state = 3}, [568] = {.lex_state = 4}, [569] = {.lex_state = 3}, [570] = {.lex_state = 3}, - [571] = {.lex_state = 3}, - [572] = {.lex_state = 3}, - [573] = {.lex_state = 4}, - [574] = {.lex_state = 4}, + [571] = {.lex_state = 12}, + [572] = {.lex_state = 4}, + [573] = {.lex_state = 3}, + [574] = {.lex_state = 3}, [575] = {.lex_state = 3}, [576] = {.lex_state = 3}, [577] = {.lex_state = 3}, @@ -7381,7 +7381,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [579] = {.lex_state = 3}, [580] = {.lex_state = 3}, [581] = {.lex_state = 3}, - [582] = {.lex_state = 12}, + [582] = {.lex_state = 3}, [583] = {.lex_state = 3}, [584] = {.lex_state = 3}, [585] = {.lex_state = 3}, @@ -7392,13 +7392,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [590] = {.lex_state = 4}, [591] = {.lex_state = 3}, [592] = {.lex_state = 4}, - [593] = {.lex_state = 22}, + [593] = {.lex_state = 3}, [594] = {.lex_state = 3}, [595] = {.lex_state = 3}, [596] = {.lex_state = 3}, - [597] = {.lex_state = 3}, + [597] = {.lex_state = 4}, [598] = {.lex_state = 3}, - [599] = {.lex_state = 3}, + [599] = {.lex_state = 22}, [600] = {.lex_state = 3}, [601] = {.lex_state = 3}, [602] = {.lex_state = 3}, @@ -7427,66 +7427,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [625] = {.lex_state = 3}, [626] = {.lex_state = 3}, [627] = {.lex_state = 3}, - [628] = {.lex_state = 12}, + [628] = {.lex_state = 3}, [629] = {.lex_state = 3}, [630] = {.lex_state = 3}, [631] = {.lex_state = 3}, [632] = {.lex_state = 3}, - [633] = {.lex_state = 3}, + [633] = {.lex_state = 12}, [634] = {.lex_state = 12}, [635] = {.lex_state = 22}, [636] = {.lex_state = 3}, [637] = {.lex_state = 3}, - [638] = {.lex_state = 5}, - [639] = {.lex_state = 3}, - [640] = {.lex_state = 4}, - [641] = {.lex_state = 5}, - [642] = {.lex_state = 12}, - [643] = {.lex_state = 12}, + [638] = {.lex_state = 3}, + [639] = {.lex_state = 5}, + [640] = {.lex_state = 5}, + [641] = {.lex_state = 4}, + [642] = {.lex_state = 3}, + [643] = {.lex_state = 3}, [644] = {.lex_state = 3}, - [645] = {.lex_state = 12}, - [646] = {.lex_state = 3}, - [647] = {.lex_state = 3}, - [648] = {.lex_state = 5}, - [649] = {.lex_state = 3}, + [645] = {.lex_state = 3}, + [646] = {.lex_state = 12}, + [647] = {.lex_state = 12}, + [648] = {.lex_state = 12}, + [649] = {.lex_state = 5}, [650] = {.lex_state = 3}, [651] = {.lex_state = 3}, [652] = {.lex_state = 3}, [653] = {.lex_state = 5}, [654] = {.lex_state = 3}, - [655] = {.lex_state = 12}, - [656] = {.lex_state = 3}, - [657] = {.lex_state = 22}, + [655] = {.lex_state = 22}, + [656] = {.lex_state = 12}, + [657] = {.lex_state = 3}, [658] = {.lex_state = 12}, [659] = {.lex_state = 12}, - [660] = {.lex_state = 12}, + [660] = {.lex_state = 3}, [661] = {.lex_state = 12}, [662] = {.lex_state = 12}, [663] = {.lex_state = 12}, [664] = {.lex_state = 22}, [665] = {.lex_state = 12}, [666] = {.lex_state = 3}, - [667] = {.lex_state = 5}, - [668] = {.lex_state = 12}, + [667] = {.lex_state = 3}, + [668] = {.lex_state = 3}, [669] = {.lex_state = 12}, - [670] = {.lex_state = 3}, + [670] = {.lex_state = 5}, [671] = {.lex_state = 3}, - [672] = {.lex_state = 3}, + [672] = {.lex_state = 12}, [673] = {.lex_state = 3}, [674] = {.lex_state = 3}, [675] = {.lex_state = 3}, - [676] = {.lex_state = 3}, - [677] = {.lex_state = 5}, - [678] = {.lex_state = 3}, - [679] = {.lex_state = 12}, - [680] = {.lex_state = 5}, + [676] = {.lex_state = 12}, + [677] = {.lex_state = 3}, + [678] = {.lex_state = 12}, + [679] = {.lex_state = 5}, + [680] = {.lex_state = 3}, [681] = {.lex_state = 5}, - [682] = {.lex_state = 3}, + [682] = {.lex_state = 5}, [683] = {.lex_state = 3}, [684] = {.lex_state = 3}, [685] = {.lex_state = 3}, - [686] = {.lex_state = 3}, - [687] = {.lex_state = 12}, + [686] = {.lex_state = 12}, + [687] = {.lex_state = 3}, [688] = {.lex_state = 3}, [689] = {.lex_state = 3}, [690] = {.lex_state = 3}, @@ -7495,70 +7495,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [693] = {.lex_state = 3}, [694] = {.lex_state = 3}, [695] = {.lex_state = 3}, - [696] = {.lex_state = 3}, + [696] = {.lex_state = 5}, [697] = {.lex_state = 3}, [698] = {.lex_state = 3}, [699] = {.lex_state = 3}, - [700] = {.lex_state = 5}, - [701] = {.lex_state = 3}, - [702] = {.lex_state = 3}, - [703] = {.lex_state = 5}, + [700] = {.lex_state = 3}, + [701] = {.lex_state = 5}, + [702] = {.lex_state = 5}, + [703] = {.lex_state = 3}, [704] = {.lex_state = 5}, [705] = {.lex_state = 5}, - [706] = {.lex_state = 5}, - [707] = {.lex_state = 5}, - [708] = {.lex_state = 3}, - [709] = {.lex_state = 3}, + [706] = {.lex_state = 3}, + [707] = {.lex_state = 3}, + [708] = {.lex_state = 5}, + [709] = {.lex_state = 5}, [710] = {.lex_state = 3}, [711] = {.lex_state = 3}, - [712] = {.lex_state = 5}, - [713] = {.lex_state = 5}, + [712] = {.lex_state = 3}, + [713] = {.lex_state = 3}, [714] = {.lex_state = 3}, - [715] = {.lex_state = 3}, + [715] = {.lex_state = 4}, [716] = {.lex_state = 3}, - [717] = {.lex_state = 3}, + [717] = {.lex_state = 4}, [718] = {.lex_state = 3}, - [719] = {.lex_state = 4}, - [720] = {.lex_state = 4}, - [721] = {.lex_state = 3}, - [722] = {.lex_state = 4}, - [723] = {.lex_state = 5}, - [724] = {.lex_state = 3}, + [719] = {.lex_state = 5}, + [720] = {.lex_state = 5}, + [721] = {.lex_state = 5}, + [722] = {.lex_state = 5}, + [723] = {.lex_state = 3}, + [724] = {.lex_state = 5}, [725] = {.lex_state = 3}, - [726] = {.lex_state = 5}, - [727] = {.lex_state = 4}, + [726] = {.lex_state = 3}, + [727] = {.lex_state = 3}, [728] = {.lex_state = 5}, - [729] = {.lex_state = 5}, - [730] = {.lex_state = 5}, + [729] = {.lex_state = 4}, + [730] = {.lex_state = 3}, [731] = {.lex_state = 4}, [732] = {.lex_state = 4}, - [733] = {.lex_state = 5}, - [734] = {.lex_state = 4}, + [733] = {.lex_state = 4}, + [734] = {.lex_state = 5}, [735] = {.lex_state = 5}, [736] = {.lex_state = 5}, [737] = {.lex_state = 4}, [738] = {.lex_state = 5}, [739] = {.lex_state = 5}, - [740] = {.lex_state = 5}, + [740] = {.lex_state = 4}, [741] = {.lex_state = 5}, [742] = {.lex_state = 3}, [743] = {.lex_state = 5}, [744] = {.lex_state = 5}, - [745] = {.lex_state = 3}, + [745] = {.lex_state = 5}, [746] = {.lex_state = 3}, [747] = {.lex_state = 3}, - [748] = {.lex_state = 5}, + [748] = {.lex_state = 3}, [749] = {.lex_state = 5}, - [750] = {.lex_state = 4}, + [750] = {.lex_state = 3}, [751] = {.lex_state = 3}, - [752] = {.lex_state = 4}, + [752] = {.lex_state = 3}, [753] = {.lex_state = 3}, - [754] = {.lex_state = 3}, - [755] = {.lex_state = 3}, - [756] = {.lex_state = 3}, + [754] = {.lex_state = 4}, + [755] = {.lex_state = 5}, + [756] = {.lex_state = 4}, [757] = {.lex_state = 3}, - [758] = {.lex_state = 12}, - [759] = {.lex_state = 3}, + [758] = {.lex_state = 3}, + [759] = {.lex_state = 12}, [760] = {.lex_state = 3}, [761] = {.lex_state = 3}, [762] = {.lex_state = 3}, @@ -7566,37 +7566,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [764] = {.lex_state = 3}, [765] = {.lex_state = 3}, [766] = {.lex_state = 3}, - [767] = {.lex_state = 0}, + [767] = {.lex_state = 3}, [768] = {.lex_state = 3}, [769] = {.lex_state = 3}, - [770] = {.lex_state = 3}, + [770] = {.lex_state = 0}, [771] = {.lex_state = 3}, [772] = {.lex_state = 0}, [773] = {.lex_state = 3}, [774] = {.lex_state = 3}, [775] = {.lex_state = 3}, [776] = {.lex_state = 3}, - [777] = {.lex_state = 4}, + [777] = {.lex_state = 3}, [778] = {.lex_state = 3}, - [779] = {.lex_state = 3}, + [779] = {.lex_state = 4}, [780] = {.lex_state = 3}, [781] = {.lex_state = 3}, [782] = {.lex_state = 3}, [783] = {.lex_state = 3}, [784] = {.lex_state = 3}, - [785] = {.lex_state = 3}, + [785] = {.lex_state = 4}, [786] = {.lex_state = 3}, [787] = {.lex_state = 3}, [788] = {.lex_state = 3}, [789] = {.lex_state = 3}, - [790] = {.lex_state = 3}, + [790] = {.lex_state = 4}, [791] = {.lex_state = 3}, [792] = {.lex_state = 3}, [793] = {.lex_state = 3}, [794] = {.lex_state = 3}, [795] = {.lex_state = 3}, [796] = {.lex_state = 3}, - [797] = {.lex_state = 3}, + [797] = {.lex_state = 4}, [798] = {.lex_state = 3}, [799] = {.lex_state = 3}, [800] = {.lex_state = 3}, @@ -7616,7 +7616,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [814] = {.lex_state = 3}, [815] = {.lex_state = 3}, [816] = {.lex_state = 3}, - [817] = {.lex_state = 4}, + [817] = {.lex_state = 3}, [818] = {.lex_state = 3}, [819] = {.lex_state = 3}, [820] = {.lex_state = 3}, @@ -7640,138 +7640,138 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [838] = {.lex_state = 3}, [839] = {.lex_state = 3}, [840] = {.lex_state = 3}, - [841] = {.lex_state = 4}, + [841] = {.lex_state = 3}, [842] = {.lex_state = 3}, - [843] = {.lex_state = 4}, + [843] = {.lex_state = 3}, [844] = {.lex_state = 3}, [845] = {.lex_state = 3}, [846] = {.lex_state = 3}, [847] = {.lex_state = 3}, - [848] = {.lex_state = 5}, - [849] = {.lex_state = 0}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 3}, [850] = {.lex_state = 3}, [851] = {.lex_state = 3}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 3}, - [854] = {.lex_state = 3}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 5}, + [854] = {.lex_state = 0}, [855] = {.lex_state = 3}, - [856] = {.lex_state = 5}, + [856] = {.lex_state = 3}, [857] = {.lex_state = 3}, - [858] = {.lex_state = 5}, - [859] = {.lex_state = 12}, + [858] = {.lex_state = 3}, + [859] = {.lex_state = 3}, [860] = {.lex_state = 3}, [861] = {.lex_state = 3}, - [862] = {.lex_state = 0}, + [862] = {.lex_state = 12}, [863] = {.lex_state = 3}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 3}, - [866] = {.lex_state = 12}, - [867] = {.lex_state = 3}, + [864] = {.lex_state = 3}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 3}, + [867] = {.lex_state = 0}, [868] = {.lex_state = 3}, - [869] = {.lex_state = 3}, + [869] = {.lex_state = 5}, [870] = {.lex_state = 3}, [871] = {.lex_state = 3}, [872] = {.lex_state = 3}, [873] = {.lex_state = 3}, [874] = {.lex_state = 3}, - [875] = {.lex_state = 5}, + [875] = {.lex_state = 3}, [876] = {.lex_state = 3}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 3}, - [879] = {.lex_state = 3}, + [877] = {.lex_state = 3}, + [878] = {.lex_state = 0}, + [879] = {.lex_state = 5}, [880] = {.lex_state = 3}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 0}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 5}, [883] = {.lex_state = 5}, - [884] = {.lex_state = 3}, + [884] = {.lex_state = 12}, [885] = {.lex_state = 3}, - [886] = {.lex_state = 5}, - [887] = {.lex_state = 3}, + [886] = {.lex_state = 3}, + [887] = {.lex_state = 0}, [888] = {.lex_state = 3}, - [889] = {.lex_state = 3}, - [890] = {.lex_state = 5}, - [891] = {.lex_state = 3}, + [889] = {.lex_state = 0}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 0}, [892] = {.lex_state = 0}, - [893] = {.lex_state = 3}, - [894] = {.lex_state = 0}, + [893] = {.lex_state = 0}, + [894] = {.lex_state = 3}, [895] = {.lex_state = 0}, [896] = {.lex_state = 3}, - [897] = {.lex_state = 3}, + [897] = {.lex_state = 5}, [898] = {.lex_state = 3}, [899] = {.lex_state = 3}, - [900] = {.lex_state = 3}, - [901] = {.lex_state = 3}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 3}, + [900] = {.lex_state = 5}, + [901] = {.lex_state = 5}, + [902] = {.lex_state = 5}, + [903] = {.lex_state = 5}, + [904] = {.lex_state = 5}, + [905] = {.lex_state = 5}, + [906] = {.lex_state = 5}, [907] = {.lex_state = 5}, [908] = {.lex_state = 5}, [909] = {.lex_state = 5}, [910] = {.lex_state = 5}, [911] = {.lex_state = 5}, - [912] = {.lex_state = 5}, - [913] = {.lex_state = 5}, - [914] = {.lex_state = 5}, - [915] = {.lex_state = 5}, - [916] = {.lex_state = 5}, - [917] = {.lex_state = 5}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 3}, - [920] = {.lex_state = 3}, + [912] = {.lex_state = 3}, + [913] = {.lex_state = 0}, + [914] = {.lex_state = 3}, + [915] = {.lex_state = 3}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 3}, + [918] = {.lex_state = 3}, + [919] = {.lex_state = 4}, + [920] = {.lex_state = 0}, [921] = {.lex_state = 3}, - [922] = {.lex_state = 0}, + [922] = {.lex_state = 3}, [923] = {.lex_state = 3}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 3}, - [926] = {.lex_state = 12}, + [924] = {.lex_state = 12}, + [925] = {.lex_state = 0}, + [926] = {.lex_state = 0}, [927] = {.lex_state = 3}, - [928] = {.lex_state = 4}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 3}, - [931] = {.lex_state = 0}, + [928] = {.lex_state = 3}, + [929] = {.lex_state = 3}, + [930] = {.lex_state = 4}, + [931] = {.lex_state = 3}, [932] = {.lex_state = 0}, - [933] = {.lex_state = 3}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 4}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 12}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 3}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 3}, + [935] = {.lex_state = 3}, + [936] = {.lex_state = 12}, + [937] = {.lex_state = 3}, + [938] = {.lex_state = 3}, + [939] = {.lex_state = 3}, + [940] = {.lex_state = 3}, + [941] = {.lex_state = 0}, [942] = {.lex_state = 3}, - [943] = {.lex_state = 3}, - [944] = {.lex_state = 3}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 4}, - [947] = {.lex_state = 3}, + [943] = {.lex_state = 4}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 3}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, + [949] = {.lex_state = 3}, [950] = {.lex_state = 0}, - [951] = {.lex_state = 0}, - [952] = {.lex_state = 4}, + [951] = {.lex_state = 4}, + [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 4}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 4}, + [954] = {.lex_state = 5}, + [955] = {.lex_state = 5}, + [956] = {.lex_state = 0}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, - [961] = {.lex_state = 0}, + [961] = {.lex_state = 3}, [962] = {.lex_state = 0}, - [963] = {.lex_state = 4}, + [963] = {.lex_state = 5}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, [966] = {.lex_state = 0}, - [967] = {.lex_state = 5}, + [967] = {.lex_state = 0}, [968] = {.lex_state = 0}, [969] = {.lex_state = 0}, - [970] = {.lex_state = 3}, + [970] = {.lex_state = 0}, [971] = {.lex_state = 0}, - [972] = {.lex_state = 3}, + [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, @@ -7781,135 +7781,135 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, - [982] = {.lex_state = 3}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, - [984] = {.lex_state = 0}, + [984] = {.lex_state = 3}, [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 3}, + [986] = {.lex_state = 3}, + [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 5}, + [990] = {.lex_state = 3}, [991] = {.lex_state = 0}, - [992] = {.lex_state = 4}, - [993] = {.lex_state = 0}, + [992] = {.lex_state = 5}, + [993] = {.lex_state = 5}, [994] = {.lex_state = 0}, - [995] = {.lex_state = 4}, + [995] = {.lex_state = 5}, [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 5}, - [1000] = {.lex_state = 5}, - [1001] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 4}, [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 3}, + [1004] = {.lex_state = 0}, [1005] = {.lex_state = 5}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 3}, - [1008] = {.lex_state = 3}, + [1006] = {.lex_state = 5}, + [1007] = {.lex_state = 0}, + [1008] = {.lex_state = 0}, [1009] = {.lex_state = 0}, [1010] = {.lex_state = 5}, - [1011] = {.lex_state = 5}, - [1012] = {.lex_state = 0}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 5}, [1013] = {.lex_state = 0}, [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 5}, - [1018] = {.lex_state = 3}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 5}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 4}, + [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 4}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 4}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 5}, + [1022] = {.lex_state = 4}, + [1023] = {.lex_state = 3}, + [1024] = {.lex_state = 4}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 4}, + [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, + [1031] = {.lex_state = 5}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 3}, - [1034] = {.lex_state = 5}, - [1035] = {.lex_state = 5}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 3}, + [1035] = {.lex_state = 3}, + [1036] = {.lex_state = 5}, + [1037] = {.lex_state = 5}, + [1038] = {.lex_state = 3}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 3}, - [1042] = {.lex_state = 0}, + [1041] = {.lex_state = 5}, + [1042] = {.lex_state = 4}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 5}, - [1046] = {.lex_state = 5}, + [1044] = {.lex_state = 4}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 0}, [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, [1050] = {.lex_state = 5}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 5}, - [1054] = {.lex_state = 5}, - [1055] = {.lex_state = 5}, - [1056] = {.lex_state = 5}, + [1053] = {.lex_state = 0}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 4}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, + [1058] = {.lex_state = 3}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, + [1060] = {.lex_state = 4}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 3}, + [1063] = {.lex_state = 4}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, + [1070] = {.lex_state = 4}, [1071] = {.lex_state = 0}, [1072] = {.lex_state = 3}, - [1073] = {.lex_state = 0}, + [1073] = {.lex_state = 4}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 3}, - [1078] = {.lex_state = 3}, - [1079] = {.lex_state = 4}, + [1076] = {.lex_state = 4}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0}, + [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 0}, + [1081] = {.lex_state = 4}, [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 5}, + [1083] = {.lex_state = 3}, [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 5}, - [1086] = {.lex_state = 5}, - [1087] = {.lex_state = 4}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 0}, [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 4}, - [1090] = {.lex_state = 4}, + [1089] = {.lex_state = 0}, + [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 4}, + [1092] = {.lex_state = 5}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 5}, + [1094] = {.lex_state = 0}, [1095] = {.lex_state = 5}, [1096] = {.lex_state = 5}, - [1097] = {.lex_state = 5}, - [1098] = {.lex_state = 5}, - [1099] = {.lex_state = 0}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 3}, [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0}, + [1101] = {.lex_state = 5}, [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 3}, - [1104] = {.lex_state = 0}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 5}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 3}, - [1110] = {.lex_state = 0}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 3}, [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, @@ -7917,106 +7917,106 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 5}, - [1119] = {.lex_state = 3}, + [1118] = {.lex_state = 4}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, + [1122] = {.lex_state = 5}, [1123] = {.lex_state = 5}, - [1124] = {.lex_state = 3}, + [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 0}, + [1127] = {.lex_state = 3}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, + [1130] = {.lex_state = 5}, + [1131] = {.lex_state = 5}, + [1132] = {.lex_state = 3}, [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 3}, + [1136] = {.lex_state = 5}, + [1137] = {.lex_state = 5}, + [1138] = {.lex_state = 5}, + [1139] = {.lex_state = 0}, [1140] = {.lex_state = 5}, [1141] = {.lex_state = 5}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 3}, + [1142] = {.lex_state = 5}, + [1143] = {.lex_state = 5}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 3}, + [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 4}, + [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1151] = {.lex_state = 3}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 5}, + [1158] = {.lex_state = 3}, [1159] = {.lex_state = 0}, [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 4}, + [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 5}, - [1164] = {.lex_state = 5}, - [1165] = {.lex_state = 5}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 5}, + [1168] = {.lex_state = 3}, + [1169] = {.lex_state = 4}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1171] = {.lex_state = 5}, [1172] = {.lex_state = 5}, [1173] = {.lex_state = 5}, - [1174] = {.lex_state = 0}, + [1174] = {.lex_state = 5}, [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0}, + [1179] = {.lex_state = 3}, + [1180] = {.lex_state = 3}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, + [1184] = {.lex_state = 3}, [1185] = {.lex_state = 3}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 3}, + [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, + [1190] = {.lex_state = 3}, [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, + [1192] = {.lex_state = 3}, + [1193] = {.lex_state = 3}, [1194] = {.lex_state = 3}, [1195] = {.lex_state = 3}, - [1196] = {.lex_state = 0}, + [1196] = {.lex_state = 3}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 5}, + [1198] = {.lex_state = 3}, + [1199] = {.lex_state = 3}, [1200] = {.lex_state = 3}, [1201] = {.lex_state = 3}, - [1202] = {.lex_state = 5}, - [1203] = {.lex_state = 0}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 3}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, + [1205] = {.lex_state = 3}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 3}, + [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 3}, - [1215] = {.lex_state = 3}, - [1216] = {.lex_state = 3}, - [1217] = {.lex_state = 3}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, @@ -8029,38 +8029,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 3}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 3}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 3}, + [1232] = {.lex_state = 5}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 3}, + [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, [1242] = {.lex_state = 0}, [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 3}, + [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 3}, + [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, + [1250] = {.lex_state = 3}, + [1251] = {.lex_state = 3}, [1252] = {.lex_state = 3}, - [1253] = {.lex_state = 3}, - [1254] = {.lex_state = 3}, - [1255] = {.lex_state = 3}, - [1256] = {.lex_state = 3}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 3}, - [1260] = {.lex_state = 3}, + [1258] = {.lex_state = 3}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 5}, [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 3}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 3}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8197,73 +8202,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1189), - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym_program] = STATE(1248), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(6), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(12), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -8339,74 +8344,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(534), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(535), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_type_arguments] = STATE(1124), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_type_arguments] = STATE(1127), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(13), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_explicit_constructor_invocation] = STATE(12), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_explicit_constructor_invocation] = STATE(10), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(13), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8483,74 +8488,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_switch_label] = STATE(1208), + [sym_switch_label] = STATE(1219), [sym_statement] = STATE(5), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(5), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_switch_block_statement_group_repeat1] = STATE(204), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_switch_block_statement_group_repeat1] = STATE(191), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8627,72 +8632,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [ts_builtin_sym_end] = ACTIONS(99), [sym_identifier] = ACTIONS(101), [sym_decimal_integer_literal] = ACTIONS(104), @@ -8770,72 +8775,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8912,73 +8917,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(227), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9003,6 +9007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(227), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9053,72 +9058,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9194,72 +9199,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9335,72 +9340,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(7), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9476,72 +9481,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(11), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(8), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9617,72 +9622,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(4), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(6), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9758,72 +9763,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(8), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(4), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(239), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9848,7 +9854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(239), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -9899,72 +9904,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9989,7 +9994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(23), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_RBRACE] = ACTIONS(235), [anon_sym_default] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), @@ -10040,71 +10045,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(1139), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(197), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10179,72 +10184,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(206), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(181), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10272,7 +10277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -10280,8 +10285,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -10318,72 +10323,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(207), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(226), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10411,7 +10416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -10419,8 +10424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -10457,71 +10462,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(203), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(245), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10596,72 +10601,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(201), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(1231), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10689,7 +10694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -10697,8 +10702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -10735,71 +10740,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(199), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(216), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10874,71 +10879,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(194), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(215), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11013,71 +11018,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(193), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(218), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11152,71 +11157,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(192), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(226), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11291,71 +11296,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(238), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(252), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11430,71 +11435,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(241), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(223), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11569,71 +11574,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(209), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(213), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11708,71 +11713,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(239), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(212), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11847,71 +11852,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(188), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(192), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11986,72 +11991,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(187), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(1132), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12079,7 +12084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -12087,8 +12092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -12125,71 +12130,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(186), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(217), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12264,71 +12269,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(189), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(194), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12403,71 +12408,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(184), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(225), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12542,71 +12547,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(233), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(234), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12681,71 +12686,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(240), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(187), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12820,72 +12825,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(213), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(201), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12913,7 +12918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -12921,8 +12926,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -12959,71 +12964,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(211), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(194), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13098,71 +13103,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(210), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(192), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13237,72 +13242,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(182), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(181), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13330,7 +13335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13338,8 +13343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -13376,72 +13381,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(230), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(197), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13469,7 +13474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13477,8 +13482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -13515,71 +13520,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(180), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(209), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13654,71 +13659,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(181), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(217), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13793,72 +13798,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(182), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(202), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13886,7 +13891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13894,8 +13899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -13932,72 +13937,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(184), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(195), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14025,7 +14030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -14033,8 +14038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -14071,71 +14076,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(186), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(187), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14210,71 +14215,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(181), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(246), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14349,71 +14354,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(231), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(203), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14488,71 +14493,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(187), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(201), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14627,72 +14632,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [47] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(180), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(215), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14720,7 +14725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -14728,8 +14733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -14766,71 +14771,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(188), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(195), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14905,72 +14910,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(192), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(250), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14998,7 +15003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15006,8 +15011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -15044,72 +15049,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [50] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(193), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(207), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15137,7 +15142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15145,8 +15150,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -15183,72 +15188,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(194), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(251), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15276,7 +15281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15284,8 +15289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -15322,71 +15327,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(199), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(202), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15461,72 +15466,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(201), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(206), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15554,7 +15559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15562,8 +15567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -15600,72 +15605,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(223), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(207), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15693,7 +15698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15701,8 +15706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -15739,71 +15744,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(203), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(252), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15878,72 +15883,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(254), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(253), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15971,7 +15976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15979,8 +15984,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -16017,71 +16022,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(205), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(251), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16156,72 +16161,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(213), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(250), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16249,7 +16254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16257,8 +16262,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -16295,72 +16300,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(205), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(203), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16388,7 +16393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16396,8 +16401,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -16434,72 +16439,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [60] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(206), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(246), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16527,7 +16532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16535,8 +16540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -16573,71 +16578,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(231), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(234), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16712,71 +16717,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [62] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(233), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(204), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16851,71 +16856,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(239), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(225), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16990,71 +16995,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(240), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(223), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17129,71 +17134,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(218), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(243), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(216), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_default] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_assert] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_while] = ACTIONS(243), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_synchronized] = ACTIONS(47), + [anon_sym_throw] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_open] = ACTIONS(59), + [anon_sym_module] = ACTIONS(61), + [anon_sym_static] = ACTIONS(29), + [anon_sym_package] = ACTIONS(63), + [anon_sym_import] = ACTIONS(65), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_public] = ACTIONS(29), + [anon_sym_protected] = ACTIONS(29), + [anon_sym_private] = ACTIONS(29), + [anon_sym_abstract] = ACTIONS(29), + [anon_sym_final] = ACTIONS(29), + [anon_sym_strictfp] = ACTIONS(29), + [anon_sym_native] = ACTIONS(29), + [anon_sym_transient] = ACTIONS(29), + [anon_sym_volatile] = ACTIONS(29), + [anon_sym_sealed] = ACTIONS(29), + [anon_sym_non_DASHsealed] = ACTIONS(69), + [anon_sym_record] = ACTIONS(71), + [anon_sym_ATinterface] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(211), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(204), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17267,350 +17550,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(241), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(1254), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [68] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(189), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(213), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17685,72 +17690,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [69] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(207), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(253), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17778,7 +17783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -17786,8 +17791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -17824,72 +17829,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [70] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(254), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(205), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17917,7 +17922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -17925,8 +17930,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -17963,72 +17968,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [71] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(230), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(212), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -18056,7 +18061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -18064,8 +18069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), @@ -18102,71 +18107,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [72] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(223), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(206), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18241,71 +18246,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(210), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_statement] = STATE(209), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18380,71 +18385,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [74] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(542), - [sym_statement] = STATE(209), - [sym_block] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_assert_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_yield_statement] = STATE(244), - [sym_synchronized_statement] = STATE(244), - [sym_throw_statement] = STATE(244), - [sym_try_statement] = STATE(244), - [sym_try_with_resources_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_enhanced_for_statement] = STATE(244), - [sym__annotation] = STATE(460), - [sym_marker_annotation] = STATE(460), - [sym_annotation] = STATE(460), - [sym_declaration] = STATE(244), - [sym_module_declaration] = STATE(176), - [sym_package_declaration] = STATE(176), - [sym_import_declaration] = STATE(176), - [sym_enum_declaration] = STATE(176), - [sym_class_declaration] = STATE(176), - [sym_modifiers] = STATE(657), - [sym_record_declaration] = STATE(176), - [sym_annotation_type_declaration] = STATE(176), - [sym_interface_declaration] = STATE(176), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(677), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(244), - [aux_sym_array_creation_expression_repeat1] = STATE(613), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(579), + [sym_statement] = STATE(205), + [sym_block] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_assert_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_yield_statement] = STATE(179), + [sym_synchronized_statement] = STATE(179), + [sym_throw_statement] = STATE(179), + [sym_try_statement] = STATE(179), + [sym_try_with_resources_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_enhanced_for_statement] = STATE(179), + [sym__annotation] = STATE(465), + [sym_marker_annotation] = STATE(465), + [sym_annotation] = STATE(465), + [sym_declaration] = STATE(179), + [sym_module_declaration] = STATE(219), + [sym_package_declaration] = STATE(219), + [sym_import_declaration] = STATE(219), + [sym_enum_declaration] = STATE(219), + [sym_class_declaration] = STATE(219), + [sym_modifiers] = STATE(655), + [sym_record_declaration] = STATE(219), + [sym_annotation_type_declaration] = STATE(219), + [sym_interface_declaration] = STATE(219), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(179), + [aux_sym_array_creation_expression_repeat1] = STATE(604), + [aux_sym_modifiers_repeat1] = STATE(424), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18933,104 +18938,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(265), - [sym_identifier] = ACTIONS(267), - [sym_decimal_integer_literal] = ACTIONS(267), - [sym_hex_integer_literal] = ACTIONS(267), - [sym_octal_integer_literal] = ACTIONS(265), - [sym_binary_integer_literal] = ACTIONS(265), - [sym_decimal_floating_point_literal] = ACTIONS(265), - [sym_hex_floating_point_literal] = ACTIONS(267), - [sym_true] = ACTIONS(267), - [sym_false] = ACTIONS(267), - [sym_character_literal] = ACTIONS(265), - [sym_string_literal] = ACTIONS(267), - [sym_text_block] = ACTIONS(265), - [sym_null_literal] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(265), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(265), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_PERCENT] = ACTIONS(265), - [anon_sym_LT_LT] = ACTIONS(265), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_GT_GT_GT] = ACTIONS(265), - [anon_sym_instanceof] = ACTIONS(267), - [anon_sym_DASH_GT] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_QMARK] = ACTIONS(265), + [sym_identifier] = ACTIONS(265), + [sym_decimal_integer_literal] = ACTIONS(265), + [sym_hex_integer_literal] = ACTIONS(265), + [sym_octal_integer_literal] = ACTIONS(267), + [sym_binary_integer_literal] = ACTIONS(267), + [sym_decimal_floating_point_literal] = ACTIONS(267), + [sym_hex_floating_point_literal] = ACTIONS(265), + [sym_true] = ACTIONS(265), + [sym_false] = ACTIONS(265), + [sym_character_literal] = ACTIONS(267), + [sym_string_literal] = ACTIONS(265), + [sym_text_block] = ACTIONS(267), + [sym_null_literal] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_RPAREN] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_PIPE_PIPE] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_GT_GT_GT] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(265), + [anon_sym_DASH_GT] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), [anon_sym_COLON] = ACTIONS(265), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym_new] = ACTIONS(267), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_class] = ACTIONS(267), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_case] = ACTIONS(267), - [anon_sym_default] = ACTIONS(267), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_assert] = ACTIONS(267), - [anon_sym_do] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_synchronized] = ACTIONS(267), - [anon_sym_throw] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_open] = ACTIONS(267), - [anon_sym_module] = ACTIONS(267), - [anon_sym_static] = ACTIONS(267), - [anon_sym_package] = ACTIONS(267), - [anon_sym_import] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_public] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_abstract] = ACTIONS(267), - [anon_sym_final] = ACTIONS(267), - [anon_sym_strictfp] = ACTIONS(267), - [anon_sym_native] = ACTIONS(267), - [anon_sym_transient] = ACTIONS(267), - [anon_sym_volatile] = ACTIONS(267), - [anon_sym_sealed] = ACTIONS(267), - [anon_sym_non_DASHsealed] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_ATinterface] = ACTIONS(265), - [anon_sym_interface] = ACTIONS(267), - [anon_sym_byte] = ACTIONS(267), - [anon_sym_short] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_long] = ACTIONS(267), - [anon_sym_char] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_double] = ACTIONS(267), - [sym_boolean_type] = ACTIONS(267), - [sym_void_type] = ACTIONS(267), - [sym_this] = ACTIONS(267), - [sym_super] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_new] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(267), + [anon_sym_RBRACK] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_class] = ACTIONS(265), + [anon_sym_COLON_COLON] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_default] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(265), + [anon_sym_do] = ACTIONS(265), + [anon_sym_while] = ACTIONS(265), + [anon_sym_break] = ACTIONS(265), + [anon_sym_continue] = ACTIONS(265), + [anon_sym_return] = ACTIONS(265), + [anon_sym_yield] = ACTIONS(265), + [anon_sym_synchronized] = ACTIONS(265), + [anon_sym_throw] = ACTIONS(265), + [anon_sym_try] = ACTIONS(265), + [anon_sym_if] = ACTIONS(265), + [anon_sym_for] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_open] = ACTIONS(265), + [anon_sym_module] = ACTIONS(265), + [anon_sym_static] = ACTIONS(265), + [anon_sym_package] = ACTIONS(265), + [anon_sym_import] = ACTIONS(265), + [anon_sym_enum] = ACTIONS(265), + [anon_sym_public] = ACTIONS(265), + [anon_sym_protected] = ACTIONS(265), + [anon_sym_private] = ACTIONS(265), + [anon_sym_abstract] = ACTIONS(265), + [anon_sym_final] = ACTIONS(265), + [anon_sym_strictfp] = ACTIONS(265), + [anon_sym_native] = ACTIONS(265), + [anon_sym_transient] = ACTIONS(265), + [anon_sym_volatile] = ACTIONS(265), + [anon_sym_sealed] = ACTIONS(265), + [anon_sym_non_DASHsealed] = ACTIONS(267), + [anon_sym_record] = ACTIONS(265), + [anon_sym_ATinterface] = ACTIONS(267), + [anon_sym_interface] = ACTIONS(265), + [anon_sym_byte] = ACTIONS(265), + [anon_sym_short] = ACTIONS(265), + [anon_sym_int] = ACTIONS(265), + [anon_sym_long] = ACTIONS(265), + [anon_sym_char] = ACTIONS(265), + [anon_sym_float] = ACTIONS(265), + [anon_sym_double] = ACTIONS(265), + [sym_boolean_type] = ACTIONS(265), + [sym_void_type] = ACTIONS(265), + [sym_this] = ACTIONS(265), + [sym_super] = ACTIONS(265), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -19137,104 +19142,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [81] = { - [sym_identifier] = ACTIONS(273), - [sym_decimal_integer_literal] = ACTIONS(273), - [sym_hex_integer_literal] = ACTIONS(273), - [sym_octal_integer_literal] = ACTIONS(275), - [sym_binary_integer_literal] = ACTIONS(275), - [sym_decimal_floating_point_literal] = ACTIONS(275), - [sym_hex_floating_point_literal] = ACTIONS(273), - [sym_true] = ACTIONS(273), - [sym_false] = ACTIONS(273), - [sym_character_literal] = ACTIONS(275), - [sym_string_literal] = ACTIONS(273), - [sym_text_block] = ACTIONS(275), - [sym_null_literal] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(273), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_GT] = ACTIONS(273), - [anon_sym_LT] = ACTIONS(273), - [anon_sym_GT_EQ] = ACTIONS(275), - [anon_sym_LT_EQ] = ACTIONS(275), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(275), - [anon_sym_SLASH] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(273), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_PERCENT] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(275), - [anon_sym_GT_GT] = ACTIONS(273), - [anon_sym_GT_GT_GT] = ACTIONS(275), - [anon_sym_instanceof] = ACTIONS(273), - [anon_sym_DASH_GT] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(275), + [ts_builtin_sym_end] = ACTIONS(273), + [sym_identifier] = ACTIONS(275), + [sym_decimal_integer_literal] = ACTIONS(275), + [sym_hex_integer_literal] = ACTIONS(275), + [sym_octal_integer_literal] = ACTIONS(273), + [sym_binary_integer_literal] = ACTIONS(273), + [sym_decimal_floating_point_literal] = ACTIONS(273), + [sym_hex_floating_point_literal] = ACTIONS(275), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_character_literal] = ACTIONS(273), + [sym_string_literal] = ACTIONS(275), + [sym_text_block] = ACTIONS(273), + [sym_null_literal] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_RPAREN] = ACTIONS(273), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(273), + [anon_sym_LT_EQ] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(273), + [anon_sym_BANG_EQ] = ACTIONS(273), + [anon_sym_AMP_AMP] = ACTIONS(273), + [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(273), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_DASH_GT] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(273), + [anon_sym_QMARK] = ACTIONS(273), [anon_sym_COLON] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_new] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(273), - [anon_sym_class] = ACTIONS(273), - [anon_sym_COLON_COLON] = ACTIONS(275), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(275), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_default] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_yield] = ACTIONS(273), - [anon_sym_synchronized] = ACTIONS(273), - [anon_sym_throw] = ACTIONS(273), - [anon_sym_try] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_open] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_static] = ACTIONS(273), - [anon_sym_package] = ACTIONS(273), - [anon_sym_import] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(273), - [anon_sym_public] = ACTIONS(273), - [anon_sym_protected] = ACTIONS(273), - [anon_sym_private] = ACTIONS(273), - [anon_sym_abstract] = ACTIONS(273), - [anon_sym_final] = ACTIONS(273), - [anon_sym_strictfp] = ACTIONS(273), - [anon_sym_native] = ACTIONS(273), - [anon_sym_transient] = ACTIONS(273), - [anon_sym_volatile] = ACTIONS(273), - [anon_sym_sealed] = ACTIONS(273), - [anon_sym_non_DASHsealed] = ACTIONS(275), - [anon_sym_record] = ACTIONS(273), - [anon_sym_ATinterface] = ACTIONS(275), - [anon_sym_interface] = ACTIONS(273), - [anon_sym_byte] = ACTIONS(273), - [anon_sym_short] = ACTIONS(273), - [anon_sym_int] = ACTIONS(273), - [anon_sym_long] = ACTIONS(273), - [anon_sym_char] = ACTIONS(273), - [anon_sym_float] = ACTIONS(273), - [anon_sym_double] = ACTIONS(273), - [sym_boolean_type] = ACTIONS(273), - [sym_void_type] = ACTIONS(273), - [sym_this] = ACTIONS(273), - [sym_super] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_new] = ACTIONS(275), + [anon_sym_RBRACK] = ACTIONS(273), + [anon_sym_class] = ACTIONS(275), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_yield] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_throw] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_open] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_abstract] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_strictfp] = ACTIONS(275), + [anon_sym_native] = ACTIONS(275), + [anon_sym_transient] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_sealed] = ACTIONS(275), + [anon_sym_non_DASHsealed] = ACTIONS(273), + [anon_sym_record] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_byte] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [sym_boolean_type] = ACTIONS(275), + [sym_void_type] = ACTIONS(275), + [sym_this] = ACTIONS(275), + [sym_super] = ACTIONS(275), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -19438,46 +19443,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [84] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(692), - [sym__type] = STATE(940), - [sym__unannotated_type] = STATE(667), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_formal_parameter] = STATE(985), - [sym_receiver_parameter] = STATE(393), - [sym_spread_parameter] = STATE(985), + [sym_modifiers] = STATE(691), + [sym__type] = STATE(887), + [sym__unannotated_type] = STATE(670), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_formal_parameter] = STATE(980), + [sym_receiver_parameter] = STATE(394), + [sym_spread_parameter] = STATE(980), [aux_sym_array_creation_expression_repeat1] = STATE(651), - [aux_sym_modifiers_repeat1] = STATE(513), + [aux_sym_modifiers_repeat1] = STATE(525), [sym_identifier] = ACTIONS(295), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19534,46 +19539,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [85] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(692), - [sym__type] = STATE(895), - [sym__unannotated_type] = STATE(667), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_formal_parameter] = STATE(985), - [sym_receiver_parameter] = STATE(393), - [sym_spread_parameter] = STATE(985), + [sym_modifiers] = STATE(691), + [sym__type] = STATE(893), + [sym__unannotated_type] = STATE(670), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_formal_parameter] = STATE(980), + [sym_receiver_parameter] = STATE(394), + [sym_spread_parameter] = STATE(980), [aux_sym_array_creation_expression_repeat1] = STATE(651), - [aux_sym_modifiers_repeat1] = STATE(513), + [aux_sym_modifiers_repeat1] = STATE(525), [sym_identifier] = ACTIONS(295), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19630,44 +19635,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [86] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(579), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(557), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(682), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(680), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(256), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [aux_sym_modifiers_repeat1] = STATE(513), + [sym_modifiers] = STATE(693), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(679), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(257), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [aux_sym_modifiers_repeat1] = STATE(525), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19694,8 +19699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(309), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), [anon_sym_static] = ACTIONS(299), [anon_sym_public] = ACTIONS(299), [anon_sym_protected] = ACTIONS(299), @@ -19708,7 +19713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(299), [anon_sym_sealed] = ACTIONS(299), [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(303), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -19724,44 +19729,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [87] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(546), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(585), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(684), - [sym__type] = STATE(1181), + [sym_modifiers] = STATE(695), + [sym__type] = STATE(1246), [sym__unannotated_type] = STATE(681), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [sym_local_variable_declaration] = STATE(257), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [aux_sym_modifiers_repeat1] = STATE(513), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [sym_local_variable_declaration] = STATE(274), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [aux_sym_modifiers_repeat1] = STATE(525), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19785,11 +19790,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_default] = ACTIONS(299), - [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), [anon_sym_static] = ACTIONS(299), [anon_sym_public] = ACTIONS(299), [anon_sym_protected] = ACTIONS(299), @@ -19802,7 +19807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(299), [anon_sym_sealed] = ACTIONS(299), [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(303), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -19819,375 +19824,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [88] = { [sym_catch_clause] = STATE(91), - [sym_finally_clause] = STATE(190), + [sym_finally_clause] = STATE(193), [aux_sym_try_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(313), - [sym_identifier] = ACTIONS(315), - [sym_decimal_integer_literal] = ACTIONS(315), - [sym_hex_integer_literal] = ACTIONS(315), - [sym_octal_integer_literal] = ACTIONS(313), - [sym_binary_integer_literal] = ACTIONS(313), - [sym_decimal_floating_point_literal] = ACTIONS(313), - [sym_hex_floating_point_literal] = ACTIONS(315), - [sym_true] = ACTIONS(315), - [sym_false] = ACTIONS(315), - [sym_character_literal] = ACTIONS(313), - [sym_string_literal] = ACTIONS(315), - [sym_text_block] = ACTIONS(313), - [sym_null_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(313), - [anon_sym_TILDE] = ACTIONS(313), - [anon_sym_PLUS_PLUS] = ACTIONS(313), - [anon_sym_DASH_DASH] = ACTIONS(313), - [anon_sym_new] = ACTIONS(315), - [anon_sym_class] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(313), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(313), - [anon_sym_assert] = ACTIONS(315), - [anon_sym_do] = ACTIONS(315), - [anon_sym_while] = ACTIONS(315), - [anon_sym_break] = ACTIONS(315), - [anon_sym_continue] = ACTIONS(315), - [anon_sym_return] = ACTIONS(315), - [anon_sym_yield] = ACTIONS(315), - [anon_sym_synchronized] = ACTIONS(315), - [anon_sym_throw] = ACTIONS(315), - [anon_sym_try] = ACTIONS(315), - [anon_sym_catch] = ACTIONS(317), - [anon_sym_finally] = ACTIONS(319), - [anon_sym_if] = ACTIONS(315), - [anon_sym_else] = ACTIONS(315), - [anon_sym_for] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(315), - [anon_sym_open] = ACTIONS(315), - [anon_sym_module] = ACTIONS(315), - [anon_sym_static] = ACTIONS(315), - [anon_sym_package] = ACTIONS(315), - [anon_sym_import] = ACTIONS(315), - [anon_sym_enum] = ACTIONS(315), - [anon_sym_public] = ACTIONS(315), - [anon_sym_protected] = ACTIONS(315), - [anon_sym_private] = ACTIONS(315), - [anon_sym_abstract] = ACTIONS(315), - [anon_sym_final] = ACTIONS(315), - [anon_sym_strictfp] = ACTIONS(315), - [anon_sym_native] = ACTIONS(315), - [anon_sym_transient] = ACTIONS(315), - [anon_sym_volatile] = ACTIONS(315), - [anon_sym_sealed] = ACTIONS(315), - [anon_sym_non_DASHsealed] = ACTIONS(313), - [anon_sym_record] = ACTIONS(315), - [anon_sym_ATinterface] = ACTIONS(313), - [anon_sym_interface] = ACTIONS(315), - [anon_sym_byte] = ACTIONS(315), - [anon_sym_short] = ACTIONS(315), - [anon_sym_int] = ACTIONS(315), - [anon_sym_long] = ACTIONS(315), - [anon_sym_char] = ACTIONS(315), - [anon_sym_float] = ACTIONS(315), - [anon_sym_double] = ACTIONS(315), - [sym_boolean_type] = ACTIONS(315), - [sym_void_type] = ACTIONS(315), - [sym_this] = ACTIONS(315), - [sym_super] = ACTIONS(315), + [ts_builtin_sym_end] = ACTIONS(315), + [sym_identifier] = ACTIONS(317), + [sym_decimal_integer_literal] = ACTIONS(317), + [sym_hex_integer_literal] = ACTIONS(317), + [sym_octal_integer_literal] = ACTIONS(315), + [sym_binary_integer_literal] = ACTIONS(315), + [sym_decimal_floating_point_literal] = ACTIONS(315), + [sym_hex_floating_point_literal] = ACTIONS(317), + [sym_true] = ACTIONS(317), + [sym_false] = ACTIONS(317), + [sym_character_literal] = ACTIONS(315), + [sym_string_literal] = ACTIONS(317), + [sym_text_block] = ACTIONS(315), + [sym_null_literal] = ACTIONS(317), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_BANG] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_new] = ACTIONS(317), + [anon_sym_class] = ACTIONS(317), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_assert] = ACTIONS(317), + [anon_sym_do] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_yield] = ACTIONS(317), + [anon_sym_synchronized] = ACTIONS(317), + [anon_sym_throw] = ACTIONS(317), + [anon_sym_try] = ACTIONS(317), + [anon_sym_catch] = ACTIONS(319), + [anon_sym_finally] = ACTIONS(321), + [anon_sym_if] = ACTIONS(317), + [anon_sym_else] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [anon_sym_AT] = ACTIONS(317), + [anon_sym_open] = ACTIONS(317), + [anon_sym_module] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_package] = ACTIONS(317), + [anon_sym_import] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_public] = ACTIONS(317), + [anon_sym_protected] = ACTIONS(317), + [anon_sym_private] = ACTIONS(317), + [anon_sym_abstract] = ACTIONS(317), + [anon_sym_final] = ACTIONS(317), + [anon_sym_strictfp] = ACTIONS(317), + [anon_sym_native] = ACTIONS(317), + [anon_sym_transient] = ACTIONS(317), + [anon_sym_volatile] = ACTIONS(317), + [anon_sym_sealed] = ACTIONS(317), + [anon_sym_non_DASHsealed] = ACTIONS(315), + [anon_sym_record] = ACTIONS(317), + [anon_sym_ATinterface] = ACTIONS(315), + [anon_sym_interface] = ACTIONS(317), + [anon_sym_byte] = ACTIONS(317), + [anon_sym_short] = ACTIONS(317), + [anon_sym_int] = ACTIONS(317), + [anon_sym_long] = ACTIONS(317), + [anon_sym_char] = ACTIONS(317), + [anon_sym_float] = ACTIONS(317), + [anon_sym_double] = ACTIONS(317), + [sym_boolean_type] = ACTIONS(317), + [sym_void_type] = ACTIONS(317), + [sym_this] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym_catch_clause] = STATE(91), - [sym_finally_clause] = STATE(215), - [aux_sym_try_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(321), - [sym_identifier] = ACTIONS(323), - [sym_decimal_integer_literal] = ACTIONS(323), - [sym_hex_integer_literal] = ACTIONS(323), - [sym_octal_integer_literal] = ACTIONS(321), - [sym_binary_integer_literal] = ACTIONS(321), - [sym_decimal_floating_point_literal] = ACTIONS(321), - [sym_hex_floating_point_literal] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_character_literal] = ACTIONS(321), - [sym_string_literal] = ACTIONS(323), - [sym_text_block] = ACTIONS(321), - [sym_null_literal] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(323), - [anon_sym_BANG] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_class] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_case] = ACTIONS(323), - [anon_sym_default] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_assert] = ACTIONS(323), - [anon_sym_do] = ACTIONS(323), - [anon_sym_while] = ACTIONS(323), - [anon_sym_break] = ACTIONS(323), - [anon_sym_continue] = ACTIONS(323), - [anon_sym_return] = ACTIONS(323), - [anon_sym_yield] = ACTIONS(323), - [anon_sym_synchronized] = ACTIONS(323), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_try] = ACTIONS(323), - [anon_sym_catch] = ACTIONS(317), - [anon_sym_finally] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_else] = ACTIONS(323), - [anon_sym_for] = ACTIONS(323), - [anon_sym_AT] = ACTIONS(323), - [anon_sym_open] = ACTIONS(323), - [anon_sym_module] = ACTIONS(323), - [anon_sym_static] = ACTIONS(323), - [anon_sym_package] = ACTIONS(323), - [anon_sym_import] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(323), - [anon_sym_public] = ACTIONS(323), - [anon_sym_protected] = ACTIONS(323), - [anon_sym_private] = ACTIONS(323), - [anon_sym_abstract] = ACTIONS(323), - [anon_sym_final] = ACTIONS(323), - [anon_sym_strictfp] = ACTIONS(323), - [anon_sym_native] = ACTIONS(323), - [anon_sym_transient] = ACTIONS(323), - [anon_sym_volatile] = ACTIONS(323), - [anon_sym_sealed] = ACTIONS(323), - [anon_sym_non_DASHsealed] = ACTIONS(321), - [anon_sym_record] = ACTIONS(323), - [anon_sym_ATinterface] = ACTIONS(321), - [anon_sym_interface] = ACTIONS(323), - [anon_sym_byte] = ACTIONS(323), - [anon_sym_short] = ACTIONS(323), - [anon_sym_int] = ACTIONS(323), - [anon_sym_long] = ACTIONS(323), - [anon_sym_char] = ACTIONS(323), - [anon_sym_float] = ACTIONS(323), - [anon_sym_double] = ACTIONS(323), - [sym_boolean_type] = ACTIONS(323), - [sym_void_type] = ACTIONS(323), - [sym_this] = ACTIONS(323), - [sym_super] = ACTIONS(323), + [sym_catch_clause] = STATE(88), + [sym_finally_clause] = STATE(184), + [aux_sym_try_statement_repeat1] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(323), + [sym_identifier] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(325), + [sym_hex_integer_literal] = ACTIONS(325), + [sym_octal_integer_literal] = ACTIONS(323), + [sym_binary_integer_literal] = ACTIONS(323), + [sym_decimal_floating_point_literal] = ACTIONS(323), + [sym_hex_floating_point_literal] = ACTIONS(325), + [sym_true] = ACTIONS(325), + [sym_false] = ACTIONS(325), + [sym_character_literal] = ACTIONS(323), + [sym_string_literal] = ACTIONS(325), + [sym_text_block] = ACTIONS(323), + [sym_null_literal] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_new] = ACTIONS(325), + [anon_sym_class] = ACTIONS(325), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_case] = ACTIONS(325), + [anon_sym_default] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_assert] = ACTIONS(325), + [anon_sym_do] = ACTIONS(325), + [anon_sym_while] = ACTIONS(325), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_return] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(325), + [anon_sym_synchronized] = ACTIONS(325), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_try] = ACTIONS(325), + [anon_sym_catch] = ACTIONS(319), + [anon_sym_finally] = ACTIONS(321), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(325), + [anon_sym_for] = ACTIONS(325), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_open] = ACTIONS(325), + [anon_sym_module] = ACTIONS(325), + [anon_sym_static] = ACTIONS(325), + [anon_sym_package] = ACTIONS(325), + [anon_sym_import] = ACTIONS(325), + [anon_sym_enum] = ACTIONS(325), + [anon_sym_public] = ACTIONS(325), + [anon_sym_protected] = ACTIONS(325), + [anon_sym_private] = ACTIONS(325), + [anon_sym_abstract] = ACTIONS(325), + [anon_sym_final] = ACTIONS(325), + [anon_sym_strictfp] = ACTIONS(325), + [anon_sym_native] = ACTIONS(325), + [anon_sym_transient] = ACTIONS(325), + [anon_sym_volatile] = ACTIONS(325), + [anon_sym_sealed] = ACTIONS(325), + [anon_sym_non_DASHsealed] = ACTIONS(323), + [anon_sym_record] = ACTIONS(325), + [anon_sym_ATinterface] = ACTIONS(323), + [anon_sym_interface] = ACTIONS(325), + [anon_sym_byte] = ACTIONS(325), + [anon_sym_short] = ACTIONS(325), + [anon_sym_int] = ACTIONS(325), + [anon_sym_long] = ACTIONS(325), + [anon_sym_char] = ACTIONS(325), + [anon_sym_float] = ACTIONS(325), + [anon_sym_double] = ACTIONS(325), + [sym_boolean_type] = ACTIONS(325), + [sym_void_type] = ACTIONS(325), + [sym_this] = ACTIONS(325), + [sym_super] = ACTIONS(325), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [90] = { - [sym_catch_clause] = STATE(89), - [sym_finally_clause] = STATE(191), - [aux_sym_try_statement_repeat1] = STATE(89), - [ts_builtin_sym_end] = ACTIONS(325), - [sym_identifier] = ACTIONS(327), - [sym_decimal_integer_literal] = ACTIONS(327), - [sym_hex_integer_literal] = ACTIONS(327), - [sym_octal_integer_literal] = ACTIONS(325), - [sym_binary_integer_literal] = ACTIONS(325), - [sym_decimal_floating_point_literal] = ACTIONS(325), - [sym_hex_floating_point_literal] = ACTIONS(327), - [sym_true] = ACTIONS(327), - [sym_false] = ACTIONS(327), - [sym_character_literal] = ACTIONS(325), - [sym_string_literal] = ACTIONS(327), - [sym_text_block] = ACTIONS(325), - [sym_null_literal] = ACTIONS(327), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(325), - [anon_sym_PLUS_PLUS] = ACTIONS(325), - [anon_sym_DASH_DASH] = ACTIONS(325), - [anon_sym_new] = ACTIONS(327), - [anon_sym_class] = ACTIONS(327), - [anon_sym_switch] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(325), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(327), - [anon_sym_SEMI] = ACTIONS(325), - [anon_sym_assert] = ACTIONS(327), - [anon_sym_do] = ACTIONS(327), - [anon_sym_while] = ACTIONS(327), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_return] = ACTIONS(327), - [anon_sym_yield] = ACTIONS(327), - [anon_sym_synchronized] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(327), - [anon_sym_try] = ACTIONS(327), - [anon_sym_catch] = ACTIONS(317), - [anon_sym_finally] = ACTIONS(319), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(327), - [anon_sym_for] = ACTIONS(327), - [anon_sym_AT] = ACTIONS(327), - [anon_sym_open] = ACTIONS(327), - [anon_sym_module] = ACTIONS(327), - [anon_sym_static] = ACTIONS(327), - [anon_sym_package] = ACTIONS(327), - [anon_sym_import] = ACTIONS(327), - [anon_sym_enum] = ACTIONS(327), - [anon_sym_public] = ACTIONS(327), - [anon_sym_protected] = ACTIONS(327), - [anon_sym_private] = ACTIONS(327), - [anon_sym_abstract] = ACTIONS(327), - [anon_sym_final] = ACTIONS(327), - [anon_sym_strictfp] = ACTIONS(327), - [anon_sym_native] = ACTIONS(327), - [anon_sym_transient] = ACTIONS(327), - [anon_sym_volatile] = ACTIONS(327), - [anon_sym_sealed] = ACTIONS(327), - [anon_sym_non_DASHsealed] = ACTIONS(325), - [anon_sym_record] = ACTIONS(327), - [anon_sym_ATinterface] = ACTIONS(325), - [anon_sym_interface] = ACTIONS(327), - [anon_sym_byte] = ACTIONS(327), - [anon_sym_short] = ACTIONS(327), - [anon_sym_int] = ACTIONS(327), - [anon_sym_long] = ACTIONS(327), - [anon_sym_char] = ACTIONS(327), - [anon_sym_float] = ACTIONS(327), - [anon_sym_double] = ACTIONS(327), - [sym_boolean_type] = ACTIONS(327), - [sym_void_type] = ACTIONS(327), - [sym_this] = ACTIONS(327), - [sym_super] = ACTIONS(327), + [sym_catch_clause] = STATE(91), + [sym_finally_clause] = STATE(183), + [aux_sym_try_statement_repeat1] = STATE(91), + [ts_builtin_sym_end] = ACTIONS(327), + [sym_identifier] = ACTIONS(329), + [sym_decimal_integer_literal] = ACTIONS(329), + [sym_hex_integer_literal] = ACTIONS(329), + [sym_octal_integer_literal] = ACTIONS(327), + [sym_binary_integer_literal] = ACTIONS(327), + [sym_decimal_floating_point_literal] = ACTIONS(327), + [sym_hex_floating_point_literal] = ACTIONS(329), + [sym_true] = ACTIONS(329), + [sym_false] = ACTIONS(329), + [sym_character_literal] = ACTIONS(327), + [sym_string_literal] = ACTIONS(329), + [sym_text_block] = ACTIONS(327), + [sym_null_literal] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_case] = ACTIONS(329), + [anon_sym_default] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(319), + [anon_sym_finally] = ACTIONS(321), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_open] = ACTIONS(329), + [anon_sym_module] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_enum] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_abstract] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_strictfp] = ACTIONS(329), + [anon_sym_native] = ACTIONS(329), + [anon_sym_transient] = ACTIONS(329), + [anon_sym_volatile] = ACTIONS(329), + [anon_sym_sealed] = ACTIONS(329), + [anon_sym_non_DASHsealed] = ACTIONS(327), + [anon_sym_record] = ACTIONS(329), + [anon_sym_ATinterface] = ACTIONS(327), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_byte] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [sym_boolean_type] = ACTIONS(329), + [sym_void_type] = ACTIONS(329), + [sym_this] = ACTIONS(329), + [sym_super] = ACTIONS(329), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [91] = { [sym_catch_clause] = STATE(91), [aux_sym_try_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(329), - [sym_identifier] = ACTIONS(331), - [sym_decimal_integer_literal] = ACTIONS(331), - [sym_hex_integer_literal] = ACTIONS(331), - [sym_octal_integer_literal] = ACTIONS(329), - [sym_binary_integer_literal] = ACTIONS(329), - [sym_decimal_floating_point_literal] = ACTIONS(329), - [sym_hex_floating_point_literal] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_character_literal] = ACTIONS(329), - [sym_string_literal] = ACTIONS(331), - [sym_text_block] = ACTIONS(329), - [sym_null_literal] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_new] = ACTIONS(331), - [anon_sym_class] = ACTIONS(331), - [anon_sym_switch] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_case] = ACTIONS(331), - [anon_sym_default] = ACTIONS(331), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_assert] = ACTIONS(331), - [anon_sym_do] = ACTIONS(331), - [anon_sym_while] = ACTIONS(331), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(331), - [anon_sym_return] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_synchronized] = ACTIONS(331), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_try] = ACTIONS(331), - [anon_sym_catch] = ACTIONS(333), - [anon_sym_finally] = ACTIONS(331), - [anon_sym_if] = ACTIONS(331), - [anon_sym_else] = ACTIONS(331), - [anon_sym_for] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(331), - [anon_sym_open] = ACTIONS(331), - [anon_sym_module] = ACTIONS(331), - [anon_sym_static] = ACTIONS(331), - [anon_sym_package] = ACTIONS(331), - [anon_sym_import] = ACTIONS(331), - [anon_sym_enum] = ACTIONS(331), - [anon_sym_public] = ACTIONS(331), - [anon_sym_protected] = ACTIONS(331), - [anon_sym_private] = ACTIONS(331), - [anon_sym_abstract] = ACTIONS(331), - [anon_sym_final] = ACTIONS(331), - [anon_sym_strictfp] = ACTIONS(331), - [anon_sym_native] = ACTIONS(331), - [anon_sym_transient] = ACTIONS(331), - [anon_sym_volatile] = ACTIONS(331), - [anon_sym_sealed] = ACTIONS(331), - [anon_sym_non_DASHsealed] = ACTIONS(329), - [anon_sym_record] = ACTIONS(331), - [anon_sym_ATinterface] = ACTIONS(329), - [anon_sym_interface] = ACTIONS(331), - [anon_sym_byte] = ACTIONS(331), - [anon_sym_short] = ACTIONS(331), - [anon_sym_int] = ACTIONS(331), - [anon_sym_long] = ACTIONS(331), - [anon_sym_char] = ACTIONS(331), - [anon_sym_float] = ACTIONS(331), - [anon_sym_double] = ACTIONS(331), - [sym_boolean_type] = ACTIONS(331), - [sym_void_type] = ACTIONS(331), - [sym_this] = ACTIONS(331), - [sym_super] = ACTIONS(331), + [ts_builtin_sym_end] = ACTIONS(331), + [sym_identifier] = ACTIONS(333), + [sym_decimal_integer_literal] = ACTIONS(333), + [sym_hex_integer_literal] = ACTIONS(333), + [sym_octal_integer_literal] = ACTIONS(331), + [sym_binary_integer_literal] = ACTIONS(331), + [sym_decimal_floating_point_literal] = ACTIONS(331), + [sym_hex_floating_point_literal] = ACTIONS(333), + [sym_true] = ACTIONS(333), + [sym_false] = ACTIONS(333), + [sym_character_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_text_block] = ACTIONS(331), + [sym_null_literal] = ACTIONS(333), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(331), + [anon_sym_DASH_DASH] = ACTIONS(331), + [anon_sym_new] = ACTIONS(333), + [anon_sym_class] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_case] = ACTIONS(333), + [anon_sym_default] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_assert] = ACTIONS(333), + [anon_sym_do] = ACTIONS(333), + [anon_sym_while] = ACTIONS(333), + [anon_sym_break] = ACTIONS(333), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_return] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(333), + [anon_sym_synchronized] = ACTIONS(333), + [anon_sym_throw] = ACTIONS(333), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(335), + [anon_sym_finally] = ACTIONS(333), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(333), + [anon_sym_for] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(333), + [anon_sym_open] = ACTIONS(333), + [anon_sym_module] = ACTIONS(333), + [anon_sym_static] = ACTIONS(333), + [anon_sym_package] = ACTIONS(333), + [anon_sym_import] = ACTIONS(333), + [anon_sym_enum] = ACTIONS(333), + [anon_sym_public] = ACTIONS(333), + [anon_sym_protected] = ACTIONS(333), + [anon_sym_private] = ACTIONS(333), + [anon_sym_abstract] = ACTIONS(333), + [anon_sym_final] = ACTIONS(333), + [anon_sym_strictfp] = ACTIONS(333), + [anon_sym_native] = ACTIONS(333), + [anon_sym_transient] = ACTIONS(333), + [anon_sym_volatile] = ACTIONS(333), + [anon_sym_sealed] = ACTIONS(333), + [anon_sym_non_DASHsealed] = ACTIONS(331), + [anon_sym_record] = ACTIONS(333), + [anon_sym_ATinterface] = ACTIONS(331), + [anon_sym_interface] = ACTIONS(333), + [anon_sym_byte] = ACTIONS(333), + [anon_sym_short] = ACTIONS(333), + [anon_sym_int] = ACTIONS(333), + [anon_sym_long] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_float] = ACTIONS(333), + [anon_sym_double] = ACTIONS(333), + [sym_boolean_type] = ACTIONS(333), + [sym_void_type] = ACTIONS(333), + [sym_this] = ACTIONS(333), + [sym_super] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [92] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym_element_value_pair] = STATE(974), - [sym__element_value] = STATE(1184), - [sym_element_value_array_initializer] = STATE(1184), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(336), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym_element_value_pair] = STATE(999), + [sym__element_value] = STATE(1202), + [sym_element_value_array_initializer] = STATE(1202), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(338), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -20201,7 +20206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(340), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -20210,11 +20215,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20230,44 +20235,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [93] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym_element_value_pair] = STATE(1047), + [sym__element_value] = STATE(1234), + [sym_element_value_array_initializer] = STATE(1234), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(338), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [94] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym_block] = STATE(1041), - [sym_expression_statement] = STATE(1041), - [sym_throw_statement] = STATE(1041), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym_block] = STATE(961), + [sym_expression_statement] = STATE(961), + [sym_throw_statement] = STATE(961), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20292,10 +20378,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_throw] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20310,46 +20396,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [95] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym_element_value_pair] = STATE(1009), - [sym__element_value] = STATE(1197), - [sym_element_value_array_initializer] = STATE(1197), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(336), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym_element_value_pair] = STATE(1021), + [sym__element_value] = STATE(1183), + [sym_element_value_array_initializer] = STATE(1183), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(338), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -20363,7 +20449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(344), + [anon_sym_RPAREN] = ACTIONS(348), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -20372,11 +20458,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20391,46 +20477,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [96] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym_element_value_pair] = STATE(1031), - [sym__element_value] = STATE(1245), - [sym_element_value_array_initializer] = STATE(1245), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(336), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym__element_value] = STATE(972), + [sym_element_value_array_initializer] = STATE(972), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -20444,20 +20529,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(346), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(350), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_RBRACE] = ACTIONS(352), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20472,44 +20558,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [97] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym__element_value] = STATE(1030), - [sym_element_value_array_initializer] = STATE(1030), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym__element_value] = STATE(1074), + [sym_element_value_array_initializer] = STATE(1074), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20526,19 +20612,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(348), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(350), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_RBRACE] = ACTIONS(354), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20553,43 +20638,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [98] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym_array_initializer] = STATE(1024), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym__element_value] = STATE(1074), + [sym_element_value_array_initializer] = STATE(1074), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20606,19 +20692,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(352), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_RBRACE] = ACTIONS(356), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20633,7 +20718,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [98] = { + [99] = { + [ts_builtin_sym_end] = ACTIONS(273), + [sym_identifier] = ACTIONS(275), + [sym_decimal_integer_literal] = ACTIONS(275), + [sym_hex_integer_literal] = ACTIONS(275), + [sym_octal_integer_literal] = ACTIONS(273), + [sym_binary_integer_literal] = ACTIONS(273), + [sym_decimal_floating_point_literal] = ACTIONS(273), + [sym_hex_floating_point_literal] = ACTIONS(275), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_character_literal] = ACTIONS(273), + [sym_string_literal] = ACTIONS(275), + [sym_text_block] = ACTIONS(273), + [sym_null_literal] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_new] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_yield] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_throw] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_open] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_abstract] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_strictfp] = ACTIONS(275), + [anon_sym_native] = ACTIONS(275), + [anon_sym_transient] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_sealed] = ACTIONS(275), + [anon_sym_non_DASHsealed] = ACTIONS(273), + [anon_sym_record] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_byte] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [sym_boolean_type] = ACTIONS(275), + [sym_void_type] = ACTIONS(275), + [sym_this] = ACTIONS(275), + [sym_super] = ACTIONS(275), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [100] = { [ts_builtin_sym_end] = ACTIONS(269), [sym_identifier] = ACTIONS(271), [sym_decimal_integer_literal] = ACTIONS(271), @@ -20713,124 +20878,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(257), - [sym_identifier] = ACTIONS(259), - [sym_decimal_integer_literal] = ACTIONS(259), - [sym_hex_integer_literal] = ACTIONS(259), - [sym_octal_integer_literal] = ACTIONS(257), - [sym_binary_integer_literal] = ACTIONS(257), - [sym_decimal_floating_point_literal] = ACTIONS(257), - [sym_hex_floating_point_literal] = ACTIONS(259), - [sym_true] = ACTIONS(259), - [sym_false] = ACTIONS(259), - [sym_character_literal] = ACTIONS(257), - [sym_string_literal] = ACTIONS(259), - [sym_text_block] = ACTIONS(257), - [sym_null_literal] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(257), - [anon_sym_DASH_DASH] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_class] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_case] = ACTIONS(259), - [anon_sym_default] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_do] = ACTIONS(259), - [anon_sym_while] = ACTIONS(259), - [anon_sym_break] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(259), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(259), - [anon_sym_synchronized] = ACTIONS(259), - [anon_sym_throw] = ACTIONS(259), - [anon_sym_try] = ACTIONS(259), - [anon_sym_catch] = ACTIONS(259), - [anon_sym_finally] = ACTIONS(259), - [anon_sym_if] = ACTIONS(259), - [anon_sym_else] = ACTIONS(259), - [anon_sym_for] = ACTIONS(259), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_open] = ACTIONS(259), - [anon_sym_module] = ACTIONS(259), - [anon_sym_static] = ACTIONS(259), - [anon_sym_package] = ACTIONS(259), - [anon_sym_import] = ACTIONS(259), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_public] = ACTIONS(259), - [anon_sym_protected] = ACTIONS(259), - [anon_sym_private] = ACTIONS(259), - [anon_sym_abstract] = ACTIONS(259), - [anon_sym_final] = ACTIONS(259), - [anon_sym_strictfp] = ACTIONS(259), - [anon_sym_native] = ACTIONS(259), - [anon_sym_transient] = ACTIONS(259), - [anon_sym_volatile] = ACTIONS(259), - [anon_sym_sealed] = ACTIONS(259), - [anon_sym_non_DASHsealed] = ACTIONS(257), - [anon_sym_record] = ACTIONS(259), - [anon_sym_ATinterface] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(259), - [anon_sym_byte] = ACTIONS(259), - [anon_sym_short] = ACTIONS(259), - [anon_sym_int] = ACTIONS(259), - [anon_sym_long] = ACTIONS(259), - [anon_sym_char] = ACTIONS(259), - [anon_sym_float] = ACTIONS(259), - [anon_sym_double] = ACTIONS(259), - [sym_boolean_type] = ACTIONS(259), - [sym_void_type] = ACTIONS(259), - [sym_this] = ACTIONS(259), - [sym_super] = ACTIONS(259), + [101] = { + [ts_builtin_sym_end] = ACTIONS(358), + [sym_identifier] = ACTIONS(360), + [sym_decimal_integer_literal] = ACTIONS(360), + [sym_hex_integer_literal] = ACTIONS(360), + [sym_octal_integer_literal] = ACTIONS(358), + [sym_binary_integer_literal] = ACTIONS(358), + [sym_decimal_floating_point_literal] = ACTIONS(358), + [sym_hex_floating_point_literal] = ACTIONS(360), + [sym_true] = ACTIONS(360), + [sym_false] = ACTIONS(360), + [sym_character_literal] = ACTIONS(358), + [sym_string_literal] = ACTIONS(360), + [sym_text_block] = ACTIONS(358), + [sym_null_literal] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_PLUS] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(360), + [anon_sym_BANG] = ACTIONS(358), + [anon_sym_TILDE] = ACTIONS(358), + [anon_sym_PLUS_PLUS] = ACTIONS(358), + [anon_sym_DASH_DASH] = ACTIONS(358), + [anon_sym_new] = ACTIONS(360), + [anon_sym_class] = ACTIONS(360), + [anon_sym_switch] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(358), + [anon_sym_case] = ACTIONS(360), + [anon_sym_default] = ACTIONS(360), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_assert] = ACTIONS(360), + [anon_sym_do] = ACTIONS(360), + [anon_sym_while] = ACTIONS(360), + [anon_sym_break] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(360), + [anon_sym_return] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_synchronized] = ACTIONS(360), + [anon_sym_throw] = ACTIONS(360), + [anon_sym_try] = ACTIONS(360), + [anon_sym_catch] = ACTIONS(360), + [anon_sym_finally] = ACTIONS(360), + [anon_sym_if] = ACTIONS(360), + [anon_sym_else] = ACTIONS(360), + [anon_sym_for] = ACTIONS(360), + [anon_sym_AT] = ACTIONS(360), + [anon_sym_open] = ACTIONS(360), + [anon_sym_module] = ACTIONS(360), + [anon_sym_static] = ACTIONS(360), + [anon_sym_package] = ACTIONS(360), + [anon_sym_import] = ACTIONS(360), + [anon_sym_enum] = ACTIONS(360), + [anon_sym_public] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_strictfp] = ACTIONS(360), + [anon_sym_native] = ACTIONS(360), + [anon_sym_transient] = ACTIONS(360), + [anon_sym_volatile] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_non_DASHsealed] = ACTIONS(358), + [anon_sym_record] = ACTIONS(360), + [anon_sym_ATinterface] = ACTIONS(358), + [anon_sym_interface] = ACTIONS(360), + [anon_sym_byte] = ACTIONS(360), + [anon_sym_short] = ACTIONS(360), + [anon_sym_int] = ACTIONS(360), + [anon_sym_long] = ACTIONS(360), + [anon_sym_char] = ACTIONS(360), + [anon_sym_float] = ACTIONS(360), + [anon_sym_double] = ACTIONS(360), + [sym_boolean_type] = ACTIONS(360), + [sym_void_type] = ACTIONS(360), + [sym_this] = ACTIONS(360), + [sym_super] = ACTIONS(360), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [102] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(546), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym__element_value] = STATE(1131), - [sym_element_value_array_initializer] = STATE(1131), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym_array_initializer] = STATE(1046), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20847,18 +21011,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(362), [anon_sym_BANG] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(17), [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(358), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(366), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20873,44 +21038,912 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [103] = { + [ts_builtin_sym_end] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_decimal_integer_literal] = ACTIONS(370), + [sym_hex_integer_literal] = ACTIONS(370), + [sym_octal_integer_literal] = ACTIONS(368), + [sym_binary_integer_literal] = ACTIONS(368), + [sym_decimal_floating_point_literal] = ACTIONS(368), + [sym_hex_floating_point_literal] = ACTIONS(370), + [sym_true] = ACTIONS(370), + [sym_false] = ACTIONS(370), + [sym_character_literal] = ACTIONS(368), + [sym_string_literal] = ACTIONS(370), + [sym_text_block] = ACTIONS(368), + [sym_null_literal] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LT] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [anon_sym_PLUS_PLUS] = ACTIONS(368), + [anon_sym_DASH_DASH] = ACTIONS(368), + [anon_sym_new] = ACTIONS(370), + [anon_sym_class] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(370), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_RBRACE] = ACTIONS(368), + [anon_sym_case] = ACTIONS(370), + [anon_sym_default] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_assert] = ACTIONS(370), + [anon_sym_do] = ACTIONS(370), + [anon_sym_while] = ACTIONS(370), + [anon_sym_break] = ACTIONS(370), + [anon_sym_continue] = ACTIONS(370), + [anon_sym_return] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_synchronized] = ACTIONS(370), + [anon_sym_throw] = ACTIONS(370), + [anon_sym_try] = ACTIONS(370), + [anon_sym_if] = ACTIONS(370), + [anon_sym_else] = ACTIONS(370), + [anon_sym_for] = ACTIONS(370), + [anon_sym_AT] = ACTIONS(370), + [anon_sym_open] = ACTIONS(370), + [anon_sym_module] = ACTIONS(370), + [anon_sym_static] = ACTIONS(370), + [anon_sym_package] = ACTIONS(370), + [anon_sym_import] = ACTIONS(370), + [anon_sym_enum] = ACTIONS(370), + [anon_sym_public] = ACTIONS(370), + [anon_sym_protected] = ACTIONS(370), + [anon_sym_private] = ACTIONS(370), + [anon_sym_abstract] = ACTIONS(370), + [anon_sym_final] = ACTIONS(370), + [anon_sym_strictfp] = ACTIONS(370), + [anon_sym_native] = ACTIONS(370), + [anon_sym_transient] = ACTIONS(370), + [anon_sym_volatile] = ACTIONS(370), + [anon_sym_sealed] = ACTIONS(370), + [anon_sym_non_DASHsealed] = ACTIONS(368), + [anon_sym_record] = ACTIONS(370), + [anon_sym_ATinterface] = ACTIONS(368), + [anon_sym_interface] = ACTIONS(370), + [anon_sym_byte] = ACTIONS(370), + [anon_sym_short] = ACTIONS(370), + [anon_sym_int] = ACTIONS(370), + [anon_sym_long] = ACTIONS(370), + [anon_sym_char] = ACTIONS(370), + [anon_sym_float] = ACTIONS(370), + [anon_sym_double] = ACTIONS(370), + [sym_boolean_type] = ACTIONS(370), + [sym_void_type] = ACTIONS(370), + [sym_this] = ACTIONS(370), + [sym_super] = ACTIONS(370), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [104] = { + [ts_builtin_sym_end] = ACTIONS(372), + [sym_identifier] = ACTIONS(374), + [sym_decimal_integer_literal] = ACTIONS(374), + [sym_hex_integer_literal] = ACTIONS(374), + [sym_octal_integer_literal] = ACTIONS(372), + [sym_binary_integer_literal] = ACTIONS(372), + [sym_decimal_floating_point_literal] = ACTIONS(372), + [sym_hex_floating_point_literal] = ACTIONS(374), + [sym_true] = ACTIONS(374), + [sym_false] = ACTIONS(374), + [sym_character_literal] = ACTIONS(372), + [sym_string_literal] = ACTIONS(374), + [sym_text_block] = ACTIONS(372), + [sym_null_literal] = ACTIONS(374), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(372), + [anon_sym_TILDE] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(372), + [anon_sym_DASH_DASH] = ACTIONS(372), + [anon_sym_new] = ACTIONS(374), + [anon_sym_class] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_RBRACE] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_default] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_assert] = ACTIONS(374), + [anon_sym_do] = ACTIONS(374), + [anon_sym_while] = ACTIONS(374), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(374), + [anon_sym_return] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_synchronized] = ACTIONS(374), + [anon_sym_throw] = ACTIONS(374), + [anon_sym_try] = ACTIONS(374), + [anon_sym_if] = ACTIONS(374), + [anon_sym_else] = ACTIONS(374), + [anon_sym_for] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(374), + [anon_sym_open] = ACTIONS(374), + [anon_sym_module] = ACTIONS(374), + [anon_sym_static] = ACTIONS(374), + [anon_sym_package] = ACTIONS(374), + [anon_sym_import] = ACTIONS(374), + [anon_sym_enum] = ACTIONS(374), + [anon_sym_public] = ACTIONS(374), + [anon_sym_protected] = ACTIONS(374), + [anon_sym_private] = ACTIONS(374), + [anon_sym_abstract] = ACTIONS(374), + [anon_sym_final] = ACTIONS(374), + [anon_sym_strictfp] = ACTIONS(374), + [anon_sym_native] = ACTIONS(374), + [anon_sym_transient] = ACTIONS(374), + [anon_sym_volatile] = ACTIONS(374), + [anon_sym_sealed] = ACTIONS(374), + [anon_sym_non_DASHsealed] = ACTIONS(372), + [anon_sym_record] = ACTIONS(374), + [anon_sym_ATinterface] = ACTIONS(372), + [anon_sym_interface] = ACTIONS(374), + [anon_sym_byte] = ACTIONS(374), + [anon_sym_short] = ACTIONS(374), + [anon_sym_int] = ACTIONS(374), + [anon_sym_long] = ACTIONS(374), + [anon_sym_char] = ACTIONS(374), + [anon_sym_float] = ACTIONS(374), + [anon_sym_double] = ACTIONS(374), + [sym_boolean_type] = ACTIONS(374), + [sym_void_type] = ACTIONS(374), + [sym_this] = ACTIONS(374), + [sym_super] = ACTIONS(374), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(376), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(378), + [sym_hex_integer_literal] = ACTIONS(378), + [sym_octal_integer_literal] = ACTIONS(376), + [sym_binary_integer_literal] = ACTIONS(376), + [sym_decimal_floating_point_literal] = ACTIONS(376), + [sym_hex_floating_point_literal] = ACTIONS(378), + [sym_true] = ACTIONS(378), + [sym_false] = ACTIONS(378), + [sym_character_literal] = ACTIONS(376), + [sym_string_literal] = ACTIONS(378), + [sym_text_block] = ACTIONS(376), + [sym_null_literal] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_LT] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(378), + [anon_sym_DASH] = ACTIONS(378), + [anon_sym_BANG] = ACTIONS(376), + [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS_PLUS] = ACTIONS(376), + [anon_sym_DASH_DASH] = ACTIONS(376), + [anon_sym_new] = ACTIONS(378), + [anon_sym_class] = ACTIONS(378), + [anon_sym_switch] = ACTIONS(378), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(378), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_assert] = ACTIONS(378), + [anon_sym_do] = ACTIONS(378), + [anon_sym_while] = ACTIONS(378), + [anon_sym_break] = ACTIONS(378), + [anon_sym_continue] = ACTIONS(378), + [anon_sym_return] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(378), + [anon_sym_synchronized] = ACTIONS(378), + [anon_sym_throw] = ACTIONS(378), + [anon_sym_try] = ACTIONS(378), + [anon_sym_if] = ACTIONS(378), + [anon_sym_else] = ACTIONS(378), + [anon_sym_for] = ACTIONS(378), + [anon_sym_AT] = ACTIONS(378), + [anon_sym_open] = ACTIONS(378), + [anon_sym_module] = ACTIONS(378), + [anon_sym_static] = ACTIONS(378), + [anon_sym_package] = ACTIONS(378), + [anon_sym_import] = ACTIONS(378), + [anon_sym_enum] = ACTIONS(378), + [anon_sym_public] = ACTIONS(378), + [anon_sym_protected] = ACTIONS(378), + [anon_sym_private] = ACTIONS(378), + [anon_sym_abstract] = ACTIONS(378), + [anon_sym_final] = ACTIONS(378), + [anon_sym_strictfp] = ACTIONS(378), + [anon_sym_native] = ACTIONS(378), + [anon_sym_transient] = ACTIONS(378), + [anon_sym_volatile] = ACTIONS(378), + [anon_sym_sealed] = ACTIONS(378), + [anon_sym_non_DASHsealed] = ACTIONS(376), + [anon_sym_record] = ACTIONS(378), + [anon_sym_ATinterface] = ACTIONS(376), + [anon_sym_interface] = ACTIONS(378), + [anon_sym_byte] = ACTIONS(378), + [anon_sym_short] = ACTIONS(378), + [anon_sym_int] = ACTIONS(378), + [anon_sym_long] = ACTIONS(378), + [anon_sym_char] = ACTIONS(378), + [anon_sym_float] = ACTIONS(378), + [anon_sym_double] = ACTIONS(378), + [sym_boolean_type] = ACTIONS(378), + [sym_void_type] = ACTIONS(378), + [sym_this] = ACTIONS(378), + [sym_super] = ACTIONS(378), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [106] = { + [ts_builtin_sym_end] = ACTIONS(380), + [sym_identifier] = ACTIONS(382), + [sym_decimal_integer_literal] = ACTIONS(382), + [sym_hex_integer_literal] = ACTIONS(382), + [sym_octal_integer_literal] = ACTIONS(380), + [sym_binary_integer_literal] = ACTIONS(380), + [sym_decimal_floating_point_literal] = ACTIONS(380), + [sym_hex_floating_point_literal] = ACTIONS(382), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_character_literal] = ACTIONS(380), + [sym_string_literal] = ACTIONS(382), + [sym_text_block] = ACTIONS(380), + [sym_null_literal] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(380), + [anon_sym_TILDE] = ACTIONS(380), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_class] = ACTIONS(382), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_case] = ACTIONS(382), + [anon_sym_default] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_assert] = ACTIONS(382), + [anon_sym_do] = ACTIONS(382), + [anon_sym_while] = ACTIONS(382), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(382), + [anon_sym_return] = ACTIONS(382), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_synchronized] = ACTIONS(382), + [anon_sym_throw] = ACTIONS(382), + [anon_sym_try] = ACTIONS(382), + [anon_sym_if] = ACTIONS(382), + [anon_sym_else] = ACTIONS(382), + [anon_sym_for] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_open] = ACTIONS(382), + [anon_sym_module] = ACTIONS(382), + [anon_sym_static] = ACTIONS(382), + [anon_sym_package] = ACTIONS(382), + [anon_sym_import] = ACTIONS(382), + [anon_sym_enum] = ACTIONS(382), + [anon_sym_public] = ACTIONS(382), + [anon_sym_protected] = ACTIONS(382), + [anon_sym_private] = ACTIONS(382), + [anon_sym_abstract] = ACTIONS(382), + [anon_sym_final] = ACTIONS(382), + [anon_sym_strictfp] = ACTIONS(382), + [anon_sym_native] = ACTIONS(382), + [anon_sym_transient] = ACTIONS(382), + [anon_sym_volatile] = ACTIONS(382), + [anon_sym_sealed] = ACTIONS(382), + [anon_sym_non_DASHsealed] = ACTIONS(380), + [anon_sym_record] = ACTIONS(382), + [anon_sym_ATinterface] = ACTIONS(380), + [anon_sym_interface] = ACTIONS(382), + [anon_sym_byte] = ACTIONS(382), + [anon_sym_short] = ACTIONS(382), + [anon_sym_int] = ACTIONS(382), + [anon_sym_long] = ACTIONS(382), + [anon_sym_char] = ACTIONS(382), + [anon_sym_float] = ACTIONS(382), + [anon_sym_double] = ACTIONS(382), + [sym_boolean_type] = ACTIONS(382), + [sym_void_type] = ACTIONS(382), + [sym_this] = ACTIONS(382), + [sym_super] = ACTIONS(382), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [107] = { + [ts_builtin_sym_end] = ACTIONS(384), + [sym_identifier] = ACTIONS(386), + [sym_decimal_integer_literal] = ACTIONS(386), + [sym_hex_integer_literal] = ACTIONS(386), + [sym_octal_integer_literal] = ACTIONS(384), + [sym_binary_integer_literal] = ACTIONS(384), + [sym_decimal_floating_point_literal] = ACTIONS(384), + [sym_hex_floating_point_literal] = ACTIONS(386), + [sym_true] = ACTIONS(386), + [sym_false] = ACTIONS(386), + [sym_character_literal] = ACTIONS(384), + [sym_string_literal] = ACTIONS(386), + [sym_text_block] = ACTIONS(384), + [sym_null_literal] = ACTIONS(386), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_class] = ACTIONS(386), + [anon_sym_switch] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_RBRACE] = ACTIONS(384), + [anon_sym_case] = ACTIONS(386), + [anon_sym_default] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_assert] = ACTIONS(386), + [anon_sym_do] = ACTIONS(386), + [anon_sym_while] = ACTIONS(386), + [anon_sym_break] = ACTIONS(386), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_return] = ACTIONS(386), + [anon_sym_yield] = ACTIONS(386), + [anon_sym_synchronized] = ACTIONS(386), + [anon_sym_throw] = ACTIONS(386), + [anon_sym_try] = ACTIONS(386), + [anon_sym_if] = ACTIONS(386), + [anon_sym_else] = ACTIONS(386), + [anon_sym_for] = ACTIONS(386), + [anon_sym_AT] = ACTIONS(386), + [anon_sym_open] = ACTIONS(386), + [anon_sym_module] = ACTIONS(386), + [anon_sym_static] = ACTIONS(386), + [anon_sym_package] = ACTIONS(386), + [anon_sym_import] = ACTIONS(386), + [anon_sym_enum] = ACTIONS(386), + [anon_sym_public] = ACTIONS(386), + [anon_sym_protected] = ACTIONS(386), + [anon_sym_private] = ACTIONS(386), + [anon_sym_abstract] = ACTIONS(386), + [anon_sym_final] = ACTIONS(386), + [anon_sym_strictfp] = ACTIONS(386), + [anon_sym_native] = ACTIONS(386), + [anon_sym_transient] = ACTIONS(386), + [anon_sym_volatile] = ACTIONS(386), + [anon_sym_sealed] = ACTIONS(386), + [anon_sym_non_DASHsealed] = ACTIONS(384), + [anon_sym_record] = ACTIONS(386), + [anon_sym_ATinterface] = ACTIONS(384), + [anon_sym_interface] = ACTIONS(386), + [anon_sym_byte] = ACTIONS(386), + [anon_sym_short] = ACTIONS(386), + [anon_sym_int] = ACTIONS(386), + [anon_sym_long] = ACTIONS(386), + [anon_sym_char] = ACTIONS(386), + [anon_sym_float] = ACTIONS(386), + [anon_sym_double] = ACTIONS(386), + [sym_boolean_type] = ACTIONS(386), + [sym_void_type] = ACTIONS(386), + [sym_this] = ACTIONS(386), + [sym_super] = ACTIONS(386), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [108] = { + [ts_builtin_sym_end] = ACTIONS(388), + [sym_identifier] = ACTIONS(390), + [sym_decimal_integer_literal] = ACTIONS(390), + [sym_hex_integer_literal] = ACTIONS(390), + [sym_octal_integer_literal] = ACTIONS(388), + [sym_binary_integer_literal] = ACTIONS(388), + [sym_decimal_floating_point_literal] = ACTIONS(388), + [sym_hex_floating_point_literal] = ACTIONS(390), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_character_literal] = ACTIONS(388), + [sym_string_literal] = ACTIONS(390), + [sym_text_block] = ACTIONS(388), + [sym_null_literal] = ACTIONS(390), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(388), + [anon_sym_DASH_DASH] = ACTIONS(388), + [anon_sym_new] = ACTIONS(390), + [anon_sym_class] = ACTIONS(390), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_case] = ACTIONS(390), + [anon_sym_default] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_assert] = ACTIONS(390), + [anon_sym_do] = ACTIONS(390), + [anon_sym_while] = ACTIONS(390), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_return] = ACTIONS(390), + [anon_sym_yield] = ACTIONS(390), + [anon_sym_synchronized] = ACTIONS(390), + [anon_sym_throw] = ACTIONS(390), + [anon_sym_try] = ACTIONS(390), + [anon_sym_if] = ACTIONS(390), + [anon_sym_else] = ACTIONS(390), + [anon_sym_for] = ACTIONS(390), + [anon_sym_AT] = ACTIONS(390), + [anon_sym_open] = ACTIONS(390), + [anon_sym_module] = ACTIONS(390), + [anon_sym_static] = ACTIONS(390), + [anon_sym_package] = ACTIONS(390), + [anon_sym_import] = ACTIONS(390), + [anon_sym_enum] = ACTIONS(390), + [anon_sym_public] = ACTIONS(390), + [anon_sym_protected] = ACTIONS(390), + [anon_sym_private] = ACTIONS(390), + [anon_sym_abstract] = ACTIONS(390), + [anon_sym_final] = ACTIONS(390), + [anon_sym_strictfp] = ACTIONS(390), + [anon_sym_native] = ACTIONS(390), + [anon_sym_transient] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(390), + [anon_sym_sealed] = ACTIONS(390), + [anon_sym_non_DASHsealed] = ACTIONS(388), + [anon_sym_record] = ACTIONS(390), + [anon_sym_ATinterface] = ACTIONS(388), + [anon_sym_interface] = ACTIONS(390), + [anon_sym_byte] = ACTIONS(390), + [anon_sym_short] = ACTIONS(390), + [anon_sym_int] = ACTIONS(390), + [anon_sym_long] = ACTIONS(390), + [anon_sym_char] = ACTIONS(390), + [anon_sym_float] = ACTIONS(390), + [anon_sym_double] = ACTIONS(390), + [sym_boolean_type] = ACTIONS(390), + [sym_void_type] = ACTIONS(390), + [sym_this] = ACTIONS(390), + [sym_super] = ACTIONS(390), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [109] = { + [ts_builtin_sym_end] = ACTIONS(392), + [sym_identifier] = ACTIONS(394), + [sym_decimal_integer_literal] = ACTIONS(394), + [sym_hex_integer_literal] = ACTIONS(394), + [sym_octal_integer_literal] = ACTIONS(392), + [sym_binary_integer_literal] = ACTIONS(392), + [sym_decimal_floating_point_literal] = ACTIONS(392), + [sym_hex_floating_point_literal] = ACTIONS(394), + [sym_true] = ACTIONS(394), + [sym_false] = ACTIONS(394), + [sym_character_literal] = ACTIONS(392), + [sym_string_literal] = ACTIONS(394), + [sym_text_block] = ACTIONS(392), + [sym_null_literal] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_new] = ACTIONS(394), + [anon_sym_class] = ACTIONS(394), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(392), + [anon_sym_RBRACE] = ACTIONS(392), + [anon_sym_case] = ACTIONS(394), + [anon_sym_default] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_assert] = ACTIONS(394), + [anon_sym_do] = ACTIONS(394), + [anon_sym_while] = ACTIONS(394), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(394), + [anon_sym_return] = ACTIONS(394), + [anon_sym_yield] = ACTIONS(394), + [anon_sym_synchronized] = ACTIONS(394), + [anon_sym_throw] = ACTIONS(394), + [anon_sym_try] = ACTIONS(394), + [anon_sym_if] = ACTIONS(394), + [anon_sym_else] = ACTIONS(394), + [anon_sym_for] = ACTIONS(394), + [anon_sym_AT] = ACTIONS(394), + [anon_sym_open] = ACTIONS(394), + [anon_sym_module] = ACTIONS(394), + [anon_sym_static] = ACTIONS(394), + [anon_sym_package] = ACTIONS(394), + [anon_sym_import] = ACTIONS(394), + [anon_sym_enum] = ACTIONS(394), + [anon_sym_public] = ACTIONS(394), + [anon_sym_protected] = ACTIONS(394), + [anon_sym_private] = ACTIONS(394), + [anon_sym_abstract] = ACTIONS(394), + [anon_sym_final] = ACTIONS(394), + [anon_sym_strictfp] = ACTIONS(394), + [anon_sym_native] = ACTIONS(394), + [anon_sym_transient] = ACTIONS(394), + [anon_sym_volatile] = ACTIONS(394), + [anon_sym_sealed] = ACTIONS(394), + [anon_sym_non_DASHsealed] = ACTIONS(392), + [anon_sym_record] = ACTIONS(394), + [anon_sym_ATinterface] = ACTIONS(392), + [anon_sym_interface] = ACTIONS(394), + [anon_sym_byte] = ACTIONS(394), + [anon_sym_short] = ACTIONS(394), + [anon_sym_int] = ACTIONS(394), + [anon_sym_long] = ACTIONS(394), + [anon_sym_char] = ACTIONS(394), + [anon_sym_float] = ACTIONS(394), + [anon_sym_double] = ACTIONS(394), + [sym_boolean_type] = ACTIONS(394), + [sym_void_type] = ACTIONS(394), + [sym_this] = ACTIONS(394), + [sym_super] = ACTIONS(394), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [110] = { + [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(396), + [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), + [sym_string_literal] = ACTIONS(398), + [sym_text_block] = ACTIONS(396), + [sym_null_literal] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(398), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_PLUS_PLUS] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(396), + [anon_sym_new] = ACTIONS(398), + [anon_sym_class] = ACTIONS(398), + [anon_sym_switch] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_case] = ACTIONS(398), + [anon_sym_default] = 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_final] = 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), + }, + [111] = { + [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(400), + [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), + [sym_string_literal] = ACTIONS(402), + [sym_text_block] = ACTIONS(400), + [sym_null_literal] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_TILDE] = ACTIONS(400), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(402), + [anon_sym_class] = ACTIONS(402), + [anon_sym_switch] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_RBRACE] = ACTIONS(400), + [anon_sym_case] = ACTIONS(402), + [anon_sym_default] = 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_final] = 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), + }, + [112] = { + [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(404), + [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), + [sym_string_literal] = ACTIONS(406), + [sym_text_block] = ACTIONS(404), + [sym_null_literal] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_TILDE] = ACTIONS(404), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_new] = ACTIONS(406), + [anon_sym_class] = ACTIONS(406), + [anon_sym_switch] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_case] = ACTIONS(406), + [anon_sym_default] = 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_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_final] = 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), + }, + [113] = { + [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(408), + [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), + [sym_string_literal] = ACTIONS(410), + [sym_text_block] = ACTIONS(408), + [sym_null_literal] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_TILDE] = ACTIONS(408), + [anon_sym_PLUS_PLUS] = ACTIONS(408), + [anon_sym_DASH_DASH] = ACTIONS(408), + [anon_sym_new] = ACTIONS(410), + [anon_sym_class] = ACTIONS(410), + [anon_sym_switch] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(408), + [anon_sym_case] = ACTIONS(410), + [anon_sym_default] = 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_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_final] = 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), + }, + [114] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym__element_value] = STATE(1131), - [sym_element_value_array_initializer] = STATE(1131), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym_array_initializer] = STATE(1176), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20933,12 +21966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(360), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -20953,203 +21986,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(364), - [sym_decimal_integer_literal] = ACTIONS(364), - [sym_hex_integer_literal] = ACTIONS(364), - [sym_octal_integer_literal] = ACTIONS(362), - [sym_binary_integer_literal] = ACTIONS(362), - [sym_decimal_floating_point_literal] = ACTIONS(362), - [sym_hex_floating_point_literal] = ACTIONS(364), - [sym_true] = ACTIONS(364), - [sym_false] = ACTIONS(364), - [sym_character_literal] = ACTIONS(362), - [sym_string_literal] = ACTIONS(364), - [sym_text_block] = ACTIONS(362), - [sym_null_literal] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(364), - [anon_sym_BANG] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(362), - [anon_sym_PLUS_PLUS] = ACTIONS(362), - [anon_sym_DASH_DASH] = ACTIONS(362), - [anon_sym_new] = ACTIONS(364), - [anon_sym_class] = ACTIONS(364), - [anon_sym_switch] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_assert] = ACTIONS(364), - [anon_sym_do] = ACTIONS(364), - [anon_sym_while] = ACTIONS(364), - [anon_sym_break] = ACTIONS(364), - [anon_sym_continue] = ACTIONS(364), - [anon_sym_return] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(364), - [anon_sym_synchronized] = ACTIONS(364), - [anon_sym_throw] = ACTIONS(364), - [anon_sym_try] = ACTIONS(364), - [anon_sym_catch] = ACTIONS(364), - [anon_sym_finally] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_else] = ACTIONS(364), - [anon_sym_for] = ACTIONS(364), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_open] = ACTIONS(364), - [anon_sym_module] = ACTIONS(364), - [anon_sym_static] = ACTIONS(364), - [anon_sym_package] = ACTIONS(364), - [anon_sym_import] = ACTIONS(364), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_public] = ACTIONS(364), - [anon_sym_protected] = ACTIONS(364), - [anon_sym_private] = ACTIONS(364), - [anon_sym_abstract] = ACTIONS(364), - [anon_sym_final] = ACTIONS(364), - [anon_sym_strictfp] = ACTIONS(364), - [anon_sym_native] = ACTIONS(364), - [anon_sym_transient] = ACTIONS(364), - [anon_sym_volatile] = ACTIONS(364), - [anon_sym_sealed] = ACTIONS(364), - [anon_sym_non_DASHsealed] = ACTIONS(362), - [anon_sym_record] = ACTIONS(364), - [anon_sym_ATinterface] = ACTIONS(362), - [anon_sym_interface] = ACTIONS(364), - [anon_sym_byte] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_int] = ACTIONS(364), - [anon_sym_long] = ACTIONS(364), - [anon_sym_char] = ACTIONS(364), - [anon_sym_float] = ACTIONS(364), - [anon_sym_double] = ACTIONS(364), - [sym_boolean_type] = ACTIONS(364), - [sym_void_type] = ACTIONS(364), - [sym_this] = ACTIONS(364), - [sym_super] = ACTIONS(364), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [103] = { - [ts_builtin_sym_end] = ACTIONS(366), - [sym_identifier] = ACTIONS(368), - [sym_decimal_integer_literal] = ACTIONS(368), - [sym_hex_integer_literal] = ACTIONS(368), - [sym_octal_integer_literal] = ACTIONS(366), - [sym_binary_integer_literal] = ACTIONS(366), - [sym_decimal_floating_point_literal] = ACTIONS(366), - [sym_hex_floating_point_literal] = ACTIONS(368), - [sym_true] = ACTIONS(368), - [sym_false] = ACTIONS(368), - [sym_character_literal] = ACTIONS(366), - [sym_string_literal] = ACTIONS(368), - [sym_text_block] = ACTIONS(366), - [sym_null_literal] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(366), - [anon_sym_DASH_DASH] = ACTIONS(366), - [anon_sym_new] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_RBRACE] = ACTIONS(366), - [anon_sym_case] = ACTIONS(368), - [anon_sym_default] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_assert] = ACTIONS(368), - [anon_sym_do] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [anon_sym_break] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_yield] = ACTIONS(368), - [anon_sym_synchronized] = ACTIONS(368), - [anon_sym_throw] = ACTIONS(368), - [anon_sym_try] = ACTIONS(368), - [anon_sym_if] = ACTIONS(368), - [anon_sym_else] = ACTIONS(368), - [anon_sym_for] = ACTIONS(368), - [anon_sym_AT] = ACTIONS(368), - [anon_sym_open] = ACTIONS(368), - [anon_sym_module] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_public] = ACTIONS(368), - [anon_sym_protected] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_strictfp] = ACTIONS(368), - [anon_sym_native] = ACTIONS(368), - [anon_sym_transient] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sealed] = ACTIONS(368), - [anon_sym_non_DASHsealed] = ACTIONS(366), - [anon_sym_record] = ACTIONS(368), - [anon_sym_ATinterface] = ACTIONS(366), - [anon_sym_interface] = ACTIONS(368), - [anon_sym_byte] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_int] = ACTIONS(368), - [anon_sym_long] = ACTIONS(368), - [anon_sym_char] = ACTIONS(368), - [anon_sym_float] = ACTIONS(368), - [anon_sym_double] = ACTIONS(368), - [sym_boolean_type] = ACTIONS(368), - [sym_void_type] = ACTIONS(368), - [sym_this] = ACTIONS(368), - [sym_super] = ACTIONS(368), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [104] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [115] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym__element_value] = STATE(1233), - [sym_element_value_array_initializer] = STATE(1233), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym__element_value] = STATE(1152), + [sym_element_value_array_initializer] = STATE(1152), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21172,11 +22046,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -21191,875 +22065,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [ts_builtin_sym_end] = ACTIONS(370), - [sym_identifier] = ACTIONS(372), - [sym_decimal_integer_literal] = ACTIONS(372), - [sym_hex_integer_literal] = ACTIONS(372), - [sym_octal_integer_literal] = ACTIONS(370), - [sym_binary_integer_literal] = ACTIONS(370), - [sym_decimal_floating_point_literal] = ACTIONS(370), - [sym_hex_floating_point_literal] = ACTIONS(372), - [sym_true] = ACTIONS(372), - [sym_false] = ACTIONS(372), - [sym_character_literal] = ACTIONS(370), - [sym_string_literal] = ACTIONS(372), - [sym_text_block] = ACTIONS(370), - [sym_null_literal] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym_new] = ACTIONS(372), - [anon_sym_class] = ACTIONS(372), - [anon_sym_switch] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(370), - [anon_sym_case] = ACTIONS(372), - [anon_sym_default] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_assert] = ACTIONS(372), - [anon_sym_do] = ACTIONS(372), - [anon_sym_while] = ACTIONS(372), - [anon_sym_break] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_return] = ACTIONS(372), - [anon_sym_yield] = ACTIONS(372), - [anon_sym_synchronized] = ACTIONS(372), - [anon_sym_throw] = ACTIONS(372), - [anon_sym_try] = ACTIONS(372), - [anon_sym_if] = ACTIONS(372), - [anon_sym_else] = ACTIONS(372), - [anon_sym_for] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(372), - [anon_sym_open] = ACTIONS(372), - [anon_sym_module] = ACTIONS(372), - [anon_sym_static] = ACTIONS(372), - [anon_sym_package] = ACTIONS(372), - [anon_sym_import] = ACTIONS(372), - [anon_sym_enum] = ACTIONS(372), - [anon_sym_public] = ACTIONS(372), - [anon_sym_protected] = ACTIONS(372), - [anon_sym_private] = ACTIONS(372), - [anon_sym_abstract] = ACTIONS(372), - [anon_sym_final] = ACTIONS(372), - [anon_sym_strictfp] = ACTIONS(372), - [anon_sym_native] = ACTIONS(372), - [anon_sym_transient] = ACTIONS(372), - [anon_sym_volatile] = ACTIONS(372), - [anon_sym_sealed] = ACTIONS(372), - [anon_sym_non_DASHsealed] = ACTIONS(370), - [anon_sym_record] = ACTIONS(372), - [anon_sym_ATinterface] = ACTIONS(370), - [anon_sym_interface] = ACTIONS(372), - [anon_sym_byte] = ACTIONS(372), - [anon_sym_short] = ACTIONS(372), - [anon_sym_int] = ACTIONS(372), - [anon_sym_long] = ACTIONS(372), - [anon_sym_char] = ACTIONS(372), - [anon_sym_float] = ACTIONS(372), - [anon_sym_double] = ACTIONS(372), - [sym_boolean_type] = ACTIONS(372), - [sym_void_type] = ACTIONS(372), - [sym_this] = ACTIONS(372), - [sym_super] = ACTIONS(372), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [106] = { - [ts_builtin_sym_end] = ACTIONS(374), - [sym_identifier] = ACTIONS(376), - [sym_decimal_integer_literal] = ACTIONS(376), - [sym_hex_integer_literal] = ACTIONS(376), - [sym_octal_integer_literal] = ACTIONS(374), - [sym_binary_integer_literal] = ACTIONS(374), - [sym_decimal_floating_point_literal] = ACTIONS(374), - [sym_hex_floating_point_literal] = ACTIONS(376), - [sym_true] = ACTIONS(376), - [sym_false] = ACTIONS(376), - [sym_character_literal] = ACTIONS(374), - [sym_string_literal] = ACTIONS(376), - [sym_text_block] = ACTIONS(374), - [sym_null_literal] = ACTIONS(376), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_TILDE] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_new] = ACTIONS(376), - [anon_sym_class] = ACTIONS(376), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_RBRACE] = ACTIONS(374), - [anon_sym_case] = ACTIONS(376), - [anon_sym_default] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(374), - [anon_sym_assert] = ACTIONS(376), - [anon_sym_do] = ACTIONS(376), - [anon_sym_while] = ACTIONS(376), - [anon_sym_break] = ACTIONS(376), - [anon_sym_continue] = ACTIONS(376), - [anon_sym_return] = ACTIONS(376), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_synchronized] = ACTIONS(376), - [anon_sym_throw] = ACTIONS(376), - [anon_sym_try] = ACTIONS(376), - [anon_sym_if] = ACTIONS(376), - [anon_sym_else] = ACTIONS(376), - [anon_sym_for] = ACTIONS(376), - [anon_sym_AT] = ACTIONS(376), - [anon_sym_open] = ACTIONS(376), - [anon_sym_module] = ACTIONS(376), - [anon_sym_static] = ACTIONS(376), - [anon_sym_package] = ACTIONS(376), - [anon_sym_import] = ACTIONS(376), - [anon_sym_enum] = ACTIONS(376), - [anon_sym_public] = ACTIONS(376), - [anon_sym_protected] = ACTIONS(376), - [anon_sym_private] = ACTIONS(376), - [anon_sym_abstract] = ACTIONS(376), - [anon_sym_final] = ACTIONS(376), - [anon_sym_strictfp] = ACTIONS(376), - [anon_sym_native] = ACTIONS(376), - [anon_sym_transient] = ACTIONS(376), - [anon_sym_volatile] = ACTIONS(376), - [anon_sym_sealed] = ACTIONS(376), - [anon_sym_non_DASHsealed] = ACTIONS(374), - [anon_sym_record] = ACTIONS(376), - [anon_sym_ATinterface] = ACTIONS(374), - [anon_sym_interface] = ACTIONS(376), - [anon_sym_byte] = ACTIONS(376), - [anon_sym_short] = ACTIONS(376), - [anon_sym_int] = ACTIONS(376), - [anon_sym_long] = ACTIONS(376), - [anon_sym_char] = ACTIONS(376), - [anon_sym_float] = ACTIONS(376), - [anon_sym_double] = ACTIONS(376), - [sym_boolean_type] = ACTIONS(376), - [sym_void_type] = ACTIONS(376), - [sym_this] = ACTIONS(376), - [sym_super] = ACTIONS(376), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [107] = { - [ts_builtin_sym_end] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_decimal_integer_literal] = ACTIONS(380), - [sym_hex_integer_literal] = ACTIONS(380), - [sym_octal_integer_literal] = ACTIONS(378), - [sym_binary_integer_literal] = ACTIONS(378), - [sym_decimal_floating_point_literal] = ACTIONS(378), - [sym_hex_floating_point_literal] = ACTIONS(380), - [sym_true] = ACTIONS(380), - [sym_false] = ACTIONS(380), - [sym_character_literal] = ACTIONS(378), - [sym_string_literal] = ACTIONS(380), - [sym_text_block] = ACTIONS(378), - [sym_null_literal] = ACTIONS(380), - [anon_sym_LPAREN] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_PLUS_PLUS] = ACTIONS(378), - [anon_sym_DASH_DASH] = ACTIONS(378), - [anon_sym_new] = ACTIONS(380), - [anon_sym_class] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(378), - [anon_sym_case] = ACTIONS(380), - [anon_sym_default] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_assert] = ACTIONS(380), - [anon_sym_do] = ACTIONS(380), - [anon_sym_while] = ACTIONS(380), - [anon_sym_break] = ACTIONS(380), - [anon_sym_continue] = ACTIONS(380), - [anon_sym_return] = ACTIONS(380), - [anon_sym_yield] = ACTIONS(380), - [anon_sym_synchronized] = ACTIONS(380), - [anon_sym_throw] = ACTIONS(380), - [anon_sym_try] = ACTIONS(380), - [anon_sym_if] = ACTIONS(380), - [anon_sym_else] = ACTIONS(380), - [anon_sym_for] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(380), - [anon_sym_open] = ACTIONS(380), - [anon_sym_module] = ACTIONS(380), - [anon_sym_static] = ACTIONS(380), - [anon_sym_package] = ACTIONS(380), - [anon_sym_import] = ACTIONS(380), - [anon_sym_enum] = ACTIONS(380), - [anon_sym_public] = ACTIONS(380), - [anon_sym_protected] = ACTIONS(380), - [anon_sym_private] = ACTIONS(380), - [anon_sym_abstract] = ACTIONS(380), - [anon_sym_final] = ACTIONS(380), - [anon_sym_strictfp] = ACTIONS(380), - [anon_sym_native] = ACTIONS(380), - [anon_sym_transient] = ACTIONS(380), - [anon_sym_volatile] = ACTIONS(380), - [anon_sym_sealed] = ACTIONS(380), - [anon_sym_non_DASHsealed] = ACTIONS(378), - [anon_sym_record] = ACTIONS(380), - [anon_sym_ATinterface] = ACTIONS(378), - [anon_sym_interface] = ACTIONS(380), - [anon_sym_byte] = ACTIONS(380), - [anon_sym_short] = ACTIONS(380), - [anon_sym_int] = ACTIONS(380), - [anon_sym_long] = ACTIONS(380), - [anon_sym_char] = ACTIONS(380), - [anon_sym_float] = ACTIONS(380), - [anon_sym_double] = ACTIONS(380), - [sym_boolean_type] = ACTIONS(380), - [sym_void_type] = ACTIONS(380), - [sym_this] = ACTIONS(380), - [sym_super] = ACTIONS(380), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [ts_builtin_sym_end] = ACTIONS(382), - [sym_identifier] = ACTIONS(384), - [sym_decimal_integer_literal] = ACTIONS(384), - [sym_hex_integer_literal] = ACTIONS(384), - [sym_octal_integer_literal] = ACTIONS(382), - [sym_binary_integer_literal] = ACTIONS(382), - [sym_decimal_floating_point_literal] = ACTIONS(382), - [sym_hex_floating_point_literal] = ACTIONS(384), - [sym_true] = ACTIONS(384), - [sym_false] = ACTIONS(384), - [sym_character_literal] = ACTIONS(382), - [sym_string_literal] = ACTIONS(384), - [sym_text_block] = ACTIONS(382), - [sym_null_literal] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_PLUS_PLUS] = ACTIONS(382), - [anon_sym_DASH_DASH] = ACTIONS(382), - [anon_sym_new] = ACTIONS(384), - [anon_sym_class] = ACTIONS(384), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(382), - [anon_sym_RBRACE] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(382), - [anon_sym_assert] = ACTIONS(384), - [anon_sym_do] = ACTIONS(384), - [anon_sym_while] = ACTIONS(384), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(384), - [anon_sym_return] = ACTIONS(384), - [anon_sym_yield] = ACTIONS(384), - [anon_sym_synchronized] = ACTIONS(384), - [anon_sym_throw] = ACTIONS(384), - [anon_sym_try] = ACTIONS(384), - [anon_sym_if] = ACTIONS(384), - [anon_sym_else] = ACTIONS(384), - [anon_sym_for] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_open] = ACTIONS(384), - [anon_sym_module] = ACTIONS(384), - [anon_sym_static] = ACTIONS(384), - [anon_sym_package] = ACTIONS(384), - [anon_sym_import] = ACTIONS(384), - [anon_sym_enum] = ACTIONS(384), - [anon_sym_public] = ACTIONS(384), - [anon_sym_protected] = ACTIONS(384), - [anon_sym_private] = ACTIONS(384), - [anon_sym_abstract] = ACTIONS(384), - [anon_sym_final] = ACTIONS(384), - [anon_sym_strictfp] = ACTIONS(384), - [anon_sym_native] = ACTIONS(384), - [anon_sym_transient] = ACTIONS(384), - [anon_sym_volatile] = ACTIONS(384), - [anon_sym_sealed] = ACTIONS(384), - [anon_sym_non_DASHsealed] = ACTIONS(382), - [anon_sym_record] = ACTIONS(384), - [anon_sym_ATinterface] = ACTIONS(382), - [anon_sym_interface] = ACTIONS(384), - [anon_sym_byte] = ACTIONS(384), - [anon_sym_short] = ACTIONS(384), - [anon_sym_int] = ACTIONS(384), - [anon_sym_long] = ACTIONS(384), - [anon_sym_char] = ACTIONS(384), - [anon_sym_float] = ACTIONS(384), - [anon_sym_double] = ACTIONS(384), - [sym_boolean_type] = ACTIONS(384), - [sym_void_type] = ACTIONS(384), - [sym_this] = ACTIONS(384), - [sym_super] = ACTIONS(384), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(386), - [sym_identifier] = ACTIONS(388), - [sym_decimal_integer_literal] = ACTIONS(388), - [sym_hex_integer_literal] = ACTIONS(388), - [sym_octal_integer_literal] = ACTIONS(386), - [sym_binary_integer_literal] = ACTIONS(386), - [sym_decimal_floating_point_literal] = ACTIONS(386), - [sym_hex_floating_point_literal] = ACTIONS(388), - [sym_true] = ACTIONS(388), - [sym_false] = ACTIONS(388), - [sym_character_literal] = ACTIONS(386), - [sym_string_literal] = ACTIONS(388), - [sym_text_block] = ACTIONS(386), - [sym_null_literal] = ACTIONS(388), - [anon_sym_LPAREN] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(386), - [anon_sym_DASH_DASH] = ACTIONS(386), - [anon_sym_new] = ACTIONS(388), - [anon_sym_class] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_case] = ACTIONS(388), - [anon_sym_default] = ACTIONS(388), - [anon_sym_SEMI] = ACTIONS(386), - [anon_sym_assert] = ACTIONS(388), - [anon_sym_do] = ACTIONS(388), - [anon_sym_while] = ACTIONS(388), - [anon_sym_break] = ACTIONS(388), - [anon_sym_continue] = ACTIONS(388), - [anon_sym_return] = ACTIONS(388), - [anon_sym_yield] = ACTIONS(388), - [anon_sym_synchronized] = ACTIONS(388), - [anon_sym_throw] = ACTIONS(388), - [anon_sym_try] = ACTIONS(388), - [anon_sym_if] = ACTIONS(388), - [anon_sym_else] = ACTIONS(388), - [anon_sym_for] = ACTIONS(388), - [anon_sym_AT] = ACTIONS(388), - [anon_sym_open] = ACTIONS(388), - [anon_sym_module] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_package] = ACTIONS(388), - [anon_sym_import] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [anon_sym_public] = ACTIONS(388), - [anon_sym_protected] = ACTIONS(388), - [anon_sym_private] = ACTIONS(388), - [anon_sym_abstract] = ACTIONS(388), - [anon_sym_final] = ACTIONS(388), - [anon_sym_strictfp] = ACTIONS(388), - [anon_sym_native] = ACTIONS(388), - [anon_sym_transient] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_sealed] = ACTIONS(388), - [anon_sym_non_DASHsealed] = ACTIONS(386), - [anon_sym_record] = ACTIONS(388), - [anon_sym_ATinterface] = ACTIONS(386), - [anon_sym_interface] = ACTIONS(388), - [anon_sym_byte] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [anon_sym_int] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_char] = ACTIONS(388), - [anon_sym_float] = ACTIONS(388), - [anon_sym_double] = ACTIONS(388), - [sym_boolean_type] = ACTIONS(388), - [sym_void_type] = ACTIONS(388), - [sym_this] = ACTIONS(388), - [sym_super] = ACTIONS(388), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [110] = { - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(392), - [sym_decimal_integer_literal] = ACTIONS(392), - [sym_hex_integer_literal] = ACTIONS(392), - [sym_octal_integer_literal] = ACTIONS(390), - [sym_binary_integer_literal] = ACTIONS(390), - [sym_decimal_floating_point_literal] = ACTIONS(390), - [sym_hex_floating_point_literal] = ACTIONS(392), - [sym_true] = ACTIONS(392), - [sym_false] = ACTIONS(392), - [sym_character_literal] = ACTIONS(390), - [sym_string_literal] = ACTIONS(392), - [sym_text_block] = ACTIONS(390), - [sym_null_literal] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(390), - [anon_sym_DASH_DASH] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_class] = ACTIONS(392), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_case] = ACTIONS(392), - [anon_sym_default] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_assert] = ACTIONS(392), - [anon_sym_do] = ACTIONS(392), - [anon_sym_while] = ACTIONS(392), - [anon_sym_break] = ACTIONS(392), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_return] = ACTIONS(392), - [anon_sym_yield] = ACTIONS(392), - [anon_sym_synchronized] = ACTIONS(392), - [anon_sym_throw] = ACTIONS(392), - [anon_sym_try] = ACTIONS(392), - [anon_sym_if] = ACTIONS(392), - [anon_sym_else] = ACTIONS(392), - [anon_sym_for] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_open] = ACTIONS(392), - [anon_sym_module] = ACTIONS(392), - [anon_sym_static] = ACTIONS(392), - [anon_sym_package] = ACTIONS(392), - [anon_sym_import] = ACTIONS(392), - [anon_sym_enum] = ACTIONS(392), - [anon_sym_public] = ACTIONS(392), - [anon_sym_protected] = ACTIONS(392), - [anon_sym_private] = ACTIONS(392), - [anon_sym_abstract] = ACTIONS(392), - [anon_sym_final] = ACTIONS(392), - [anon_sym_strictfp] = ACTIONS(392), - [anon_sym_native] = ACTIONS(392), - [anon_sym_transient] = ACTIONS(392), - [anon_sym_volatile] = ACTIONS(392), - [anon_sym_sealed] = ACTIONS(392), - [anon_sym_non_DASHsealed] = ACTIONS(390), - [anon_sym_record] = ACTIONS(392), - [anon_sym_ATinterface] = ACTIONS(390), - [anon_sym_interface] = ACTIONS(392), - [anon_sym_byte] = ACTIONS(392), - [anon_sym_short] = ACTIONS(392), - [anon_sym_int] = ACTIONS(392), - [anon_sym_long] = ACTIONS(392), - [anon_sym_char] = ACTIONS(392), - [anon_sym_float] = ACTIONS(392), - [anon_sym_double] = ACTIONS(392), - [sym_boolean_type] = ACTIONS(392), - [sym_void_type] = ACTIONS(392), - [sym_this] = ACTIONS(392), - [sym_super] = ACTIONS(392), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [111] = { - [ts_builtin_sym_end] = ACTIONS(394), - [sym_identifier] = ACTIONS(396), - [sym_decimal_integer_literal] = ACTIONS(396), - [sym_hex_integer_literal] = ACTIONS(396), - [sym_octal_integer_literal] = ACTIONS(394), - [sym_binary_integer_literal] = ACTIONS(394), - [sym_decimal_floating_point_literal] = ACTIONS(394), - [sym_hex_floating_point_literal] = ACTIONS(396), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_character_literal] = ACTIONS(394), - [sym_string_literal] = ACTIONS(396), - [sym_text_block] = ACTIONS(394), - [sym_null_literal] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(394), - [anon_sym_new] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_case] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_assert] = ACTIONS(396), - [anon_sym_do] = ACTIONS(396), - [anon_sym_while] = ACTIONS(396), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_return] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(396), - [anon_sym_synchronized] = ACTIONS(396), - [anon_sym_throw] = ACTIONS(396), - [anon_sym_try] = ACTIONS(396), - [anon_sym_if] = ACTIONS(396), - [anon_sym_else] = ACTIONS(396), - [anon_sym_for] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_open] = ACTIONS(396), - [anon_sym_module] = ACTIONS(396), - [anon_sym_static] = ACTIONS(396), - [anon_sym_package] = ACTIONS(396), - [anon_sym_import] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(396), - [anon_sym_public] = ACTIONS(396), - [anon_sym_protected] = ACTIONS(396), - [anon_sym_private] = ACTIONS(396), - [anon_sym_abstract] = ACTIONS(396), - [anon_sym_final] = ACTIONS(396), - [anon_sym_strictfp] = ACTIONS(396), - [anon_sym_native] = ACTIONS(396), - [anon_sym_transient] = ACTIONS(396), - [anon_sym_volatile] = ACTIONS(396), - [anon_sym_sealed] = ACTIONS(396), - [anon_sym_non_DASHsealed] = ACTIONS(394), - [anon_sym_record] = ACTIONS(396), - [anon_sym_ATinterface] = ACTIONS(394), - [anon_sym_interface] = ACTIONS(396), - [anon_sym_byte] = ACTIONS(396), - [anon_sym_short] = ACTIONS(396), - [anon_sym_int] = ACTIONS(396), - [anon_sym_long] = ACTIONS(396), - [anon_sym_char] = ACTIONS(396), - [anon_sym_float] = ACTIONS(396), - [anon_sym_double] = ACTIONS(396), - [sym_boolean_type] = ACTIONS(396), - [sym_void_type] = ACTIONS(396), - [sym_this] = ACTIONS(396), - [sym_super] = ACTIONS(396), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [112] = { - [ts_builtin_sym_end] = ACTIONS(398), - [sym_identifier] = ACTIONS(400), - [sym_decimal_integer_literal] = ACTIONS(400), - [sym_hex_integer_literal] = ACTIONS(400), - [sym_octal_integer_literal] = ACTIONS(398), - [sym_binary_integer_literal] = ACTIONS(398), - [sym_decimal_floating_point_literal] = ACTIONS(398), - [sym_hex_floating_point_literal] = ACTIONS(400), - [sym_true] = ACTIONS(400), - [sym_false] = ACTIONS(400), - [sym_character_literal] = ACTIONS(398), - [sym_string_literal] = ACTIONS(400), - [sym_text_block] = ACTIONS(398), - [sym_null_literal] = ACTIONS(400), - [anon_sym_LPAREN] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_PLUS] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(400), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_PLUS_PLUS] = ACTIONS(398), - [anon_sym_DASH_DASH] = ACTIONS(398), - [anon_sym_new] = ACTIONS(400), - [anon_sym_class] = ACTIONS(400), - [anon_sym_switch] = ACTIONS(400), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_RBRACE] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(400), - [anon_sym_SEMI] = ACTIONS(398), - [anon_sym_assert] = ACTIONS(400), - [anon_sym_do] = ACTIONS(400), - [anon_sym_while] = ACTIONS(400), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_return] = ACTIONS(400), - [anon_sym_yield] = ACTIONS(400), - [anon_sym_synchronized] = ACTIONS(400), - [anon_sym_throw] = ACTIONS(400), - [anon_sym_try] = ACTIONS(400), - [anon_sym_if] = ACTIONS(400), - [anon_sym_else] = ACTIONS(400), - [anon_sym_for] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(400), - [anon_sym_open] = ACTIONS(400), - [anon_sym_module] = ACTIONS(400), - [anon_sym_static] = ACTIONS(400), - [anon_sym_package] = ACTIONS(400), - [anon_sym_import] = ACTIONS(400), - [anon_sym_enum] = ACTIONS(400), - [anon_sym_public] = ACTIONS(400), - [anon_sym_protected] = ACTIONS(400), - [anon_sym_private] = ACTIONS(400), - [anon_sym_abstract] = ACTIONS(400), - [anon_sym_final] = ACTIONS(400), - [anon_sym_strictfp] = ACTIONS(400), - [anon_sym_native] = ACTIONS(400), - [anon_sym_transient] = ACTIONS(400), - [anon_sym_volatile] = ACTIONS(400), - [anon_sym_sealed] = ACTIONS(400), - [anon_sym_non_DASHsealed] = ACTIONS(398), - [anon_sym_record] = ACTIONS(400), - [anon_sym_ATinterface] = ACTIONS(398), - [anon_sym_interface] = ACTIONS(400), - [anon_sym_byte] = ACTIONS(400), - [anon_sym_short] = ACTIONS(400), - [anon_sym_int] = ACTIONS(400), - [anon_sym_long] = ACTIONS(400), - [anon_sym_char] = ACTIONS(400), - [anon_sym_float] = ACTIONS(400), - [anon_sym_double] = ACTIONS(400), - [sym_boolean_type] = ACTIONS(400), - [sym_void_type] = ACTIONS(400), - [sym_this] = ACTIONS(400), - [sym_super] = ACTIONS(400), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(402), - [sym_identifier] = ACTIONS(404), - [sym_decimal_integer_literal] = ACTIONS(404), - [sym_hex_integer_literal] = ACTIONS(404), - [sym_octal_integer_literal] = ACTIONS(402), - [sym_binary_integer_literal] = ACTIONS(402), - [sym_decimal_floating_point_literal] = ACTIONS(402), - [sym_hex_floating_point_literal] = ACTIONS(404), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_character_literal] = ACTIONS(402), - [sym_string_literal] = ACTIONS(404), - [sym_text_block] = ACTIONS(402), - [sym_null_literal] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(402), - [anon_sym_TILDE] = ACTIONS(402), - [anon_sym_PLUS_PLUS] = ACTIONS(402), - [anon_sym_DASH_DASH] = ACTIONS(402), - [anon_sym_new] = ACTIONS(404), - [anon_sym_class] = ACTIONS(404), - [anon_sym_switch] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_case] = ACTIONS(404), - [anon_sym_default] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_assert] = ACTIONS(404), - [anon_sym_do] = ACTIONS(404), - [anon_sym_while] = ACTIONS(404), - [anon_sym_break] = ACTIONS(404), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_return] = ACTIONS(404), - [anon_sym_yield] = ACTIONS(404), - [anon_sym_synchronized] = ACTIONS(404), - [anon_sym_throw] = ACTIONS(404), - [anon_sym_try] = ACTIONS(404), - [anon_sym_if] = ACTIONS(404), - [anon_sym_else] = ACTIONS(404), - [anon_sym_for] = ACTIONS(404), - [anon_sym_AT] = ACTIONS(404), - [anon_sym_open] = ACTIONS(404), - [anon_sym_module] = ACTIONS(404), - [anon_sym_static] = ACTIONS(404), - [anon_sym_package] = ACTIONS(404), - [anon_sym_import] = ACTIONS(404), - [anon_sym_enum] = ACTIONS(404), - [anon_sym_public] = ACTIONS(404), - [anon_sym_protected] = ACTIONS(404), - [anon_sym_private] = ACTIONS(404), - [anon_sym_abstract] = ACTIONS(404), - [anon_sym_final] = ACTIONS(404), - [anon_sym_strictfp] = ACTIONS(404), - [anon_sym_native] = ACTIONS(404), - [anon_sym_transient] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(404), - [anon_sym_sealed] = ACTIONS(404), - [anon_sym_non_DASHsealed] = ACTIONS(402), - [anon_sym_record] = ACTIONS(404), - [anon_sym_ATinterface] = ACTIONS(402), - [anon_sym_interface] = ACTIONS(404), - [anon_sym_byte] = ACTIONS(404), - [anon_sym_short] = ACTIONS(404), - [anon_sym_int] = ACTIONS(404), - [anon_sym_long] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_float] = ACTIONS(404), - [anon_sym_double] = ACTIONS(404), - [sym_boolean_type] = ACTIONS(404), - [sym_void_type] = ACTIONS(404), - [sym_this] = ACTIONS(404), - [sym_super] = ACTIONS(404), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [114] = { - [ts_builtin_sym_end] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_decimal_integer_literal] = ACTIONS(408), - [sym_hex_integer_literal] = ACTIONS(408), - [sym_octal_integer_literal] = ACTIONS(406), - [sym_binary_integer_literal] = ACTIONS(406), - [sym_decimal_floating_point_literal] = ACTIONS(406), - [sym_hex_floating_point_literal] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_character_literal] = ACTIONS(406), - [sym_string_literal] = ACTIONS(408), - [sym_text_block] = ACTIONS(406), - [sym_null_literal] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(406), - [anon_sym_new] = ACTIONS(408), - [anon_sym_class] = ACTIONS(408), - [anon_sym_switch] = ACTIONS(408), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_case] = ACTIONS(408), - [anon_sym_default] = ACTIONS(408), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_assert] = ACTIONS(408), - [anon_sym_do] = ACTIONS(408), - [anon_sym_while] = ACTIONS(408), - [anon_sym_break] = ACTIONS(408), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_return] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(408), - [anon_sym_synchronized] = ACTIONS(408), - [anon_sym_throw] = ACTIONS(408), - [anon_sym_try] = ACTIONS(408), - [anon_sym_if] = ACTIONS(408), - [anon_sym_else] = ACTIONS(408), - [anon_sym_for] = ACTIONS(408), - [anon_sym_AT] = ACTIONS(408), - [anon_sym_open] = ACTIONS(408), - [anon_sym_module] = ACTIONS(408), - [anon_sym_static] = ACTIONS(408), - [anon_sym_package] = ACTIONS(408), - [anon_sym_import] = ACTIONS(408), - [anon_sym_enum] = ACTIONS(408), - [anon_sym_public] = ACTIONS(408), - [anon_sym_protected] = ACTIONS(408), - [anon_sym_private] = ACTIONS(408), - [anon_sym_abstract] = ACTIONS(408), - [anon_sym_final] = ACTIONS(408), - [anon_sym_strictfp] = ACTIONS(408), - [anon_sym_native] = ACTIONS(408), - [anon_sym_transient] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(408), - [anon_sym_sealed] = ACTIONS(408), - [anon_sym_non_DASHsealed] = ACTIONS(406), - [anon_sym_record] = ACTIONS(408), - [anon_sym_ATinterface] = ACTIONS(406), - [anon_sym_interface] = ACTIONS(408), - [anon_sym_byte] = ACTIONS(408), - [anon_sym_short] = ACTIONS(408), - [anon_sym_int] = ACTIONS(408), - [anon_sym_long] = ACTIONS(408), - [anon_sym_char] = ACTIONS(408), - [anon_sym_float] = ACTIONS(408), - [anon_sym_double] = ACTIONS(408), - [sym_boolean_type] = ACTIONS(408), - [sym_void_type] = ACTIONS(408), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [115] = { - [ts_builtin_sym_end] = ACTIONS(410), - [sym_identifier] = ACTIONS(412), - [sym_decimal_integer_literal] = ACTIONS(412), - [sym_hex_integer_literal] = ACTIONS(412), - [sym_octal_integer_literal] = ACTIONS(410), - [sym_binary_integer_literal] = ACTIONS(410), - [sym_decimal_floating_point_literal] = ACTIONS(410), - [sym_hex_floating_point_literal] = ACTIONS(412), - [sym_true] = ACTIONS(412), - [sym_false] = ACTIONS(412), - [sym_character_literal] = ACTIONS(410), - [sym_string_literal] = ACTIONS(412), - [sym_text_block] = ACTIONS(410), - [sym_null_literal] = ACTIONS(412), - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(410), - [anon_sym_TILDE] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_new] = ACTIONS(412), - [anon_sym_class] = ACTIONS(412), - [anon_sym_switch] = ACTIONS(412), - [anon_sym_LBRACE] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_case] = ACTIONS(412), - [anon_sym_default] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_assert] = ACTIONS(412), - [anon_sym_do] = ACTIONS(412), - [anon_sym_while] = ACTIONS(412), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(412), - [anon_sym_return] = ACTIONS(412), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_synchronized] = ACTIONS(412), - [anon_sym_throw] = ACTIONS(412), - [anon_sym_try] = ACTIONS(412), - [anon_sym_if] = ACTIONS(412), - [anon_sym_else] = ACTIONS(412), - [anon_sym_for] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(412), - [anon_sym_open] = ACTIONS(412), - [anon_sym_module] = ACTIONS(412), - [anon_sym_static] = ACTIONS(412), - [anon_sym_package] = ACTIONS(412), - [anon_sym_import] = ACTIONS(412), - [anon_sym_enum] = ACTIONS(412), - [anon_sym_public] = ACTIONS(412), - [anon_sym_protected] = ACTIONS(412), - [anon_sym_private] = ACTIONS(412), - [anon_sym_abstract] = ACTIONS(412), - [anon_sym_final] = ACTIONS(412), - [anon_sym_strictfp] = ACTIONS(412), - [anon_sym_native] = ACTIONS(412), - [anon_sym_transient] = ACTIONS(412), - [anon_sym_volatile] = ACTIONS(412), - [anon_sym_sealed] = ACTIONS(412), - [anon_sym_non_DASHsealed] = ACTIONS(410), - [anon_sym_record] = ACTIONS(412), - [anon_sym_ATinterface] = ACTIONS(410), - [anon_sym_interface] = ACTIONS(412), - [anon_sym_byte] = ACTIONS(412), - [anon_sym_short] = ACTIONS(412), - [anon_sym_int] = ACTIONS(412), - [anon_sym_long] = ACTIONS(412), - [anon_sym_char] = ACTIONS(412), - [anon_sym_float] = ACTIONS(412), - [anon_sym_double] = ACTIONS(412), - [sym_boolean_type] = ACTIONS(412), - [sym_void_type] = ACTIONS(412), - [sym_this] = ACTIONS(412), - [sym_super] = ACTIONS(412), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [116] = { [ts_builtin_sym_end] = ACTIONS(414), [sym_identifier] = ACTIONS(416), @@ -22851,6 +22856,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [126] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(594), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym__element_value] = STATE(1152), + [sym_element_value_array_initializer] = STATE(1152), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [127] = { [ts_builtin_sym_end] = ACTIONS(454), [sym_identifier] = ACTIONS(456), [sym_decimal_integer_literal] = ACTIONS(456), @@ -22929,7 +23013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [127] = { + [128] = { [ts_builtin_sym_end] = ACTIONS(458), [sym_identifier] = ACTIONS(460), [sym_decimal_integer_literal] = ACTIONS(460), @@ -23008,7 +23092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [128] = { + [129] = { [ts_builtin_sym_end] = ACTIONS(462), [sym_identifier] = ACTIONS(464), [sym_decimal_integer_literal] = ACTIONS(464), @@ -23087,7 +23171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [129] = { + [130] = { [ts_builtin_sym_end] = ACTIONS(466), [sym_identifier] = ACTIONS(468), [sym_decimal_integer_literal] = ACTIONS(468), @@ -23166,7 +23250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [130] = { + [131] = { [ts_builtin_sym_end] = ACTIONS(470), [sym_identifier] = ACTIONS(472), [sym_decimal_integer_literal] = ACTIONS(472), @@ -23245,7 +23329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [131] = { + [132] = { [ts_builtin_sym_end] = ACTIONS(474), [sym_identifier] = ACTIONS(476), [sym_decimal_integer_literal] = ACTIONS(476), @@ -23324,7 +23408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [132] = { + [133] = { [ts_builtin_sym_end] = ACTIONS(478), [sym_identifier] = ACTIONS(480), [sym_decimal_integer_literal] = ACTIONS(480), @@ -23403,7 +23487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [133] = { + [134] = { [ts_builtin_sym_end] = ACTIONS(482), [sym_identifier] = ACTIONS(484), [sym_decimal_integer_literal] = ACTIONS(484), @@ -23482,85 +23566,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(598), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym__element_value] = STATE(1156), - [sym_element_value_array_initializer] = STATE(1156), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [135] = { [ts_builtin_sym_end] = ACTIONS(486), [sym_identifier] = ACTIONS(488), @@ -23720,596 +23725,596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [137] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(589), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym_array_initializer] = STATE(1153), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(354), + [ts_builtin_sym_end] = ACTIONS(494), + [sym_identifier] = ACTIONS(496), + [sym_decimal_integer_literal] = ACTIONS(496), + [sym_hex_integer_literal] = ACTIONS(496), + [sym_octal_integer_literal] = ACTIONS(494), + [sym_binary_integer_literal] = ACTIONS(494), + [sym_decimal_floating_point_literal] = ACTIONS(494), + [sym_hex_floating_point_literal] = ACTIONS(496), + [sym_true] = ACTIONS(496), + [sym_false] = ACTIONS(496), + [sym_character_literal] = ACTIONS(494), + [sym_string_literal] = ACTIONS(496), + [sym_text_block] = ACTIONS(494), + [sym_null_literal] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(494), + [anon_sym_DASH_DASH] = ACTIONS(494), + [anon_sym_new] = ACTIONS(496), + [anon_sym_class] = ACTIONS(496), + [anon_sym_switch] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_case] = ACTIONS(496), + [anon_sym_default] = ACTIONS(496), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_assert] = ACTIONS(496), + [anon_sym_do] = ACTIONS(496), + [anon_sym_while] = ACTIONS(496), + [anon_sym_break] = ACTIONS(496), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_return] = ACTIONS(496), + [anon_sym_yield] = ACTIONS(496), + [anon_sym_synchronized] = ACTIONS(496), + [anon_sym_throw] = ACTIONS(496), + [anon_sym_try] = ACTIONS(496), + [anon_sym_if] = ACTIONS(496), + [anon_sym_else] = ACTIONS(496), + [anon_sym_for] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_open] = ACTIONS(496), + [anon_sym_module] = ACTIONS(496), + [anon_sym_static] = ACTIONS(496), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(496), + [anon_sym_enum] = ACTIONS(496), + [anon_sym_public] = ACTIONS(496), + [anon_sym_protected] = ACTIONS(496), + [anon_sym_private] = ACTIONS(496), + [anon_sym_abstract] = ACTIONS(496), + [anon_sym_final] = ACTIONS(496), + [anon_sym_strictfp] = ACTIONS(496), + [anon_sym_native] = ACTIONS(496), + [anon_sym_transient] = ACTIONS(496), + [anon_sym_volatile] = ACTIONS(496), + [anon_sym_sealed] = ACTIONS(496), + [anon_sym_non_DASHsealed] = ACTIONS(494), + [anon_sym_record] = ACTIONS(496), + [anon_sym_ATinterface] = ACTIONS(494), + [anon_sym_interface] = ACTIONS(496), + [anon_sym_byte] = ACTIONS(496), + [anon_sym_short] = ACTIONS(496), + [anon_sym_int] = ACTIONS(496), + [anon_sym_long] = ACTIONS(496), + [anon_sym_char] = ACTIONS(496), + [anon_sym_float] = ACTIONS(496), + [anon_sym_double] = ACTIONS(496), + [sym_boolean_type] = ACTIONS(496), + [sym_void_type] = ACTIONS(496), + [sym_this] = ACTIONS(496), + [sym_super] = ACTIONS(496), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [138] = { - [ts_builtin_sym_end] = ACTIONS(496), - [sym_identifier] = ACTIONS(498), - [sym_decimal_integer_literal] = ACTIONS(498), - [sym_hex_integer_literal] = ACTIONS(498), - [sym_octal_integer_literal] = ACTIONS(496), - [sym_binary_integer_literal] = ACTIONS(496), - [sym_decimal_floating_point_literal] = ACTIONS(496), - [sym_hex_floating_point_literal] = ACTIONS(498), - [sym_true] = ACTIONS(498), - [sym_false] = ACTIONS(498), - [sym_character_literal] = ACTIONS(496), - [sym_string_literal] = ACTIONS(498), - [sym_text_block] = ACTIONS(496), - [sym_null_literal] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(496), - [anon_sym_DASH_DASH] = ACTIONS(496), - [anon_sym_new] = ACTIONS(498), - [anon_sym_class] = ACTIONS(498), - [anon_sym_switch] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_case] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_assert] = ACTIONS(498), - [anon_sym_do] = ACTIONS(498), - [anon_sym_while] = ACTIONS(498), - [anon_sym_break] = ACTIONS(498), - [anon_sym_continue] = ACTIONS(498), - [anon_sym_return] = ACTIONS(498), - [anon_sym_yield] = ACTIONS(498), - [anon_sym_synchronized] = ACTIONS(498), - [anon_sym_throw] = ACTIONS(498), - [anon_sym_try] = ACTIONS(498), - [anon_sym_if] = ACTIONS(498), - [anon_sym_else] = ACTIONS(498), - [anon_sym_for] = ACTIONS(498), - [anon_sym_AT] = ACTIONS(498), - [anon_sym_open] = ACTIONS(498), - [anon_sym_module] = ACTIONS(498), - [anon_sym_static] = ACTIONS(498), - [anon_sym_package] = ACTIONS(498), - [anon_sym_import] = ACTIONS(498), - [anon_sym_enum] = ACTIONS(498), - [anon_sym_public] = ACTIONS(498), - [anon_sym_protected] = ACTIONS(498), - [anon_sym_private] = ACTIONS(498), - [anon_sym_abstract] = ACTIONS(498), - [anon_sym_final] = ACTIONS(498), - [anon_sym_strictfp] = ACTIONS(498), - [anon_sym_native] = ACTIONS(498), - [anon_sym_transient] = ACTIONS(498), - [anon_sym_volatile] = ACTIONS(498), - [anon_sym_sealed] = ACTIONS(498), - [anon_sym_non_DASHsealed] = ACTIONS(496), - [anon_sym_record] = ACTIONS(498), - [anon_sym_ATinterface] = ACTIONS(496), - [anon_sym_interface] = ACTIONS(498), - [anon_sym_byte] = ACTIONS(498), - [anon_sym_short] = ACTIONS(498), - [anon_sym_int] = ACTIONS(498), - [anon_sym_long] = ACTIONS(498), - [anon_sym_char] = ACTIONS(498), - [anon_sym_float] = ACTIONS(498), - [anon_sym_double] = ACTIONS(498), - [sym_boolean_type] = ACTIONS(498), - [sym_void_type] = ACTIONS(498), - [sym_this] = ACTIONS(498), - [sym_super] = ACTIONS(498), + [ts_builtin_sym_end] = ACTIONS(498), + [sym_identifier] = ACTIONS(500), + [sym_decimal_integer_literal] = ACTIONS(500), + [sym_hex_integer_literal] = ACTIONS(500), + [sym_octal_integer_literal] = ACTIONS(498), + [sym_binary_integer_literal] = ACTIONS(498), + [sym_decimal_floating_point_literal] = ACTIONS(498), + [sym_hex_floating_point_literal] = ACTIONS(500), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_character_literal] = ACTIONS(498), + [sym_string_literal] = ACTIONS(500), + [sym_text_block] = ACTIONS(498), + [sym_null_literal] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_PLUS_PLUS] = ACTIONS(498), + [anon_sym_DASH_DASH] = ACTIONS(498), + [anon_sym_new] = ACTIONS(500), + [anon_sym_class] = ACTIONS(500), + [anon_sym_switch] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_case] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_assert] = ACTIONS(500), + [anon_sym_do] = ACTIONS(500), + [anon_sym_while] = ACTIONS(500), + [anon_sym_break] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(500), + [anon_sym_return] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_synchronized] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(500), + [anon_sym_try] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_else] = ACTIONS(500), + [anon_sym_for] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_open] = ACTIONS(500), + [anon_sym_module] = ACTIONS(500), + [anon_sym_static] = ACTIONS(500), + [anon_sym_package] = ACTIONS(500), + [anon_sym_import] = ACTIONS(500), + [anon_sym_enum] = ACTIONS(500), + [anon_sym_public] = ACTIONS(500), + [anon_sym_protected] = ACTIONS(500), + [anon_sym_private] = ACTIONS(500), + [anon_sym_abstract] = ACTIONS(500), + [anon_sym_final] = ACTIONS(500), + [anon_sym_strictfp] = ACTIONS(500), + [anon_sym_native] = ACTIONS(500), + [anon_sym_transient] = ACTIONS(500), + [anon_sym_volatile] = ACTIONS(500), + [anon_sym_sealed] = ACTIONS(500), + [anon_sym_non_DASHsealed] = ACTIONS(498), + [anon_sym_record] = ACTIONS(500), + [anon_sym_ATinterface] = ACTIONS(498), + [anon_sym_interface] = ACTIONS(500), + [anon_sym_byte] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [anon_sym_int] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_float] = ACTIONS(500), + [anon_sym_double] = ACTIONS(500), + [sym_boolean_type] = ACTIONS(500), + [sym_void_type] = ACTIONS(500), + [sym_this] = ACTIONS(500), + [sym_super] = ACTIONS(500), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(500), - [sym_identifier] = ACTIONS(502), - [sym_decimal_integer_literal] = ACTIONS(502), - [sym_hex_integer_literal] = ACTIONS(502), - [sym_octal_integer_literal] = ACTIONS(500), - [sym_binary_integer_literal] = ACTIONS(500), - [sym_decimal_floating_point_literal] = ACTIONS(500), - [sym_hex_floating_point_literal] = ACTIONS(502), - [sym_true] = ACTIONS(502), - [sym_false] = ACTIONS(502), - [sym_character_literal] = ACTIONS(500), - [sym_string_literal] = ACTIONS(502), - [sym_text_block] = ACTIONS(500), - [sym_null_literal] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_class] = ACTIONS(502), - [anon_sym_switch] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_case] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_assert] = ACTIONS(502), - [anon_sym_do] = ACTIONS(502), - [anon_sym_while] = ACTIONS(502), - [anon_sym_break] = ACTIONS(502), - [anon_sym_continue] = ACTIONS(502), - [anon_sym_return] = ACTIONS(502), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_synchronized] = ACTIONS(502), - [anon_sym_throw] = ACTIONS(502), - [anon_sym_try] = ACTIONS(502), - [anon_sym_if] = ACTIONS(502), - [anon_sym_else] = ACTIONS(502), - [anon_sym_for] = ACTIONS(502), - [anon_sym_AT] = ACTIONS(502), - [anon_sym_open] = ACTIONS(502), - [anon_sym_module] = ACTIONS(502), - [anon_sym_static] = ACTIONS(502), - [anon_sym_package] = ACTIONS(502), - [anon_sym_import] = ACTIONS(502), - [anon_sym_enum] = ACTIONS(502), - [anon_sym_public] = ACTIONS(502), - [anon_sym_protected] = ACTIONS(502), - [anon_sym_private] = ACTIONS(502), - [anon_sym_abstract] = ACTIONS(502), - [anon_sym_final] = ACTIONS(502), - [anon_sym_strictfp] = ACTIONS(502), - [anon_sym_native] = ACTIONS(502), - [anon_sym_transient] = ACTIONS(502), - [anon_sym_volatile] = ACTIONS(502), - [anon_sym_sealed] = ACTIONS(502), - [anon_sym_non_DASHsealed] = ACTIONS(500), - [anon_sym_record] = ACTIONS(502), - [anon_sym_ATinterface] = ACTIONS(500), - [anon_sym_interface] = ACTIONS(502), - [anon_sym_byte] = ACTIONS(502), - [anon_sym_short] = ACTIONS(502), - [anon_sym_int] = ACTIONS(502), - [anon_sym_long] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_float] = ACTIONS(502), - [anon_sym_double] = ACTIONS(502), - [sym_boolean_type] = ACTIONS(502), - [sym_void_type] = ACTIONS(502), - [sym_this] = ACTIONS(502), - [sym_super] = ACTIONS(502), + [ts_builtin_sym_end] = ACTIONS(502), + [sym_identifier] = ACTIONS(504), + [sym_decimal_integer_literal] = ACTIONS(504), + [sym_hex_integer_literal] = ACTIONS(504), + [sym_octal_integer_literal] = ACTIONS(502), + [sym_binary_integer_literal] = ACTIONS(502), + [sym_decimal_floating_point_literal] = ACTIONS(502), + [sym_hex_floating_point_literal] = ACTIONS(504), + [sym_true] = ACTIONS(504), + [sym_false] = ACTIONS(504), + [sym_character_literal] = ACTIONS(502), + [sym_string_literal] = ACTIONS(504), + [sym_text_block] = ACTIONS(502), + [sym_null_literal] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(504), + [anon_sym_class] = ACTIONS(504), + [anon_sym_switch] = ACTIONS(504), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_case] = ACTIONS(504), + [anon_sym_default] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_assert] = ACTIONS(504), + [anon_sym_do] = ACTIONS(504), + [anon_sym_while] = ACTIONS(504), + [anon_sym_break] = ACTIONS(504), + [anon_sym_continue] = ACTIONS(504), + [anon_sym_return] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(504), + [anon_sym_synchronized] = ACTIONS(504), + [anon_sym_throw] = ACTIONS(504), + [anon_sym_try] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_for] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_open] = ACTIONS(504), + [anon_sym_module] = ACTIONS(504), + [anon_sym_static] = ACTIONS(504), + [anon_sym_package] = ACTIONS(504), + [anon_sym_import] = ACTIONS(504), + [anon_sym_enum] = ACTIONS(504), + [anon_sym_public] = ACTIONS(504), + [anon_sym_protected] = ACTIONS(504), + [anon_sym_private] = ACTIONS(504), + [anon_sym_abstract] = ACTIONS(504), + [anon_sym_final] = ACTIONS(504), + [anon_sym_strictfp] = ACTIONS(504), + [anon_sym_native] = ACTIONS(504), + [anon_sym_transient] = ACTIONS(504), + [anon_sym_volatile] = ACTIONS(504), + [anon_sym_sealed] = ACTIONS(504), + [anon_sym_non_DASHsealed] = ACTIONS(502), + [anon_sym_record] = ACTIONS(504), + [anon_sym_ATinterface] = ACTIONS(502), + [anon_sym_interface] = ACTIONS(504), + [anon_sym_byte] = ACTIONS(504), + [anon_sym_short] = ACTIONS(504), + [anon_sym_int] = ACTIONS(504), + [anon_sym_long] = ACTIONS(504), + [anon_sym_char] = ACTIONS(504), + [anon_sym_float] = ACTIONS(504), + [anon_sym_double] = ACTIONS(504), + [sym_boolean_type] = ACTIONS(504), + [sym_void_type] = ACTIONS(504), + [sym_this] = ACTIONS(504), + [sym_super] = ACTIONS(504), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(504), - [sym_identifier] = ACTIONS(506), - [sym_decimal_integer_literal] = ACTIONS(506), - [sym_hex_integer_literal] = ACTIONS(506), - [sym_octal_integer_literal] = ACTIONS(504), - [sym_binary_integer_literal] = ACTIONS(504), - [sym_decimal_floating_point_literal] = ACTIONS(504), - [sym_hex_floating_point_literal] = ACTIONS(506), - [sym_true] = ACTIONS(506), - [sym_false] = ACTIONS(506), - [sym_character_literal] = ACTIONS(504), - [sym_string_literal] = ACTIONS(506), - [sym_text_block] = ACTIONS(504), - [sym_null_literal] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [anon_sym_new] = ACTIONS(506), - [anon_sym_class] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(506), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_case] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_assert] = ACTIONS(506), - [anon_sym_do] = ACTIONS(506), - [anon_sym_while] = ACTIONS(506), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), - [anon_sym_return] = ACTIONS(506), - [anon_sym_yield] = ACTIONS(506), - [anon_sym_synchronized] = ACTIONS(506), - [anon_sym_throw] = ACTIONS(506), - [anon_sym_try] = ACTIONS(506), - [anon_sym_if] = ACTIONS(506), - [anon_sym_else] = ACTIONS(506), - [anon_sym_for] = ACTIONS(506), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_open] = ACTIONS(506), - [anon_sym_module] = ACTIONS(506), - [anon_sym_static] = ACTIONS(506), - [anon_sym_package] = ACTIONS(506), - [anon_sym_import] = ACTIONS(506), - [anon_sym_enum] = ACTIONS(506), - [anon_sym_public] = ACTIONS(506), - [anon_sym_protected] = ACTIONS(506), - [anon_sym_private] = ACTIONS(506), - [anon_sym_abstract] = ACTIONS(506), - [anon_sym_final] = ACTIONS(506), - [anon_sym_strictfp] = ACTIONS(506), - [anon_sym_native] = ACTIONS(506), - [anon_sym_transient] = ACTIONS(506), - [anon_sym_volatile] = ACTIONS(506), - [anon_sym_sealed] = ACTIONS(506), - [anon_sym_non_DASHsealed] = ACTIONS(504), - [anon_sym_record] = ACTIONS(506), - [anon_sym_ATinterface] = ACTIONS(504), - [anon_sym_interface] = ACTIONS(506), - [anon_sym_byte] = ACTIONS(506), - [anon_sym_short] = ACTIONS(506), - [anon_sym_int] = ACTIONS(506), - [anon_sym_long] = ACTIONS(506), - [anon_sym_char] = ACTIONS(506), - [anon_sym_float] = ACTIONS(506), - [anon_sym_double] = ACTIONS(506), - [sym_boolean_type] = ACTIONS(506), - [sym_void_type] = ACTIONS(506), - [sym_this] = ACTIONS(506), - [sym_super] = ACTIONS(506), + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [sym_decimal_integer_literal] = ACTIONS(508), + [sym_hex_integer_literal] = ACTIONS(508), + [sym_octal_integer_literal] = ACTIONS(506), + [sym_binary_integer_literal] = ACTIONS(506), + [sym_decimal_floating_point_literal] = ACTIONS(506), + [sym_hex_floating_point_literal] = ACTIONS(508), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_character_literal] = ACTIONS(506), + [sym_string_literal] = ACTIONS(508), + [sym_text_block] = ACTIONS(506), + [sym_null_literal] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(506), + [anon_sym_new] = ACTIONS(508), + [anon_sym_class] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_case] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_assert] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_synchronized] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_open] = ACTIONS(508), + [anon_sym_module] = ACTIONS(508), + [anon_sym_static] = ACTIONS(508), + [anon_sym_package] = ACTIONS(508), + [anon_sym_import] = ACTIONS(508), + [anon_sym_enum] = ACTIONS(508), + [anon_sym_public] = ACTIONS(508), + [anon_sym_protected] = ACTIONS(508), + [anon_sym_private] = ACTIONS(508), + [anon_sym_abstract] = ACTIONS(508), + [anon_sym_final] = ACTIONS(508), + [anon_sym_strictfp] = ACTIONS(508), + [anon_sym_native] = ACTIONS(508), + [anon_sym_transient] = ACTIONS(508), + [anon_sym_volatile] = ACTIONS(508), + [anon_sym_sealed] = ACTIONS(508), + [anon_sym_non_DASHsealed] = ACTIONS(506), + [anon_sym_record] = ACTIONS(508), + [anon_sym_ATinterface] = ACTIONS(506), + [anon_sym_interface] = ACTIONS(508), + [anon_sym_byte] = ACTIONS(508), + [anon_sym_short] = ACTIONS(508), + [anon_sym_int] = ACTIONS(508), + [anon_sym_long] = ACTIONS(508), + [anon_sym_char] = ACTIONS(508), + [anon_sym_float] = ACTIONS(508), + [anon_sym_double] = ACTIONS(508), + [sym_boolean_type] = ACTIONS(508), + [sym_void_type] = ACTIONS(508), + [sym_this] = ACTIONS(508), + [sym_super] = ACTIONS(508), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_decimal_integer_literal] = ACTIONS(510), - [sym_hex_integer_literal] = ACTIONS(510), - [sym_octal_integer_literal] = ACTIONS(508), - [sym_binary_integer_literal] = ACTIONS(508), - [sym_decimal_floating_point_literal] = ACTIONS(508), - [sym_hex_floating_point_literal] = ACTIONS(510), - [sym_true] = ACTIONS(510), - [sym_false] = ACTIONS(510), - [sym_character_literal] = ACTIONS(508), - [sym_string_literal] = ACTIONS(510), - [sym_text_block] = ACTIONS(508), - [sym_null_literal] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(508), - [anon_sym_DASH_DASH] = ACTIONS(508), - [anon_sym_new] = ACTIONS(510), - [anon_sym_class] = ACTIONS(510), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_case] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_assert] = ACTIONS(510), - [anon_sym_do] = ACTIONS(510), - [anon_sym_while] = ACTIONS(510), - [anon_sym_break] = ACTIONS(510), - [anon_sym_continue] = ACTIONS(510), - [anon_sym_return] = ACTIONS(510), - [anon_sym_yield] = ACTIONS(510), - [anon_sym_synchronized] = ACTIONS(510), - [anon_sym_throw] = ACTIONS(510), - [anon_sym_try] = ACTIONS(510), - [anon_sym_if] = ACTIONS(510), - [anon_sym_else] = ACTIONS(510), - [anon_sym_for] = ACTIONS(510), - [anon_sym_AT] = ACTIONS(510), - [anon_sym_open] = ACTIONS(510), - [anon_sym_module] = ACTIONS(510), - [anon_sym_static] = ACTIONS(510), - [anon_sym_package] = ACTIONS(510), - [anon_sym_import] = ACTIONS(510), - [anon_sym_enum] = ACTIONS(510), - [anon_sym_public] = ACTIONS(510), - [anon_sym_protected] = ACTIONS(510), - [anon_sym_private] = ACTIONS(510), - [anon_sym_abstract] = ACTIONS(510), - [anon_sym_final] = ACTIONS(510), - [anon_sym_strictfp] = ACTIONS(510), - [anon_sym_native] = ACTIONS(510), - [anon_sym_transient] = ACTIONS(510), - [anon_sym_volatile] = ACTIONS(510), - [anon_sym_sealed] = ACTIONS(510), - [anon_sym_non_DASHsealed] = ACTIONS(508), - [anon_sym_record] = ACTIONS(510), - [anon_sym_ATinterface] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(510), - [anon_sym_byte] = ACTIONS(510), - [anon_sym_short] = ACTIONS(510), - [anon_sym_int] = ACTIONS(510), - [anon_sym_long] = ACTIONS(510), - [anon_sym_char] = ACTIONS(510), - [anon_sym_float] = ACTIONS(510), - [anon_sym_double] = ACTIONS(510), - [sym_boolean_type] = ACTIONS(510), - [sym_void_type] = ACTIONS(510), - [sym_this] = ACTIONS(510), - [sym_super] = ACTIONS(510), + [ts_builtin_sym_end] = ACTIONS(510), + [sym_identifier] = ACTIONS(512), + [sym_decimal_integer_literal] = ACTIONS(512), + [sym_hex_integer_literal] = ACTIONS(512), + [sym_octal_integer_literal] = ACTIONS(510), + [sym_binary_integer_literal] = ACTIONS(510), + [sym_decimal_floating_point_literal] = ACTIONS(510), + [sym_hex_floating_point_literal] = ACTIONS(512), + [sym_true] = ACTIONS(512), + [sym_false] = ACTIONS(512), + [sym_character_literal] = ACTIONS(510), + [sym_string_literal] = ACTIONS(512), + [sym_text_block] = ACTIONS(510), + [sym_null_literal] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_PLUS_PLUS] = ACTIONS(510), + [anon_sym_DASH_DASH] = ACTIONS(510), + [anon_sym_new] = ACTIONS(512), + [anon_sym_class] = ACTIONS(512), + [anon_sym_switch] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_case] = ACTIONS(512), + [anon_sym_default] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_assert] = ACTIONS(512), + [anon_sym_do] = ACTIONS(512), + [anon_sym_while] = ACTIONS(512), + [anon_sym_break] = ACTIONS(512), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_return] = ACTIONS(512), + [anon_sym_yield] = ACTIONS(512), + [anon_sym_synchronized] = ACTIONS(512), + [anon_sym_throw] = ACTIONS(512), + [anon_sym_try] = ACTIONS(512), + [anon_sym_if] = ACTIONS(512), + [anon_sym_else] = ACTIONS(512), + [anon_sym_for] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_open] = ACTIONS(512), + [anon_sym_module] = ACTIONS(512), + [anon_sym_static] = ACTIONS(512), + [anon_sym_package] = ACTIONS(512), + [anon_sym_import] = ACTIONS(512), + [anon_sym_enum] = ACTIONS(512), + [anon_sym_public] = ACTIONS(512), + [anon_sym_protected] = ACTIONS(512), + [anon_sym_private] = ACTIONS(512), + [anon_sym_abstract] = ACTIONS(512), + [anon_sym_final] = ACTIONS(512), + [anon_sym_strictfp] = ACTIONS(512), + [anon_sym_native] = ACTIONS(512), + [anon_sym_transient] = ACTIONS(512), + [anon_sym_volatile] = ACTIONS(512), + [anon_sym_sealed] = ACTIONS(512), + [anon_sym_non_DASHsealed] = ACTIONS(510), + [anon_sym_record] = ACTIONS(512), + [anon_sym_ATinterface] = ACTIONS(510), + [anon_sym_interface] = ACTIONS(512), + [anon_sym_byte] = ACTIONS(512), + [anon_sym_short] = ACTIONS(512), + [anon_sym_int] = ACTIONS(512), + [anon_sym_long] = ACTIONS(512), + [anon_sym_char] = ACTIONS(512), + [anon_sym_float] = ACTIONS(512), + [anon_sym_double] = ACTIONS(512), + [sym_boolean_type] = ACTIONS(512), + [sym_void_type] = ACTIONS(512), + [sym_this] = ACTIONS(512), + [sym_super] = ACTIONS(512), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [142] = { - [ts_builtin_sym_end] = ACTIONS(512), - [sym_identifier] = ACTIONS(514), - [sym_decimal_integer_literal] = ACTIONS(514), - [sym_hex_integer_literal] = ACTIONS(514), - [sym_octal_integer_literal] = ACTIONS(512), - [sym_binary_integer_literal] = ACTIONS(512), - [sym_decimal_floating_point_literal] = ACTIONS(512), - [sym_hex_floating_point_literal] = ACTIONS(514), - [sym_true] = ACTIONS(514), - [sym_false] = ACTIONS(514), - [sym_character_literal] = ACTIONS(512), - [sym_string_literal] = ACTIONS(514), - [sym_text_block] = ACTIONS(512), - [sym_null_literal] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(512), - [anon_sym_DASH_DASH] = ACTIONS(512), - [anon_sym_new] = ACTIONS(514), - [anon_sym_class] = ACTIONS(514), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_case] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_assert] = ACTIONS(514), - [anon_sym_do] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [anon_sym_break] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(514), - [anon_sym_synchronized] = ACTIONS(514), - [anon_sym_throw] = ACTIONS(514), - [anon_sym_try] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_else] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_AT] = ACTIONS(514), - [anon_sym_open] = ACTIONS(514), - [anon_sym_module] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_package] = ACTIONS(514), - [anon_sym_import] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_public] = ACTIONS(514), - [anon_sym_protected] = ACTIONS(514), - [anon_sym_private] = ACTIONS(514), - [anon_sym_abstract] = ACTIONS(514), - [anon_sym_final] = ACTIONS(514), - [anon_sym_strictfp] = ACTIONS(514), - [anon_sym_native] = ACTIONS(514), - [anon_sym_transient] = ACTIONS(514), - [anon_sym_volatile] = ACTIONS(514), - [anon_sym_sealed] = ACTIONS(514), - [anon_sym_non_DASHsealed] = ACTIONS(512), - [anon_sym_record] = ACTIONS(514), - [anon_sym_ATinterface] = ACTIONS(512), - [anon_sym_interface] = ACTIONS(514), - [anon_sym_byte] = ACTIONS(514), - [anon_sym_short] = ACTIONS(514), - [anon_sym_int] = ACTIONS(514), - [anon_sym_long] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_float] = ACTIONS(514), - [anon_sym_double] = ACTIONS(514), - [sym_boolean_type] = ACTIONS(514), - [sym_void_type] = ACTIONS(514), - [sym_this] = ACTIONS(514), - [sym_super] = ACTIONS(514), + [ts_builtin_sym_end] = ACTIONS(514), + [sym_identifier] = ACTIONS(516), + [sym_decimal_integer_literal] = ACTIONS(516), + [sym_hex_integer_literal] = ACTIONS(516), + [sym_octal_integer_literal] = ACTIONS(514), + [sym_binary_integer_literal] = ACTIONS(514), + [sym_decimal_floating_point_literal] = ACTIONS(514), + [sym_hex_floating_point_literal] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_character_literal] = ACTIONS(514), + [sym_string_literal] = ACTIONS(516), + [sym_text_block] = ACTIONS(514), + [sym_null_literal] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_PLUS_PLUS] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(514), + [anon_sym_new] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_case] = ACTIONS(516), + [anon_sym_default] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_assert] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_while] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_yield] = ACTIONS(516), + [anon_sym_synchronized] = ACTIONS(516), + [anon_sym_throw] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_open] = ACTIONS(516), + [anon_sym_module] = ACTIONS(516), + [anon_sym_static] = ACTIONS(516), + [anon_sym_package] = ACTIONS(516), + [anon_sym_import] = ACTIONS(516), + [anon_sym_enum] = ACTIONS(516), + [anon_sym_public] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(516), + [anon_sym_final] = ACTIONS(516), + [anon_sym_strictfp] = ACTIONS(516), + [anon_sym_native] = ACTIONS(516), + [anon_sym_transient] = ACTIONS(516), + [anon_sym_volatile] = ACTIONS(516), + [anon_sym_sealed] = ACTIONS(516), + [anon_sym_non_DASHsealed] = ACTIONS(514), + [anon_sym_record] = ACTIONS(516), + [anon_sym_ATinterface] = ACTIONS(514), + [anon_sym_interface] = ACTIONS(516), + [anon_sym_byte] = ACTIONS(516), + [anon_sym_short] = ACTIONS(516), + [anon_sym_int] = ACTIONS(516), + [anon_sym_long] = ACTIONS(516), + [anon_sym_char] = ACTIONS(516), + [anon_sym_float] = ACTIONS(516), + [anon_sym_double] = ACTIONS(516), + [sym_boolean_type] = ACTIONS(516), + [sym_void_type] = ACTIONS(516), + [sym_this] = ACTIONS(516), + [sym_super] = ACTIONS(516), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(516), - [sym_identifier] = ACTIONS(518), - [sym_decimal_integer_literal] = ACTIONS(518), - [sym_hex_integer_literal] = ACTIONS(518), - [sym_octal_integer_literal] = ACTIONS(516), - [sym_binary_integer_literal] = ACTIONS(516), - [sym_decimal_floating_point_literal] = ACTIONS(516), - [sym_hex_floating_point_literal] = ACTIONS(518), - [sym_true] = ACTIONS(518), - [sym_false] = ACTIONS(518), - [sym_character_literal] = ACTIONS(516), - [sym_string_literal] = ACTIONS(518), - [sym_text_block] = ACTIONS(516), - [sym_null_literal] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(516), - [anon_sym_TILDE] = ACTIONS(516), - [anon_sym_PLUS_PLUS] = ACTIONS(516), - [anon_sym_DASH_DASH] = ACTIONS(516), - [anon_sym_new] = ACTIONS(518), - [anon_sym_class] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(518), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_case] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_assert] = ACTIONS(518), - [anon_sym_do] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), - [anon_sym_return] = ACTIONS(518), - [anon_sym_yield] = ACTIONS(518), - [anon_sym_synchronized] = ACTIONS(518), - [anon_sym_throw] = ACTIONS(518), - [anon_sym_try] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_else] = ACTIONS(518), - [anon_sym_for] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(518), - [anon_sym_open] = ACTIONS(518), - [anon_sym_module] = ACTIONS(518), - [anon_sym_static] = ACTIONS(518), - [anon_sym_package] = ACTIONS(518), - [anon_sym_import] = ACTIONS(518), - [anon_sym_enum] = ACTIONS(518), - [anon_sym_public] = ACTIONS(518), - [anon_sym_protected] = ACTIONS(518), - [anon_sym_private] = ACTIONS(518), - [anon_sym_abstract] = ACTIONS(518), - [anon_sym_final] = ACTIONS(518), - [anon_sym_strictfp] = ACTIONS(518), - [anon_sym_native] = ACTIONS(518), - [anon_sym_transient] = ACTIONS(518), - [anon_sym_volatile] = ACTIONS(518), - [anon_sym_sealed] = ACTIONS(518), - [anon_sym_non_DASHsealed] = ACTIONS(516), - [anon_sym_record] = ACTIONS(518), - [anon_sym_ATinterface] = ACTIONS(516), - [anon_sym_interface] = ACTIONS(518), - [anon_sym_byte] = ACTIONS(518), - [anon_sym_short] = ACTIONS(518), - [anon_sym_int] = ACTIONS(518), - [anon_sym_long] = ACTIONS(518), - [anon_sym_char] = ACTIONS(518), - [anon_sym_float] = ACTIONS(518), - [anon_sym_double] = ACTIONS(518), - [sym_boolean_type] = ACTIONS(518), - [sym_void_type] = ACTIONS(518), - [sym_this] = ACTIONS(518), - [sym_super] = ACTIONS(518), + [ts_builtin_sym_end] = ACTIONS(518), + [sym_identifier] = ACTIONS(520), + [sym_decimal_integer_literal] = ACTIONS(520), + [sym_hex_integer_literal] = ACTIONS(520), + [sym_octal_integer_literal] = ACTIONS(518), + [sym_binary_integer_literal] = ACTIONS(518), + [sym_decimal_floating_point_literal] = ACTIONS(518), + [sym_hex_floating_point_literal] = ACTIONS(520), + [sym_true] = ACTIONS(520), + [sym_false] = ACTIONS(520), + [sym_character_literal] = ACTIONS(518), + [sym_string_literal] = ACTIONS(520), + [sym_text_block] = ACTIONS(518), + [sym_null_literal] = ACTIONS(520), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [anon_sym_new] = ACTIONS(520), + [anon_sym_class] = ACTIONS(520), + [anon_sym_switch] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_case] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_do] = ACTIONS(520), + [anon_sym_while] = ACTIONS(520), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_return] = ACTIONS(520), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_synchronized] = ACTIONS(520), + [anon_sym_throw] = ACTIONS(520), + [anon_sym_try] = ACTIONS(520), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_for] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_open] = ACTIONS(520), + [anon_sym_module] = ACTIONS(520), + [anon_sym_static] = ACTIONS(520), + [anon_sym_package] = ACTIONS(520), + [anon_sym_import] = ACTIONS(520), + [anon_sym_enum] = ACTIONS(520), + [anon_sym_public] = ACTIONS(520), + [anon_sym_protected] = ACTIONS(520), + [anon_sym_private] = ACTIONS(520), + [anon_sym_abstract] = ACTIONS(520), + [anon_sym_final] = ACTIONS(520), + [anon_sym_strictfp] = ACTIONS(520), + [anon_sym_native] = ACTIONS(520), + [anon_sym_transient] = ACTIONS(520), + [anon_sym_volatile] = ACTIONS(520), + [anon_sym_sealed] = ACTIONS(520), + [anon_sym_non_DASHsealed] = ACTIONS(518), + [anon_sym_record] = ACTIONS(520), + [anon_sym_ATinterface] = ACTIONS(518), + [anon_sym_interface] = ACTIONS(520), + [anon_sym_byte] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [anon_sym_int] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_char] = ACTIONS(520), + [anon_sym_float] = ACTIONS(520), + [anon_sym_double] = ACTIONS(520), + [sym_boolean_type] = ACTIONS(520), + [sym_void_type] = ACTIONS(520), + [sym_this] = ACTIONS(520), + [sym_super] = ACTIONS(520), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [144] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym__element_value] = STATE(1156), - [sym_element_value_array_initializer] = STATE(1156), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym__element_value] = STATE(1074), + [sym_element_value_array_initializer] = STATE(1074), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -24332,11 +24337,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -24352,1428 +24357,1507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(520), - [sym_identifier] = ACTIONS(522), - [sym_decimal_integer_literal] = ACTIONS(522), - [sym_hex_integer_literal] = ACTIONS(522), - [sym_octal_integer_literal] = ACTIONS(520), - [sym_binary_integer_literal] = ACTIONS(520), - [sym_decimal_floating_point_literal] = ACTIONS(520), - [sym_hex_floating_point_literal] = ACTIONS(522), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_character_literal] = ACTIONS(520), - [sym_string_literal] = ACTIONS(522), - [sym_text_block] = ACTIONS(520), - [sym_null_literal] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [anon_sym_new] = ACTIONS(522), - [anon_sym_class] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_case] = ACTIONS(522), - [anon_sym_default] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_assert] = ACTIONS(522), - [anon_sym_do] = ACTIONS(522), - [anon_sym_while] = ACTIONS(522), - [anon_sym_break] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_return] = ACTIONS(522), - [anon_sym_yield] = ACTIONS(522), - [anon_sym_synchronized] = ACTIONS(522), - [anon_sym_throw] = ACTIONS(522), - [anon_sym_try] = ACTIONS(522), - [anon_sym_if] = ACTIONS(522), - [anon_sym_else] = ACTIONS(522), - [anon_sym_for] = ACTIONS(522), - [anon_sym_AT] = ACTIONS(522), - [anon_sym_open] = ACTIONS(522), - [anon_sym_module] = ACTIONS(522), - [anon_sym_static] = ACTIONS(522), - [anon_sym_package] = ACTIONS(522), - [anon_sym_import] = ACTIONS(522), - [anon_sym_enum] = ACTIONS(522), - [anon_sym_public] = ACTIONS(522), - [anon_sym_protected] = ACTIONS(522), - [anon_sym_private] = ACTIONS(522), - [anon_sym_abstract] = ACTIONS(522), - [anon_sym_final] = ACTIONS(522), - [anon_sym_strictfp] = ACTIONS(522), - [anon_sym_native] = ACTIONS(522), - [anon_sym_transient] = ACTIONS(522), - [anon_sym_volatile] = ACTIONS(522), - [anon_sym_sealed] = ACTIONS(522), - [anon_sym_non_DASHsealed] = ACTIONS(520), - [anon_sym_record] = ACTIONS(522), - [anon_sym_ATinterface] = ACTIONS(520), - [anon_sym_interface] = ACTIONS(522), - [anon_sym_byte] = ACTIONS(522), - [anon_sym_short] = ACTIONS(522), - [anon_sym_int] = ACTIONS(522), - [anon_sym_long] = ACTIONS(522), - [anon_sym_char] = ACTIONS(522), - [anon_sym_float] = ACTIONS(522), - [anon_sym_double] = ACTIONS(522), - [sym_boolean_type] = ACTIONS(522), - [sym_void_type] = ACTIONS(522), - [sym_this] = ACTIONS(522), - [sym_super] = ACTIONS(522), + [ts_builtin_sym_end] = ACTIONS(522), + [sym_identifier] = ACTIONS(524), + [sym_decimal_integer_literal] = ACTIONS(524), + [sym_hex_integer_literal] = ACTIONS(524), + [sym_octal_integer_literal] = ACTIONS(522), + [sym_binary_integer_literal] = ACTIONS(522), + [sym_decimal_floating_point_literal] = ACTIONS(522), + [sym_hex_floating_point_literal] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_character_literal] = ACTIONS(522), + [sym_string_literal] = ACTIONS(524), + [sym_text_block] = ACTIONS(522), + [sym_null_literal] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_DASH_DASH] = ACTIONS(522), + [anon_sym_new] = ACTIONS(524), + [anon_sym_class] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_case] = ACTIONS(524), + [anon_sym_default] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_assert] = ACTIONS(524), + [anon_sym_do] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_synchronized] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(524), + [anon_sym_try] = ACTIONS(524), + [anon_sym_if] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_open] = ACTIONS(524), + [anon_sym_module] = ACTIONS(524), + [anon_sym_static] = ACTIONS(524), + [anon_sym_package] = ACTIONS(524), + [anon_sym_import] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_public] = ACTIONS(524), + [anon_sym_protected] = ACTIONS(524), + [anon_sym_private] = ACTIONS(524), + [anon_sym_abstract] = ACTIONS(524), + [anon_sym_final] = ACTIONS(524), + [anon_sym_strictfp] = ACTIONS(524), + [anon_sym_native] = ACTIONS(524), + [anon_sym_transient] = ACTIONS(524), + [anon_sym_volatile] = ACTIONS(524), + [anon_sym_sealed] = ACTIONS(524), + [anon_sym_non_DASHsealed] = ACTIONS(522), + [anon_sym_record] = ACTIONS(524), + [anon_sym_ATinterface] = ACTIONS(522), + [anon_sym_interface] = ACTIONS(524), + [anon_sym_byte] = ACTIONS(524), + [anon_sym_short] = ACTIONS(524), + [anon_sym_int] = ACTIONS(524), + [anon_sym_long] = ACTIONS(524), + [anon_sym_char] = ACTIONS(524), + [anon_sym_float] = ACTIONS(524), + [anon_sym_double] = ACTIONS(524), + [sym_boolean_type] = ACTIONS(524), + [sym_void_type] = ACTIONS(524), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [146] = { - [ts_builtin_sym_end] = ACTIONS(524), - [sym_identifier] = ACTIONS(526), - [sym_decimal_integer_literal] = ACTIONS(526), - [sym_hex_integer_literal] = ACTIONS(526), - [sym_octal_integer_literal] = ACTIONS(524), - [sym_binary_integer_literal] = ACTIONS(524), - [sym_decimal_floating_point_literal] = ACTIONS(524), - [sym_hex_floating_point_literal] = ACTIONS(526), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_character_literal] = ACTIONS(524), - [sym_string_literal] = ACTIONS(526), - [sym_text_block] = ACTIONS(524), - [sym_null_literal] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_DASH_DASH] = ACTIONS(524), - [anon_sym_new] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_case] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_assert] = ACTIONS(526), - [anon_sym_do] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_yield] = ACTIONS(526), - [anon_sym_synchronized] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_try] = ACTIONS(526), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_open] = ACTIONS(526), - [anon_sym_module] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_package] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_protected] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_strictfp] = ACTIONS(526), - [anon_sym_native] = ACTIONS(526), - [anon_sym_transient] = ACTIONS(526), - [anon_sym_volatile] = ACTIONS(526), - [anon_sym_sealed] = ACTIONS(526), - [anon_sym_non_DASHsealed] = ACTIONS(524), - [anon_sym_record] = ACTIONS(526), - [anon_sym_ATinterface] = ACTIONS(524), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_byte] = ACTIONS(526), - [anon_sym_short] = ACTIONS(526), - [anon_sym_int] = ACTIONS(526), - [anon_sym_long] = ACTIONS(526), - [anon_sym_char] = ACTIONS(526), - [anon_sym_float] = ACTIONS(526), - [anon_sym_double] = ACTIONS(526), - [sym_boolean_type] = ACTIONS(526), - [sym_void_type] = ACTIONS(526), - [sym_this] = ACTIONS(526), - [sym_super] = ACTIONS(526), + [ts_builtin_sym_end] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [sym_decimal_integer_literal] = ACTIONS(528), + [sym_hex_integer_literal] = ACTIONS(528), + [sym_octal_integer_literal] = ACTIONS(526), + [sym_binary_integer_literal] = ACTIONS(526), + [sym_decimal_floating_point_literal] = ACTIONS(526), + [sym_hex_floating_point_literal] = ACTIONS(528), + [sym_true] = ACTIONS(528), + [sym_false] = ACTIONS(528), + [sym_character_literal] = ACTIONS(526), + [sym_string_literal] = ACTIONS(528), + [sym_text_block] = ACTIONS(526), + [sym_null_literal] = ACTIONS(528), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_PLUS_PLUS] = ACTIONS(526), + [anon_sym_DASH_DASH] = ACTIONS(526), + [anon_sym_new] = ACTIONS(528), + [anon_sym_class] = ACTIONS(528), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_case] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(528), + [anon_sym_do] = ACTIONS(528), + [anon_sym_while] = ACTIONS(528), + [anon_sym_break] = ACTIONS(528), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_return] = ACTIONS(528), + [anon_sym_yield] = ACTIONS(528), + [anon_sym_synchronized] = ACTIONS(528), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_try] = ACTIONS(528), + [anon_sym_if] = ACTIONS(528), + [anon_sym_else] = ACTIONS(528), + [anon_sym_for] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_open] = ACTIONS(528), + [anon_sym_module] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_package] = ACTIONS(528), + [anon_sym_import] = ACTIONS(528), + [anon_sym_enum] = ACTIONS(528), + [anon_sym_public] = ACTIONS(528), + [anon_sym_protected] = ACTIONS(528), + [anon_sym_private] = ACTIONS(528), + [anon_sym_abstract] = ACTIONS(528), + [anon_sym_final] = ACTIONS(528), + [anon_sym_strictfp] = ACTIONS(528), + [anon_sym_native] = ACTIONS(528), + [anon_sym_transient] = ACTIONS(528), + [anon_sym_volatile] = ACTIONS(528), + [anon_sym_sealed] = ACTIONS(528), + [anon_sym_non_DASHsealed] = ACTIONS(526), + [anon_sym_record] = ACTIONS(528), + [anon_sym_ATinterface] = ACTIONS(526), + [anon_sym_interface] = ACTIONS(528), + [anon_sym_byte] = ACTIONS(528), + [anon_sym_short] = ACTIONS(528), + [anon_sym_int] = ACTIONS(528), + [anon_sym_long] = ACTIONS(528), + [anon_sym_char] = ACTIONS(528), + [anon_sym_float] = ACTIONS(528), + [anon_sym_double] = ACTIONS(528), + [sym_boolean_type] = ACTIONS(528), + [sym_void_type] = ACTIONS(528), + [sym_this] = ACTIONS(528), + [sym_super] = ACTIONS(528), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [147] = { - [ts_builtin_sym_end] = ACTIONS(528), - [sym_identifier] = ACTIONS(530), - [sym_decimal_integer_literal] = ACTIONS(530), - [sym_hex_integer_literal] = ACTIONS(530), - [sym_octal_integer_literal] = ACTIONS(528), - [sym_binary_integer_literal] = ACTIONS(528), - [sym_decimal_floating_point_literal] = ACTIONS(528), - [sym_hex_floating_point_literal] = ACTIONS(530), - [sym_true] = ACTIONS(530), - [sym_false] = ACTIONS(530), - [sym_character_literal] = ACTIONS(528), - [sym_string_literal] = ACTIONS(530), - [sym_text_block] = ACTIONS(528), - [sym_null_literal] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(528), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_new] = ACTIONS(530), - [anon_sym_class] = ACTIONS(530), - [anon_sym_switch] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(530), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_assert] = ACTIONS(530), - [anon_sym_do] = ACTIONS(530), - [anon_sym_while] = ACTIONS(530), - [anon_sym_break] = ACTIONS(530), - [anon_sym_continue] = ACTIONS(530), - [anon_sym_return] = ACTIONS(530), - [anon_sym_yield] = ACTIONS(530), - [anon_sym_synchronized] = ACTIONS(530), - [anon_sym_throw] = ACTIONS(530), - [anon_sym_try] = ACTIONS(530), - [anon_sym_if] = ACTIONS(530), - [anon_sym_else] = ACTIONS(530), - [anon_sym_for] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(530), - [anon_sym_open] = ACTIONS(530), - [anon_sym_module] = ACTIONS(530), - [anon_sym_static] = ACTIONS(530), - [anon_sym_package] = ACTIONS(530), - [anon_sym_import] = ACTIONS(530), - [anon_sym_enum] = ACTIONS(530), - [anon_sym_public] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_abstract] = ACTIONS(530), - [anon_sym_final] = ACTIONS(530), - [anon_sym_strictfp] = ACTIONS(530), - [anon_sym_native] = ACTIONS(530), - [anon_sym_transient] = ACTIONS(530), - [anon_sym_volatile] = ACTIONS(530), - [anon_sym_sealed] = ACTIONS(530), - [anon_sym_non_DASHsealed] = ACTIONS(528), - [anon_sym_record] = ACTIONS(530), - [anon_sym_ATinterface] = ACTIONS(528), - [anon_sym_interface] = ACTIONS(530), - [anon_sym_byte] = ACTIONS(530), - [anon_sym_short] = ACTIONS(530), - [anon_sym_int] = ACTIONS(530), - [anon_sym_long] = ACTIONS(530), - [anon_sym_char] = ACTIONS(530), - [anon_sym_float] = ACTIONS(530), - [anon_sym_double] = ACTIONS(530), - [sym_boolean_type] = ACTIONS(530), - [sym_void_type] = ACTIONS(530), - [sym_this] = ACTIONS(530), - [sym_super] = ACTIONS(530), + [ts_builtin_sym_end] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), + [sym_decimal_integer_literal] = ACTIONS(532), + [sym_hex_integer_literal] = ACTIONS(532), + [sym_octal_integer_literal] = ACTIONS(530), + [sym_binary_integer_literal] = ACTIONS(530), + [sym_decimal_floating_point_literal] = ACTIONS(530), + [sym_hex_floating_point_literal] = ACTIONS(532), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_character_literal] = ACTIONS(530), + [sym_string_literal] = ACTIONS(532), + [sym_text_block] = ACTIONS(530), + [sym_null_literal] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_new] = ACTIONS(532), + [anon_sym_class] = ACTIONS(532), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_case] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_assert] = ACTIONS(532), + [anon_sym_do] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_yield] = ACTIONS(532), + [anon_sym_synchronized] = ACTIONS(532), + [anon_sym_throw] = ACTIONS(532), + [anon_sym_try] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_open] = ACTIONS(532), + [anon_sym_module] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_package] = ACTIONS(532), + [anon_sym_import] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_public] = ACTIONS(532), + [anon_sym_protected] = ACTIONS(532), + [anon_sym_private] = ACTIONS(532), + [anon_sym_abstract] = ACTIONS(532), + [anon_sym_final] = ACTIONS(532), + [anon_sym_strictfp] = ACTIONS(532), + [anon_sym_native] = ACTIONS(532), + [anon_sym_transient] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_sealed] = ACTIONS(532), + [anon_sym_non_DASHsealed] = ACTIONS(530), + [anon_sym_record] = ACTIONS(532), + [anon_sym_ATinterface] = ACTIONS(530), + [anon_sym_interface] = ACTIONS(532), + [anon_sym_byte] = ACTIONS(532), + [anon_sym_short] = ACTIONS(532), + [anon_sym_int] = ACTIONS(532), + [anon_sym_long] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_float] = ACTIONS(532), + [anon_sym_double] = ACTIONS(532), + [sym_boolean_type] = ACTIONS(532), + [sym_void_type] = ACTIONS(532), + [sym_this] = ACTIONS(532), + [sym_super] = ACTIONS(532), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(532), - [sym_identifier] = ACTIONS(534), - [sym_decimal_integer_literal] = ACTIONS(534), - [sym_hex_integer_literal] = ACTIONS(534), - [sym_octal_integer_literal] = ACTIONS(532), - [sym_binary_integer_literal] = ACTIONS(532), - [sym_decimal_floating_point_literal] = ACTIONS(532), - [sym_hex_floating_point_literal] = ACTIONS(534), - [sym_true] = ACTIONS(534), - [sym_false] = ACTIONS(534), - [sym_character_literal] = ACTIONS(532), - [sym_string_literal] = ACTIONS(534), - [sym_text_block] = ACTIONS(532), - [sym_null_literal] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(532), - [anon_sym_new] = ACTIONS(534), - [anon_sym_class] = ACTIONS(534), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_case] = ACTIONS(534), - [anon_sym_default] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_assert] = ACTIONS(534), - [anon_sym_do] = ACTIONS(534), - [anon_sym_while] = ACTIONS(534), - [anon_sym_break] = ACTIONS(534), - [anon_sym_continue] = ACTIONS(534), - [anon_sym_return] = ACTIONS(534), - [anon_sym_yield] = ACTIONS(534), - [anon_sym_synchronized] = ACTIONS(534), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_try] = ACTIONS(534), - [anon_sym_if] = ACTIONS(534), - [anon_sym_else] = ACTIONS(534), - [anon_sym_for] = ACTIONS(534), - [anon_sym_AT] = ACTIONS(534), - [anon_sym_open] = ACTIONS(534), - [anon_sym_module] = ACTIONS(534), - [anon_sym_static] = ACTIONS(534), - [anon_sym_package] = ACTIONS(534), - [anon_sym_import] = ACTIONS(534), - [anon_sym_enum] = ACTIONS(534), - [anon_sym_public] = ACTIONS(534), - [anon_sym_protected] = ACTIONS(534), - [anon_sym_private] = ACTIONS(534), - [anon_sym_abstract] = ACTIONS(534), - [anon_sym_final] = ACTIONS(534), - [anon_sym_strictfp] = ACTIONS(534), - [anon_sym_native] = ACTIONS(534), - [anon_sym_transient] = ACTIONS(534), - [anon_sym_volatile] = ACTIONS(534), - [anon_sym_sealed] = ACTIONS(534), - [anon_sym_non_DASHsealed] = ACTIONS(532), - [anon_sym_record] = ACTIONS(534), - [anon_sym_ATinterface] = ACTIONS(532), - [anon_sym_interface] = ACTIONS(534), - [anon_sym_byte] = ACTIONS(534), - [anon_sym_short] = ACTIONS(534), - [anon_sym_int] = ACTIONS(534), - [anon_sym_long] = ACTIONS(534), - [anon_sym_char] = ACTIONS(534), - [anon_sym_float] = ACTIONS(534), - [anon_sym_double] = ACTIONS(534), - [sym_boolean_type] = ACTIONS(534), - [sym_void_type] = ACTIONS(534), - [sym_this] = ACTIONS(534), - [sym_super] = ACTIONS(534), + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [sym_decimal_integer_literal] = ACTIONS(536), + [sym_hex_integer_literal] = ACTIONS(536), + [sym_octal_integer_literal] = ACTIONS(534), + [sym_binary_integer_literal] = ACTIONS(534), + [sym_decimal_floating_point_literal] = ACTIONS(534), + [sym_hex_floating_point_literal] = ACTIONS(536), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_character_literal] = ACTIONS(534), + [sym_string_literal] = ACTIONS(536), + [sym_text_block] = ACTIONS(534), + [sym_null_literal] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_case] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_assert] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_synchronized] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_open] = ACTIONS(536), + [anon_sym_module] = ACTIONS(536), + [anon_sym_static] = ACTIONS(536), + [anon_sym_package] = ACTIONS(536), + [anon_sym_import] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_public] = ACTIONS(536), + [anon_sym_protected] = ACTIONS(536), + [anon_sym_private] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(536), + [anon_sym_final] = ACTIONS(536), + [anon_sym_strictfp] = ACTIONS(536), + [anon_sym_native] = ACTIONS(536), + [anon_sym_transient] = ACTIONS(536), + [anon_sym_volatile] = ACTIONS(536), + [anon_sym_sealed] = ACTIONS(536), + [anon_sym_non_DASHsealed] = ACTIONS(534), + [anon_sym_record] = ACTIONS(536), + [anon_sym_ATinterface] = ACTIONS(534), + [anon_sym_interface] = ACTIONS(536), + [anon_sym_byte] = ACTIONS(536), + [anon_sym_short] = ACTIONS(536), + [anon_sym_int] = ACTIONS(536), + [anon_sym_long] = ACTIONS(536), + [anon_sym_char] = ACTIONS(536), + [anon_sym_float] = ACTIONS(536), + [anon_sym_double] = ACTIONS(536), + [sym_boolean_type] = ACTIONS(536), + [sym_void_type] = ACTIONS(536), + [sym_this] = ACTIONS(536), + [sym_super] = ACTIONS(536), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [sym_decimal_integer_literal] = ACTIONS(538), - [sym_hex_integer_literal] = ACTIONS(538), - [sym_octal_integer_literal] = ACTIONS(536), - [sym_binary_integer_literal] = ACTIONS(536), - [sym_decimal_floating_point_literal] = ACTIONS(536), - [sym_hex_floating_point_literal] = ACTIONS(538), - [sym_true] = ACTIONS(538), - [sym_false] = ACTIONS(538), - [sym_character_literal] = ACTIONS(536), - [sym_string_literal] = ACTIONS(538), - [sym_text_block] = ACTIONS(536), - [sym_null_literal] = ACTIONS(538), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_BANG] = ACTIONS(536), - [anon_sym_TILDE] = ACTIONS(536), - [anon_sym_PLUS_PLUS] = ACTIONS(536), - [anon_sym_DASH_DASH] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_class] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_case] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_assert] = ACTIONS(538), - [anon_sym_do] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_synchronized] = ACTIONS(538), - [anon_sym_throw] = ACTIONS(538), - [anon_sym_try] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_else] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_AT] = ACTIONS(538), - [anon_sym_open] = ACTIONS(538), - [anon_sym_module] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_package] = ACTIONS(538), - [anon_sym_import] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_public] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(538), - [anon_sym_final] = ACTIONS(538), - [anon_sym_strictfp] = ACTIONS(538), - [anon_sym_native] = ACTIONS(538), - [anon_sym_transient] = ACTIONS(538), - [anon_sym_volatile] = ACTIONS(538), - [anon_sym_sealed] = ACTIONS(538), - [anon_sym_non_DASHsealed] = ACTIONS(536), - [anon_sym_record] = ACTIONS(538), - [anon_sym_ATinterface] = ACTIONS(536), - [anon_sym_interface] = ACTIONS(538), - [anon_sym_byte] = ACTIONS(538), - [anon_sym_short] = ACTIONS(538), - [anon_sym_int] = ACTIONS(538), - [anon_sym_long] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_float] = ACTIONS(538), - [anon_sym_double] = ACTIONS(538), - [sym_boolean_type] = ACTIONS(538), - [sym_void_type] = ACTIONS(538), - [sym_this] = ACTIONS(538), - [sym_super] = ACTIONS(538), + [ts_builtin_sym_end] = ACTIONS(538), + [sym_identifier] = ACTIONS(540), + [sym_decimal_integer_literal] = ACTIONS(540), + [sym_hex_integer_literal] = ACTIONS(540), + [sym_octal_integer_literal] = ACTIONS(538), + [sym_binary_integer_literal] = ACTIONS(538), + [sym_decimal_floating_point_literal] = ACTIONS(538), + [sym_hex_floating_point_literal] = ACTIONS(540), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_character_literal] = ACTIONS(538), + [sym_string_literal] = ACTIONS(540), + [sym_text_block] = ACTIONS(538), + [sym_null_literal] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(538), + [anon_sym_DASH_DASH] = ACTIONS(538), + [anon_sym_new] = ACTIONS(540), + [anon_sym_class] = ACTIONS(540), + [anon_sym_switch] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_case] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_assert] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_yield] = ACTIONS(540), + [anon_sym_synchronized] = ACTIONS(540), + [anon_sym_throw] = ACTIONS(540), + [anon_sym_try] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_open] = ACTIONS(540), + [anon_sym_module] = ACTIONS(540), + [anon_sym_static] = ACTIONS(540), + [anon_sym_package] = ACTIONS(540), + [anon_sym_import] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_public] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(540), + [anon_sym_final] = ACTIONS(540), + [anon_sym_strictfp] = ACTIONS(540), + [anon_sym_native] = ACTIONS(540), + [anon_sym_transient] = ACTIONS(540), + [anon_sym_volatile] = ACTIONS(540), + [anon_sym_sealed] = ACTIONS(540), + [anon_sym_non_DASHsealed] = ACTIONS(538), + [anon_sym_record] = ACTIONS(540), + [anon_sym_ATinterface] = ACTIONS(538), + [anon_sym_interface] = ACTIONS(540), + [anon_sym_byte] = ACTIONS(540), + [anon_sym_short] = ACTIONS(540), + [anon_sym_int] = ACTIONS(540), + [anon_sym_long] = ACTIONS(540), + [anon_sym_char] = ACTIONS(540), + [anon_sym_float] = ACTIONS(540), + [anon_sym_double] = ACTIONS(540), + [sym_boolean_type] = ACTIONS(540), + [sym_void_type] = ACTIONS(540), + [sym_this] = ACTIONS(540), + [sym_super] = ACTIONS(540), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_decimal_integer_literal] = ACTIONS(542), - [sym_hex_integer_literal] = ACTIONS(542), - [sym_octal_integer_literal] = ACTIONS(540), - [sym_binary_integer_literal] = ACTIONS(540), - [sym_decimal_floating_point_literal] = ACTIONS(540), - [sym_hex_floating_point_literal] = ACTIONS(542), - [sym_true] = ACTIONS(542), - [sym_false] = ACTIONS(542), - [sym_character_literal] = ACTIONS(540), - [sym_string_literal] = ACTIONS(542), - [sym_text_block] = ACTIONS(540), - [sym_null_literal] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(540), - [anon_sym_DASH_DASH] = ACTIONS(540), - [anon_sym_new] = ACTIONS(542), - [anon_sym_class] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_case] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_assert] = ACTIONS(542), - [anon_sym_do] = ACTIONS(542), - [anon_sym_while] = ACTIONS(542), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(542), - [anon_sym_return] = ACTIONS(542), - [anon_sym_yield] = ACTIONS(542), - [anon_sym_synchronized] = ACTIONS(542), - [anon_sym_throw] = ACTIONS(542), - [anon_sym_try] = ACTIONS(542), - [anon_sym_if] = ACTIONS(542), - [anon_sym_else] = ACTIONS(542), - [anon_sym_for] = ACTIONS(542), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_open] = ACTIONS(542), - [anon_sym_module] = ACTIONS(542), - [anon_sym_static] = ACTIONS(542), - [anon_sym_package] = ACTIONS(542), - [anon_sym_import] = ACTIONS(542), - [anon_sym_enum] = ACTIONS(542), - [anon_sym_public] = ACTIONS(542), - [anon_sym_protected] = ACTIONS(542), - [anon_sym_private] = ACTIONS(542), - [anon_sym_abstract] = ACTIONS(542), - [anon_sym_final] = ACTIONS(542), - [anon_sym_strictfp] = ACTIONS(542), - [anon_sym_native] = ACTIONS(542), - [anon_sym_transient] = ACTIONS(542), - [anon_sym_volatile] = ACTIONS(542), - [anon_sym_sealed] = ACTIONS(542), - [anon_sym_non_DASHsealed] = ACTIONS(540), - [anon_sym_record] = ACTIONS(542), - [anon_sym_ATinterface] = ACTIONS(540), - [anon_sym_interface] = ACTIONS(542), - [anon_sym_byte] = ACTIONS(542), - [anon_sym_short] = ACTIONS(542), - [anon_sym_int] = ACTIONS(542), - [anon_sym_long] = ACTIONS(542), - [anon_sym_char] = ACTIONS(542), - [anon_sym_float] = ACTIONS(542), - [anon_sym_double] = ACTIONS(542), - [sym_boolean_type] = ACTIONS(542), - [sym_void_type] = ACTIONS(542), - [sym_this] = ACTIONS(542), - [sym_super] = ACTIONS(542), + [ts_builtin_sym_end] = ACTIONS(542), + [sym_identifier] = ACTIONS(544), + [sym_decimal_integer_literal] = ACTIONS(544), + [sym_hex_integer_literal] = ACTIONS(544), + [sym_octal_integer_literal] = ACTIONS(542), + [sym_binary_integer_literal] = ACTIONS(542), + [sym_decimal_floating_point_literal] = ACTIONS(542), + [sym_hex_floating_point_literal] = ACTIONS(544), + [sym_true] = ACTIONS(544), + [sym_false] = ACTIONS(544), + [sym_character_literal] = ACTIONS(542), + [sym_string_literal] = ACTIONS(544), + [sym_text_block] = ACTIONS(542), + [sym_null_literal] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_PLUS_PLUS] = ACTIONS(542), + [anon_sym_DASH_DASH] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_class] = ACTIONS(544), + [anon_sym_switch] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_case] = ACTIONS(544), + [anon_sym_default] = ACTIONS(544), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_assert] = ACTIONS(544), + [anon_sym_do] = ACTIONS(544), + [anon_sym_while] = ACTIONS(544), + [anon_sym_break] = ACTIONS(544), + [anon_sym_continue] = ACTIONS(544), + [anon_sym_return] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(544), + [anon_sym_synchronized] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(544), + [anon_sym_try] = ACTIONS(544), + [anon_sym_if] = ACTIONS(544), + [anon_sym_else] = ACTIONS(544), + [anon_sym_for] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_open] = ACTIONS(544), + [anon_sym_module] = ACTIONS(544), + [anon_sym_static] = ACTIONS(544), + [anon_sym_package] = ACTIONS(544), + [anon_sym_import] = ACTIONS(544), + [anon_sym_enum] = ACTIONS(544), + [anon_sym_public] = ACTIONS(544), + [anon_sym_protected] = ACTIONS(544), + [anon_sym_private] = ACTIONS(544), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_final] = ACTIONS(544), + [anon_sym_strictfp] = ACTIONS(544), + [anon_sym_native] = ACTIONS(544), + [anon_sym_transient] = ACTIONS(544), + [anon_sym_volatile] = ACTIONS(544), + [anon_sym_sealed] = ACTIONS(544), + [anon_sym_non_DASHsealed] = ACTIONS(542), + [anon_sym_record] = ACTIONS(544), + [anon_sym_ATinterface] = ACTIONS(542), + [anon_sym_interface] = ACTIONS(544), + [anon_sym_byte] = ACTIONS(544), + [anon_sym_short] = ACTIONS(544), + [anon_sym_int] = ACTIONS(544), + [anon_sym_long] = ACTIONS(544), + [anon_sym_char] = ACTIONS(544), + [anon_sym_float] = ACTIONS(544), + [anon_sym_double] = ACTIONS(544), + [sym_boolean_type] = ACTIONS(544), + [sym_void_type] = ACTIONS(544), + [sym_this] = ACTIONS(544), + [sym_super] = ACTIONS(544), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [151] = { - [ts_builtin_sym_end] = ACTIONS(544), - [sym_identifier] = ACTIONS(546), - [sym_decimal_integer_literal] = ACTIONS(546), - [sym_hex_integer_literal] = ACTIONS(546), - [sym_octal_integer_literal] = ACTIONS(544), - [sym_binary_integer_literal] = ACTIONS(544), - [sym_decimal_floating_point_literal] = ACTIONS(544), - [sym_hex_floating_point_literal] = ACTIONS(546), - [sym_true] = ACTIONS(546), - [sym_false] = ACTIONS(546), - [sym_character_literal] = ACTIONS(544), - [sym_string_literal] = ACTIONS(546), - [sym_text_block] = ACTIONS(544), - [sym_null_literal] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_new] = ACTIONS(546), - [anon_sym_class] = ACTIONS(546), - [anon_sym_switch] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(546), - [anon_sym_do] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_yield] = ACTIONS(546), - [anon_sym_synchronized] = ACTIONS(546), - [anon_sym_throw] = ACTIONS(546), - [anon_sym_try] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_else] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(546), - [anon_sym_open] = ACTIONS(546), - [anon_sym_module] = ACTIONS(546), - [anon_sym_static] = ACTIONS(546), - [anon_sym_package] = ACTIONS(546), - [anon_sym_import] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_public] = ACTIONS(546), - [anon_sym_protected] = ACTIONS(546), - [anon_sym_private] = ACTIONS(546), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_final] = ACTIONS(546), - [anon_sym_strictfp] = ACTIONS(546), - [anon_sym_native] = ACTIONS(546), - [anon_sym_transient] = ACTIONS(546), - [anon_sym_volatile] = ACTIONS(546), - [anon_sym_sealed] = ACTIONS(546), - [anon_sym_non_DASHsealed] = ACTIONS(544), - [anon_sym_record] = ACTIONS(546), - [anon_sym_ATinterface] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_byte] = ACTIONS(546), - [anon_sym_short] = ACTIONS(546), - [anon_sym_int] = ACTIONS(546), - [anon_sym_long] = ACTIONS(546), - [anon_sym_char] = ACTIONS(546), - [anon_sym_float] = ACTIONS(546), - [anon_sym_double] = ACTIONS(546), - [sym_boolean_type] = ACTIONS(546), - [sym_void_type] = ACTIONS(546), - [sym_this] = ACTIONS(546), - [sym_super] = ACTIONS(546), + [ts_builtin_sym_end] = ACTIONS(546), + [sym_identifier] = ACTIONS(548), + [sym_decimal_integer_literal] = ACTIONS(548), + [sym_hex_integer_literal] = ACTIONS(548), + [sym_octal_integer_literal] = ACTIONS(546), + [sym_binary_integer_literal] = ACTIONS(546), + [sym_decimal_floating_point_literal] = ACTIONS(546), + [sym_hex_floating_point_literal] = ACTIONS(548), + [sym_true] = ACTIONS(548), + [sym_false] = ACTIONS(548), + [sym_character_literal] = ACTIONS(546), + [sym_string_literal] = ACTIONS(548), + [sym_text_block] = ACTIONS(546), + [sym_null_literal] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(546), + [anon_sym_DASH_DASH] = ACTIONS(546), + [anon_sym_new] = ACTIONS(548), + [anon_sym_class] = ACTIONS(548), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_case] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(548), + [anon_sym_do] = ACTIONS(548), + [anon_sym_while] = ACTIONS(548), + [anon_sym_break] = ACTIONS(548), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_return] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(548), + [anon_sym_synchronized] = ACTIONS(548), + [anon_sym_throw] = ACTIONS(548), + [anon_sym_try] = ACTIONS(548), + [anon_sym_if] = ACTIONS(548), + [anon_sym_else] = ACTIONS(548), + [anon_sym_for] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_open] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_static] = ACTIONS(548), + [anon_sym_package] = ACTIONS(548), + [anon_sym_import] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_abstract] = ACTIONS(548), + [anon_sym_final] = ACTIONS(548), + [anon_sym_strictfp] = ACTIONS(548), + [anon_sym_native] = ACTIONS(548), + [anon_sym_transient] = ACTIONS(548), + [anon_sym_volatile] = ACTIONS(548), + [anon_sym_sealed] = ACTIONS(548), + [anon_sym_non_DASHsealed] = ACTIONS(546), + [anon_sym_record] = ACTIONS(548), + [anon_sym_ATinterface] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_byte] = ACTIONS(548), + [anon_sym_short] = ACTIONS(548), + [anon_sym_int] = ACTIONS(548), + [anon_sym_long] = ACTIONS(548), + [anon_sym_char] = ACTIONS(548), + [anon_sym_float] = ACTIONS(548), + [anon_sym_double] = ACTIONS(548), + [sym_boolean_type] = ACTIONS(548), + [sym_void_type] = ACTIONS(548), + [sym_this] = ACTIONS(548), + [sym_super] = ACTIONS(548), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [152] = { - [ts_builtin_sym_end] = ACTIONS(548), - [sym_identifier] = ACTIONS(550), - [sym_decimal_integer_literal] = ACTIONS(550), - [sym_hex_integer_literal] = ACTIONS(550), - [sym_octal_integer_literal] = ACTIONS(548), - [sym_binary_integer_literal] = ACTIONS(548), - [sym_decimal_floating_point_literal] = ACTIONS(548), - [sym_hex_floating_point_literal] = ACTIONS(550), - [sym_true] = ACTIONS(550), - [sym_false] = ACTIONS(550), - [sym_character_literal] = ACTIONS(548), - [sym_string_literal] = ACTIONS(550), - [sym_text_block] = ACTIONS(548), - [sym_null_literal] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(548), - [anon_sym_TILDE] = ACTIONS(548), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_DASH_DASH] = ACTIONS(548), - [anon_sym_new] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_switch] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_case] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_assert] = ACTIONS(550), - [anon_sym_do] = ACTIONS(550), - [anon_sym_while] = ACTIONS(550), - [anon_sym_break] = ACTIONS(550), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_return] = ACTIONS(550), - [anon_sym_yield] = ACTIONS(550), - [anon_sym_synchronized] = ACTIONS(550), - [anon_sym_throw] = ACTIONS(550), - [anon_sym_try] = ACTIONS(550), - [anon_sym_if] = ACTIONS(550), - [anon_sym_else] = ACTIONS(550), - [anon_sym_for] = ACTIONS(550), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_open] = ACTIONS(550), - [anon_sym_module] = ACTIONS(550), - [anon_sym_static] = ACTIONS(550), - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_enum] = ACTIONS(550), - [anon_sym_public] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_strictfp] = ACTIONS(550), - [anon_sym_native] = ACTIONS(550), - [anon_sym_transient] = ACTIONS(550), - [anon_sym_volatile] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_non_DASHsealed] = ACTIONS(548), - [anon_sym_record] = ACTIONS(550), - [anon_sym_ATinterface] = ACTIONS(548), - [anon_sym_interface] = ACTIONS(550), - [anon_sym_byte] = ACTIONS(550), - [anon_sym_short] = ACTIONS(550), - [anon_sym_int] = ACTIONS(550), - [anon_sym_long] = ACTIONS(550), - [anon_sym_char] = ACTIONS(550), - [anon_sym_float] = ACTIONS(550), - [anon_sym_double] = ACTIONS(550), - [sym_boolean_type] = ACTIONS(550), - [sym_void_type] = ACTIONS(550), - [sym_this] = ACTIONS(550), - [sym_super] = ACTIONS(550), + [sym__literal] = STATE(473), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(707), + [sym_marker_annotation] = STATE(707), + [sym_annotation] = STATE(707), + [sym__element_value] = STATE(1186), + [sym_element_value_array_initializer] = STATE(1186), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [153] = { - [ts_builtin_sym_end] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_decimal_integer_literal] = ACTIONS(554), - [sym_hex_integer_literal] = ACTIONS(554), - [sym_octal_integer_literal] = ACTIONS(552), - [sym_binary_integer_literal] = ACTIONS(552), - [sym_decimal_floating_point_literal] = ACTIONS(552), - [sym_hex_floating_point_literal] = ACTIONS(554), - [sym_true] = ACTIONS(554), - [sym_false] = ACTIONS(554), - [sym_character_literal] = ACTIONS(552), - [sym_string_literal] = ACTIONS(554), - [sym_text_block] = ACTIONS(552), - [sym_null_literal] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_PLUS_PLUS] = ACTIONS(552), - [anon_sym_DASH_DASH] = ACTIONS(552), - [anon_sym_new] = ACTIONS(554), - [anon_sym_class] = ACTIONS(554), - [anon_sym_switch] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_case] = ACTIONS(554), - [anon_sym_default] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(554), - [anon_sym_do] = ACTIONS(554), - [anon_sym_while] = ACTIONS(554), - [anon_sym_break] = ACTIONS(554), - [anon_sym_continue] = ACTIONS(554), - [anon_sym_return] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(554), - [anon_sym_synchronized] = ACTIONS(554), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_try] = ACTIONS(554), - [anon_sym_if] = ACTIONS(554), - [anon_sym_else] = ACTIONS(554), - [anon_sym_for] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym_open] = ACTIONS(554), - [anon_sym_module] = ACTIONS(554), - [anon_sym_static] = ACTIONS(554), - [anon_sym_package] = ACTIONS(554), - [anon_sym_import] = ACTIONS(554), - [anon_sym_enum] = ACTIONS(554), - [anon_sym_public] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(554), - [anon_sym_final] = ACTIONS(554), - [anon_sym_strictfp] = ACTIONS(554), - [anon_sym_native] = ACTIONS(554), - [anon_sym_transient] = ACTIONS(554), - [anon_sym_volatile] = ACTIONS(554), - [anon_sym_sealed] = ACTIONS(554), - [anon_sym_non_DASHsealed] = ACTIONS(552), - [anon_sym_record] = ACTIONS(554), - [anon_sym_ATinterface] = ACTIONS(552), - [anon_sym_interface] = ACTIONS(554), - [anon_sym_byte] = ACTIONS(554), - [anon_sym_short] = ACTIONS(554), - [anon_sym_int] = ACTIONS(554), - [anon_sym_long] = ACTIONS(554), - [anon_sym_char] = ACTIONS(554), - [anon_sym_float] = ACTIONS(554), - [anon_sym_double] = ACTIONS(554), - [sym_boolean_type] = ACTIONS(554), - [sym_void_type] = ACTIONS(554), - [sym_this] = ACTIONS(554), - [sym_super] = ACTIONS(554), + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [sym_decimal_integer_literal] = ACTIONS(552), + [sym_hex_integer_literal] = ACTIONS(552), + [sym_octal_integer_literal] = ACTIONS(550), + [sym_binary_integer_literal] = ACTIONS(550), + [sym_decimal_floating_point_literal] = ACTIONS(550), + [sym_hex_floating_point_literal] = ACTIONS(552), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_character_literal] = ACTIONS(550), + [sym_string_literal] = ACTIONS(552), + [sym_text_block] = ACTIONS(550), + [sym_null_literal] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_new] = ACTIONS(552), + [anon_sym_class] = ACTIONS(552), + [anon_sym_switch] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_case] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_assert] = ACTIONS(552), + [anon_sym_do] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_synchronized] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(552), + [anon_sym_try] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_open] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_package] = ACTIONS(552), + [anon_sym_import] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_abstract] = ACTIONS(552), + [anon_sym_final] = ACTIONS(552), + [anon_sym_strictfp] = ACTIONS(552), + [anon_sym_native] = ACTIONS(552), + [anon_sym_transient] = ACTIONS(552), + [anon_sym_volatile] = ACTIONS(552), + [anon_sym_sealed] = ACTIONS(552), + [anon_sym_non_DASHsealed] = ACTIONS(550), + [anon_sym_record] = ACTIONS(552), + [anon_sym_ATinterface] = ACTIONS(550), + [anon_sym_interface] = ACTIONS(552), + [anon_sym_byte] = ACTIONS(552), + [anon_sym_short] = ACTIONS(552), + [anon_sym_int] = ACTIONS(552), + [anon_sym_long] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_float] = ACTIONS(552), + [anon_sym_double] = ACTIONS(552), + [sym_boolean_type] = ACTIONS(552), + [sym_void_type] = ACTIONS(552), + [sym_this] = ACTIONS(552), + [sym_super] = ACTIONS(552), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [154] = { - [ts_builtin_sym_end] = ACTIONS(556), - [sym_identifier] = ACTIONS(558), - [sym_decimal_integer_literal] = ACTIONS(558), - [sym_hex_integer_literal] = ACTIONS(558), - [sym_octal_integer_literal] = ACTIONS(556), - [sym_binary_integer_literal] = ACTIONS(556), - [sym_decimal_floating_point_literal] = ACTIONS(556), - [sym_hex_floating_point_literal] = ACTIONS(558), - [sym_true] = ACTIONS(558), - [sym_false] = ACTIONS(558), - [sym_character_literal] = ACTIONS(556), - [sym_string_literal] = ACTIONS(558), - [sym_text_block] = ACTIONS(556), - [sym_null_literal] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_TILDE] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(556), - [anon_sym_DASH_DASH] = ACTIONS(556), - [anon_sym_new] = ACTIONS(558), - [anon_sym_class] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_case] = ACTIONS(558), - [anon_sym_default] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_assert] = ACTIONS(558), - [anon_sym_do] = ACTIONS(558), - [anon_sym_while] = ACTIONS(558), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(558), - [anon_sym_return] = ACTIONS(558), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_synchronized] = ACTIONS(558), - [anon_sym_throw] = ACTIONS(558), - [anon_sym_try] = ACTIONS(558), - [anon_sym_if] = ACTIONS(558), - [anon_sym_else] = ACTIONS(558), - [anon_sym_for] = ACTIONS(558), - [anon_sym_AT] = ACTIONS(558), - [anon_sym_open] = ACTIONS(558), - [anon_sym_module] = ACTIONS(558), - [anon_sym_static] = ACTIONS(558), - [anon_sym_package] = ACTIONS(558), - [anon_sym_import] = ACTIONS(558), - [anon_sym_enum] = ACTIONS(558), - [anon_sym_public] = ACTIONS(558), - [anon_sym_protected] = ACTIONS(558), - [anon_sym_private] = ACTIONS(558), - [anon_sym_abstract] = ACTIONS(558), - [anon_sym_final] = ACTIONS(558), - [anon_sym_strictfp] = ACTIONS(558), - [anon_sym_native] = ACTIONS(558), - [anon_sym_transient] = ACTIONS(558), - [anon_sym_volatile] = ACTIONS(558), - [anon_sym_sealed] = ACTIONS(558), - [anon_sym_non_DASHsealed] = ACTIONS(556), - [anon_sym_record] = ACTIONS(558), - [anon_sym_ATinterface] = ACTIONS(556), - [anon_sym_interface] = ACTIONS(558), - [anon_sym_byte] = ACTIONS(558), - [anon_sym_short] = ACTIONS(558), - [anon_sym_int] = ACTIONS(558), - [anon_sym_long] = ACTIONS(558), - [anon_sym_char] = ACTIONS(558), - [anon_sym_float] = ACTIONS(558), - [anon_sym_double] = ACTIONS(558), - [sym_boolean_type] = ACTIONS(558), - [sym_void_type] = ACTIONS(558), - [sym_this] = ACTIONS(558), - [sym_super] = ACTIONS(558), + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [sym_decimal_integer_literal] = ACTIONS(556), + [sym_hex_integer_literal] = ACTIONS(556), + [sym_octal_integer_literal] = ACTIONS(554), + [sym_binary_integer_literal] = ACTIONS(554), + [sym_decimal_floating_point_literal] = ACTIONS(554), + [sym_hex_floating_point_literal] = ACTIONS(556), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_character_literal] = ACTIONS(554), + [sym_string_literal] = ACTIONS(556), + [sym_text_block] = ACTIONS(554), + [sym_null_literal] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_new] = ACTIONS(556), + [anon_sym_class] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_case] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_do] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_synchronized] = ACTIONS(556), + [anon_sym_throw] = ACTIONS(556), + [anon_sym_try] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_open] = ACTIONS(556), + [anon_sym_module] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_package] = ACTIONS(556), + [anon_sym_import] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_public] = ACTIONS(556), + [anon_sym_protected] = ACTIONS(556), + [anon_sym_private] = ACTIONS(556), + [anon_sym_abstract] = ACTIONS(556), + [anon_sym_final] = ACTIONS(556), + [anon_sym_strictfp] = ACTIONS(556), + [anon_sym_native] = ACTIONS(556), + [anon_sym_transient] = ACTIONS(556), + [anon_sym_volatile] = ACTIONS(556), + [anon_sym_sealed] = ACTIONS(556), + [anon_sym_non_DASHsealed] = ACTIONS(554), + [anon_sym_record] = ACTIONS(556), + [anon_sym_ATinterface] = ACTIONS(554), + [anon_sym_interface] = ACTIONS(556), + [anon_sym_byte] = ACTIONS(556), + [anon_sym_short] = ACTIONS(556), + [anon_sym_int] = ACTIONS(556), + [anon_sym_long] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_float] = ACTIONS(556), + [anon_sym_double] = ACTIONS(556), + [sym_boolean_type] = ACTIONS(556), + [sym_void_type] = ACTIONS(556), + [sym_this] = ACTIONS(556), + [sym_super] = ACTIONS(556), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [155] = { - [ts_builtin_sym_end] = ACTIONS(560), - [sym_identifier] = ACTIONS(562), - [sym_decimal_integer_literal] = ACTIONS(562), - [sym_hex_integer_literal] = ACTIONS(562), - [sym_octal_integer_literal] = ACTIONS(560), - [sym_binary_integer_literal] = ACTIONS(560), - [sym_decimal_floating_point_literal] = ACTIONS(560), - [sym_hex_floating_point_literal] = ACTIONS(562), - [sym_true] = ACTIONS(562), - [sym_false] = ACTIONS(562), - [sym_character_literal] = ACTIONS(560), - [sym_string_literal] = ACTIONS(562), - [sym_text_block] = ACTIONS(560), - [sym_null_literal] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_PLUS_PLUS] = ACTIONS(560), - [anon_sym_DASH_DASH] = ACTIONS(560), - [anon_sym_new] = ACTIONS(562), - [anon_sym_class] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(562), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_assert] = ACTIONS(562), - [anon_sym_do] = ACTIONS(562), - [anon_sym_while] = ACTIONS(562), - [anon_sym_break] = ACTIONS(562), - [anon_sym_continue] = ACTIONS(562), - [anon_sym_return] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(562), - [anon_sym_synchronized] = ACTIONS(562), - [anon_sym_throw] = ACTIONS(562), - [anon_sym_try] = ACTIONS(562), - [anon_sym_if] = ACTIONS(562), - [anon_sym_else] = ACTIONS(562), - [anon_sym_for] = ACTIONS(562), - [anon_sym_AT] = ACTIONS(562), - [anon_sym_open] = ACTIONS(562), - [anon_sym_module] = ACTIONS(562), - [anon_sym_static] = ACTIONS(562), - [anon_sym_package] = ACTIONS(562), - [anon_sym_import] = ACTIONS(562), - [anon_sym_enum] = ACTIONS(562), - [anon_sym_public] = ACTIONS(562), - [anon_sym_protected] = ACTIONS(562), - [anon_sym_private] = ACTIONS(562), - [anon_sym_abstract] = ACTIONS(562), - [anon_sym_final] = ACTIONS(562), - [anon_sym_strictfp] = ACTIONS(562), - [anon_sym_native] = ACTIONS(562), - [anon_sym_transient] = ACTIONS(562), - [anon_sym_volatile] = ACTIONS(562), - [anon_sym_sealed] = ACTIONS(562), - [anon_sym_non_DASHsealed] = ACTIONS(560), - [anon_sym_record] = ACTIONS(562), - [anon_sym_ATinterface] = ACTIONS(560), - [anon_sym_interface] = ACTIONS(562), - [anon_sym_byte] = ACTIONS(562), - [anon_sym_short] = ACTIONS(562), - [anon_sym_int] = ACTIONS(562), - [anon_sym_long] = ACTIONS(562), - [anon_sym_char] = ACTIONS(562), - [anon_sym_float] = ACTIONS(562), - [anon_sym_double] = ACTIONS(562), - [sym_boolean_type] = ACTIONS(562), - [sym_void_type] = ACTIONS(562), - [sym_this] = ACTIONS(562), - [sym_super] = ACTIONS(562), + [ts_builtin_sym_end] = ACTIONS(558), + [sym_identifier] = ACTIONS(560), + [sym_decimal_integer_literal] = ACTIONS(560), + [sym_hex_integer_literal] = ACTIONS(560), + [sym_octal_integer_literal] = ACTIONS(558), + [sym_binary_integer_literal] = ACTIONS(558), + [sym_decimal_floating_point_literal] = ACTIONS(558), + [sym_hex_floating_point_literal] = ACTIONS(560), + [sym_true] = ACTIONS(560), + [sym_false] = ACTIONS(560), + [sym_character_literal] = ACTIONS(558), + [sym_string_literal] = ACTIONS(560), + [sym_text_block] = ACTIONS(558), + [sym_null_literal] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(558), + [anon_sym_new] = ACTIONS(560), + [anon_sym_class] = ACTIONS(560), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_assert] = ACTIONS(560), + [anon_sym_do] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(560), + [anon_sym_synchronized] = ACTIONS(560), + [anon_sym_throw] = ACTIONS(560), + [anon_sym_try] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_else] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_open] = ACTIONS(560), + [anon_sym_module] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_package] = ACTIONS(560), + [anon_sym_import] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_public] = ACTIONS(560), + [anon_sym_protected] = ACTIONS(560), + [anon_sym_private] = ACTIONS(560), + [anon_sym_abstract] = ACTIONS(560), + [anon_sym_final] = ACTIONS(560), + [anon_sym_strictfp] = ACTIONS(560), + [anon_sym_native] = ACTIONS(560), + [anon_sym_transient] = ACTIONS(560), + [anon_sym_volatile] = ACTIONS(560), + [anon_sym_sealed] = ACTIONS(560), + [anon_sym_non_DASHsealed] = ACTIONS(558), + [anon_sym_record] = ACTIONS(560), + [anon_sym_ATinterface] = ACTIONS(558), + [anon_sym_interface] = ACTIONS(560), + [anon_sym_byte] = ACTIONS(560), + [anon_sym_short] = ACTIONS(560), + [anon_sym_int] = ACTIONS(560), + [anon_sym_long] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_float] = ACTIONS(560), + [anon_sym_double] = ACTIONS(560), + [sym_boolean_type] = ACTIONS(560), + [sym_void_type] = ACTIONS(560), + [sym_this] = ACTIONS(560), + [sym_super] = ACTIONS(560), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [156] = { - [ts_builtin_sym_end] = ACTIONS(564), - [sym_identifier] = ACTIONS(566), - [sym_decimal_integer_literal] = ACTIONS(566), - [sym_hex_integer_literal] = ACTIONS(566), - [sym_octal_integer_literal] = ACTIONS(564), - [sym_binary_integer_literal] = ACTIONS(564), - [sym_decimal_floating_point_literal] = ACTIONS(564), - [sym_hex_floating_point_literal] = ACTIONS(566), - [sym_true] = ACTIONS(566), - [sym_false] = ACTIONS(566), - [sym_character_literal] = ACTIONS(564), - [sym_string_literal] = ACTIONS(566), - [sym_text_block] = ACTIONS(564), - [sym_null_literal] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_class] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_case] = ACTIONS(566), - [anon_sym_default] = ACTIONS(566), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_assert] = ACTIONS(566), - [anon_sym_do] = ACTIONS(566), - [anon_sym_while] = ACTIONS(566), - [anon_sym_break] = ACTIONS(566), - [anon_sym_continue] = ACTIONS(566), - [anon_sym_return] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(566), - [anon_sym_synchronized] = ACTIONS(566), - [anon_sym_throw] = ACTIONS(566), - [anon_sym_try] = ACTIONS(566), - [anon_sym_if] = ACTIONS(566), - [anon_sym_else] = ACTIONS(566), - [anon_sym_for] = ACTIONS(566), - [anon_sym_AT] = ACTIONS(566), - [anon_sym_open] = ACTIONS(566), - [anon_sym_module] = ACTIONS(566), - [anon_sym_static] = ACTIONS(566), - [anon_sym_package] = ACTIONS(566), - [anon_sym_import] = ACTIONS(566), - [anon_sym_enum] = ACTIONS(566), - [anon_sym_public] = ACTIONS(566), - [anon_sym_protected] = ACTIONS(566), - [anon_sym_private] = ACTIONS(566), - [anon_sym_abstract] = ACTIONS(566), - [anon_sym_final] = ACTIONS(566), - [anon_sym_strictfp] = ACTIONS(566), - [anon_sym_native] = ACTIONS(566), - [anon_sym_transient] = ACTIONS(566), - [anon_sym_volatile] = ACTIONS(566), - [anon_sym_sealed] = ACTIONS(566), - [anon_sym_non_DASHsealed] = ACTIONS(564), - [anon_sym_record] = ACTIONS(566), - [anon_sym_ATinterface] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(566), - [anon_sym_byte] = ACTIONS(566), - [anon_sym_short] = ACTIONS(566), - [anon_sym_int] = ACTIONS(566), - [anon_sym_long] = ACTIONS(566), - [anon_sym_char] = ACTIONS(566), - [anon_sym_float] = ACTIONS(566), - [anon_sym_double] = ACTIONS(566), - [sym_boolean_type] = ACTIONS(566), - [sym_void_type] = ACTIONS(566), - [sym_this] = ACTIONS(566), - [sym_super] = ACTIONS(566), + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [sym_decimal_integer_literal] = ACTIONS(564), + [sym_hex_integer_literal] = ACTIONS(564), + [sym_octal_integer_literal] = ACTIONS(562), + [sym_binary_integer_literal] = ACTIONS(562), + [sym_decimal_floating_point_literal] = ACTIONS(562), + [sym_hex_floating_point_literal] = ACTIONS(564), + [sym_true] = ACTIONS(564), + [sym_false] = ACTIONS(564), + [sym_character_literal] = ACTIONS(562), + [sym_string_literal] = ACTIONS(564), + [sym_text_block] = ACTIONS(562), + [sym_null_literal] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(562), + [anon_sym_new] = ACTIONS(564), + [anon_sym_class] = ACTIONS(564), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_case] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_assert] = ACTIONS(564), + [anon_sym_do] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_synchronized] = ACTIONS(564), + [anon_sym_throw] = ACTIONS(564), + [anon_sym_try] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_else] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_open] = ACTIONS(564), + [anon_sym_module] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_package] = ACTIONS(564), + [anon_sym_import] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_public] = ACTIONS(564), + [anon_sym_protected] = ACTIONS(564), + [anon_sym_private] = ACTIONS(564), + [anon_sym_abstract] = ACTIONS(564), + [anon_sym_final] = ACTIONS(564), + [anon_sym_strictfp] = ACTIONS(564), + [anon_sym_native] = ACTIONS(564), + [anon_sym_transient] = ACTIONS(564), + [anon_sym_volatile] = ACTIONS(564), + [anon_sym_sealed] = ACTIONS(564), + [anon_sym_non_DASHsealed] = ACTIONS(562), + [anon_sym_record] = ACTIONS(564), + [anon_sym_ATinterface] = ACTIONS(562), + [anon_sym_interface] = ACTIONS(564), + [anon_sym_byte] = ACTIONS(564), + [anon_sym_short] = ACTIONS(564), + [anon_sym_int] = ACTIONS(564), + [anon_sym_long] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_float] = ACTIONS(564), + [anon_sym_double] = ACTIONS(564), + [sym_boolean_type] = ACTIONS(564), + [sym_void_type] = ACTIONS(564), + [sym_this] = ACTIONS(564), + [sym_super] = ACTIONS(564), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(568), - [sym_identifier] = ACTIONS(570), - [sym_decimal_integer_literal] = ACTIONS(570), - [sym_hex_integer_literal] = ACTIONS(570), - [sym_octal_integer_literal] = ACTIONS(568), - [sym_binary_integer_literal] = ACTIONS(568), - [sym_decimal_floating_point_literal] = ACTIONS(568), - [sym_hex_floating_point_literal] = ACTIONS(570), - [sym_true] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [sym_character_literal] = ACTIONS(568), - [sym_string_literal] = ACTIONS(570), - [sym_text_block] = ACTIONS(568), - [sym_null_literal] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_TILDE] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_class] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_assert] = ACTIONS(570), - [anon_sym_do] = ACTIONS(570), - [anon_sym_while] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [anon_sym_continue] = ACTIONS(570), - [anon_sym_return] = ACTIONS(570), - [anon_sym_yield] = ACTIONS(570), - [anon_sym_synchronized] = ACTIONS(570), - [anon_sym_throw] = ACTIONS(570), - [anon_sym_try] = ACTIONS(570), - [anon_sym_if] = ACTIONS(570), - [anon_sym_else] = ACTIONS(570), - [anon_sym_for] = ACTIONS(570), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_open] = ACTIONS(570), - [anon_sym_module] = ACTIONS(570), - [anon_sym_static] = ACTIONS(570), - [anon_sym_package] = ACTIONS(570), - [anon_sym_import] = ACTIONS(570), - [anon_sym_enum] = ACTIONS(570), - [anon_sym_public] = ACTIONS(570), - [anon_sym_protected] = ACTIONS(570), - [anon_sym_private] = ACTIONS(570), - [anon_sym_abstract] = ACTIONS(570), - [anon_sym_final] = ACTIONS(570), - [anon_sym_strictfp] = ACTIONS(570), - [anon_sym_native] = ACTIONS(570), - [anon_sym_transient] = ACTIONS(570), - [anon_sym_volatile] = ACTIONS(570), - [anon_sym_sealed] = ACTIONS(570), - [anon_sym_non_DASHsealed] = ACTIONS(568), - [anon_sym_record] = ACTIONS(570), - [anon_sym_ATinterface] = ACTIONS(568), - [anon_sym_interface] = ACTIONS(570), - [anon_sym_byte] = ACTIONS(570), - [anon_sym_short] = ACTIONS(570), - [anon_sym_int] = ACTIONS(570), - [anon_sym_long] = ACTIONS(570), - [anon_sym_char] = ACTIONS(570), - [anon_sym_float] = ACTIONS(570), - [anon_sym_double] = ACTIONS(570), - [sym_boolean_type] = ACTIONS(570), - [sym_void_type] = ACTIONS(570), - [sym_this] = ACTIONS(570), - [sym_super] = ACTIONS(570), + [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(566), + [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), + [sym_string_literal] = ACTIONS(568), + [sym_text_block] = 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_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_RBRACE] = 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_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_final] = 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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(572), - [sym_identifier] = ACTIONS(574), - [sym_decimal_integer_literal] = ACTIONS(574), - [sym_hex_integer_literal] = ACTIONS(574), - [sym_octal_integer_literal] = ACTIONS(572), - [sym_binary_integer_literal] = ACTIONS(572), - [sym_decimal_floating_point_literal] = ACTIONS(572), - [sym_hex_floating_point_literal] = ACTIONS(574), - [sym_true] = ACTIONS(574), - [sym_false] = ACTIONS(574), - [sym_character_literal] = ACTIONS(572), - [sym_string_literal] = ACTIONS(574), - [sym_text_block] = ACTIONS(572), - [sym_null_literal] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(572), - [anon_sym_DASH_DASH] = ACTIONS(572), - [anon_sym_new] = ACTIONS(574), - [anon_sym_class] = ACTIONS(574), - [anon_sym_switch] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_case] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_assert] = ACTIONS(574), - [anon_sym_do] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(574), - [anon_sym_synchronized] = ACTIONS(574), - [anon_sym_throw] = ACTIONS(574), - [anon_sym_try] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_else] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_AT] = ACTIONS(574), - [anon_sym_open] = ACTIONS(574), - [anon_sym_module] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_package] = ACTIONS(574), - [anon_sym_import] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_public] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(574), - [anon_sym_final] = ACTIONS(574), - [anon_sym_strictfp] = ACTIONS(574), - [anon_sym_native] = ACTIONS(574), - [anon_sym_transient] = ACTIONS(574), - [anon_sym_volatile] = ACTIONS(574), - [anon_sym_sealed] = ACTIONS(574), - [anon_sym_non_DASHsealed] = ACTIONS(572), - [anon_sym_record] = ACTIONS(574), - [anon_sym_ATinterface] = ACTIONS(572), - [anon_sym_interface] = ACTIONS(574), - [anon_sym_byte] = ACTIONS(574), - [anon_sym_short] = ACTIONS(574), - [anon_sym_int] = ACTIONS(574), - [anon_sym_long] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_float] = ACTIONS(574), - [anon_sym_double] = ACTIONS(574), - [sym_boolean_type] = ACTIONS(574), - [sym_void_type] = ACTIONS(574), - [sym_this] = ACTIONS(574), - [sym_super] = ACTIONS(574), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(572), + [sym_hex_integer_literal] = ACTIONS(572), + [sym_octal_integer_literal] = ACTIONS(570), + [sym_binary_integer_literal] = ACTIONS(570), + [sym_decimal_floating_point_literal] = ACTIONS(570), + [sym_hex_floating_point_literal] = ACTIONS(572), + [sym_true] = ACTIONS(572), + [sym_false] = ACTIONS(572), + [sym_character_literal] = ACTIONS(570), + [sym_string_literal] = ACTIONS(572), + [sym_text_block] = ACTIONS(570), + [sym_null_literal] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS_PLUS] = ACTIONS(570), + [anon_sym_DASH_DASH] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(572), + [anon_sym_switch] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_assert] = ACTIONS(572), + [anon_sym_do] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_synchronized] = ACTIONS(572), + [anon_sym_throw] = ACTIONS(572), + [anon_sym_try] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_open] = ACTIONS(572), + [anon_sym_module] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_package] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_public] = ACTIONS(572), + [anon_sym_protected] = ACTIONS(572), + [anon_sym_private] = ACTIONS(572), + [anon_sym_abstract] = ACTIONS(572), + [anon_sym_final] = ACTIONS(572), + [anon_sym_strictfp] = ACTIONS(572), + [anon_sym_native] = ACTIONS(572), + [anon_sym_transient] = ACTIONS(572), + [anon_sym_volatile] = ACTIONS(572), + [anon_sym_sealed] = ACTIONS(572), + [anon_sym_non_DASHsealed] = ACTIONS(570), + [anon_sym_record] = ACTIONS(572), + [anon_sym_ATinterface] = ACTIONS(570), + [anon_sym_interface] = ACTIONS(572), + [anon_sym_byte] = ACTIONS(572), + [anon_sym_short] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_long] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_double] = ACTIONS(572), + [sym_boolean_type] = ACTIONS(572), + [sym_void_type] = ACTIONS(572), + [sym_this] = ACTIONS(572), + [sym_super] = ACTIONS(572), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(576), - [sym_identifier] = ACTIONS(578), - [sym_decimal_integer_literal] = ACTIONS(578), - [sym_hex_integer_literal] = ACTIONS(578), - [sym_octal_integer_literal] = ACTIONS(576), - [sym_binary_integer_literal] = ACTIONS(576), - [sym_decimal_floating_point_literal] = ACTIONS(576), - [sym_hex_floating_point_literal] = ACTIONS(578), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_character_literal] = ACTIONS(576), - [sym_string_literal] = ACTIONS(578), - [sym_text_block] = ACTIONS(576), - [sym_null_literal] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_PLUS_PLUS] = ACTIONS(576), - [anon_sym_DASH_DASH] = ACTIONS(576), - [anon_sym_new] = ACTIONS(578), - [anon_sym_class] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_case] = ACTIONS(578), - [anon_sym_default] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_assert] = ACTIONS(578), - [anon_sym_do] = ACTIONS(578), - [anon_sym_while] = ACTIONS(578), - [anon_sym_break] = ACTIONS(578), - [anon_sym_continue] = ACTIONS(578), - [anon_sym_return] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(578), - [anon_sym_synchronized] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(578), - [anon_sym_try] = ACTIONS(578), - [anon_sym_if] = ACTIONS(578), - [anon_sym_else] = ACTIONS(578), - [anon_sym_for] = ACTIONS(578), - [anon_sym_AT] = ACTIONS(578), - [anon_sym_open] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_static] = ACTIONS(578), - [anon_sym_package] = ACTIONS(578), - [anon_sym_import] = ACTIONS(578), - [anon_sym_enum] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_abstract] = ACTIONS(578), - [anon_sym_final] = ACTIONS(578), - [anon_sym_strictfp] = ACTIONS(578), - [anon_sym_native] = ACTIONS(578), - [anon_sym_transient] = ACTIONS(578), - [anon_sym_volatile] = ACTIONS(578), - [anon_sym_sealed] = ACTIONS(578), - [anon_sym_non_DASHsealed] = ACTIONS(576), - [anon_sym_record] = ACTIONS(578), - [anon_sym_ATinterface] = ACTIONS(576), - [anon_sym_interface] = ACTIONS(578), - [anon_sym_byte] = ACTIONS(578), - [anon_sym_short] = ACTIONS(578), - [anon_sym_int] = ACTIONS(578), - [anon_sym_long] = ACTIONS(578), - [anon_sym_char] = ACTIONS(578), - [anon_sym_float] = ACTIONS(578), - [anon_sym_double] = ACTIONS(578), - [sym_boolean_type] = ACTIONS(578), - [sym_void_type] = ACTIONS(578), - [sym_this] = ACTIONS(578), - [sym_super] = ACTIONS(578), + [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(574), + [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), + [sym_string_literal] = ACTIONS(576), + [sym_text_block] = 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_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_RBRACE] = 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_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_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_final] = 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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(580), - [sym_identifier] = ACTIONS(582), - [sym_decimal_integer_literal] = ACTIONS(582), - [sym_hex_integer_literal] = ACTIONS(582), - [sym_octal_integer_literal] = ACTIONS(580), - [sym_binary_integer_literal] = ACTIONS(580), - [sym_decimal_floating_point_literal] = ACTIONS(580), - [sym_hex_floating_point_literal] = ACTIONS(582), - [sym_true] = ACTIONS(582), - [sym_false] = ACTIONS(582), - [sym_character_literal] = ACTIONS(580), - [sym_string_literal] = ACTIONS(582), - [sym_text_block] = ACTIONS(580), - [sym_null_literal] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(580), - [anon_sym_DASH_DASH] = ACTIONS(580), - [anon_sym_new] = ACTIONS(582), - [anon_sym_class] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_do] = ACTIONS(582), - [anon_sym_while] = ACTIONS(582), - [anon_sym_break] = ACTIONS(582), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_return] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_synchronized] = ACTIONS(582), - [anon_sym_throw] = ACTIONS(582), - [anon_sym_try] = ACTIONS(582), - [anon_sym_if] = ACTIONS(582), - [anon_sym_else] = ACTIONS(582), - [anon_sym_for] = ACTIONS(582), - [anon_sym_AT] = ACTIONS(582), - [anon_sym_open] = ACTIONS(582), - [anon_sym_module] = ACTIONS(582), - [anon_sym_static] = ACTIONS(582), - [anon_sym_package] = ACTIONS(582), - [anon_sym_import] = ACTIONS(582), - [anon_sym_enum] = ACTIONS(582), - [anon_sym_public] = ACTIONS(582), - [anon_sym_protected] = ACTIONS(582), - [anon_sym_private] = ACTIONS(582), - [anon_sym_abstract] = ACTIONS(582), - [anon_sym_final] = ACTIONS(582), - [anon_sym_strictfp] = ACTIONS(582), - [anon_sym_native] = ACTIONS(582), - [anon_sym_transient] = ACTIONS(582), - [anon_sym_volatile] = ACTIONS(582), - [anon_sym_sealed] = ACTIONS(582), - [anon_sym_non_DASHsealed] = ACTIONS(580), - [anon_sym_record] = ACTIONS(582), - [anon_sym_ATinterface] = ACTIONS(580), - [anon_sym_interface] = ACTIONS(582), - [anon_sym_byte] = ACTIONS(582), - [anon_sym_short] = ACTIONS(582), - [anon_sym_int] = ACTIONS(582), - [anon_sym_long] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_float] = ACTIONS(582), - [anon_sym_double] = ACTIONS(582), - [sym_boolean_type] = ACTIONS(582), - [sym_void_type] = ACTIONS(582), - [sym_this] = ACTIONS(582), - [sym_super] = ACTIONS(582), + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [sym_decimal_integer_literal] = ACTIONS(580), + [sym_hex_integer_literal] = ACTIONS(580), + [sym_octal_integer_literal] = ACTIONS(578), + [sym_binary_integer_literal] = ACTIONS(578), + [sym_decimal_floating_point_literal] = ACTIONS(578), + [sym_hex_floating_point_literal] = ACTIONS(580), + [sym_true] = ACTIONS(580), + [sym_false] = ACTIONS(580), + [sym_character_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_text_block] = ACTIONS(578), + [sym_null_literal] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS_PLUS] = ACTIONS(578), + [anon_sym_DASH_DASH] = ACTIONS(578), + [anon_sym_new] = ACTIONS(580), + [anon_sym_class] = ACTIONS(580), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_case] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_assert] = ACTIONS(580), + [anon_sym_do] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_synchronized] = ACTIONS(580), + [anon_sym_throw] = ACTIONS(580), + [anon_sym_try] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_else] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_open] = ACTIONS(580), + [anon_sym_module] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_package] = ACTIONS(580), + [anon_sym_import] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_public] = ACTIONS(580), + [anon_sym_protected] = ACTIONS(580), + [anon_sym_private] = ACTIONS(580), + [anon_sym_abstract] = ACTIONS(580), + [anon_sym_final] = ACTIONS(580), + [anon_sym_strictfp] = ACTIONS(580), + [anon_sym_native] = ACTIONS(580), + [anon_sym_transient] = ACTIONS(580), + [anon_sym_volatile] = ACTIONS(580), + [anon_sym_sealed] = ACTIONS(580), + [anon_sym_non_DASHsealed] = ACTIONS(578), + [anon_sym_record] = ACTIONS(580), + [anon_sym_ATinterface] = ACTIONS(578), + [anon_sym_interface] = ACTIONS(580), + [anon_sym_byte] = ACTIONS(580), + [anon_sym_short] = ACTIONS(580), + [anon_sym_int] = ACTIONS(580), + [anon_sym_long] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_float] = ACTIONS(580), + [anon_sym_double] = ACTIONS(580), + [sym_boolean_type] = ACTIONS(580), + [sym_void_type] = ACTIONS(580), + [sym_this] = ACTIONS(580), + [sym_super] = ACTIONS(580), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [161] = { - [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(584), - [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), - [sym_string_literal] = ACTIONS(586), - [sym_text_block] = 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_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_RBRACE] = 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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [sym_decimal_integer_literal] = ACTIONS(584), + [sym_hex_integer_literal] = ACTIONS(584), + [sym_octal_integer_literal] = ACTIONS(582), + [sym_binary_integer_literal] = ACTIONS(582), + [sym_decimal_floating_point_literal] = ACTIONS(582), + [sym_hex_floating_point_literal] = ACTIONS(584), + [sym_true] = ACTIONS(584), + [sym_false] = ACTIONS(584), + [sym_character_literal] = ACTIONS(582), + [sym_string_literal] = ACTIONS(584), + [sym_text_block] = ACTIONS(582), + [sym_null_literal] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_new] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_assert] = ACTIONS(584), + [anon_sym_do] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_yield] = ACTIONS(584), + [anon_sym_synchronized] = ACTIONS(584), + [anon_sym_throw] = ACTIONS(584), + [anon_sym_try] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_else] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_open] = ACTIONS(584), + [anon_sym_module] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_public] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_strictfp] = ACTIONS(584), + [anon_sym_native] = ACTIONS(584), + [anon_sym_transient] = ACTIONS(584), + [anon_sym_volatile] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_non_DASHsealed] = ACTIONS(582), + [anon_sym_record] = ACTIONS(584), + [anon_sym_ATinterface] = ACTIONS(582), + [anon_sym_interface] = ACTIONS(584), + [anon_sym_byte] = ACTIONS(584), + [anon_sym_short] = ACTIONS(584), + [anon_sym_int] = ACTIONS(584), + [anon_sym_long] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_float] = ACTIONS(584), + [anon_sym_double] = ACTIONS(584), + [sym_boolean_type] = ACTIONS(584), + [sym_void_type] = ACTIONS(584), + [sym_this] = ACTIONS(584), + [sym_super] = ACTIONS(584), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [sym_decimal_integer_literal] = ACTIONS(590), - [sym_hex_integer_literal] = ACTIONS(590), - [sym_octal_integer_literal] = ACTIONS(588), - [sym_binary_integer_literal] = ACTIONS(588), - [sym_decimal_floating_point_literal] = ACTIONS(588), - [sym_hex_floating_point_literal] = ACTIONS(590), - [sym_true] = ACTIONS(590), - [sym_false] = ACTIONS(590), - [sym_character_literal] = ACTIONS(588), - [sym_string_literal] = ACTIONS(590), - [sym_text_block] = ACTIONS(588), - [sym_null_literal] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_new] = ACTIONS(590), - [anon_sym_class] = ACTIONS(590), - [anon_sym_switch] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_case] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_do] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_synchronized] = ACTIONS(590), - [anon_sym_throw] = ACTIONS(590), - [anon_sym_try] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_else] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_open] = ACTIONS(590), - [anon_sym_module] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_package] = ACTIONS(590), - [anon_sym_import] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_public] = ACTIONS(590), - [anon_sym_protected] = ACTIONS(590), - [anon_sym_private] = ACTIONS(590), - [anon_sym_abstract] = ACTIONS(590), - [anon_sym_final] = ACTIONS(590), - [anon_sym_strictfp] = ACTIONS(590), - [anon_sym_native] = ACTIONS(590), - [anon_sym_transient] = ACTIONS(590), - [anon_sym_volatile] = ACTIONS(590), - [anon_sym_sealed] = ACTIONS(590), - [anon_sym_non_DASHsealed] = ACTIONS(588), - [anon_sym_record] = ACTIONS(590), - [anon_sym_ATinterface] = ACTIONS(588), - [anon_sym_interface] = ACTIONS(590), - [anon_sym_byte] = ACTIONS(590), - [anon_sym_short] = ACTIONS(590), - [anon_sym_int] = ACTIONS(590), - [anon_sym_long] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_float] = ACTIONS(590), - [anon_sym_double] = ACTIONS(590), - [sym_boolean_type] = ACTIONS(590), - [sym_void_type] = ACTIONS(590), - [sym_this] = ACTIONS(590), - [sym_super] = ACTIONS(590), + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_decimal_integer_literal] = ACTIONS(588), + [sym_hex_integer_literal] = ACTIONS(588), + [sym_octal_integer_literal] = ACTIONS(586), + [sym_binary_integer_literal] = ACTIONS(586), + [sym_decimal_floating_point_literal] = ACTIONS(586), + [sym_hex_floating_point_literal] = ACTIONS(588), + [sym_true] = ACTIONS(588), + [sym_false] = ACTIONS(588), + [sym_character_literal] = ACTIONS(586), + [sym_string_literal] = ACTIONS(588), + [sym_text_block] = ACTIONS(586), + [sym_null_literal] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_TILDE] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_new] = ACTIONS(588), + [anon_sym_class] = ACTIONS(588), + [anon_sym_switch] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(588), + [anon_sym_do] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_synchronized] = ACTIONS(588), + [anon_sym_throw] = ACTIONS(588), + [anon_sym_try] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_else] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_open] = ACTIONS(588), + [anon_sym_module] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_package] = ACTIONS(588), + [anon_sym_import] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_public] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(588), + [anon_sym_final] = ACTIONS(588), + [anon_sym_strictfp] = ACTIONS(588), + [anon_sym_native] = ACTIONS(588), + [anon_sym_transient] = ACTIONS(588), + [anon_sym_volatile] = ACTIONS(588), + [anon_sym_sealed] = ACTIONS(588), + [anon_sym_non_DASHsealed] = ACTIONS(586), + [anon_sym_record] = ACTIONS(588), + [anon_sym_ATinterface] = ACTIONS(586), + [anon_sym_interface] = ACTIONS(588), + [anon_sym_byte] = ACTIONS(588), + [anon_sym_short] = ACTIONS(588), + [anon_sym_int] = ACTIONS(588), + [anon_sym_long] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_float] = ACTIONS(588), + [anon_sym_double] = ACTIONS(588), + [sym_boolean_type] = ACTIONS(588), + [sym_void_type] = ACTIONS(588), + [sym_this] = ACTIONS(588), + [sym_super] = ACTIONS(588), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [163] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym_array_initializer] = STATE(1176), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { [ts_builtin_sym_end] = ACTIONS(592), [sym_identifier] = ACTIONS(594), [sym_decimal_integer_literal] = ACTIONS(594), @@ -25852,7 +25936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [164] = { + [165] = { [ts_builtin_sym_end] = ACTIONS(596), [sym_identifier] = ACTIONS(598), [sym_decimal_integer_literal] = ACTIONS(598), @@ -25931,7 +26015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [165] = { + [166] = { [ts_builtin_sym_end] = ACTIONS(600), [sym_identifier] = ACTIONS(602), [sym_decimal_integer_literal] = ACTIONS(602), @@ -26010,7 +26094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [166] = { + [167] = { [ts_builtin_sym_end] = ACTIONS(604), [sym_identifier] = ACTIONS(606), [sym_decimal_integer_literal] = ACTIONS(606), @@ -26089,85 +26173,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(696), - [sym_marker_annotation] = STATE(696), - [sym_annotation] = STATE(696), - [sym__element_value] = STATE(1131), - [sym_element_value_array_initializer] = STATE(1131), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [168] = { [ts_builtin_sym_end] = ACTIONS(608), [sym_identifier] = ACTIONS(610), @@ -26643,43 +26648,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [174] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(589), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym_array_initializer] = STATE(1153), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [sym_decimal_integer_literal] = ACTIONS(634), + [sym_hex_integer_literal] = ACTIONS(634), + [sym_octal_integer_literal] = ACTIONS(632), + [sym_binary_integer_literal] = ACTIONS(632), + [sym_decimal_floating_point_literal] = ACTIONS(632), + [sym_hex_floating_point_literal] = ACTIONS(634), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_character_literal] = ACTIONS(632), + [sym_string_literal] = ACTIONS(634), + [sym_text_block] = ACTIONS(632), + [sym_null_literal] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LT] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_PLUS_PLUS] = ACTIONS(632), + [anon_sym_DASH_DASH] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), + [anon_sym_class] = ACTIONS(634), + [anon_sym_switch] = ACTIONS(634), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_case] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_assert] = ACTIONS(634), + [anon_sym_do] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_synchronized] = ACTIONS(634), + [anon_sym_throw] = ACTIONS(634), + [anon_sym_try] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_else] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(634), + [anon_sym_open] = ACTIONS(634), + [anon_sym_module] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_package] = ACTIONS(634), + [anon_sym_import] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_public] = ACTIONS(634), + [anon_sym_protected] = ACTIONS(634), + [anon_sym_private] = ACTIONS(634), + [anon_sym_abstract] = ACTIONS(634), + [anon_sym_final] = ACTIONS(634), + [anon_sym_strictfp] = ACTIONS(634), + [anon_sym_native] = ACTIONS(634), + [anon_sym_transient] = ACTIONS(634), + [anon_sym_volatile] = ACTIONS(634), + [anon_sym_sealed] = ACTIONS(634), + [anon_sym_non_DASHsealed] = ACTIONS(632), + [anon_sym_record] = ACTIONS(634), + [anon_sym_ATinterface] = ACTIONS(632), + [anon_sym_interface] = ACTIONS(634), + [anon_sym_byte] = ACTIONS(634), + [anon_sym_short] = ACTIONS(634), + [anon_sym_int] = ACTIONS(634), + [anon_sym_long] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_float] = ACTIONS(634), + [anon_sym_double] = ACTIONS(634), + [sym_boolean_type] = ACTIONS(634), + [sym_void_type] = ACTIONS(634), + [sym_this] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [175] = { + [ts_builtin_sym_end] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), + [sym_decimal_integer_literal] = ACTIONS(638), + [sym_hex_integer_literal] = ACTIONS(638), + [sym_octal_integer_literal] = ACTIONS(636), + [sym_binary_integer_literal] = ACTIONS(636), + [sym_decimal_floating_point_literal] = ACTIONS(636), + [sym_hex_floating_point_literal] = ACTIONS(638), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), + [sym_character_literal] = ACTIONS(636), + [sym_string_literal] = ACTIONS(638), + [sym_text_block] = ACTIONS(636), + [sym_null_literal] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_LT] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_BANG] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_PLUS_PLUS] = ACTIONS(636), + [anon_sym_DASH_DASH] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), + [anon_sym_class] = ACTIONS(638), + [anon_sym_switch] = ACTIONS(638), + [anon_sym_LBRACE] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_case] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_assert] = ACTIONS(638), + [anon_sym_do] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_yield] = ACTIONS(638), + [anon_sym_synchronized] = ACTIONS(638), + [anon_sym_throw] = ACTIONS(638), + [anon_sym_try] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_else] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_AT] = ACTIONS(638), + [anon_sym_open] = ACTIONS(638), + [anon_sym_module] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_package] = ACTIONS(638), + [anon_sym_import] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_public] = ACTIONS(638), + [anon_sym_protected] = ACTIONS(638), + [anon_sym_private] = ACTIONS(638), + [anon_sym_abstract] = ACTIONS(638), + [anon_sym_final] = ACTIONS(638), + [anon_sym_strictfp] = ACTIONS(638), + [anon_sym_native] = ACTIONS(638), + [anon_sym_transient] = ACTIONS(638), + [anon_sym_volatile] = ACTIONS(638), + [anon_sym_sealed] = ACTIONS(638), + [anon_sym_non_DASHsealed] = ACTIONS(636), + [anon_sym_record] = ACTIONS(638), + [anon_sym_ATinterface] = ACTIONS(636), + [anon_sym_interface] = ACTIONS(638), + [anon_sym_byte] = ACTIONS(638), + [anon_sym_short] = ACTIONS(638), + [anon_sym_int] = ACTIONS(638), + [anon_sym_long] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_float] = ACTIONS(638), + [anon_sym_double] = ACTIONS(638), + [sym_boolean_type] = ACTIONS(638), + [sym_void_type] = ACTIONS(638), + [sym_this] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [176] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [sym_decimal_integer_literal] = ACTIONS(642), + [sym_hex_integer_literal] = ACTIONS(642), + [sym_octal_integer_literal] = ACTIONS(640), + [sym_binary_integer_literal] = ACTIONS(640), + [sym_decimal_floating_point_literal] = ACTIONS(640), + [sym_hex_floating_point_literal] = ACTIONS(642), + [sym_true] = ACTIONS(642), + [sym_false] = ACTIONS(642), + [sym_character_literal] = ACTIONS(640), + [sym_string_literal] = ACTIONS(642), + [sym_text_block] = ACTIONS(640), + [sym_null_literal] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(640), + [anon_sym_DASH_DASH] = ACTIONS(640), + [anon_sym_new] = ACTIONS(642), + [anon_sym_class] = ACTIONS(642), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_assert] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_break] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_synchronized] = ACTIONS(642), + [anon_sym_throw] = ACTIONS(642), + [anon_sym_try] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_else] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_AT] = ACTIONS(642), + [anon_sym_open] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_package] = ACTIONS(642), + [anon_sym_import] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_public] = ACTIONS(642), + [anon_sym_protected] = ACTIONS(642), + [anon_sym_private] = ACTIONS(642), + [anon_sym_abstract] = ACTIONS(642), + [anon_sym_final] = ACTIONS(642), + [anon_sym_strictfp] = ACTIONS(642), + [anon_sym_native] = ACTIONS(642), + [anon_sym_transient] = ACTIONS(642), + [anon_sym_volatile] = ACTIONS(642), + [anon_sym_sealed] = ACTIONS(642), + [anon_sym_non_DASHsealed] = ACTIONS(640), + [anon_sym_record] = ACTIONS(642), + [anon_sym_ATinterface] = ACTIONS(640), + [anon_sym_interface] = ACTIONS(642), + [anon_sym_byte] = ACTIONS(642), + [anon_sym_short] = ACTIONS(642), + [anon_sym_int] = ACTIONS(642), + [anon_sym_long] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_float] = ACTIONS(642), + [anon_sym_double] = ACTIONS(642), + [sym_boolean_type] = ACTIONS(642), + [sym_void_type] = ACTIONS(642), + [sym_this] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [177] = { + [ts_builtin_sym_end] = ACTIONS(644), + [sym_identifier] = ACTIONS(646), + [sym_decimal_integer_literal] = ACTIONS(646), + [sym_hex_integer_literal] = ACTIONS(646), + [sym_octal_integer_literal] = ACTIONS(644), + [sym_binary_integer_literal] = ACTIONS(644), + [sym_decimal_floating_point_literal] = ACTIONS(644), + [sym_hex_floating_point_literal] = ACTIONS(646), + [sym_true] = ACTIONS(646), + [sym_false] = ACTIONS(646), + [sym_character_literal] = ACTIONS(644), + [sym_string_literal] = ACTIONS(646), + [sym_text_block] = ACTIONS(644), + [sym_null_literal] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_PLUS_PLUS] = ACTIONS(644), + [anon_sym_DASH_DASH] = ACTIONS(644), + [anon_sym_new] = ACTIONS(646), + [anon_sym_class] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_case] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_assert] = ACTIONS(646), + [anon_sym_do] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [anon_sym_break] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(646), + [anon_sym_return] = ACTIONS(646), + [anon_sym_yield] = ACTIONS(646), + [anon_sym_synchronized] = ACTIONS(646), + [anon_sym_throw] = ACTIONS(646), + [anon_sym_try] = ACTIONS(646), + [anon_sym_if] = ACTIONS(646), + [anon_sym_else] = ACTIONS(646), + [anon_sym_for] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_open] = ACTIONS(646), + [anon_sym_module] = ACTIONS(646), + [anon_sym_static] = ACTIONS(646), + [anon_sym_package] = ACTIONS(646), + [anon_sym_import] = ACTIONS(646), + [anon_sym_enum] = ACTIONS(646), + [anon_sym_public] = ACTIONS(646), + [anon_sym_protected] = ACTIONS(646), + [anon_sym_private] = ACTIONS(646), + [anon_sym_abstract] = ACTIONS(646), + [anon_sym_final] = ACTIONS(646), + [anon_sym_strictfp] = ACTIONS(646), + [anon_sym_native] = ACTIONS(646), + [anon_sym_transient] = ACTIONS(646), + [anon_sym_volatile] = ACTIONS(646), + [anon_sym_sealed] = ACTIONS(646), + [anon_sym_non_DASHsealed] = ACTIONS(644), + [anon_sym_record] = ACTIONS(646), + [anon_sym_ATinterface] = ACTIONS(644), + [anon_sym_interface] = ACTIONS(646), + [anon_sym_byte] = ACTIONS(646), + [anon_sym_short] = ACTIONS(646), + [anon_sym_int] = ACTIONS(646), + [anon_sym_long] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_float] = ACTIONS(646), + [anon_sym_double] = ACTIONS(646), + [sym_boolean_type] = ACTIONS(646), + [sym_void_type] = ACTIONS(646), + [sym_this] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(565), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym_block] = STATE(502), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -26692,21 +27011,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(354), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -26721,201 +27039,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(634), - [sym_identifier] = ACTIONS(636), - [sym_decimal_integer_literal] = ACTIONS(636), - [sym_hex_integer_literal] = ACTIONS(636), - [sym_octal_integer_literal] = ACTIONS(634), - [sym_binary_integer_literal] = ACTIONS(634), - [sym_decimal_floating_point_literal] = ACTIONS(634), - [sym_hex_floating_point_literal] = ACTIONS(636), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), - [sym_character_literal] = ACTIONS(634), - [sym_string_literal] = ACTIONS(636), - [sym_text_block] = ACTIONS(634), - [sym_null_literal] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DASH_DASH] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), - [anon_sym_class] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_assert] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_break] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_yield] = ACTIONS(636), - [anon_sym_synchronized] = ACTIONS(636), - [anon_sym_throw] = ACTIONS(636), - [anon_sym_try] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_else] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_open] = ACTIONS(636), - [anon_sym_module] = ACTIONS(636), - [anon_sym_static] = ACTIONS(636), - [anon_sym_package] = ACTIONS(636), - [anon_sym_import] = ACTIONS(636), - [anon_sym_enum] = ACTIONS(636), - [anon_sym_public] = ACTIONS(636), - [anon_sym_protected] = ACTIONS(636), - [anon_sym_private] = ACTIONS(636), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_final] = ACTIONS(636), - [anon_sym_strictfp] = ACTIONS(636), - [anon_sym_native] = ACTIONS(636), - [anon_sym_transient] = ACTIONS(636), - [anon_sym_volatile] = ACTIONS(636), - [anon_sym_sealed] = ACTIONS(636), - [anon_sym_non_DASHsealed] = ACTIONS(634), - [anon_sym_record] = ACTIONS(636), - [anon_sym_ATinterface] = ACTIONS(634), - [anon_sym_interface] = ACTIONS(636), - [anon_sym_byte] = ACTIONS(636), - [anon_sym_short] = ACTIONS(636), - [anon_sym_int] = ACTIONS(636), - [anon_sym_long] = ACTIONS(636), - [anon_sym_char] = ACTIONS(636), - [anon_sym_float] = ACTIONS(636), - [anon_sym_double] = ACTIONS(636), - [sym_boolean_type] = ACTIONS(636), - [sym_void_type] = ACTIONS(636), - [sym_this] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(638), - [sym_identifier] = ACTIONS(640), - [sym_decimal_integer_literal] = ACTIONS(640), - [sym_hex_integer_literal] = ACTIONS(640), - [sym_octal_integer_literal] = ACTIONS(638), - [sym_binary_integer_literal] = ACTIONS(638), - [sym_decimal_floating_point_literal] = ACTIONS(638), - [sym_hex_floating_point_literal] = ACTIONS(640), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_character_literal] = ACTIONS(638), - [sym_string_literal] = ACTIONS(640), - [sym_text_block] = ACTIONS(638), - [sym_null_literal] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_DASH_DASH] = ACTIONS(638), - [anon_sym_new] = ACTIONS(640), - [anon_sym_class] = ACTIONS(640), - [anon_sym_switch] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_case] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_assert] = ACTIONS(640), - [anon_sym_do] = ACTIONS(640), - [anon_sym_while] = ACTIONS(640), - [anon_sym_break] = ACTIONS(640), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_return] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(640), - [anon_sym_synchronized] = ACTIONS(640), - [anon_sym_throw] = ACTIONS(640), - [anon_sym_try] = ACTIONS(640), - [anon_sym_if] = ACTIONS(640), - [anon_sym_else] = ACTIONS(640), - [anon_sym_for] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym_open] = ACTIONS(640), - [anon_sym_module] = ACTIONS(640), - [anon_sym_static] = ACTIONS(640), - [anon_sym_package] = ACTIONS(640), - [anon_sym_import] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_public] = ACTIONS(640), - [anon_sym_protected] = ACTIONS(640), - [anon_sym_private] = ACTIONS(640), - [anon_sym_abstract] = ACTIONS(640), - [anon_sym_final] = ACTIONS(640), - [anon_sym_strictfp] = ACTIONS(640), - [anon_sym_native] = ACTIONS(640), - [anon_sym_transient] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym_sealed] = ACTIONS(640), - [anon_sym_non_DASHsealed] = ACTIONS(638), - [anon_sym_record] = ACTIONS(640), - [anon_sym_ATinterface] = ACTIONS(638), - [anon_sym_interface] = ACTIONS(640), - [anon_sym_byte] = ACTIONS(640), - [anon_sym_short] = ACTIONS(640), - [anon_sym_int] = ACTIONS(640), - [anon_sym_long] = ACTIONS(640), - [anon_sym_char] = ACTIONS(640), - [anon_sym_float] = ACTIONS(640), - [anon_sym_double] = ACTIONS(640), - [sym_boolean_type] = ACTIONS(640), - [sym_void_type] = ACTIONS(640), - [sym_this] = ACTIONS(640), - [sym_super] = ACTIONS(640), + [179] = { + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(283), + [sym_decimal_integer_literal] = ACTIONS(283), + [sym_hex_integer_literal] = ACTIONS(283), + [sym_octal_integer_literal] = ACTIONS(281), + [sym_binary_integer_literal] = ACTIONS(281), + [sym_decimal_floating_point_literal] = ACTIONS(281), + [sym_hex_floating_point_literal] = ACTIONS(283), + [sym_true] = ACTIONS(283), + [sym_false] = ACTIONS(283), + [sym_character_literal] = ACTIONS(281), + [sym_string_literal] = ACTIONS(283), + [sym_text_block] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_new] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_case] = ACTIONS(283), + [anon_sym_default] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_return] = ACTIONS(283), + [anon_sym_yield] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + [anon_sym_throw] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_open] = ACTIONS(283), + [anon_sym_module] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_enum] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_abstract] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_strictfp] = ACTIONS(283), + [anon_sym_native] = ACTIONS(283), + [anon_sym_transient] = ACTIONS(283), + [anon_sym_volatile] = ACTIONS(283), + [anon_sym_sealed] = ACTIONS(283), + [anon_sym_non_DASHsealed] = ACTIONS(281), + [anon_sym_record] = ACTIONS(283), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_byte] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [sym_boolean_type] = ACTIONS(283), + [sym_void_type] = ACTIONS(283), + [sym_this] = ACTIONS(283), + [sym_super] = ACTIONS(283), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(577), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [180] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(558), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym_block] = STATE(508), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym_block] = STATE(509), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -26928,20 +27167,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -26956,816 +27195,817 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(654), - [sym_identifier] = ACTIONS(656), - [sym_decimal_integer_literal] = ACTIONS(656), - [sym_hex_integer_literal] = ACTIONS(656), - [sym_octal_integer_literal] = ACTIONS(654), - [sym_binary_integer_literal] = ACTIONS(654), - [sym_decimal_floating_point_literal] = ACTIONS(654), - [sym_hex_floating_point_literal] = ACTIONS(656), - [sym_true] = ACTIONS(656), - [sym_false] = ACTIONS(656), - [sym_character_literal] = ACTIONS(654), - [sym_string_literal] = ACTIONS(656), - [sym_text_block] = ACTIONS(654), - [sym_null_literal] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(654), - [anon_sym_new] = ACTIONS(656), - [anon_sym_class] = ACTIONS(656), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_case] = ACTIONS(656), - [anon_sym_default] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_assert] = ACTIONS(656), - [anon_sym_do] = ACTIONS(656), - [anon_sym_while] = ACTIONS(656), - [anon_sym_break] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [anon_sym_return] = ACTIONS(656), - [anon_sym_yield] = ACTIONS(656), - [anon_sym_synchronized] = ACTIONS(656), - [anon_sym_throw] = ACTIONS(656), - [anon_sym_try] = ACTIONS(656), - [anon_sym_if] = ACTIONS(656), - [anon_sym_else] = ACTIONS(656), - [anon_sym_for] = ACTIONS(656), - [anon_sym_AT] = ACTIONS(656), - [anon_sym_open] = ACTIONS(656), - [anon_sym_module] = ACTIONS(656), - [anon_sym_static] = ACTIONS(656), - [anon_sym_package] = ACTIONS(656), - [anon_sym_import] = ACTIONS(656), - [anon_sym_enum] = ACTIONS(656), - [anon_sym_public] = ACTIONS(656), - [anon_sym_protected] = ACTIONS(656), - [anon_sym_private] = ACTIONS(656), - [anon_sym_abstract] = ACTIONS(656), - [anon_sym_final] = ACTIONS(656), - [anon_sym_strictfp] = ACTIONS(656), - [anon_sym_native] = ACTIONS(656), - [anon_sym_transient] = ACTIONS(656), - [anon_sym_volatile] = ACTIONS(656), - [anon_sym_sealed] = ACTIONS(656), - [anon_sym_non_DASHsealed] = ACTIONS(654), - [anon_sym_record] = ACTIONS(656), - [anon_sym_ATinterface] = ACTIONS(654), - [anon_sym_interface] = ACTIONS(656), - [anon_sym_byte] = ACTIONS(656), - [anon_sym_short] = ACTIONS(656), - [anon_sym_int] = ACTIONS(656), - [anon_sym_long] = ACTIONS(656), - [anon_sym_char] = ACTIONS(656), - [anon_sym_float] = ACTIONS(656), - [anon_sym_double] = ACTIONS(656), - [sym_boolean_type] = ACTIONS(656), - [sym_void_type] = ACTIONS(656), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(656), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(658), - [sym_identifier] = ACTIONS(660), - [sym_decimal_integer_literal] = ACTIONS(660), - [sym_hex_integer_literal] = ACTIONS(660), - [sym_octal_integer_literal] = ACTIONS(658), - [sym_binary_integer_literal] = ACTIONS(658), - [sym_decimal_floating_point_literal] = ACTIONS(658), - [sym_hex_floating_point_literal] = ACTIONS(660), - [sym_true] = ACTIONS(660), - [sym_false] = ACTIONS(660), - [sym_character_literal] = ACTIONS(658), - [sym_string_literal] = ACTIONS(660), - [sym_text_block] = ACTIONS(658), - [sym_null_literal] = ACTIONS(660), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_TILDE] = ACTIONS(658), - [anon_sym_PLUS_PLUS] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(658), - [anon_sym_new] = ACTIONS(660), - [anon_sym_class] = ACTIONS(660), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_case] = ACTIONS(660), - [anon_sym_default] = ACTIONS(660), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_assert] = ACTIONS(660), - [anon_sym_do] = ACTIONS(660), - [anon_sym_while] = ACTIONS(660), - [anon_sym_break] = ACTIONS(660), - [anon_sym_continue] = ACTIONS(660), - [anon_sym_return] = ACTIONS(660), - [anon_sym_yield] = ACTIONS(660), - [anon_sym_synchronized] = ACTIONS(660), - [anon_sym_throw] = ACTIONS(660), - [anon_sym_try] = ACTIONS(660), - [anon_sym_if] = ACTIONS(660), - [anon_sym_else] = ACTIONS(660), - [anon_sym_for] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_open] = ACTIONS(660), - [anon_sym_module] = ACTIONS(660), - [anon_sym_static] = ACTIONS(660), - [anon_sym_package] = ACTIONS(660), - [anon_sym_import] = ACTIONS(660), - [anon_sym_enum] = ACTIONS(660), - [anon_sym_public] = ACTIONS(660), - [anon_sym_protected] = ACTIONS(660), - [anon_sym_private] = ACTIONS(660), - [anon_sym_abstract] = ACTIONS(660), - [anon_sym_final] = ACTIONS(660), - [anon_sym_strictfp] = ACTIONS(660), - [anon_sym_native] = ACTIONS(660), - [anon_sym_transient] = ACTIONS(660), - [anon_sym_volatile] = ACTIONS(660), - [anon_sym_sealed] = ACTIONS(660), - [anon_sym_non_DASHsealed] = ACTIONS(658), - [anon_sym_record] = ACTIONS(660), - [anon_sym_ATinterface] = ACTIONS(658), - [anon_sym_interface] = ACTIONS(660), - [anon_sym_byte] = ACTIONS(660), - [anon_sym_short] = ACTIONS(660), - [anon_sym_int] = ACTIONS(660), - [anon_sym_long] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), - [anon_sym_float] = ACTIONS(660), - [anon_sym_double] = ACTIONS(660), - [sym_boolean_type] = ACTIONS(660), - [sym_void_type] = ACTIONS(660), - [sym_this] = ACTIONS(660), - [sym_super] = ACTIONS(660), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(662), - [sym_identifier] = ACTIONS(664), - [sym_decimal_integer_literal] = ACTIONS(664), - [sym_hex_integer_literal] = ACTIONS(664), - [sym_octal_integer_literal] = ACTIONS(662), - [sym_binary_integer_literal] = ACTIONS(662), - [sym_decimal_floating_point_literal] = ACTIONS(662), - [sym_hex_floating_point_literal] = ACTIONS(664), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_character_literal] = ACTIONS(662), - [sym_string_literal] = ACTIONS(664), - [sym_text_block] = ACTIONS(662), - [sym_null_literal] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(662), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_DASH_DASH] = ACTIONS(662), - [anon_sym_new] = ACTIONS(664), - [anon_sym_class] = ACTIONS(664), - [anon_sym_switch] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(662), - [anon_sym_case] = ACTIONS(664), - [anon_sym_default] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_assert] = ACTIONS(664), - [anon_sym_do] = ACTIONS(664), - [anon_sym_while] = ACTIONS(664), - [anon_sym_break] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(664), - [anon_sym_return] = ACTIONS(664), - [anon_sym_yield] = ACTIONS(664), - [anon_sym_synchronized] = ACTIONS(664), - [anon_sym_throw] = ACTIONS(664), - [anon_sym_try] = ACTIONS(664), - [anon_sym_if] = ACTIONS(664), - [anon_sym_else] = ACTIONS(664), - [anon_sym_for] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(664), - [anon_sym_open] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_static] = ACTIONS(664), - [anon_sym_package] = ACTIONS(664), - [anon_sym_import] = ACTIONS(664), - [anon_sym_enum] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(664), - [anon_sym_final] = ACTIONS(664), - [anon_sym_strictfp] = ACTIONS(664), - [anon_sym_native] = ACTIONS(664), - [anon_sym_transient] = ACTIONS(664), - [anon_sym_volatile] = ACTIONS(664), - [anon_sym_sealed] = ACTIONS(664), - [anon_sym_non_DASHsealed] = ACTIONS(662), - [anon_sym_record] = ACTIONS(664), - [anon_sym_ATinterface] = ACTIONS(662), - [anon_sym_interface] = ACTIONS(664), - [anon_sym_byte] = ACTIONS(664), - [anon_sym_short] = ACTIONS(664), - [anon_sym_int] = ACTIONS(664), - [anon_sym_long] = ACTIONS(664), - [anon_sym_char] = ACTIONS(664), - [anon_sym_float] = ACTIONS(664), - [anon_sym_double] = ACTIONS(664), - [sym_boolean_type] = ACTIONS(664), - [sym_void_type] = ACTIONS(664), - [sym_this] = ACTIONS(664), - [sym_super] = ACTIONS(664), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [181] = { - [ts_builtin_sym_end] = ACTIONS(666), - [sym_identifier] = ACTIONS(668), - [sym_decimal_integer_literal] = ACTIONS(668), - [sym_hex_integer_literal] = ACTIONS(668), - [sym_octal_integer_literal] = ACTIONS(666), - [sym_binary_integer_literal] = ACTIONS(666), - [sym_decimal_floating_point_literal] = ACTIONS(666), - [sym_hex_floating_point_literal] = ACTIONS(668), - [sym_true] = ACTIONS(668), - [sym_false] = ACTIONS(668), - [sym_character_literal] = ACTIONS(666), - [sym_string_literal] = ACTIONS(668), - [sym_text_block] = ACTIONS(666), - [sym_null_literal] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_new] = ACTIONS(668), - [anon_sym_class] = ACTIONS(668), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(668), - [anon_sym_default] = ACTIONS(668), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(668), - [anon_sym_do] = ACTIONS(668), - [anon_sym_while] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_return] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(668), - [anon_sym_synchronized] = ACTIONS(668), - [anon_sym_throw] = ACTIONS(668), - [anon_sym_try] = ACTIONS(668), - [anon_sym_if] = ACTIONS(668), - [anon_sym_else] = ACTIONS(668), - [anon_sym_for] = ACTIONS(668), - [anon_sym_AT] = ACTIONS(668), - [anon_sym_open] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_static] = ACTIONS(668), - [anon_sym_package] = ACTIONS(668), - [anon_sym_import] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(668), - [anon_sym_final] = ACTIONS(668), - [anon_sym_strictfp] = ACTIONS(668), - [anon_sym_native] = ACTIONS(668), - [anon_sym_transient] = ACTIONS(668), - [anon_sym_volatile] = ACTIONS(668), - [anon_sym_sealed] = ACTIONS(668), - [anon_sym_non_DASHsealed] = ACTIONS(666), - [anon_sym_record] = ACTIONS(668), - [anon_sym_ATinterface] = ACTIONS(666), - [anon_sym_interface] = ACTIONS(668), - [anon_sym_byte] = ACTIONS(668), - [anon_sym_short] = ACTIONS(668), - [anon_sym_int] = ACTIONS(668), - [anon_sym_long] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_float] = ACTIONS(668), - [anon_sym_double] = ACTIONS(668), - [sym_boolean_type] = ACTIONS(668), - [sym_void_type] = ACTIONS(668), - [sym_this] = ACTIONS(668), - [sym_super] = ACTIONS(668), + [ts_builtin_sym_end] = ACTIONS(660), + [sym_identifier] = ACTIONS(662), + [sym_decimal_integer_literal] = ACTIONS(662), + [sym_hex_integer_literal] = ACTIONS(662), + [sym_octal_integer_literal] = ACTIONS(660), + [sym_binary_integer_literal] = ACTIONS(660), + [sym_decimal_floating_point_literal] = ACTIONS(660), + [sym_hex_floating_point_literal] = ACTIONS(662), + [sym_true] = ACTIONS(662), + [sym_false] = ACTIONS(662), + [sym_character_literal] = ACTIONS(660), + [sym_string_literal] = ACTIONS(662), + [sym_text_block] = ACTIONS(660), + [sym_null_literal] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(660), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), + [anon_sym_new] = ACTIONS(662), + [anon_sym_class] = ACTIONS(662), + [anon_sym_switch] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_case] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_assert] = ACTIONS(662), + [anon_sym_do] = ACTIONS(662), + [anon_sym_while] = ACTIONS(662), + [anon_sym_break] = ACTIONS(662), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_return] = ACTIONS(662), + [anon_sym_yield] = ACTIONS(662), + [anon_sym_synchronized] = ACTIONS(662), + [anon_sym_throw] = ACTIONS(662), + [anon_sym_try] = ACTIONS(662), + [anon_sym_if] = ACTIONS(662), + [anon_sym_else] = ACTIONS(662), + [anon_sym_for] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_open] = ACTIONS(662), + [anon_sym_module] = ACTIONS(662), + [anon_sym_static] = ACTIONS(662), + [anon_sym_package] = ACTIONS(662), + [anon_sym_import] = ACTIONS(662), + [anon_sym_enum] = ACTIONS(662), + [anon_sym_public] = ACTIONS(662), + [anon_sym_protected] = ACTIONS(662), + [anon_sym_private] = ACTIONS(662), + [anon_sym_abstract] = ACTIONS(662), + [anon_sym_final] = ACTIONS(662), + [anon_sym_strictfp] = ACTIONS(662), + [anon_sym_native] = ACTIONS(662), + [anon_sym_transient] = ACTIONS(662), + [anon_sym_volatile] = ACTIONS(662), + [anon_sym_sealed] = ACTIONS(662), + [anon_sym_non_DASHsealed] = ACTIONS(660), + [anon_sym_record] = ACTIONS(662), + [anon_sym_ATinterface] = ACTIONS(660), + [anon_sym_interface] = ACTIONS(662), + [anon_sym_byte] = ACTIONS(662), + [anon_sym_short] = ACTIONS(662), + [anon_sym_int] = ACTIONS(662), + [anon_sym_long] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_float] = ACTIONS(662), + [anon_sym_double] = ACTIONS(662), + [sym_boolean_type] = ACTIONS(662), + [sym_void_type] = ACTIONS(662), + [sym_this] = ACTIONS(662), + [sym_super] = ACTIONS(662), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(670), - [sym_identifier] = ACTIONS(672), - [sym_decimal_integer_literal] = ACTIONS(672), - [sym_hex_integer_literal] = ACTIONS(672), - [sym_octal_integer_literal] = ACTIONS(670), - [sym_binary_integer_literal] = ACTIONS(670), - [sym_decimal_floating_point_literal] = ACTIONS(670), - [sym_hex_floating_point_literal] = ACTIONS(672), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_character_literal] = ACTIONS(670), - [sym_string_literal] = ACTIONS(672), - [sym_text_block] = ACTIONS(670), - [sym_null_literal] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_new] = ACTIONS(672), - [anon_sym_class] = ACTIONS(672), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(672), - [anon_sym_default] = ACTIONS(672), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_do] = ACTIONS(672), - [anon_sym_while] = ACTIONS(672), - [anon_sym_break] = ACTIONS(672), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_return] = ACTIONS(672), - [anon_sym_yield] = ACTIONS(672), - [anon_sym_synchronized] = ACTIONS(672), - [anon_sym_throw] = ACTIONS(672), - [anon_sym_try] = ACTIONS(672), - [anon_sym_if] = ACTIONS(672), - [anon_sym_else] = ACTIONS(672), - [anon_sym_for] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_open] = ACTIONS(672), - [anon_sym_module] = ACTIONS(672), - [anon_sym_static] = ACTIONS(672), - [anon_sym_package] = ACTIONS(672), - [anon_sym_import] = ACTIONS(672), - [anon_sym_enum] = ACTIONS(672), - [anon_sym_public] = ACTIONS(672), - [anon_sym_protected] = ACTIONS(672), - [anon_sym_private] = ACTIONS(672), - [anon_sym_abstract] = ACTIONS(672), - [anon_sym_final] = ACTIONS(672), - [anon_sym_strictfp] = ACTIONS(672), - [anon_sym_native] = ACTIONS(672), - [anon_sym_transient] = ACTIONS(672), - [anon_sym_volatile] = ACTIONS(672), - [anon_sym_sealed] = ACTIONS(672), - [anon_sym_non_DASHsealed] = ACTIONS(670), - [anon_sym_record] = ACTIONS(672), - [anon_sym_ATinterface] = ACTIONS(670), - [anon_sym_interface] = ACTIONS(672), - [anon_sym_byte] = ACTIONS(672), - [anon_sym_short] = ACTIONS(672), - [anon_sym_int] = ACTIONS(672), - [anon_sym_long] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_float] = ACTIONS(672), - [anon_sym_double] = ACTIONS(672), - [sym_boolean_type] = ACTIONS(672), - [sym_void_type] = ACTIONS(672), - [sym_this] = ACTIONS(672), - [sym_super] = ACTIONS(672), + [ts_builtin_sym_end] = ACTIONS(664), + [sym_identifier] = ACTIONS(666), + [sym_decimal_integer_literal] = ACTIONS(666), + [sym_hex_integer_literal] = ACTIONS(666), + [sym_octal_integer_literal] = ACTIONS(664), + [sym_binary_integer_literal] = ACTIONS(664), + [sym_decimal_floating_point_literal] = ACTIONS(664), + [sym_hex_floating_point_literal] = ACTIONS(666), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_character_literal] = ACTIONS(664), + [sym_string_literal] = ACTIONS(666), + [sym_text_block] = ACTIONS(664), + [sym_null_literal] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_TILDE] = ACTIONS(664), + [anon_sym_PLUS_PLUS] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(664), + [anon_sym_new] = ACTIONS(666), + [anon_sym_class] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_case] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_assert] = ACTIONS(666), + [anon_sym_do] = ACTIONS(666), + [anon_sym_while] = ACTIONS(666), + [anon_sym_break] = ACTIONS(666), + [anon_sym_continue] = ACTIONS(666), + [anon_sym_return] = ACTIONS(666), + [anon_sym_yield] = ACTIONS(666), + [anon_sym_synchronized] = ACTIONS(666), + [anon_sym_throw] = ACTIONS(666), + [anon_sym_try] = ACTIONS(666), + [anon_sym_if] = ACTIONS(666), + [anon_sym_else] = ACTIONS(666), + [anon_sym_for] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(666), + [anon_sym_open] = ACTIONS(666), + [anon_sym_module] = ACTIONS(666), + [anon_sym_static] = ACTIONS(666), + [anon_sym_package] = ACTIONS(666), + [anon_sym_import] = ACTIONS(666), + [anon_sym_enum] = ACTIONS(666), + [anon_sym_public] = ACTIONS(666), + [anon_sym_protected] = ACTIONS(666), + [anon_sym_private] = ACTIONS(666), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_final] = ACTIONS(666), + [anon_sym_strictfp] = ACTIONS(666), + [anon_sym_native] = ACTIONS(666), + [anon_sym_transient] = ACTIONS(666), + [anon_sym_volatile] = ACTIONS(666), + [anon_sym_sealed] = ACTIONS(666), + [anon_sym_non_DASHsealed] = ACTIONS(664), + [anon_sym_record] = ACTIONS(666), + [anon_sym_ATinterface] = ACTIONS(664), + [anon_sym_interface] = ACTIONS(666), + [anon_sym_byte] = ACTIONS(666), + [anon_sym_short] = ACTIONS(666), + [anon_sym_int] = ACTIONS(666), + [anon_sym_long] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_float] = ACTIONS(666), + [anon_sym_double] = ACTIONS(666), + [sym_boolean_type] = ACTIONS(666), + [sym_void_type] = ACTIONS(666), + [sym_this] = ACTIONS(666), + [sym_super] = ACTIONS(666), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(674), - [sym_identifier] = ACTIONS(676), - [sym_decimal_integer_literal] = ACTIONS(676), - [sym_hex_integer_literal] = ACTIONS(676), - [sym_octal_integer_literal] = ACTIONS(674), - [sym_binary_integer_literal] = ACTIONS(674), - [sym_decimal_floating_point_literal] = ACTIONS(674), - [sym_hex_floating_point_literal] = ACTIONS(676), - [sym_true] = ACTIONS(676), - [sym_false] = ACTIONS(676), - [sym_character_literal] = ACTIONS(674), - [sym_string_literal] = ACTIONS(676), - [sym_text_block] = ACTIONS(674), - [sym_null_literal] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_new] = ACTIONS(676), - [anon_sym_class] = ACTIONS(676), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_case] = ACTIONS(676), - [anon_sym_default] = ACTIONS(676), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_assert] = ACTIONS(676), - [anon_sym_do] = ACTIONS(676), - [anon_sym_while] = ACTIONS(676), - [anon_sym_break] = ACTIONS(676), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_return] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(676), - [anon_sym_synchronized] = ACTIONS(676), - [anon_sym_throw] = ACTIONS(676), - [anon_sym_try] = ACTIONS(676), - [anon_sym_if] = ACTIONS(676), - [anon_sym_else] = ACTIONS(676), - [anon_sym_for] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym_open] = ACTIONS(676), - [anon_sym_module] = ACTIONS(676), - [anon_sym_static] = ACTIONS(676), - [anon_sym_package] = ACTIONS(676), - [anon_sym_import] = ACTIONS(676), - [anon_sym_enum] = ACTIONS(676), - [anon_sym_public] = ACTIONS(676), - [anon_sym_protected] = ACTIONS(676), - [anon_sym_private] = ACTIONS(676), - [anon_sym_abstract] = ACTIONS(676), - [anon_sym_final] = ACTIONS(676), - [anon_sym_strictfp] = ACTIONS(676), - [anon_sym_native] = ACTIONS(676), - [anon_sym_transient] = ACTIONS(676), - [anon_sym_volatile] = ACTIONS(676), - [anon_sym_sealed] = ACTIONS(676), - [anon_sym_non_DASHsealed] = ACTIONS(674), - [anon_sym_record] = ACTIONS(676), - [anon_sym_ATinterface] = ACTIONS(674), - [anon_sym_interface] = ACTIONS(676), - [anon_sym_byte] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [anon_sym_int] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_char] = ACTIONS(676), - [anon_sym_float] = ACTIONS(676), - [anon_sym_double] = ACTIONS(676), - [sym_boolean_type] = ACTIONS(676), - [sym_void_type] = ACTIONS(676), - [sym_this] = ACTIONS(676), - [sym_super] = ACTIONS(676), + [ts_builtin_sym_end] = ACTIONS(668), + [sym_identifier] = ACTIONS(670), + [sym_decimal_integer_literal] = ACTIONS(670), + [sym_hex_integer_literal] = ACTIONS(670), + [sym_octal_integer_literal] = ACTIONS(668), + [sym_binary_integer_literal] = ACTIONS(668), + [sym_decimal_floating_point_literal] = ACTIONS(668), + [sym_hex_floating_point_literal] = ACTIONS(670), + [sym_true] = ACTIONS(670), + [sym_false] = ACTIONS(670), + [sym_character_literal] = ACTIONS(668), + [sym_string_literal] = ACTIONS(670), + [sym_text_block] = ACTIONS(668), + [sym_null_literal] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(668), + [anon_sym_DASH_DASH] = ACTIONS(668), + [anon_sym_new] = ACTIONS(670), + [anon_sym_class] = ACTIONS(670), + [anon_sym_switch] = ACTIONS(670), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_case] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_assert] = ACTIONS(670), + [anon_sym_do] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(670), + [anon_sym_synchronized] = ACTIONS(670), + [anon_sym_throw] = ACTIONS(670), + [anon_sym_try] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_else] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_AT] = ACTIONS(670), + [anon_sym_open] = ACTIONS(670), + [anon_sym_module] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_package] = ACTIONS(670), + [anon_sym_import] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_public] = ACTIONS(670), + [anon_sym_protected] = ACTIONS(670), + [anon_sym_private] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(670), + [anon_sym_final] = ACTIONS(670), + [anon_sym_strictfp] = ACTIONS(670), + [anon_sym_native] = ACTIONS(670), + [anon_sym_transient] = ACTIONS(670), + [anon_sym_volatile] = ACTIONS(670), + [anon_sym_sealed] = ACTIONS(670), + [anon_sym_non_DASHsealed] = ACTIONS(668), + [anon_sym_record] = ACTIONS(670), + [anon_sym_ATinterface] = ACTIONS(668), + [anon_sym_interface] = ACTIONS(670), + [anon_sym_byte] = ACTIONS(670), + [anon_sym_short] = ACTIONS(670), + [anon_sym_int] = ACTIONS(670), + [anon_sym_long] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_float] = ACTIONS(670), + [anon_sym_double] = ACTIONS(670), + [sym_boolean_type] = ACTIONS(670), + [sym_void_type] = ACTIONS(670), + [sym_this] = ACTIONS(670), + [sym_super] = ACTIONS(670), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [sym_decimal_integer_literal] = ACTIONS(680), - [sym_hex_integer_literal] = ACTIONS(680), - [sym_octal_integer_literal] = ACTIONS(678), - [sym_binary_integer_literal] = ACTIONS(678), - [sym_decimal_floating_point_literal] = ACTIONS(678), - [sym_hex_floating_point_literal] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_character_literal] = ACTIONS(678), - [sym_string_literal] = ACTIONS(680), - [sym_text_block] = ACTIONS(678), - [sym_null_literal] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_PLUS_PLUS] = ACTIONS(678), - [anon_sym_DASH_DASH] = ACTIONS(678), - [anon_sym_new] = ACTIONS(680), - [anon_sym_class] = ACTIONS(680), - [anon_sym_switch] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_case] = ACTIONS(680), - [anon_sym_default] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(678), - [anon_sym_assert] = ACTIONS(680), - [anon_sym_do] = ACTIONS(680), - [anon_sym_while] = ACTIONS(680), - [anon_sym_break] = ACTIONS(680), - [anon_sym_continue] = ACTIONS(680), - [anon_sym_return] = ACTIONS(680), - [anon_sym_yield] = ACTIONS(680), - [anon_sym_synchronized] = ACTIONS(680), - [anon_sym_throw] = ACTIONS(680), - [anon_sym_try] = ACTIONS(680), - [anon_sym_if] = ACTIONS(680), - [anon_sym_else] = ACTIONS(680), - [anon_sym_for] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym_open] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_static] = ACTIONS(680), - [anon_sym_package] = ACTIONS(680), - [anon_sym_import] = ACTIONS(680), - [anon_sym_enum] = ACTIONS(680), - [anon_sym_public] = ACTIONS(680), - [anon_sym_protected] = ACTIONS(680), - [anon_sym_private] = ACTIONS(680), - [anon_sym_abstract] = ACTIONS(680), - [anon_sym_final] = ACTIONS(680), - [anon_sym_strictfp] = ACTIONS(680), - [anon_sym_native] = ACTIONS(680), - [anon_sym_transient] = ACTIONS(680), - [anon_sym_volatile] = ACTIONS(680), - [anon_sym_sealed] = ACTIONS(680), - [anon_sym_non_DASHsealed] = ACTIONS(678), - [anon_sym_record] = ACTIONS(680), - [anon_sym_ATinterface] = ACTIONS(678), - [anon_sym_interface] = ACTIONS(680), - [anon_sym_byte] = ACTIONS(680), - [anon_sym_short] = ACTIONS(680), - [anon_sym_int] = ACTIONS(680), - [anon_sym_long] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_float] = ACTIONS(680), - [anon_sym_double] = ACTIONS(680), - [sym_boolean_type] = ACTIONS(680), - [sym_void_type] = ACTIONS(680), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), + [ts_builtin_sym_end] = ACTIONS(315), + [sym_identifier] = ACTIONS(317), + [sym_decimal_integer_literal] = ACTIONS(317), + [sym_hex_integer_literal] = ACTIONS(317), + [sym_octal_integer_literal] = ACTIONS(315), + [sym_binary_integer_literal] = ACTIONS(315), + [sym_decimal_floating_point_literal] = ACTIONS(315), + [sym_hex_floating_point_literal] = ACTIONS(317), + [sym_true] = ACTIONS(317), + [sym_false] = ACTIONS(317), + [sym_character_literal] = ACTIONS(315), + [sym_string_literal] = ACTIONS(317), + [sym_text_block] = ACTIONS(315), + [sym_null_literal] = ACTIONS(317), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_BANG] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_new] = ACTIONS(317), + [anon_sym_class] = ACTIONS(317), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_assert] = ACTIONS(317), + [anon_sym_do] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_yield] = ACTIONS(317), + [anon_sym_synchronized] = ACTIONS(317), + [anon_sym_throw] = ACTIONS(317), + [anon_sym_try] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_else] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [anon_sym_AT] = ACTIONS(317), + [anon_sym_open] = ACTIONS(317), + [anon_sym_module] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_package] = ACTIONS(317), + [anon_sym_import] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_public] = ACTIONS(317), + [anon_sym_protected] = ACTIONS(317), + [anon_sym_private] = ACTIONS(317), + [anon_sym_abstract] = ACTIONS(317), + [anon_sym_final] = ACTIONS(317), + [anon_sym_strictfp] = ACTIONS(317), + [anon_sym_native] = ACTIONS(317), + [anon_sym_transient] = ACTIONS(317), + [anon_sym_volatile] = ACTIONS(317), + [anon_sym_sealed] = ACTIONS(317), + [anon_sym_non_DASHsealed] = ACTIONS(315), + [anon_sym_record] = ACTIONS(317), + [anon_sym_ATinterface] = ACTIONS(315), + [anon_sym_interface] = ACTIONS(317), + [anon_sym_byte] = ACTIONS(317), + [anon_sym_short] = ACTIONS(317), + [anon_sym_int] = ACTIONS(317), + [anon_sym_long] = ACTIONS(317), + [anon_sym_char] = ACTIONS(317), + [anon_sym_float] = ACTIONS(317), + [anon_sym_double] = ACTIONS(317), + [sym_boolean_type] = ACTIONS(317), + [sym_void_type] = ACTIONS(317), + [sym_this] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [185] = { - [ts_builtin_sym_end] = ACTIONS(682), - [sym_identifier] = ACTIONS(684), - [sym_decimal_integer_literal] = ACTIONS(684), - [sym_hex_integer_literal] = ACTIONS(684), - [sym_octal_integer_literal] = ACTIONS(682), - [sym_binary_integer_literal] = ACTIONS(682), - [sym_decimal_floating_point_literal] = ACTIONS(682), - [sym_hex_floating_point_literal] = ACTIONS(684), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_character_literal] = ACTIONS(682), - [sym_string_literal] = ACTIONS(684), - [sym_text_block] = ACTIONS(682), - [sym_null_literal] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_PLUS_PLUS] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(682), - [anon_sym_new] = ACTIONS(684), - [anon_sym_class] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_assert] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_break] = ACTIONS(684), - [anon_sym_continue] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_synchronized] = ACTIONS(684), - [anon_sym_throw] = ACTIONS(684), - [anon_sym_try] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_else] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(684), - [anon_sym_open] = ACTIONS(684), - [anon_sym_module] = ACTIONS(684), - [anon_sym_static] = ACTIONS(684), - [anon_sym_package] = ACTIONS(684), - [anon_sym_import] = ACTIONS(684), - [anon_sym_enum] = ACTIONS(684), - [anon_sym_public] = ACTIONS(684), - [anon_sym_protected] = ACTIONS(684), - [anon_sym_private] = ACTIONS(684), - [anon_sym_abstract] = ACTIONS(684), - [anon_sym_final] = ACTIONS(684), - [anon_sym_strictfp] = ACTIONS(684), - [anon_sym_native] = ACTIONS(684), - [anon_sym_transient] = ACTIONS(684), - [anon_sym_volatile] = ACTIONS(684), - [anon_sym_sealed] = ACTIONS(684), - [anon_sym_non_DASHsealed] = ACTIONS(682), - [anon_sym_record] = ACTIONS(684), - [anon_sym_ATinterface] = ACTIONS(682), - [anon_sym_interface] = ACTIONS(684), - [anon_sym_byte] = ACTIONS(684), - [anon_sym_short] = ACTIONS(684), - [anon_sym_int] = ACTIONS(684), - [anon_sym_long] = ACTIONS(684), - [anon_sym_char] = ACTIONS(684), - [anon_sym_float] = ACTIONS(684), - [anon_sym_double] = ACTIONS(684), - [sym_boolean_type] = ACTIONS(684), - [sym_void_type] = ACTIONS(684), - [sym_this] = ACTIONS(684), - [sym_super] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(672), + [sym_identifier] = ACTIONS(674), + [sym_decimal_integer_literal] = ACTIONS(674), + [sym_hex_integer_literal] = ACTIONS(674), + [sym_octal_integer_literal] = ACTIONS(672), + [sym_binary_integer_literal] = ACTIONS(672), + [sym_decimal_floating_point_literal] = ACTIONS(672), + [sym_hex_floating_point_literal] = ACTIONS(674), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_character_literal] = ACTIONS(672), + [sym_string_literal] = ACTIONS(674), + [sym_text_block] = ACTIONS(672), + [sym_null_literal] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_new] = ACTIONS(674), + [anon_sym_class] = ACTIONS(674), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_case] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_assert] = ACTIONS(674), + [anon_sym_do] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_yield] = ACTIONS(674), + [anon_sym_synchronized] = ACTIONS(674), + [anon_sym_throw] = ACTIONS(674), + [anon_sym_try] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_else] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_open] = ACTIONS(674), + [anon_sym_module] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_package] = ACTIONS(674), + [anon_sym_import] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_public] = ACTIONS(674), + [anon_sym_protected] = ACTIONS(674), + [anon_sym_private] = ACTIONS(674), + [anon_sym_abstract] = ACTIONS(674), + [anon_sym_final] = ACTIONS(674), + [anon_sym_strictfp] = ACTIONS(674), + [anon_sym_native] = ACTIONS(674), + [anon_sym_transient] = ACTIONS(674), + [anon_sym_volatile] = ACTIONS(674), + [anon_sym_sealed] = ACTIONS(674), + [anon_sym_non_DASHsealed] = ACTIONS(672), + [anon_sym_record] = ACTIONS(674), + [anon_sym_ATinterface] = ACTIONS(672), + [anon_sym_interface] = ACTIONS(674), + [anon_sym_byte] = ACTIONS(674), + [anon_sym_short] = ACTIONS(674), + [anon_sym_int] = ACTIONS(674), + [anon_sym_long] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_float] = ACTIONS(674), + [anon_sym_double] = ACTIONS(674), + [sym_boolean_type] = ACTIONS(674), + [sym_void_type] = ACTIONS(674), + [sym_this] = ACTIONS(674), + [sym_super] = ACTIONS(674), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(686), - [sym_identifier] = ACTIONS(688), - [sym_decimal_integer_literal] = ACTIONS(688), - [sym_hex_integer_literal] = ACTIONS(688), - [sym_octal_integer_literal] = ACTIONS(686), - [sym_binary_integer_literal] = ACTIONS(686), - [sym_decimal_floating_point_literal] = ACTIONS(686), - [sym_hex_floating_point_literal] = ACTIONS(688), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_character_literal] = ACTIONS(686), - [sym_string_literal] = ACTIONS(688), - [sym_text_block] = ACTIONS(686), - [sym_null_literal] = ACTIONS(688), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_PLUS] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(688), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(686), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_class] = ACTIONS(688), - [anon_sym_switch] = ACTIONS(688), - [anon_sym_LBRACE] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_case] = ACTIONS(688), - [anon_sym_default] = ACTIONS(688), - [anon_sym_SEMI] = ACTIONS(686), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_do] = ACTIONS(688), - [anon_sym_while] = ACTIONS(688), - [anon_sym_break] = ACTIONS(688), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_return] = ACTIONS(688), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_synchronized] = ACTIONS(688), - [anon_sym_throw] = ACTIONS(688), - [anon_sym_try] = ACTIONS(688), - [anon_sym_if] = ACTIONS(688), - [anon_sym_else] = ACTIONS(688), - [anon_sym_for] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(688), - [anon_sym_open] = ACTIONS(688), - [anon_sym_module] = ACTIONS(688), - [anon_sym_static] = ACTIONS(688), - [anon_sym_package] = ACTIONS(688), - [anon_sym_import] = ACTIONS(688), - [anon_sym_enum] = ACTIONS(688), - [anon_sym_public] = ACTIONS(688), - [anon_sym_protected] = ACTIONS(688), - [anon_sym_private] = ACTIONS(688), - [anon_sym_abstract] = ACTIONS(688), - [anon_sym_final] = ACTIONS(688), - [anon_sym_strictfp] = ACTIONS(688), - [anon_sym_native] = ACTIONS(688), - [anon_sym_transient] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym_sealed] = ACTIONS(688), - [anon_sym_non_DASHsealed] = ACTIONS(686), - [anon_sym_record] = ACTIONS(688), - [anon_sym_ATinterface] = ACTIONS(686), - [anon_sym_interface] = ACTIONS(688), - [anon_sym_byte] = ACTIONS(688), - [anon_sym_short] = ACTIONS(688), - [anon_sym_int] = ACTIONS(688), - [anon_sym_long] = ACTIONS(688), - [anon_sym_char] = ACTIONS(688), - [anon_sym_float] = ACTIONS(688), - [anon_sym_double] = ACTIONS(688), - [sym_boolean_type] = ACTIONS(688), - [sym_void_type] = ACTIONS(688), - [sym_this] = ACTIONS(688), - [sym_super] = ACTIONS(688), + [ts_builtin_sym_end] = ACTIONS(676), + [sym_identifier] = ACTIONS(678), + [sym_decimal_integer_literal] = ACTIONS(678), + [sym_hex_integer_literal] = ACTIONS(678), + [sym_octal_integer_literal] = ACTIONS(676), + [sym_binary_integer_literal] = ACTIONS(676), + [sym_decimal_floating_point_literal] = ACTIONS(676), + [sym_hex_floating_point_literal] = ACTIONS(678), + [sym_true] = ACTIONS(678), + [sym_false] = ACTIONS(678), + [sym_character_literal] = ACTIONS(676), + [sym_string_literal] = ACTIONS(678), + [sym_text_block] = ACTIONS(676), + [sym_null_literal] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(676), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_PLUS_PLUS] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(676), + [anon_sym_new] = ACTIONS(678), + [anon_sym_class] = ACTIONS(678), + [anon_sym_switch] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_case] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_assert] = ACTIONS(678), + [anon_sym_do] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_synchronized] = ACTIONS(678), + [anon_sym_throw] = ACTIONS(678), + [anon_sym_try] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_else] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(678), + [anon_sym_open] = ACTIONS(678), + [anon_sym_module] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_package] = ACTIONS(678), + [anon_sym_import] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_public] = ACTIONS(678), + [anon_sym_protected] = ACTIONS(678), + [anon_sym_private] = ACTIONS(678), + [anon_sym_abstract] = ACTIONS(678), + [anon_sym_final] = ACTIONS(678), + [anon_sym_strictfp] = ACTIONS(678), + [anon_sym_native] = ACTIONS(678), + [anon_sym_transient] = ACTIONS(678), + [anon_sym_volatile] = ACTIONS(678), + [anon_sym_sealed] = ACTIONS(678), + [anon_sym_non_DASHsealed] = ACTIONS(676), + [anon_sym_record] = ACTIONS(678), + [anon_sym_ATinterface] = ACTIONS(676), + [anon_sym_interface] = ACTIONS(678), + [anon_sym_byte] = ACTIONS(678), + [anon_sym_short] = ACTIONS(678), + [anon_sym_int] = ACTIONS(678), + [anon_sym_long] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_float] = ACTIONS(678), + [anon_sym_double] = ACTIONS(678), + [sym_boolean_type] = ACTIONS(678), + [sym_void_type] = ACTIONS(678), + [sym_this] = ACTIONS(678), + [sym_super] = ACTIONS(678), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [187] = { - [ts_builtin_sym_end] = ACTIONS(690), - [sym_identifier] = ACTIONS(692), - [sym_decimal_integer_literal] = ACTIONS(692), - [sym_hex_integer_literal] = ACTIONS(692), - [sym_octal_integer_literal] = ACTIONS(690), - [sym_binary_integer_literal] = ACTIONS(690), - [sym_decimal_floating_point_literal] = ACTIONS(690), - [sym_hex_floating_point_literal] = ACTIONS(692), - [sym_true] = ACTIONS(692), - [sym_false] = ACTIONS(692), - [sym_character_literal] = ACTIONS(690), - [sym_string_literal] = ACTIONS(692), - [sym_text_block] = ACTIONS(690), - [sym_null_literal] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_PLUS_PLUS] = ACTIONS(690), - [anon_sym_DASH_DASH] = ACTIONS(690), - [anon_sym_new] = ACTIONS(692), - [anon_sym_class] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(690), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_case] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_assert] = ACTIONS(692), - [anon_sym_do] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_yield] = ACTIONS(692), - [anon_sym_synchronized] = ACTIONS(692), - [anon_sym_throw] = ACTIONS(692), - [anon_sym_try] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_else] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_AT] = ACTIONS(692), - [anon_sym_open] = ACTIONS(692), - [anon_sym_module] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_package] = ACTIONS(692), - [anon_sym_import] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_public] = ACTIONS(692), - [anon_sym_protected] = ACTIONS(692), - [anon_sym_private] = ACTIONS(692), - [anon_sym_abstract] = ACTIONS(692), - [anon_sym_final] = ACTIONS(692), - [anon_sym_strictfp] = ACTIONS(692), - [anon_sym_native] = ACTIONS(692), - [anon_sym_transient] = ACTIONS(692), - [anon_sym_volatile] = ACTIONS(692), - [anon_sym_sealed] = ACTIONS(692), - [anon_sym_non_DASHsealed] = ACTIONS(690), - [anon_sym_record] = ACTIONS(692), - [anon_sym_ATinterface] = ACTIONS(690), - [anon_sym_interface] = ACTIONS(692), - [anon_sym_byte] = ACTIONS(692), - [anon_sym_short] = ACTIONS(692), - [anon_sym_int] = ACTIONS(692), - [anon_sym_long] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_float] = ACTIONS(692), - [anon_sym_double] = ACTIONS(692), - [sym_boolean_type] = ACTIONS(692), - [sym_void_type] = ACTIONS(692), - [sym_this] = ACTIONS(692), - [sym_super] = ACTIONS(692), + [ts_builtin_sym_end] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [sym_decimal_integer_literal] = ACTIONS(682), + [sym_hex_integer_literal] = ACTIONS(682), + [sym_octal_integer_literal] = ACTIONS(680), + [sym_binary_integer_literal] = ACTIONS(680), + [sym_decimal_floating_point_literal] = ACTIONS(680), + [sym_hex_floating_point_literal] = ACTIONS(682), + [sym_true] = ACTIONS(682), + [sym_false] = ACTIONS(682), + [sym_character_literal] = ACTIONS(680), + [sym_string_literal] = ACTIONS(682), + [sym_text_block] = ACTIONS(680), + [sym_null_literal] = ACTIONS(682), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_TILDE] = ACTIONS(680), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [anon_sym_new] = ACTIONS(682), + [anon_sym_class] = ACTIONS(682), + [anon_sym_switch] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_case] = ACTIONS(682), + [anon_sym_default] = ACTIONS(682), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_assert] = ACTIONS(682), + [anon_sym_do] = ACTIONS(682), + [anon_sym_while] = ACTIONS(682), + [anon_sym_break] = ACTIONS(682), + [anon_sym_continue] = ACTIONS(682), + [anon_sym_return] = ACTIONS(682), + [anon_sym_yield] = ACTIONS(682), + [anon_sym_synchronized] = ACTIONS(682), + [anon_sym_throw] = ACTIONS(682), + [anon_sym_try] = ACTIONS(682), + [anon_sym_if] = ACTIONS(682), + [anon_sym_else] = ACTIONS(682), + [anon_sym_for] = ACTIONS(682), + [anon_sym_AT] = ACTIONS(682), + [anon_sym_open] = ACTIONS(682), + [anon_sym_module] = ACTIONS(682), + [anon_sym_static] = ACTIONS(682), + [anon_sym_package] = ACTIONS(682), + [anon_sym_import] = ACTIONS(682), + [anon_sym_enum] = ACTIONS(682), + [anon_sym_public] = ACTIONS(682), + [anon_sym_protected] = ACTIONS(682), + [anon_sym_private] = ACTIONS(682), + [anon_sym_abstract] = ACTIONS(682), + [anon_sym_final] = ACTIONS(682), + [anon_sym_strictfp] = ACTIONS(682), + [anon_sym_native] = ACTIONS(682), + [anon_sym_transient] = ACTIONS(682), + [anon_sym_volatile] = ACTIONS(682), + [anon_sym_sealed] = ACTIONS(682), + [anon_sym_non_DASHsealed] = ACTIONS(680), + [anon_sym_record] = ACTIONS(682), + [anon_sym_ATinterface] = ACTIONS(680), + [anon_sym_interface] = ACTIONS(682), + [anon_sym_byte] = ACTIONS(682), + [anon_sym_short] = ACTIONS(682), + [anon_sym_int] = ACTIONS(682), + [anon_sym_long] = ACTIONS(682), + [anon_sym_char] = ACTIONS(682), + [anon_sym_float] = ACTIONS(682), + [anon_sym_double] = ACTIONS(682), + [sym_boolean_type] = ACTIONS(682), + [sym_void_type] = ACTIONS(682), + [sym_this] = ACTIONS(682), + [sym_super] = ACTIONS(682), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [188] = { - [ts_builtin_sym_end] = ACTIONS(694), + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [sym_true] = ACTIONS(686), + [sym_false] = ACTIONS(686), + [sym_character_literal] = ACTIONS(684), + [sym_string_literal] = ACTIONS(686), + [sym_text_block] = ACTIONS(684), + [sym_null_literal] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [anon_sym_new] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_case] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_synchronized] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_else] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_open] = ACTIONS(686), + [anon_sym_module] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_package] = ACTIONS(686), + [anon_sym_import] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_public] = ACTIONS(686), + [anon_sym_protected] = ACTIONS(686), + [anon_sym_private] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_strictfp] = ACTIONS(686), + [anon_sym_native] = ACTIONS(686), + [anon_sym_transient] = ACTIONS(686), + [anon_sym_volatile] = ACTIONS(686), + [anon_sym_sealed] = ACTIONS(686), + [anon_sym_non_DASHsealed] = ACTIONS(684), + [anon_sym_record] = ACTIONS(686), + [anon_sym_ATinterface] = ACTIONS(684), + [anon_sym_interface] = ACTIONS(686), + [anon_sym_byte] = ACTIONS(686), + [anon_sym_short] = ACTIONS(686), + [anon_sym_int] = ACTIONS(686), + [anon_sym_long] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_float] = ACTIONS(686), + [anon_sym_double] = ACTIONS(686), + [sym_boolean_type] = ACTIONS(686), + [sym_void_type] = ACTIONS(686), + [sym_this] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [189] = { + [ts_builtin_sym_end] = ACTIONS(688), + [sym_identifier] = ACTIONS(690), + [sym_decimal_integer_literal] = ACTIONS(690), + [sym_hex_integer_literal] = ACTIONS(690), + [sym_octal_integer_literal] = ACTIONS(688), + [sym_binary_integer_literal] = ACTIONS(688), + [sym_decimal_floating_point_literal] = ACTIONS(688), + [sym_hex_floating_point_literal] = ACTIONS(690), + [sym_true] = ACTIONS(690), + [sym_false] = ACTIONS(690), + [sym_character_literal] = ACTIONS(688), + [sym_string_literal] = ACTIONS(690), + [sym_text_block] = ACTIONS(688), + [sym_null_literal] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [anon_sym_new] = ACTIONS(690), + [anon_sym_class] = ACTIONS(690), + [anon_sym_switch] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_case] = ACTIONS(690), + [anon_sym_default] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(690), + [anon_sym_do] = ACTIONS(690), + [anon_sym_while] = ACTIONS(690), + [anon_sym_break] = ACTIONS(690), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_return] = ACTIONS(690), + [anon_sym_yield] = ACTIONS(690), + [anon_sym_synchronized] = ACTIONS(690), + [anon_sym_throw] = ACTIONS(690), + [anon_sym_try] = ACTIONS(690), + [anon_sym_if] = ACTIONS(690), + [anon_sym_else] = ACTIONS(690), + [anon_sym_for] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym_open] = ACTIONS(690), + [anon_sym_module] = ACTIONS(690), + [anon_sym_static] = ACTIONS(690), + [anon_sym_package] = ACTIONS(690), + [anon_sym_import] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(690), + [anon_sym_public] = ACTIONS(690), + [anon_sym_protected] = ACTIONS(690), + [anon_sym_private] = ACTIONS(690), + [anon_sym_abstract] = ACTIONS(690), + [anon_sym_final] = ACTIONS(690), + [anon_sym_strictfp] = ACTIONS(690), + [anon_sym_native] = ACTIONS(690), + [anon_sym_transient] = ACTIONS(690), + [anon_sym_volatile] = ACTIONS(690), + [anon_sym_sealed] = ACTIONS(690), + [anon_sym_non_DASHsealed] = ACTIONS(688), + [anon_sym_record] = ACTIONS(690), + [anon_sym_ATinterface] = ACTIONS(688), + [anon_sym_interface] = ACTIONS(690), + [anon_sym_byte] = ACTIONS(690), + [anon_sym_short] = ACTIONS(690), + [anon_sym_int] = ACTIONS(690), + [anon_sym_long] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_float] = ACTIONS(690), + [anon_sym_double] = ACTIONS(690), + [sym_boolean_type] = ACTIONS(690), + [sym_void_type] = ACTIONS(690), + [sym_this] = ACTIONS(690), + [sym_super] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [190] = { + [ts_builtin_sym_end] = ACTIONS(692), + [sym_identifier] = ACTIONS(694), + [sym_decimal_integer_literal] = ACTIONS(694), + [sym_hex_integer_literal] = ACTIONS(694), + [sym_octal_integer_literal] = ACTIONS(692), + [sym_binary_integer_literal] = ACTIONS(692), + [sym_decimal_floating_point_literal] = ACTIONS(692), + [sym_hex_floating_point_literal] = ACTIONS(694), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_character_literal] = ACTIONS(692), + [sym_string_literal] = ACTIONS(694), + [sym_text_block] = ACTIONS(692), + [sym_null_literal] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_case] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_assert] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(694), + [anon_sym_synchronized] = ACTIONS(694), + [anon_sym_throw] = ACTIONS(694), + [anon_sym_try] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_open] = ACTIONS(694), + [anon_sym_module] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_package] = ACTIONS(694), + [anon_sym_import] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_protected] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_abstract] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), + [anon_sym_strictfp] = ACTIONS(694), + [anon_sym_native] = ACTIONS(694), + [anon_sym_transient] = ACTIONS(694), + [anon_sym_volatile] = ACTIONS(694), + [anon_sym_sealed] = ACTIONS(694), + [anon_sym_non_DASHsealed] = ACTIONS(692), + [anon_sym_record] = ACTIONS(694), + [anon_sym_ATinterface] = ACTIONS(692), + [anon_sym_interface] = ACTIONS(694), + [anon_sym_byte] = ACTIONS(694), + [anon_sym_short] = ACTIONS(694), + [anon_sym_int] = ACTIONS(694), + [anon_sym_long] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_float] = ACTIONS(694), + [anon_sym_double] = ACTIONS(694), + [sym_boolean_type] = ACTIONS(694), + [sym_void_type] = ACTIONS(694), + [sym_this] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [191] = { + [sym_switch_label] = STATE(1219), + [aux_sym_switch_block_statement_group_repeat1] = STATE(191), [sym_identifier] = ACTIONS(696), [sym_decimal_integer_literal] = ACTIONS(696), [sym_hex_integer_literal] = ACTIONS(696), - [sym_octal_integer_literal] = ACTIONS(694), - [sym_binary_integer_literal] = ACTIONS(694), - [sym_decimal_floating_point_literal] = ACTIONS(694), + [sym_octal_integer_literal] = ACTIONS(698), + [sym_binary_integer_literal] = ACTIONS(698), + [sym_decimal_floating_point_literal] = ACTIONS(698), [sym_hex_floating_point_literal] = ACTIONS(696), [sym_true] = ACTIONS(696), [sym_false] = ACTIONS(696), - [sym_character_literal] = ACTIONS(694), + [sym_character_literal] = ACTIONS(698), [sym_string_literal] = ACTIONS(696), - [sym_text_block] = ACTIONS(694), + [sym_text_block] = ACTIONS(698), [sym_null_literal] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(698), [anon_sym_PLUS] = ACTIONS(696), [anon_sym_DASH] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), [anon_sym_new] = ACTIONS(696), [anon_sym_class] = ACTIONS(696), [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_case] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_default] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(698), [anon_sym_assert] = ACTIONS(696), [anon_sym_do] = ACTIONS(696), [anon_sym_while] = ACTIONS(696), @@ -27777,7 +28017,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(696), [anon_sym_try] = ACTIONS(696), [anon_sym_if] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), [anon_sym_for] = ACTIONS(696), [anon_sym_AT] = ACTIONS(696), [anon_sym_open] = ACTIONS(696), @@ -27796,9 +28035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_transient] = ACTIONS(696), [anon_sym_volatile] = ACTIONS(696), [anon_sym_sealed] = ACTIONS(696), - [anon_sym_non_DASHsealed] = ACTIONS(694), + [anon_sym_non_DASHsealed] = ACTIONS(698), [anon_sym_record] = ACTIONS(696), - [anon_sym_ATinterface] = ACTIONS(694), + [anon_sym_ATinterface] = ACTIONS(698), [anon_sym_interface] = ACTIONS(696), [anon_sym_byte] = ACTIONS(696), [anon_sym_short] = ACTIONS(696), @@ -27814,240 +28053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(700), - [sym_decimal_integer_literal] = ACTIONS(700), - [sym_hex_integer_literal] = ACTIONS(700), - [sym_octal_integer_literal] = ACTIONS(698), - [sym_binary_integer_literal] = ACTIONS(698), - [sym_decimal_floating_point_literal] = ACTIONS(698), - [sym_hex_floating_point_literal] = ACTIONS(700), - [sym_true] = ACTIONS(700), - [sym_false] = ACTIONS(700), - [sym_character_literal] = ACTIONS(698), - [sym_string_literal] = ACTIONS(700), - [sym_text_block] = ACTIONS(698), - [sym_null_literal] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_new] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(698), - [anon_sym_assert] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_synchronized] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_try] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_open] = ACTIONS(700), - [anon_sym_module] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_package] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_protected] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_strictfp] = ACTIONS(700), - [anon_sym_native] = ACTIONS(700), - [anon_sym_transient] = ACTIONS(700), - [anon_sym_volatile] = ACTIONS(700), - [anon_sym_sealed] = ACTIONS(700), - [anon_sym_non_DASHsealed] = ACTIONS(698), - [anon_sym_record] = ACTIONS(700), - [anon_sym_ATinterface] = ACTIONS(698), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_byte] = ACTIONS(700), - [anon_sym_short] = ACTIONS(700), - [anon_sym_int] = ACTIONS(700), - [anon_sym_long] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_float] = ACTIONS(700), - [anon_sym_double] = ACTIONS(700), - [sym_boolean_type] = ACTIONS(700), - [sym_void_type] = ACTIONS(700), - [sym_this] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(702), - [sym_identifier] = ACTIONS(704), - [sym_decimal_integer_literal] = ACTIONS(704), - [sym_hex_integer_literal] = ACTIONS(704), - [sym_octal_integer_literal] = ACTIONS(702), - [sym_binary_integer_literal] = ACTIONS(702), - [sym_decimal_floating_point_literal] = ACTIONS(702), - [sym_hex_floating_point_literal] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_character_literal] = ACTIONS(702), - [sym_string_literal] = ACTIONS(704), - [sym_text_block] = ACTIONS(702), - [sym_null_literal] = ACTIONS(704), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_PLUS_PLUS] = ACTIONS(702), - [anon_sym_DASH_DASH] = ACTIONS(702), - [anon_sym_new] = ACTIONS(704), - [anon_sym_class] = ACTIONS(704), - [anon_sym_switch] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_case] = ACTIONS(704), - [anon_sym_default] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(702), - [anon_sym_assert] = ACTIONS(704), - [anon_sym_do] = ACTIONS(704), - [anon_sym_while] = ACTIONS(704), - [anon_sym_break] = ACTIONS(704), - [anon_sym_continue] = ACTIONS(704), - [anon_sym_return] = ACTIONS(704), - [anon_sym_yield] = ACTIONS(704), - [anon_sym_synchronized] = ACTIONS(704), - [anon_sym_throw] = ACTIONS(704), - [anon_sym_try] = ACTIONS(704), - [anon_sym_if] = ACTIONS(704), - [anon_sym_else] = ACTIONS(704), - [anon_sym_for] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(704), - [anon_sym_open] = ACTIONS(704), - [anon_sym_module] = ACTIONS(704), - [anon_sym_static] = ACTIONS(704), - [anon_sym_package] = ACTIONS(704), - [anon_sym_import] = ACTIONS(704), - [anon_sym_enum] = ACTIONS(704), - [anon_sym_public] = ACTIONS(704), - [anon_sym_protected] = ACTIONS(704), - [anon_sym_private] = ACTIONS(704), - [anon_sym_abstract] = ACTIONS(704), - [anon_sym_final] = ACTIONS(704), - [anon_sym_strictfp] = ACTIONS(704), - [anon_sym_native] = ACTIONS(704), - [anon_sym_transient] = ACTIONS(704), - [anon_sym_volatile] = ACTIONS(704), - [anon_sym_sealed] = ACTIONS(704), - [anon_sym_non_DASHsealed] = ACTIONS(702), - [anon_sym_record] = ACTIONS(704), - [anon_sym_ATinterface] = ACTIONS(702), - [anon_sym_interface] = ACTIONS(704), - [anon_sym_byte] = ACTIONS(704), - [anon_sym_short] = ACTIONS(704), - [anon_sym_int] = ACTIONS(704), - [anon_sym_long] = ACTIONS(704), - [anon_sym_char] = ACTIONS(704), - [anon_sym_float] = ACTIONS(704), - [anon_sym_double] = ACTIONS(704), - [sym_boolean_type] = ACTIONS(704), - [sym_void_type] = ACTIONS(704), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [191] = { - [ts_builtin_sym_end] = ACTIONS(321), - [sym_identifier] = ACTIONS(323), - [sym_decimal_integer_literal] = ACTIONS(323), - [sym_hex_integer_literal] = ACTIONS(323), - [sym_octal_integer_literal] = ACTIONS(321), - [sym_binary_integer_literal] = ACTIONS(321), - [sym_decimal_floating_point_literal] = ACTIONS(321), - [sym_hex_floating_point_literal] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_character_literal] = ACTIONS(321), - [sym_string_literal] = ACTIONS(323), - [sym_text_block] = ACTIONS(321), - [sym_null_literal] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(323), - [anon_sym_BANG] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_class] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_case] = ACTIONS(323), - [anon_sym_default] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_assert] = ACTIONS(323), - [anon_sym_do] = ACTIONS(323), - [anon_sym_while] = ACTIONS(323), - [anon_sym_break] = ACTIONS(323), - [anon_sym_continue] = ACTIONS(323), - [anon_sym_return] = ACTIONS(323), - [anon_sym_yield] = ACTIONS(323), - [anon_sym_synchronized] = ACTIONS(323), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_try] = ACTIONS(323), - [anon_sym_if] = ACTIONS(323), - [anon_sym_else] = ACTIONS(323), - [anon_sym_for] = ACTIONS(323), - [anon_sym_AT] = ACTIONS(323), - [anon_sym_open] = ACTIONS(323), - [anon_sym_module] = ACTIONS(323), - [anon_sym_static] = ACTIONS(323), - [anon_sym_package] = ACTIONS(323), - [anon_sym_import] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(323), - [anon_sym_public] = ACTIONS(323), - [anon_sym_protected] = ACTIONS(323), - [anon_sym_private] = ACTIONS(323), - [anon_sym_abstract] = ACTIONS(323), - [anon_sym_final] = ACTIONS(323), - [anon_sym_strictfp] = ACTIONS(323), - [anon_sym_native] = ACTIONS(323), - [anon_sym_transient] = ACTIONS(323), - [anon_sym_volatile] = ACTIONS(323), - [anon_sym_sealed] = ACTIONS(323), - [anon_sym_non_DASHsealed] = ACTIONS(321), - [anon_sym_record] = ACTIONS(323), - [anon_sym_ATinterface] = ACTIONS(321), - [anon_sym_interface] = ACTIONS(323), - [anon_sym_byte] = ACTIONS(323), - [anon_sym_short] = ACTIONS(323), - [anon_sym_int] = ACTIONS(323), - [anon_sym_long] = ACTIONS(323), - [anon_sym_char] = ACTIONS(323), - [anon_sym_float] = ACTIONS(323), - [anon_sym_double] = ACTIONS(323), - [sym_boolean_type] = ACTIONS(323), - [sym_void_type] = ACTIONS(323), - [sym_this] = ACTIONS(323), - [sym_super] = ACTIONS(323), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [192] = { [ts_builtin_sym_end] = ACTIONS(706), [sym_identifier] = ACTIONS(708), @@ -28361,42 +28366,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(511), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym_block] = STATE(508), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym_array_initializer] = STATE(957), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28419,11 +28424,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -28985,1134 +28990,822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_switch_label] = STATE(1208), - [aux_sym_switch_block_statement_group_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(750), - [sym_decimal_integer_literal] = ACTIONS(750), - [sym_hex_integer_literal] = ACTIONS(750), - [sym_octal_integer_literal] = ACTIONS(752), - [sym_binary_integer_literal] = ACTIONS(752), - [sym_decimal_floating_point_literal] = ACTIONS(752), - [sym_hex_floating_point_literal] = ACTIONS(750), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_character_literal] = ACTIONS(752), - [sym_string_literal] = ACTIONS(750), - [sym_text_block] = ACTIONS(752), - [sym_null_literal] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_new] = ACTIONS(750), - [anon_sym_class] = ACTIONS(750), - [anon_sym_switch] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_case] = ACTIONS(754), - [anon_sym_default] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_do] = ACTIONS(750), - [anon_sym_while] = ACTIONS(750), - [anon_sym_break] = ACTIONS(750), - [anon_sym_continue] = ACTIONS(750), - [anon_sym_return] = ACTIONS(750), - [anon_sym_yield] = ACTIONS(750), - [anon_sym_synchronized] = ACTIONS(750), - [anon_sym_throw] = ACTIONS(750), - [anon_sym_try] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_for] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_static] = ACTIONS(750), - [anon_sym_package] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_enum] = ACTIONS(750), - [anon_sym_public] = ACTIONS(750), - [anon_sym_protected] = ACTIONS(750), - [anon_sym_private] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(750), - [anon_sym_final] = ACTIONS(750), - [anon_sym_strictfp] = ACTIONS(750), - [anon_sym_native] = ACTIONS(750), - [anon_sym_transient] = ACTIONS(750), - [anon_sym_volatile] = ACTIONS(750), - [anon_sym_sealed] = ACTIONS(750), - [anon_sym_non_DASHsealed] = ACTIONS(752), - [anon_sym_record] = ACTIONS(750), - [anon_sym_ATinterface] = ACTIONS(752), - [anon_sym_interface] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(750), - [anon_sym_short] = ACTIONS(750), - [anon_sym_int] = ACTIONS(750), - [anon_sym_long] = ACTIONS(750), - [anon_sym_char] = ACTIONS(750), - [anon_sym_float] = ACTIONS(750), - [anon_sym_double] = ACTIONS(750), - [sym_boolean_type] = ACTIONS(750), - [sym_void_type] = ACTIONS(750), - [sym_this] = ACTIONS(750), - [sym_super] = ACTIONS(750), + [ts_builtin_sym_end] = ACTIONS(750), + [sym_identifier] = ACTIONS(752), + [sym_decimal_integer_literal] = ACTIONS(752), + [sym_hex_integer_literal] = ACTIONS(752), + [sym_octal_integer_literal] = ACTIONS(750), + [sym_binary_integer_literal] = ACTIONS(750), + [sym_decimal_floating_point_literal] = ACTIONS(750), + [sym_hex_floating_point_literal] = ACTIONS(752), + [sym_true] = ACTIONS(752), + [sym_false] = ACTIONS(752), + [sym_character_literal] = ACTIONS(750), + [sym_string_literal] = ACTIONS(752), + [sym_text_block] = ACTIONS(750), + [sym_null_literal] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_new] = ACTIONS(752), + [anon_sym_class] = ACTIONS(752), + [anon_sym_switch] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_case] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(752), + [anon_sym_synchronized] = ACTIONS(752), + [anon_sym_throw] = ACTIONS(752), + [anon_sym_try] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_else] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_open] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_static] = ACTIONS(752), + [anon_sym_package] = ACTIONS(752), + [anon_sym_import] = ACTIONS(752), + [anon_sym_enum] = ACTIONS(752), + [anon_sym_public] = ACTIONS(752), + [anon_sym_protected] = ACTIONS(752), + [anon_sym_private] = ACTIONS(752), + [anon_sym_abstract] = ACTIONS(752), + [anon_sym_final] = ACTIONS(752), + [anon_sym_strictfp] = ACTIONS(752), + [anon_sym_native] = ACTIONS(752), + [anon_sym_transient] = ACTIONS(752), + [anon_sym_volatile] = ACTIONS(752), + [anon_sym_sealed] = ACTIONS(752), + [anon_sym_non_DASHsealed] = ACTIONS(750), + [anon_sym_record] = ACTIONS(752), + [anon_sym_ATinterface] = ACTIONS(750), + [anon_sym_interface] = ACTIONS(752), + [anon_sym_byte] = ACTIONS(752), + [anon_sym_short] = ACTIONS(752), + [anon_sym_int] = ACTIONS(752), + [anon_sym_long] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_float] = ACTIONS(752), + [anon_sym_double] = ACTIONS(752), + [sym_boolean_type] = ACTIONS(752), + [sym_void_type] = ACTIONS(752), + [sym_this] = ACTIONS(752), + [sym_super] = ACTIONS(752), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(760), - [sym_identifier] = ACTIONS(762), - [sym_decimal_integer_literal] = ACTIONS(762), - [sym_hex_integer_literal] = ACTIONS(762), - [sym_octal_integer_literal] = ACTIONS(760), - [sym_binary_integer_literal] = ACTIONS(760), - [sym_decimal_floating_point_literal] = ACTIONS(760), - [sym_hex_floating_point_literal] = ACTIONS(762), - [sym_true] = ACTIONS(762), - [sym_false] = ACTIONS(762), - [sym_character_literal] = ACTIONS(760), - [sym_string_literal] = ACTIONS(762), - [sym_text_block] = ACTIONS(760), - [sym_null_literal] = ACTIONS(762), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_TILDE] = ACTIONS(760), - [anon_sym_PLUS_PLUS] = ACTIONS(760), - [anon_sym_DASH_DASH] = ACTIONS(760), - [anon_sym_new] = ACTIONS(762), - [anon_sym_class] = ACTIONS(762), - [anon_sym_switch] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_RBRACE] = ACTIONS(760), - [anon_sym_case] = ACTIONS(762), - [anon_sym_default] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(760), - [anon_sym_assert] = ACTIONS(762), - [anon_sym_do] = ACTIONS(762), - [anon_sym_while] = ACTIONS(762), - [anon_sym_break] = ACTIONS(762), - [anon_sym_continue] = ACTIONS(762), - [anon_sym_return] = ACTIONS(762), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_synchronized] = ACTIONS(762), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_try] = ACTIONS(762), - [anon_sym_if] = ACTIONS(762), - [anon_sym_else] = ACTIONS(762), - [anon_sym_for] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_open] = ACTIONS(762), - [anon_sym_module] = ACTIONS(762), - [anon_sym_static] = ACTIONS(762), - [anon_sym_package] = ACTIONS(762), - [anon_sym_import] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(762), - [anon_sym_public] = ACTIONS(762), - [anon_sym_protected] = ACTIONS(762), - [anon_sym_private] = ACTIONS(762), - [anon_sym_abstract] = ACTIONS(762), - [anon_sym_final] = ACTIONS(762), - [anon_sym_strictfp] = ACTIONS(762), - [anon_sym_native] = ACTIONS(762), - [anon_sym_transient] = ACTIONS(762), - [anon_sym_volatile] = ACTIONS(762), - [anon_sym_sealed] = ACTIONS(762), - [anon_sym_non_DASHsealed] = ACTIONS(760), - [anon_sym_record] = ACTIONS(762), - [anon_sym_ATinterface] = ACTIONS(760), - [anon_sym_interface] = ACTIONS(762), - [anon_sym_byte] = ACTIONS(762), - [anon_sym_short] = ACTIONS(762), - [anon_sym_int] = ACTIONS(762), - [anon_sym_long] = ACTIONS(762), - [anon_sym_char] = ACTIONS(762), - [anon_sym_float] = ACTIONS(762), - [anon_sym_double] = ACTIONS(762), - [sym_boolean_type] = ACTIONS(762), - [sym_void_type] = ACTIONS(762), - [sym_this] = ACTIONS(762), - [sym_super] = ACTIONS(762), + [ts_builtin_sym_end] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), + [sym_decimal_integer_literal] = ACTIONS(756), + [sym_hex_integer_literal] = ACTIONS(756), + [sym_octal_integer_literal] = ACTIONS(754), + [sym_binary_integer_literal] = ACTIONS(754), + [sym_decimal_floating_point_literal] = ACTIONS(754), + [sym_hex_floating_point_literal] = ACTIONS(756), + [sym_true] = ACTIONS(756), + [sym_false] = ACTIONS(756), + [sym_character_literal] = ACTIONS(754), + [sym_string_literal] = ACTIONS(756), + [sym_text_block] = ACTIONS(754), + [sym_null_literal] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(754), + [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_new] = ACTIONS(756), + [anon_sym_class] = ACTIONS(756), + [anon_sym_switch] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_case] = ACTIONS(756), + [anon_sym_default] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_assert] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_yield] = ACTIONS(756), + [anon_sym_synchronized] = ACTIONS(756), + [anon_sym_throw] = ACTIONS(756), + [anon_sym_try] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_else] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_open] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_static] = ACTIONS(756), + [anon_sym_package] = ACTIONS(756), + [anon_sym_import] = ACTIONS(756), + [anon_sym_enum] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_abstract] = ACTIONS(756), + [anon_sym_final] = ACTIONS(756), + [anon_sym_strictfp] = ACTIONS(756), + [anon_sym_native] = ACTIONS(756), + [anon_sym_transient] = ACTIONS(756), + [anon_sym_volatile] = ACTIONS(756), + [anon_sym_sealed] = ACTIONS(756), + [anon_sym_non_DASHsealed] = ACTIONS(754), + [anon_sym_record] = ACTIONS(756), + [anon_sym_ATinterface] = ACTIONS(754), + [anon_sym_interface] = ACTIONS(756), + [anon_sym_byte] = ACTIONS(756), + [anon_sym_short] = ACTIONS(756), + [anon_sym_int] = ACTIONS(756), + [anon_sym_long] = ACTIONS(756), + [anon_sym_char] = ACTIONS(756), + [anon_sym_float] = ACTIONS(756), + [anon_sym_double] = ACTIONS(756), + [sym_boolean_type] = ACTIONS(756), + [sym_void_type] = ACTIONS(756), + [sym_this] = ACTIONS(756), + [sym_super] = ACTIONS(756), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [206] = { - [ts_builtin_sym_end] = ACTIONS(764), - [sym_identifier] = ACTIONS(766), - [sym_decimal_integer_literal] = ACTIONS(766), - [sym_hex_integer_literal] = ACTIONS(766), - [sym_octal_integer_literal] = ACTIONS(764), - [sym_binary_integer_literal] = ACTIONS(764), - [sym_decimal_floating_point_literal] = ACTIONS(764), - [sym_hex_floating_point_literal] = ACTIONS(766), - [sym_true] = ACTIONS(766), - [sym_false] = ACTIONS(766), - [sym_character_literal] = ACTIONS(764), - [sym_string_literal] = ACTIONS(766), - [sym_text_block] = ACTIONS(764), - [sym_null_literal] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_new] = ACTIONS(766), - [anon_sym_class] = ACTIONS(766), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_case] = ACTIONS(766), - [anon_sym_default] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_assert] = ACTIONS(766), - [anon_sym_do] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_return] = ACTIONS(766), - [anon_sym_yield] = ACTIONS(766), - [anon_sym_synchronized] = ACTIONS(766), - [anon_sym_throw] = ACTIONS(766), - [anon_sym_try] = ACTIONS(766), - [anon_sym_if] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_for] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_open] = ACTIONS(766), - [anon_sym_module] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_package] = ACTIONS(766), - [anon_sym_import] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_public] = ACTIONS(766), - [anon_sym_protected] = ACTIONS(766), - [anon_sym_private] = ACTIONS(766), - [anon_sym_abstract] = ACTIONS(766), - [anon_sym_final] = ACTIONS(766), - [anon_sym_strictfp] = ACTIONS(766), - [anon_sym_native] = ACTIONS(766), - [anon_sym_transient] = ACTIONS(766), - [anon_sym_volatile] = ACTIONS(766), - [anon_sym_sealed] = ACTIONS(766), - [anon_sym_non_DASHsealed] = ACTIONS(764), - [anon_sym_record] = ACTIONS(766), - [anon_sym_ATinterface] = ACTIONS(764), - [anon_sym_interface] = ACTIONS(766), - [anon_sym_byte] = ACTIONS(766), - [anon_sym_short] = ACTIONS(766), - [anon_sym_int] = ACTIONS(766), - [anon_sym_long] = ACTIONS(766), - [anon_sym_char] = ACTIONS(766), - [anon_sym_float] = ACTIONS(766), - [anon_sym_double] = ACTIONS(766), - [sym_boolean_type] = ACTIONS(766), - [sym_void_type] = ACTIONS(766), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(766), + [ts_builtin_sym_end] = ACTIONS(758), + [sym_identifier] = ACTIONS(760), + [sym_decimal_integer_literal] = ACTIONS(760), + [sym_hex_integer_literal] = ACTIONS(760), + [sym_octal_integer_literal] = ACTIONS(758), + [sym_binary_integer_literal] = ACTIONS(758), + [sym_decimal_floating_point_literal] = ACTIONS(758), + [sym_hex_floating_point_literal] = ACTIONS(760), + [sym_true] = ACTIONS(760), + [sym_false] = ACTIONS(760), + [sym_character_literal] = ACTIONS(758), + [sym_string_literal] = ACTIONS(760), + [sym_text_block] = ACTIONS(758), + [sym_null_literal] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_class] = ACTIONS(760), + [anon_sym_switch] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_case] = ACTIONS(760), + [anon_sym_default] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_assert] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_synchronized] = ACTIONS(760), + [anon_sym_throw] = ACTIONS(760), + [anon_sym_try] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_else] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_open] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_static] = ACTIONS(760), + [anon_sym_package] = ACTIONS(760), + [anon_sym_import] = ACTIONS(760), + [anon_sym_enum] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_abstract] = ACTIONS(760), + [anon_sym_final] = ACTIONS(760), + [anon_sym_strictfp] = ACTIONS(760), + [anon_sym_native] = ACTIONS(760), + [anon_sym_transient] = ACTIONS(760), + [anon_sym_volatile] = ACTIONS(760), + [anon_sym_sealed] = ACTIONS(760), + [anon_sym_non_DASHsealed] = ACTIONS(758), + [anon_sym_record] = ACTIONS(760), + [anon_sym_ATinterface] = ACTIONS(758), + [anon_sym_interface] = ACTIONS(760), + [anon_sym_byte] = ACTIONS(760), + [anon_sym_short] = ACTIONS(760), + [anon_sym_int] = ACTIONS(760), + [anon_sym_long] = ACTIONS(760), + [anon_sym_char] = ACTIONS(760), + [anon_sym_float] = ACTIONS(760), + [anon_sym_double] = ACTIONS(760), + [sym_boolean_type] = ACTIONS(760), + [sym_void_type] = ACTIONS(760), + [sym_this] = ACTIONS(760), + [sym_super] = ACTIONS(760), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [207] = { - [ts_builtin_sym_end] = ACTIONS(768), - [sym_identifier] = ACTIONS(770), - [sym_decimal_integer_literal] = ACTIONS(770), - [sym_hex_integer_literal] = ACTIONS(770), - [sym_octal_integer_literal] = ACTIONS(768), - [sym_binary_integer_literal] = ACTIONS(768), - [sym_decimal_floating_point_literal] = ACTIONS(768), - [sym_hex_floating_point_literal] = ACTIONS(770), - [sym_true] = ACTIONS(770), - [sym_false] = ACTIONS(770), - [sym_character_literal] = ACTIONS(768), - [sym_string_literal] = ACTIONS(770), - [sym_text_block] = ACTIONS(768), - [sym_null_literal] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_new] = ACTIONS(770), - [anon_sym_class] = ACTIONS(770), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_case] = ACTIONS(770), - [anon_sym_default] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_assert] = ACTIONS(770), - [anon_sym_do] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_return] = ACTIONS(770), - [anon_sym_yield] = ACTIONS(770), - [anon_sym_synchronized] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_try] = ACTIONS(770), - [anon_sym_if] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_for] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_open] = ACTIONS(770), - [anon_sym_module] = ACTIONS(770), - [anon_sym_static] = ACTIONS(770), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_enum] = ACTIONS(770), - [anon_sym_public] = ACTIONS(770), - [anon_sym_protected] = ACTIONS(770), - [anon_sym_private] = ACTIONS(770), - [anon_sym_abstract] = ACTIONS(770), - [anon_sym_final] = ACTIONS(770), - [anon_sym_strictfp] = ACTIONS(770), - [anon_sym_native] = ACTIONS(770), - [anon_sym_transient] = ACTIONS(770), - [anon_sym_volatile] = ACTIONS(770), - [anon_sym_sealed] = ACTIONS(770), - [anon_sym_non_DASHsealed] = ACTIONS(768), - [anon_sym_record] = ACTIONS(770), - [anon_sym_ATinterface] = ACTIONS(768), - [anon_sym_interface] = ACTIONS(770), - [anon_sym_byte] = ACTIONS(770), - [anon_sym_short] = ACTIONS(770), - [anon_sym_int] = ACTIONS(770), - [anon_sym_long] = ACTIONS(770), - [anon_sym_char] = ACTIONS(770), - [anon_sym_float] = ACTIONS(770), - [anon_sym_double] = ACTIONS(770), - [sym_boolean_type] = ACTIONS(770), - [sym_void_type] = ACTIONS(770), - [sym_this] = ACTIONS(770), - [sym_super] = ACTIONS(770), + [ts_builtin_sym_end] = ACTIONS(762), + [sym_identifier] = ACTIONS(764), + [sym_decimal_integer_literal] = ACTIONS(764), + [sym_hex_integer_literal] = ACTIONS(764), + [sym_octal_integer_literal] = ACTIONS(762), + [sym_binary_integer_literal] = ACTIONS(762), + [sym_decimal_floating_point_literal] = ACTIONS(762), + [sym_hex_floating_point_literal] = ACTIONS(764), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_character_literal] = ACTIONS(762), + [sym_string_literal] = ACTIONS(764), + [sym_text_block] = ACTIONS(762), + [sym_null_literal] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_PLUS_PLUS] = ACTIONS(762), + [anon_sym_DASH_DASH] = ACTIONS(762), + [anon_sym_new] = ACTIONS(764), + [anon_sym_class] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_assert] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(764), + [anon_sym_synchronized] = ACTIONS(764), + [anon_sym_throw] = ACTIONS(764), + [anon_sym_try] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_else] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_open] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_static] = ACTIONS(764), + [anon_sym_package] = ACTIONS(764), + [anon_sym_import] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(764), + [anon_sym_public] = ACTIONS(764), + [anon_sym_protected] = ACTIONS(764), + [anon_sym_private] = ACTIONS(764), + [anon_sym_abstract] = ACTIONS(764), + [anon_sym_final] = ACTIONS(764), + [anon_sym_strictfp] = ACTIONS(764), + [anon_sym_native] = ACTIONS(764), + [anon_sym_transient] = ACTIONS(764), + [anon_sym_volatile] = ACTIONS(764), + [anon_sym_sealed] = ACTIONS(764), + [anon_sym_non_DASHsealed] = ACTIONS(762), + [anon_sym_record] = ACTIONS(764), + [anon_sym_ATinterface] = ACTIONS(762), + [anon_sym_interface] = ACTIONS(764), + [anon_sym_byte] = ACTIONS(764), + [anon_sym_short] = ACTIONS(764), + [anon_sym_int] = ACTIONS(764), + [anon_sym_long] = ACTIONS(764), + [anon_sym_char] = ACTIONS(764), + [anon_sym_float] = ACTIONS(764), + [anon_sym_double] = ACTIONS(764), + [sym_boolean_type] = ACTIONS(764), + [sym_void_type] = ACTIONS(764), + [sym_this] = ACTIONS(764), + [sym_super] = ACTIONS(764), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(589), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym_array_initializer] = STATE(1153), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(354), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(766), + [sym_identifier] = ACTIONS(768), + [sym_decimal_integer_literal] = ACTIONS(768), + [sym_hex_integer_literal] = ACTIONS(768), + [sym_octal_integer_literal] = ACTIONS(766), + [sym_binary_integer_literal] = ACTIONS(766), + [sym_decimal_floating_point_literal] = ACTIONS(766), + [sym_hex_floating_point_literal] = ACTIONS(768), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_character_literal] = ACTIONS(766), + [sym_string_literal] = ACTIONS(768), + [sym_text_block] = ACTIONS(766), + [sym_null_literal] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(766), + [anon_sym_DASH_DASH] = ACTIONS(766), + [anon_sym_new] = ACTIONS(768), + [anon_sym_class] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_case] = ACTIONS(768), + [anon_sym_default] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_assert] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_yield] = ACTIONS(768), + [anon_sym_synchronized] = ACTIONS(768), + [anon_sym_throw] = ACTIONS(768), + [anon_sym_try] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_else] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_open] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_static] = ACTIONS(768), + [anon_sym_package] = ACTIONS(768), + [anon_sym_import] = ACTIONS(768), + [anon_sym_enum] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_abstract] = ACTIONS(768), + [anon_sym_final] = ACTIONS(768), + [anon_sym_strictfp] = ACTIONS(768), + [anon_sym_native] = ACTIONS(768), + [anon_sym_transient] = ACTIONS(768), + [anon_sym_volatile] = ACTIONS(768), + [anon_sym_sealed] = ACTIONS(768), + [anon_sym_non_DASHsealed] = ACTIONS(766), + [anon_sym_record] = ACTIONS(768), + [anon_sym_ATinterface] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(768), + [anon_sym_byte] = ACTIONS(768), + [anon_sym_short] = ACTIONS(768), + [anon_sym_int] = ACTIONS(768), + [anon_sym_long] = ACTIONS(768), + [anon_sym_char] = ACTIONS(768), + [anon_sym_float] = ACTIONS(768), + [anon_sym_double] = ACTIONS(768), + [sym_boolean_type] = ACTIONS(768), + [sym_void_type] = ACTIONS(768), + [sym_this] = ACTIONS(768), + [sym_super] = ACTIONS(768), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [209] = { - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(774), - [sym_decimal_integer_literal] = ACTIONS(774), - [sym_hex_integer_literal] = ACTIONS(774), - [sym_octal_integer_literal] = ACTIONS(772), - [sym_binary_integer_literal] = ACTIONS(772), - [sym_decimal_floating_point_literal] = ACTIONS(772), - [sym_hex_floating_point_literal] = ACTIONS(774), - [sym_true] = ACTIONS(774), - [sym_false] = ACTIONS(774), - [sym_character_literal] = ACTIONS(772), - [sym_string_literal] = ACTIONS(774), - [sym_text_block] = ACTIONS(772), - [sym_null_literal] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_class] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_case] = ACTIONS(774), - [anon_sym_default] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_assert] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_yield] = ACTIONS(774), - [anon_sym_synchronized] = ACTIONS(774), - [anon_sym_throw] = ACTIONS(774), - [anon_sym_try] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_for] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(774), - [anon_sym_open] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_static] = ACTIONS(774), - [anon_sym_package] = ACTIONS(774), - [anon_sym_import] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_abstract] = ACTIONS(774), - [anon_sym_final] = ACTIONS(774), - [anon_sym_strictfp] = ACTIONS(774), - [anon_sym_native] = ACTIONS(774), - [anon_sym_transient] = ACTIONS(774), - [anon_sym_volatile] = ACTIONS(774), - [anon_sym_sealed] = ACTIONS(774), - [anon_sym_non_DASHsealed] = ACTIONS(772), - [anon_sym_record] = ACTIONS(774), - [anon_sym_ATinterface] = ACTIONS(772), - [anon_sym_interface] = ACTIONS(774), - [anon_sym_byte] = ACTIONS(774), - [anon_sym_short] = ACTIONS(774), - [anon_sym_int] = ACTIONS(774), - [anon_sym_long] = ACTIONS(774), - [anon_sym_char] = ACTIONS(774), - [anon_sym_float] = ACTIONS(774), - [anon_sym_double] = ACTIONS(774), - [sym_boolean_type] = ACTIONS(774), - [sym_void_type] = ACTIONS(774), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(774), + [ts_builtin_sym_end] = ACTIONS(770), + [sym_identifier] = ACTIONS(772), + [sym_decimal_integer_literal] = ACTIONS(772), + [sym_hex_integer_literal] = ACTIONS(772), + [sym_octal_integer_literal] = ACTIONS(770), + [sym_binary_integer_literal] = ACTIONS(770), + [sym_decimal_floating_point_literal] = ACTIONS(770), + [sym_hex_floating_point_literal] = ACTIONS(772), + [sym_true] = ACTIONS(772), + [sym_false] = ACTIONS(772), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(772), + [sym_text_block] = ACTIONS(770), + [sym_null_literal] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(770), + [anon_sym_DASH_DASH] = ACTIONS(770), + [anon_sym_new] = ACTIONS(772), + [anon_sym_class] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_case] = ACTIONS(772), + [anon_sym_default] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_assert] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(772), + [anon_sym_synchronized] = ACTIONS(772), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_else] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [anon_sym_open] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_static] = ACTIONS(772), + [anon_sym_package] = ACTIONS(772), + [anon_sym_import] = ACTIONS(772), + [anon_sym_enum] = ACTIONS(772), + [anon_sym_public] = ACTIONS(772), + [anon_sym_protected] = ACTIONS(772), + [anon_sym_private] = ACTIONS(772), + [anon_sym_abstract] = ACTIONS(772), + [anon_sym_final] = ACTIONS(772), + [anon_sym_strictfp] = ACTIONS(772), + [anon_sym_native] = ACTIONS(772), + [anon_sym_transient] = ACTIONS(772), + [anon_sym_volatile] = ACTIONS(772), + [anon_sym_sealed] = ACTIONS(772), + [anon_sym_non_DASHsealed] = ACTIONS(770), + [anon_sym_record] = ACTIONS(772), + [anon_sym_ATinterface] = ACTIONS(770), + [anon_sym_interface] = ACTIONS(772), + [anon_sym_byte] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [anon_sym_int] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_char] = ACTIONS(772), + [anon_sym_float] = ACTIONS(772), + [anon_sym_double] = ACTIONS(772), + [sym_boolean_type] = ACTIONS(772), + [sym_void_type] = ACTIONS(772), + [sym_this] = ACTIONS(772), + [sym_super] = ACTIONS(772), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [210] = { - [ts_builtin_sym_end] = ACTIONS(776), - [sym_identifier] = ACTIONS(778), - [sym_decimal_integer_literal] = ACTIONS(778), - [sym_hex_integer_literal] = ACTIONS(778), - [sym_octal_integer_literal] = ACTIONS(776), - [sym_binary_integer_literal] = ACTIONS(776), - [sym_decimal_floating_point_literal] = ACTIONS(776), - [sym_hex_floating_point_literal] = ACTIONS(778), - [sym_true] = ACTIONS(778), - [sym_false] = ACTIONS(778), - [sym_character_literal] = ACTIONS(776), - [sym_string_literal] = ACTIONS(778), - [sym_text_block] = ACTIONS(776), - [sym_null_literal] = ACTIONS(778), - [anon_sym_LPAREN] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(776), - [anon_sym_new] = ACTIONS(778), - [anon_sym_class] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(776), - [anon_sym_case] = ACTIONS(778), - [anon_sym_default] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(776), - [anon_sym_assert] = ACTIONS(778), - [anon_sym_do] = ACTIONS(778), - [anon_sym_while] = ACTIONS(778), - [anon_sym_break] = ACTIONS(778), - [anon_sym_continue] = ACTIONS(778), - [anon_sym_return] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(778), - [anon_sym_synchronized] = ACTIONS(778), - [anon_sym_throw] = ACTIONS(778), - [anon_sym_try] = ACTIONS(778), - [anon_sym_if] = ACTIONS(778), - [anon_sym_else] = ACTIONS(778), - [anon_sym_for] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(778), - [anon_sym_open] = ACTIONS(778), - [anon_sym_module] = ACTIONS(778), - [anon_sym_static] = ACTIONS(778), - [anon_sym_package] = ACTIONS(778), - [anon_sym_import] = ACTIONS(778), - [anon_sym_enum] = ACTIONS(778), - [anon_sym_public] = ACTIONS(778), - [anon_sym_protected] = ACTIONS(778), - [anon_sym_private] = ACTIONS(778), - [anon_sym_abstract] = ACTIONS(778), - [anon_sym_final] = ACTIONS(778), - [anon_sym_strictfp] = ACTIONS(778), - [anon_sym_native] = ACTIONS(778), - [anon_sym_transient] = ACTIONS(778), - [anon_sym_volatile] = ACTIONS(778), - [anon_sym_sealed] = ACTIONS(778), - [anon_sym_non_DASHsealed] = ACTIONS(776), - [anon_sym_record] = ACTIONS(778), - [anon_sym_ATinterface] = ACTIONS(776), - [anon_sym_interface] = ACTIONS(778), - [anon_sym_byte] = ACTIONS(778), - [anon_sym_short] = ACTIONS(778), - [anon_sym_int] = ACTIONS(778), - [anon_sym_long] = ACTIONS(778), - [anon_sym_char] = ACTIONS(778), - [anon_sym_float] = ACTIONS(778), - [anon_sym_double] = ACTIONS(778), - [sym_boolean_type] = ACTIONS(778), - [sym_void_type] = ACTIONS(778), - [sym_this] = ACTIONS(778), - [sym_super] = ACTIONS(778), + [ts_builtin_sym_end] = ACTIONS(774), + [sym_identifier] = ACTIONS(776), + [sym_decimal_integer_literal] = ACTIONS(776), + [sym_hex_integer_literal] = ACTIONS(776), + [sym_octal_integer_literal] = ACTIONS(774), + [sym_binary_integer_literal] = ACTIONS(774), + [sym_decimal_floating_point_literal] = ACTIONS(774), + [sym_hex_floating_point_literal] = ACTIONS(776), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_character_literal] = ACTIONS(774), + [sym_string_literal] = ACTIONS(776), + [sym_text_block] = ACTIONS(774), + [sym_null_literal] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(774), + [anon_sym_DASH_DASH] = ACTIONS(774), + [anon_sym_new] = ACTIONS(776), + [anon_sym_class] = ACTIONS(776), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(774), + [anon_sym_case] = ACTIONS(776), + [anon_sym_default] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_assert] = ACTIONS(776), + [anon_sym_do] = ACTIONS(776), + [anon_sym_while] = ACTIONS(776), + [anon_sym_break] = ACTIONS(776), + [anon_sym_continue] = ACTIONS(776), + [anon_sym_return] = ACTIONS(776), + [anon_sym_yield] = ACTIONS(776), + [anon_sym_synchronized] = ACTIONS(776), + [anon_sym_throw] = ACTIONS(776), + [anon_sym_try] = ACTIONS(776), + [anon_sym_if] = ACTIONS(776), + [anon_sym_else] = ACTIONS(776), + [anon_sym_for] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_open] = ACTIONS(776), + [anon_sym_module] = ACTIONS(776), + [anon_sym_static] = ACTIONS(776), + [anon_sym_package] = ACTIONS(776), + [anon_sym_import] = ACTIONS(776), + [anon_sym_enum] = ACTIONS(776), + [anon_sym_public] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_abstract] = ACTIONS(776), + [anon_sym_final] = ACTIONS(776), + [anon_sym_strictfp] = ACTIONS(776), + [anon_sym_native] = ACTIONS(776), + [anon_sym_transient] = ACTIONS(776), + [anon_sym_volatile] = ACTIONS(776), + [anon_sym_sealed] = ACTIONS(776), + [anon_sym_non_DASHsealed] = ACTIONS(774), + [anon_sym_record] = ACTIONS(776), + [anon_sym_ATinterface] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(776), + [anon_sym_byte] = ACTIONS(776), + [anon_sym_short] = ACTIONS(776), + [anon_sym_int] = ACTIONS(776), + [anon_sym_long] = ACTIONS(776), + [anon_sym_char] = ACTIONS(776), + [anon_sym_float] = ACTIONS(776), + [anon_sym_double] = ACTIONS(776), + [sym_boolean_type] = ACTIONS(776), + [sym_void_type] = ACTIONS(776), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(776), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [211] = { - [ts_builtin_sym_end] = ACTIONS(780), - [sym_identifier] = ACTIONS(782), - [sym_decimal_integer_literal] = ACTIONS(782), - [sym_hex_integer_literal] = ACTIONS(782), - [sym_octal_integer_literal] = ACTIONS(780), - [sym_binary_integer_literal] = ACTIONS(780), - [sym_decimal_floating_point_literal] = ACTIONS(780), - [sym_hex_floating_point_literal] = ACTIONS(782), - [sym_true] = ACTIONS(782), - [sym_false] = ACTIONS(782), - [sym_character_literal] = ACTIONS(780), - [sym_string_literal] = ACTIONS(782), - [sym_text_block] = ACTIONS(780), - [sym_null_literal] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_PLUS_PLUS] = ACTIONS(780), - [anon_sym_DASH_DASH] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_class] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_case] = ACTIONS(782), - [anon_sym_default] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_assert] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [anon_sym_break] = ACTIONS(782), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_yield] = ACTIONS(782), - [anon_sym_synchronized] = ACTIONS(782), - [anon_sym_throw] = ACTIONS(782), - [anon_sym_try] = ACTIONS(782), - [anon_sym_if] = ACTIONS(782), - [anon_sym_else] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_AT] = ACTIONS(782), - [anon_sym_open] = ACTIONS(782), - [anon_sym_module] = ACTIONS(782), - [anon_sym_static] = ACTIONS(782), - [anon_sym_package] = ACTIONS(782), - [anon_sym_import] = ACTIONS(782), - [anon_sym_enum] = ACTIONS(782), - [anon_sym_public] = ACTIONS(782), - [anon_sym_protected] = ACTIONS(782), - [anon_sym_private] = ACTIONS(782), - [anon_sym_abstract] = ACTIONS(782), - [anon_sym_final] = ACTIONS(782), - [anon_sym_strictfp] = ACTIONS(782), - [anon_sym_native] = ACTIONS(782), - [anon_sym_transient] = ACTIONS(782), - [anon_sym_volatile] = ACTIONS(782), - [anon_sym_sealed] = ACTIONS(782), - [anon_sym_non_DASHsealed] = ACTIONS(780), - [anon_sym_record] = ACTIONS(782), - [anon_sym_ATinterface] = ACTIONS(780), - [anon_sym_interface] = ACTIONS(782), - [anon_sym_byte] = ACTIONS(782), - [anon_sym_short] = ACTIONS(782), - [anon_sym_int] = ACTIONS(782), - [anon_sym_long] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), - [anon_sym_float] = ACTIONS(782), - [anon_sym_double] = ACTIONS(782), - [sym_boolean_type] = ACTIONS(782), - [sym_void_type] = ACTIONS(782), - [sym_this] = ACTIONS(782), - [sym_super] = ACTIONS(782), + [ts_builtin_sym_end] = ACTIONS(778), + [sym_identifier] = ACTIONS(780), + [sym_decimal_integer_literal] = ACTIONS(780), + [sym_hex_integer_literal] = ACTIONS(780), + [sym_octal_integer_literal] = ACTIONS(778), + [sym_binary_integer_literal] = ACTIONS(778), + [sym_decimal_floating_point_literal] = ACTIONS(778), + [sym_hex_floating_point_literal] = ACTIONS(780), + [sym_true] = ACTIONS(780), + [sym_false] = ACTIONS(780), + [sym_character_literal] = ACTIONS(778), + [sym_string_literal] = ACTIONS(780), + [sym_text_block] = ACTIONS(778), + [sym_null_literal] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_PLUS_PLUS] = ACTIONS(778), + [anon_sym_DASH_DASH] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_class] = ACTIONS(780), + [anon_sym_switch] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_default] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_assert] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_synchronized] = ACTIONS(780), + [anon_sym_throw] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_else] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(780), + [anon_sym_open] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_static] = ACTIONS(780), + [anon_sym_package] = ACTIONS(780), + [anon_sym_import] = ACTIONS(780), + [anon_sym_enum] = ACTIONS(780), + [anon_sym_public] = ACTIONS(780), + [anon_sym_protected] = ACTIONS(780), + [anon_sym_private] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(780), + [anon_sym_final] = ACTIONS(780), + [anon_sym_strictfp] = ACTIONS(780), + [anon_sym_native] = ACTIONS(780), + [anon_sym_transient] = ACTIONS(780), + [anon_sym_volatile] = ACTIONS(780), + [anon_sym_sealed] = ACTIONS(780), + [anon_sym_non_DASHsealed] = ACTIONS(778), + [anon_sym_record] = ACTIONS(780), + [anon_sym_ATinterface] = ACTIONS(778), + [anon_sym_interface] = ACTIONS(780), + [anon_sym_byte] = ACTIONS(780), + [anon_sym_short] = ACTIONS(780), + [anon_sym_int] = ACTIONS(780), + [anon_sym_long] = ACTIONS(780), + [anon_sym_char] = ACTIONS(780), + [anon_sym_float] = ACTIONS(780), + [anon_sym_double] = ACTIONS(780), + [sym_boolean_type] = ACTIONS(780), + [sym_void_type] = ACTIONS(780), + [sym_this] = ACTIONS(780), + [sym_super] = ACTIONS(780), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [212] = { - [ts_builtin_sym_end] = ACTIONS(784), - [sym_identifier] = ACTIONS(786), - [sym_decimal_integer_literal] = ACTIONS(786), - [sym_hex_integer_literal] = ACTIONS(786), - [sym_octal_integer_literal] = ACTIONS(784), - [sym_binary_integer_literal] = ACTIONS(784), - [sym_decimal_floating_point_literal] = ACTIONS(784), - [sym_hex_floating_point_literal] = ACTIONS(786), - [sym_true] = ACTIONS(786), - [sym_false] = ACTIONS(786), - [sym_character_literal] = ACTIONS(784), - [sym_string_literal] = ACTIONS(786), - [sym_text_block] = ACTIONS(784), - [sym_null_literal] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_new] = ACTIONS(786), - [anon_sym_class] = ACTIONS(786), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(784), - [anon_sym_RBRACE] = ACTIONS(784), - [anon_sym_case] = ACTIONS(786), - [anon_sym_default] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(784), - [anon_sym_assert] = ACTIONS(786), - [anon_sym_do] = ACTIONS(786), - [anon_sym_while] = ACTIONS(786), - [anon_sym_break] = ACTIONS(786), - [anon_sym_continue] = ACTIONS(786), - [anon_sym_return] = ACTIONS(786), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_synchronized] = ACTIONS(786), - [anon_sym_throw] = ACTIONS(786), - [anon_sym_try] = ACTIONS(786), - [anon_sym_if] = ACTIONS(786), - [anon_sym_else] = ACTIONS(786), - [anon_sym_for] = ACTIONS(786), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_open] = ACTIONS(786), - [anon_sym_module] = ACTIONS(786), - [anon_sym_static] = ACTIONS(786), - [anon_sym_package] = ACTIONS(786), - [anon_sym_import] = ACTIONS(786), - [anon_sym_enum] = ACTIONS(786), - [anon_sym_public] = ACTIONS(786), - [anon_sym_protected] = ACTIONS(786), - [anon_sym_private] = ACTIONS(786), - [anon_sym_abstract] = ACTIONS(786), - [anon_sym_final] = ACTIONS(786), - [anon_sym_strictfp] = ACTIONS(786), - [anon_sym_native] = ACTIONS(786), - [anon_sym_transient] = ACTIONS(786), - [anon_sym_volatile] = ACTIONS(786), - [anon_sym_sealed] = ACTIONS(786), - [anon_sym_non_DASHsealed] = ACTIONS(784), - [anon_sym_record] = ACTIONS(786), - [anon_sym_ATinterface] = ACTIONS(784), - [anon_sym_interface] = ACTIONS(786), - [anon_sym_byte] = ACTIONS(786), - [anon_sym_short] = ACTIONS(786), - [anon_sym_int] = ACTIONS(786), - [anon_sym_long] = ACTIONS(786), - [anon_sym_char] = ACTIONS(786), - [anon_sym_float] = ACTIONS(786), - [anon_sym_double] = ACTIONS(786), - [sym_boolean_type] = ACTIONS(786), - [sym_void_type] = ACTIONS(786), - [sym_this] = ACTIONS(786), - [sym_super] = ACTIONS(786), + [ts_builtin_sym_end] = ACTIONS(782), + [sym_identifier] = ACTIONS(784), + [sym_decimal_integer_literal] = ACTIONS(784), + [sym_hex_integer_literal] = ACTIONS(784), + [sym_octal_integer_literal] = ACTIONS(782), + [sym_binary_integer_literal] = ACTIONS(782), + [sym_decimal_floating_point_literal] = ACTIONS(782), + [sym_hex_floating_point_literal] = ACTIONS(784), + [sym_true] = ACTIONS(784), + [sym_false] = ACTIONS(784), + [sym_character_literal] = ACTIONS(782), + [sym_string_literal] = ACTIONS(784), + [sym_text_block] = ACTIONS(782), + [sym_null_literal] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), + [anon_sym_new] = ACTIONS(784), + [anon_sym_class] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_assert] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_synchronized] = ACTIONS(784), + [anon_sym_throw] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_else] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_open] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_static] = ACTIONS(784), + [anon_sym_package] = ACTIONS(784), + [anon_sym_import] = ACTIONS(784), + [anon_sym_enum] = ACTIONS(784), + [anon_sym_public] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_abstract] = ACTIONS(784), + [anon_sym_final] = ACTIONS(784), + [anon_sym_strictfp] = ACTIONS(784), + [anon_sym_native] = ACTIONS(784), + [anon_sym_transient] = ACTIONS(784), + [anon_sym_volatile] = ACTIONS(784), + [anon_sym_sealed] = ACTIONS(784), + [anon_sym_non_DASHsealed] = ACTIONS(782), + [anon_sym_record] = ACTIONS(784), + [anon_sym_ATinterface] = ACTIONS(782), + [anon_sym_interface] = ACTIONS(784), + [anon_sym_byte] = ACTIONS(784), + [anon_sym_short] = ACTIONS(784), + [anon_sym_int] = ACTIONS(784), + [anon_sym_long] = ACTIONS(784), + [anon_sym_char] = ACTIONS(784), + [anon_sym_float] = ACTIONS(784), + [anon_sym_double] = ACTIONS(784), + [sym_boolean_type] = ACTIONS(784), + [sym_void_type] = ACTIONS(784), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(784), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(788), - [sym_identifier] = ACTIONS(790), - [sym_decimal_integer_literal] = ACTIONS(790), - [sym_hex_integer_literal] = ACTIONS(790), - [sym_octal_integer_literal] = ACTIONS(788), - [sym_binary_integer_literal] = ACTIONS(788), - [sym_decimal_floating_point_literal] = ACTIONS(788), - [sym_hex_floating_point_literal] = ACTIONS(790), - [sym_true] = ACTIONS(790), - [sym_false] = ACTIONS(790), - [sym_character_literal] = ACTIONS(788), - [sym_string_literal] = ACTIONS(790), - [sym_text_block] = ACTIONS(788), - [sym_null_literal] = ACTIONS(790), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_PLUS_PLUS] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(788), - [anon_sym_new] = ACTIONS(790), - [anon_sym_class] = ACTIONS(790), - [anon_sym_switch] = ACTIONS(790), - [anon_sym_LBRACE] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_case] = ACTIONS(790), - [anon_sym_default] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_assert] = ACTIONS(790), - [anon_sym_do] = ACTIONS(790), - [anon_sym_while] = ACTIONS(790), - [anon_sym_break] = ACTIONS(790), - [anon_sym_continue] = ACTIONS(790), - [anon_sym_return] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(790), - [anon_sym_synchronized] = ACTIONS(790), - [anon_sym_throw] = ACTIONS(790), - [anon_sym_try] = ACTIONS(790), - [anon_sym_if] = ACTIONS(790), - [anon_sym_else] = ACTIONS(790), - [anon_sym_for] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(790), - [anon_sym_open] = ACTIONS(790), - [anon_sym_module] = ACTIONS(790), - [anon_sym_static] = ACTIONS(790), - [anon_sym_package] = ACTIONS(790), - [anon_sym_import] = ACTIONS(790), - [anon_sym_enum] = ACTIONS(790), - [anon_sym_public] = ACTIONS(790), - [anon_sym_protected] = ACTIONS(790), - [anon_sym_private] = ACTIONS(790), - [anon_sym_abstract] = ACTIONS(790), - [anon_sym_final] = ACTIONS(790), - [anon_sym_strictfp] = ACTIONS(790), - [anon_sym_native] = ACTIONS(790), - [anon_sym_transient] = ACTIONS(790), - [anon_sym_volatile] = ACTIONS(790), - [anon_sym_sealed] = ACTIONS(790), - [anon_sym_non_DASHsealed] = ACTIONS(788), - [anon_sym_record] = ACTIONS(790), - [anon_sym_ATinterface] = ACTIONS(788), - [anon_sym_interface] = ACTIONS(790), - [anon_sym_byte] = ACTIONS(790), - [anon_sym_short] = ACTIONS(790), - [anon_sym_int] = ACTIONS(790), - [anon_sym_long] = ACTIONS(790), - [anon_sym_char] = ACTIONS(790), - [anon_sym_float] = ACTIONS(790), - [anon_sym_double] = ACTIONS(790), - [sym_boolean_type] = ACTIONS(790), - [sym_void_type] = ACTIONS(790), - [sym_this] = ACTIONS(790), - [sym_super] = ACTIONS(790), + [ts_builtin_sym_end] = ACTIONS(786), + [sym_identifier] = ACTIONS(788), + [sym_decimal_integer_literal] = ACTIONS(788), + [sym_hex_integer_literal] = ACTIONS(788), + [sym_octal_integer_literal] = ACTIONS(786), + [sym_binary_integer_literal] = ACTIONS(786), + [sym_decimal_floating_point_literal] = ACTIONS(786), + [sym_hex_floating_point_literal] = ACTIONS(788), + [sym_true] = ACTIONS(788), + [sym_false] = ACTIONS(788), + [sym_character_literal] = ACTIONS(786), + [sym_string_literal] = ACTIONS(788), + [sym_text_block] = ACTIONS(786), + [sym_null_literal] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(786), + [anon_sym_new] = ACTIONS(788), + [anon_sym_class] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_case] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_assert] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_synchronized] = ACTIONS(788), + [anon_sym_throw] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_else] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(788), + [anon_sym_open] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_static] = ACTIONS(788), + [anon_sym_package] = ACTIONS(788), + [anon_sym_import] = ACTIONS(788), + [anon_sym_enum] = ACTIONS(788), + [anon_sym_public] = ACTIONS(788), + [anon_sym_protected] = ACTIONS(788), + [anon_sym_private] = ACTIONS(788), + [anon_sym_abstract] = ACTIONS(788), + [anon_sym_final] = ACTIONS(788), + [anon_sym_strictfp] = ACTIONS(788), + [anon_sym_native] = ACTIONS(788), + [anon_sym_transient] = ACTIONS(788), + [anon_sym_volatile] = ACTIONS(788), + [anon_sym_sealed] = ACTIONS(788), + [anon_sym_non_DASHsealed] = ACTIONS(786), + [anon_sym_record] = ACTIONS(788), + [anon_sym_ATinterface] = ACTIONS(786), + [anon_sym_interface] = ACTIONS(788), + [anon_sym_byte] = ACTIONS(788), + [anon_sym_short] = ACTIONS(788), + [anon_sym_int] = ACTIONS(788), + [anon_sym_long] = ACTIONS(788), + [anon_sym_char] = ACTIONS(788), + [anon_sym_float] = ACTIONS(788), + [anon_sym_double] = ACTIONS(788), + [sym_boolean_type] = ACTIONS(788), + [sym_void_type] = ACTIONS(788), + [sym_this] = ACTIONS(788), + [sym_super] = ACTIONS(788), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [214] = { - [ts_builtin_sym_end] = ACTIONS(792), - [sym_identifier] = ACTIONS(794), - [sym_decimal_integer_literal] = ACTIONS(794), - [sym_hex_integer_literal] = ACTIONS(794), - [sym_octal_integer_literal] = ACTIONS(792), - [sym_binary_integer_literal] = ACTIONS(792), - [sym_decimal_floating_point_literal] = ACTIONS(792), - [sym_hex_floating_point_literal] = ACTIONS(794), - [sym_true] = ACTIONS(794), - [sym_false] = ACTIONS(794), - [sym_character_literal] = ACTIONS(792), - [sym_string_literal] = ACTIONS(794), - [sym_text_block] = ACTIONS(792), - [sym_null_literal] = ACTIONS(794), - [anon_sym_LPAREN] = ACTIONS(792), - [anon_sym_PLUS] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(792), - [anon_sym_DASH_DASH] = ACTIONS(792), - [anon_sym_new] = ACTIONS(794), - [anon_sym_class] = ACTIONS(794), - [anon_sym_switch] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(792), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_case] = ACTIONS(794), - [anon_sym_default] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_assert] = ACTIONS(794), - [anon_sym_do] = ACTIONS(794), - [anon_sym_while] = ACTIONS(794), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(794), - [anon_sym_return] = ACTIONS(794), - [anon_sym_yield] = ACTIONS(794), - [anon_sym_synchronized] = ACTIONS(794), - [anon_sym_throw] = ACTIONS(794), - [anon_sym_try] = ACTIONS(794), - [anon_sym_if] = ACTIONS(794), - [anon_sym_else] = ACTIONS(794), - [anon_sym_for] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(794), - [anon_sym_open] = ACTIONS(794), - [anon_sym_module] = ACTIONS(794), - [anon_sym_static] = ACTIONS(794), - [anon_sym_package] = ACTIONS(794), - [anon_sym_import] = ACTIONS(794), - [anon_sym_enum] = ACTIONS(794), - [anon_sym_public] = ACTIONS(794), - [anon_sym_protected] = ACTIONS(794), - [anon_sym_private] = ACTIONS(794), - [anon_sym_abstract] = ACTIONS(794), - [anon_sym_final] = ACTIONS(794), - [anon_sym_strictfp] = ACTIONS(794), - [anon_sym_native] = ACTIONS(794), - [anon_sym_transient] = ACTIONS(794), - [anon_sym_volatile] = ACTIONS(794), - [anon_sym_sealed] = ACTIONS(794), - [anon_sym_non_DASHsealed] = ACTIONS(792), - [anon_sym_record] = ACTIONS(794), - [anon_sym_ATinterface] = ACTIONS(792), - [anon_sym_interface] = ACTIONS(794), - [anon_sym_byte] = ACTIONS(794), - [anon_sym_short] = ACTIONS(794), - [anon_sym_int] = ACTIONS(794), - [anon_sym_long] = ACTIONS(794), - [anon_sym_char] = ACTIONS(794), - [anon_sym_float] = ACTIONS(794), - [anon_sym_double] = ACTIONS(794), - [sym_boolean_type] = ACTIONS(794), - [sym_void_type] = ACTIONS(794), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(794), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(796), - [sym_identifier] = ACTIONS(798), - [sym_decimal_integer_literal] = ACTIONS(798), - [sym_hex_integer_literal] = ACTIONS(798), - [sym_octal_integer_literal] = ACTIONS(796), - [sym_binary_integer_literal] = ACTIONS(796), - [sym_decimal_floating_point_literal] = ACTIONS(796), - [sym_hex_floating_point_literal] = ACTIONS(798), - [sym_true] = ACTIONS(798), - [sym_false] = ACTIONS(798), - [sym_character_literal] = ACTIONS(796), - [sym_string_literal] = ACTIONS(798), - [sym_text_block] = ACTIONS(796), - [sym_null_literal] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_BANG] = ACTIONS(796), - [anon_sym_TILDE] = ACTIONS(796), - [anon_sym_PLUS_PLUS] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(796), - [anon_sym_new] = ACTIONS(798), - [anon_sym_class] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(796), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_assert] = ACTIONS(798), - [anon_sym_do] = ACTIONS(798), - [anon_sym_while] = ACTIONS(798), - [anon_sym_break] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_return] = ACTIONS(798), - [anon_sym_yield] = ACTIONS(798), - [anon_sym_synchronized] = ACTIONS(798), - [anon_sym_throw] = ACTIONS(798), - [anon_sym_try] = ACTIONS(798), - [anon_sym_if] = ACTIONS(798), - [anon_sym_else] = ACTIONS(798), - [anon_sym_for] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(798), - [anon_sym_open] = ACTIONS(798), - [anon_sym_module] = ACTIONS(798), - [anon_sym_static] = ACTIONS(798), - [anon_sym_package] = ACTIONS(798), - [anon_sym_import] = ACTIONS(798), - [anon_sym_enum] = ACTIONS(798), - [anon_sym_public] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_abstract] = ACTIONS(798), - [anon_sym_final] = ACTIONS(798), - [anon_sym_strictfp] = ACTIONS(798), - [anon_sym_native] = ACTIONS(798), - [anon_sym_transient] = ACTIONS(798), - [anon_sym_volatile] = ACTIONS(798), - [anon_sym_sealed] = ACTIONS(798), - [anon_sym_non_DASHsealed] = ACTIONS(796), - [anon_sym_record] = ACTIONS(798), - [anon_sym_ATinterface] = ACTIONS(796), - [anon_sym_interface] = ACTIONS(798), - [anon_sym_byte] = ACTIONS(798), - [anon_sym_short] = ACTIONS(798), - [anon_sym_int] = ACTIONS(798), - [anon_sym_long] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_float] = ACTIONS(798), - [anon_sym_double] = ACTIONS(798), - [sym_boolean_type] = ACTIONS(798), - [sym_void_type] = ACTIONS(798), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(798), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(572), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym_block] = STATE(497), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(800), - [sym_identifier] = ACTIONS(802), - [sym_decimal_integer_literal] = ACTIONS(802), - [sym_hex_integer_literal] = ACTIONS(802), - [sym_octal_integer_literal] = ACTIONS(800), - [sym_binary_integer_literal] = ACTIONS(800), - [sym_decimal_floating_point_literal] = ACTIONS(800), - [sym_hex_floating_point_literal] = ACTIONS(802), - [sym_true] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_character_literal] = ACTIONS(800), - [sym_string_literal] = ACTIONS(802), - [sym_text_block] = ACTIONS(800), - [sym_null_literal] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(800), - [anon_sym_DASH_DASH] = ACTIONS(800), - [anon_sym_new] = ACTIONS(802), - [anon_sym_class] = ACTIONS(802), - [anon_sym_switch] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_case] = ACTIONS(802), - [anon_sym_default] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_assert] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_while] = ACTIONS(802), - [anon_sym_break] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_yield] = ACTIONS(802), - [anon_sym_synchronized] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_try] = ACTIONS(802), - [anon_sym_if] = ACTIONS(802), - [anon_sym_else] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [anon_sym_AT] = ACTIONS(802), - [anon_sym_open] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_static] = ACTIONS(802), - [anon_sym_package] = ACTIONS(802), - [anon_sym_import] = ACTIONS(802), - [anon_sym_enum] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_abstract] = ACTIONS(802), - [anon_sym_final] = ACTIONS(802), - [anon_sym_strictfp] = ACTIONS(802), - [anon_sym_native] = ACTIONS(802), - [anon_sym_transient] = ACTIONS(802), - [anon_sym_volatile] = ACTIONS(802), - [anon_sym_sealed] = ACTIONS(802), - [anon_sym_non_DASHsealed] = ACTIONS(800), - [anon_sym_record] = ACTIONS(802), - [anon_sym_ATinterface] = ACTIONS(800), - [anon_sym_interface] = ACTIONS(802), - [anon_sym_byte] = ACTIONS(802), - [anon_sym_short] = ACTIONS(802), - [anon_sym_int] = ACTIONS(802), - [anon_sym_long] = ACTIONS(802), - [anon_sym_char] = ACTIONS(802), - [anon_sym_float] = ACTIONS(802), - [anon_sym_double] = ACTIONS(802), - [sym_boolean_type] = ACTIONS(802), - [sym_void_type] = ACTIONS(802), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(802), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(527), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(521), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym_block] = STATE(497), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym_block] = STATE(502), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30136,10 +29829,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -30154,1563 +29847,1875 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(790), + [sym_identifier] = ACTIONS(792), + [sym_decimal_integer_literal] = ACTIONS(792), + [sym_hex_integer_literal] = ACTIONS(792), + [sym_octal_integer_literal] = ACTIONS(790), + [sym_binary_integer_literal] = ACTIONS(790), + [sym_decimal_floating_point_literal] = ACTIONS(790), + [sym_hex_floating_point_literal] = ACTIONS(792), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_character_literal] = ACTIONS(790), + [sym_string_literal] = ACTIONS(792), + [sym_text_block] = ACTIONS(790), + [sym_null_literal] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_PLUS_PLUS] = ACTIONS(790), + [anon_sym_DASH_DASH] = ACTIONS(790), + [anon_sym_new] = ACTIONS(792), + [anon_sym_class] = ACTIONS(792), + [anon_sym_switch] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(790), + [anon_sym_case] = ACTIONS(792), + [anon_sym_default] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), + [anon_sym_do] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [anon_sym_break] = ACTIONS(792), + [anon_sym_continue] = ACTIONS(792), + [anon_sym_return] = ACTIONS(792), + [anon_sym_yield] = ACTIONS(792), + [anon_sym_synchronized] = ACTIONS(792), + [anon_sym_throw] = ACTIONS(792), + [anon_sym_try] = ACTIONS(792), + [anon_sym_if] = ACTIONS(792), + [anon_sym_else] = ACTIONS(792), + [anon_sym_for] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_open] = ACTIONS(792), + [anon_sym_module] = ACTIONS(792), + [anon_sym_static] = ACTIONS(792), + [anon_sym_package] = ACTIONS(792), + [anon_sym_import] = ACTIONS(792), + [anon_sym_enum] = ACTIONS(792), + [anon_sym_public] = ACTIONS(792), + [anon_sym_protected] = ACTIONS(792), + [anon_sym_private] = ACTIONS(792), + [anon_sym_abstract] = ACTIONS(792), + [anon_sym_final] = ACTIONS(792), + [anon_sym_strictfp] = ACTIONS(792), + [anon_sym_native] = ACTIONS(792), + [anon_sym_transient] = ACTIONS(792), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym_sealed] = ACTIONS(792), + [anon_sym_non_DASHsealed] = ACTIONS(790), + [anon_sym_record] = ACTIONS(792), + [anon_sym_ATinterface] = ACTIONS(790), + [anon_sym_interface] = ACTIONS(792), + [anon_sym_byte] = ACTIONS(792), + [anon_sym_short] = ACTIONS(792), + [anon_sym_int] = ACTIONS(792), + [anon_sym_long] = ACTIONS(792), + [anon_sym_char] = ACTIONS(792), + [anon_sym_float] = ACTIONS(792), + [anon_sym_double] = ACTIONS(792), + [sym_boolean_type] = ACTIONS(792), + [sym_void_type] = ACTIONS(792), + [sym_this] = ACTIONS(792), + [sym_super] = ACTIONS(792), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [216] = { + [ts_builtin_sym_end] = ACTIONS(794), + [sym_identifier] = ACTIONS(796), + [sym_decimal_integer_literal] = ACTIONS(796), + [sym_hex_integer_literal] = ACTIONS(796), + [sym_octal_integer_literal] = ACTIONS(794), + [sym_binary_integer_literal] = ACTIONS(794), + [sym_decimal_floating_point_literal] = ACTIONS(794), + [sym_hex_floating_point_literal] = ACTIONS(796), + [sym_true] = ACTIONS(796), + [sym_false] = ACTIONS(796), + [sym_character_literal] = ACTIONS(794), + [sym_string_literal] = ACTIONS(796), + [sym_text_block] = ACTIONS(794), + [sym_null_literal] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_new] = ACTIONS(796), + [anon_sym_class] = ACTIONS(796), + [anon_sym_switch] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym_case] = ACTIONS(796), + [anon_sym_default] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_assert] = ACTIONS(796), + [anon_sym_do] = ACTIONS(796), + [anon_sym_while] = ACTIONS(796), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_return] = ACTIONS(796), + [anon_sym_yield] = ACTIONS(796), + [anon_sym_synchronized] = ACTIONS(796), + [anon_sym_throw] = ACTIONS(796), + [anon_sym_try] = ACTIONS(796), + [anon_sym_if] = ACTIONS(796), + [anon_sym_else] = ACTIONS(796), + [anon_sym_for] = ACTIONS(796), + [anon_sym_AT] = ACTIONS(796), + [anon_sym_open] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_static] = ACTIONS(796), + [anon_sym_package] = ACTIONS(796), + [anon_sym_import] = ACTIONS(796), + [anon_sym_enum] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_abstract] = ACTIONS(796), + [anon_sym_final] = ACTIONS(796), + [anon_sym_strictfp] = ACTIONS(796), + [anon_sym_native] = ACTIONS(796), + [anon_sym_transient] = ACTIONS(796), + [anon_sym_volatile] = ACTIONS(796), + [anon_sym_sealed] = ACTIONS(796), + [anon_sym_non_DASHsealed] = ACTIONS(794), + [anon_sym_record] = ACTIONS(796), + [anon_sym_ATinterface] = ACTIONS(794), + [anon_sym_interface] = ACTIONS(796), + [anon_sym_byte] = ACTIONS(796), + [anon_sym_short] = ACTIONS(796), + [anon_sym_int] = ACTIONS(796), + [anon_sym_long] = ACTIONS(796), + [anon_sym_char] = ACTIONS(796), + [anon_sym_float] = ACTIONS(796), + [anon_sym_double] = ACTIONS(796), + [sym_boolean_type] = ACTIONS(796), + [sym_void_type] = ACTIONS(796), + [sym_this] = ACTIONS(796), + [sym_super] = ACTIONS(796), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [217] = { + [ts_builtin_sym_end] = ACTIONS(798), + [sym_identifier] = ACTIONS(800), + [sym_decimal_integer_literal] = ACTIONS(800), + [sym_hex_integer_literal] = ACTIONS(800), + [sym_octal_integer_literal] = ACTIONS(798), + [sym_binary_integer_literal] = ACTIONS(798), + [sym_decimal_floating_point_literal] = ACTIONS(798), + [sym_hex_floating_point_literal] = ACTIONS(800), + [sym_true] = ACTIONS(800), + [sym_false] = ACTIONS(800), + [sym_character_literal] = ACTIONS(798), + [sym_string_literal] = ACTIONS(800), + [sym_text_block] = ACTIONS(798), + [sym_null_literal] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_PLUS_PLUS] = ACTIONS(798), + [anon_sym_DASH_DASH] = ACTIONS(798), + [anon_sym_new] = ACTIONS(800), + [anon_sym_class] = ACTIONS(800), + [anon_sym_switch] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_RBRACE] = ACTIONS(798), + [anon_sym_case] = ACTIONS(800), + [anon_sym_default] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(798), + [anon_sym_assert] = ACTIONS(800), + [anon_sym_do] = ACTIONS(800), + [anon_sym_while] = ACTIONS(800), + [anon_sym_break] = ACTIONS(800), + [anon_sym_continue] = ACTIONS(800), + [anon_sym_return] = ACTIONS(800), + [anon_sym_yield] = ACTIONS(800), + [anon_sym_synchronized] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(800), + [anon_sym_try] = ACTIONS(800), + [anon_sym_if] = ACTIONS(800), + [anon_sym_else] = ACTIONS(800), + [anon_sym_for] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_open] = ACTIONS(800), + [anon_sym_module] = ACTIONS(800), + [anon_sym_static] = ACTIONS(800), + [anon_sym_package] = ACTIONS(800), + [anon_sym_import] = ACTIONS(800), + [anon_sym_enum] = ACTIONS(800), + [anon_sym_public] = ACTIONS(800), + [anon_sym_protected] = ACTIONS(800), + [anon_sym_private] = ACTIONS(800), + [anon_sym_abstract] = ACTIONS(800), + [anon_sym_final] = ACTIONS(800), + [anon_sym_strictfp] = ACTIONS(800), + [anon_sym_native] = ACTIONS(800), + [anon_sym_transient] = ACTIONS(800), + [anon_sym_volatile] = ACTIONS(800), + [anon_sym_sealed] = ACTIONS(800), + [anon_sym_non_DASHsealed] = ACTIONS(798), + [anon_sym_record] = ACTIONS(800), + [anon_sym_ATinterface] = ACTIONS(798), + [anon_sym_interface] = ACTIONS(800), + [anon_sym_byte] = ACTIONS(800), + [anon_sym_short] = ACTIONS(800), + [anon_sym_int] = ACTIONS(800), + [anon_sym_long] = ACTIONS(800), + [anon_sym_char] = ACTIONS(800), + [anon_sym_float] = ACTIONS(800), + [anon_sym_double] = ACTIONS(800), + [sym_boolean_type] = ACTIONS(800), + [sym_void_type] = ACTIONS(800), + [sym_this] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [ts_builtin_sym_end] = ACTIONS(802), + [sym_identifier] = ACTIONS(804), + [sym_decimal_integer_literal] = ACTIONS(804), + [sym_hex_integer_literal] = ACTIONS(804), + [sym_octal_integer_literal] = ACTIONS(802), + [sym_binary_integer_literal] = ACTIONS(802), + [sym_decimal_floating_point_literal] = ACTIONS(802), + [sym_hex_floating_point_literal] = ACTIONS(804), + [sym_true] = ACTIONS(804), + [sym_false] = ACTIONS(804), + [sym_character_literal] = ACTIONS(802), + [sym_string_literal] = ACTIONS(804), + [sym_text_block] = ACTIONS(802), + [sym_null_literal] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_PLUS] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(804), + [anon_sym_class] = ACTIONS(804), + [anon_sym_switch] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_case] = ACTIONS(804), + [anon_sym_default] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(802), + [anon_sym_assert] = ACTIONS(804), + [anon_sym_do] = ACTIONS(804), + [anon_sym_while] = ACTIONS(804), + [anon_sym_break] = ACTIONS(804), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_return] = ACTIONS(804), + [anon_sym_yield] = ACTIONS(804), + [anon_sym_synchronized] = ACTIONS(804), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_try] = ACTIONS(804), + [anon_sym_if] = ACTIONS(804), + [anon_sym_else] = ACTIONS(804), + [anon_sym_for] = ACTIONS(804), + [anon_sym_AT] = ACTIONS(804), + [anon_sym_open] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_static] = ACTIONS(804), + [anon_sym_package] = ACTIONS(804), + [anon_sym_import] = ACTIONS(804), + [anon_sym_enum] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_abstract] = ACTIONS(804), + [anon_sym_final] = ACTIONS(804), + [anon_sym_strictfp] = ACTIONS(804), + [anon_sym_native] = ACTIONS(804), + [anon_sym_transient] = ACTIONS(804), + [anon_sym_volatile] = ACTIONS(804), + [anon_sym_sealed] = ACTIONS(804), + [anon_sym_non_DASHsealed] = ACTIONS(802), + [anon_sym_record] = ACTIONS(804), + [anon_sym_ATinterface] = ACTIONS(802), + [anon_sym_interface] = ACTIONS(804), + [anon_sym_byte] = ACTIONS(804), + [anon_sym_short] = ACTIONS(804), + [anon_sym_int] = ACTIONS(804), + [anon_sym_long] = ACTIONS(804), + [anon_sym_char] = ACTIONS(804), + [anon_sym_float] = ACTIONS(804), + [anon_sym_double] = ACTIONS(804), + [sym_boolean_type] = ACTIONS(804), + [sym_void_type] = ACTIONS(804), + [sym_this] = ACTIONS(804), + [sym_super] = ACTIONS(804), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [219] = { - [ts_builtin_sym_end] = ACTIONS(804), - [sym_identifier] = ACTIONS(806), - [sym_decimal_integer_literal] = ACTIONS(806), - [sym_hex_integer_literal] = ACTIONS(806), - [sym_octal_integer_literal] = ACTIONS(804), - [sym_binary_integer_literal] = ACTIONS(804), - [sym_decimal_floating_point_literal] = ACTIONS(804), - [sym_hex_floating_point_literal] = ACTIONS(806), - [sym_true] = ACTIONS(806), - [sym_false] = ACTIONS(806), - [sym_character_literal] = ACTIONS(804), - [sym_string_literal] = ACTIONS(806), - [sym_text_block] = ACTIONS(804), - [sym_null_literal] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_TILDE] = ACTIONS(804), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_new] = ACTIONS(806), - [anon_sym_class] = ACTIONS(806), - [anon_sym_switch] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_case] = ACTIONS(806), - [anon_sym_default] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_assert] = ACTIONS(806), - [anon_sym_do] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_yield] = ACTIONS(806), - [anon_sym_synchronized] = ACTIONS(806), - [anon_sym_throw] = ACTIONS(806), - [anon_sym_try] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_else] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_AT] = ACTIONS(806), - [anon_sym_open] = ACTIONS(806), - [anon_sym_module] = ACTIONS(806), - [anon_sym_static] = ACTIONS(806), - [anon_sym_package] = ACTIONS(806), - [anon_sym_import] = ACTIONS(806), - [anon_sym_enum] = ACTIONS(806), - [anon_sym_public] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_abstract] = ACTIONS(806), - [anon_sym_final] = ACTIONS(806), - [anon_sym_strictfp] = ACTIONS(806), - [anon_sym_native] = ACTIONS(806), - [anon_sym_transient] = ACTIONS(806), - [anon_sym_volatile] = ACTIONS(806), - [anon_sym_sealed] = ACTIONS(806), - [anon_sym_non_DASHsealed] = ACTIONS(804), - [anon_sym_record] = ACTIONS(806), - [anon_sym_ATinterface] = ACTIONS(804), - [anon_sym_interface] = ACTIONS(806), - [anon_sym_byte] = ACTIONS(806), - [anon_sym_short] = ACTIONS(806), - [anon_sym_int] = ACTIONS(806), - [anon_sym_long] = ACTIONS(806), - [anon_sym_char] = ACTIONS(806), - [anon_sym_float] = ACTIONS(806), - [anon_sym_double] = ACTIONS(806), - [sym_boolean_type] = ACTIONS(806), - [sym_void_type] = ACTIONS(806), - [sym_this] = ACTIONS(806), - [sym_super] = ACTIONS(806), + [ts_builtin_sym_end] = ACTIONS(806), + [sym_identifier] = ACTIONS(808), + [sym_decimal_integer_literal] = ACTIONS(808), + [sym_hex_integer_literal] = ACTIONS(808), + [sym_octal_integer_literal] = ACTIONS(806), + [sym_binary_integer_literal] = ACTIONS(806), + [sym_decimal_floating_point_literal] = ACTIONS(806), + [sym_hex_floating_point_literal] = ACTIONS(808), + [sym_true] = ACTIONS(808), + [sym_false] = ACTIONS(808), + [sym_character_literal] = ACTIONS(806), + [sym_string_literal] = ACTIONS(808), + [sym_text_block] = ACTIONS(806), + [sym_null_literal] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(806), + [anon_sym_new] = ACTIONS(808), + [anon_sym_class] = ACTIONS(808), + [anon_sym_switch] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(806), + [anon_sym_case] = ACTIONS(808), + [anon_sym_default] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_assert] = ACTIONS(808), + [anon_sym_do] = ACTIONS(808), + [anon_sym_while] = ACTIONS(808), + [anon_sym_break] = ACTIONS(808), + [anon_sym_continue] = ACTIONS(808), + [anon_sym_return] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(808), + [anon_sym_synchronized] = ACTIONS(808), + [anon_sym_throw] = ACTIONS(808), + [anon_sym_try] = ACTIONS(808), + [anon_sym_if] = ACTIONS(808), + [anon_sym_else] = ACTIONS(808), + [anon_sym_for] = ACTIONS(808), + [anon_sym_AT] = ACTIONS(808), + [anon_sym_open] = ACTIONS(808), + [anon_sym_module] = ACTIONS(808), + [anon_sym_static] = ACTIONS(808), + [anon_sym_package] = ACTIONS(808), + [anon_sym_import] = ACTIONS(808), + [anon_sym_enum] = ACTIONS(808), + [anon_sym_public] = ACTIONS(808), + [anon_sym_protected] = ACTIONS(808), + [anon_sym_private] = ACTIONS(808), + [anon_sym_abstract] = ACTIONS(808), + [anon_sym_final] = ACTIONS(808), + [anon_sym_strictfp] = ACTIONS(808), + [anon_sym_native] = ACTIONS(808), + [anon_sym_transient] = ACTIONS(808), + [anon_sym_volatile] = ACTIONS(808), + [anon_sym_sealed] = ACTIONS(808), + [anon_sym_non_DASHsealed] = ACTIONS(806), + [anon_sym_record] = ACTIONS(808), + [anon_sym_ATinterface] = ACTIONS(806), + [anon_sym_interface] = ACTIONS(808), + [anon_sym_byte] = ACTIONS(808), + [anon_sym_short] = ACTIONS(808), + [anon_sym_int] = ACTIONS(808), + [anon_sym_long] = ACTIONS(808), + [anon_sym_char] = ACTIONS(808), + [anon_sym_float] = ACTIONS(808), + [anon_sym_double] = ACTIONS(808), + [sym_boolean_type] = ACTIONS(808), + [sym_void_type] = ACTIONS(808), + [sym_this] = ACTIONS(808), + [sym_super] = ACTIONS(808), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), - [sym_decimal_integer_literal] = ACTIONS(810), - [sym_hex_integer_literal] = ACTIONS(810), - [sym_octal_integer_literal] = ACTIONS(808), - [sym_binary_integer_literal] = ACTIONS(808), - [sym_decimal_floating_point_literal] = ACTIONS(808), - [sym_hex_floating_point_literal] = ACTIONS(810), - [sym_true] = ACTIONS(810), - [sym_false] = ACTIONS(810), - [sym_character_literal] = ACTIONS(808), - [sym_string_literal] = ACTIONS(810), - [sym_text_block] = ACTIONS(808), - [sym_null_literal] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_TILDE] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(808), - [anon_sym_DASH_DASH] = ACTIONS(808), - [anon_sym_new] = ACTIONS(810), - [anon_sym_class] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_RBRACE] = ACTIONS(808), - [anon_sym_case] = ACTIONS(810), - [anon_sym_default] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(808), - [anon_sym_assert] = ACTIONS(810), - [anon_sym_do] = ACTIONS(810), - [anon_sym_while] = ACTIONS(810), - [anon_sym_break] = ACTIONS(810), - [anon_sym_continue] = ACTIONS(810), - [anon_sym_return] = ACTIONS(810), - [anon_sym_yield] = ACTIONS(810), - [anon_sym_synchronized] = ACTIONS(810), - [anon_sym_throw] = ACTIONS(810), - [anon_sym_try] = ACTIONS(810), - [anon_sym_if] = ACTIONS(810), - [anon_sym_else] = ACTIONS(810), - [anon_sym_for] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(810), - [anon_sym_open] = ACTIONS(810), - [anon_sym_module] = ACTIONS(810), - [anon_sym_static] = ACTIONS(810), - [anon_sym_package] = ACTIONS(810), - [anon_sym_import] = ACTIONS(810), - [anon_sym_enum] = ACTIONS(810), - [anon_sym_public] = ACTIONS(810), - [anon_sym_protected] = ACTIONS(810), - [anon_sym_private] = ACTIONS(810), - [anon_sym_abstract] = ACTIONS(810), - [anon_sym_final] = ACTIONS(810), - [anon_sym_strictfp] = ACTIONS(810), - [anon_sym_native] = ACTIONS(810), - [anon_sym_transient] = ACTIONS(810), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym_sealed] = ACTIONS(810), - [anon_sym_non_DASHsealed] = ACTIONS(808), - [anon_sym_record] = ACTIONS(810), - [anon_sym_ATinterface] = ACTIONS(808), - [anon_sym_interface] = ACTIONS(810), - [anon_sym_byte] = ACTIONS(810), - [anon_sym_short] = ACTIONS(810), - [anon_sym_int] = ACTIONS(810), - [anon_sym_long] = ACTIONS(810), - [anon_sym_char] = ACTIONS(810), - [anon_sym_float] = ACTIONS(810), - [anon_sym_double] = ACTIONS(810), - [sym_boolean_type] = ACTIONS(810), - [sym_void_type] = ACTIONS(810), - [sym_this] = ACTIONS(810), - [sym_super] = ACTIONS(810), + [ts_builtin_sym_end] = ACTIONS(810), + [sym_identifier] = ACTIONS(812), + [sym_decimal_integer_literal] = ACTIONS(812), + [sym_hex_integer_literal] = ACTIONS(812), + [sym_octal_integer_literal] = ACTIONS(810), + [sym_binary_integer_literal] = ACTIONS(810), + [sym_decimal_floating_point_literal] = ACTIONS(810), + [sym_hex_floating_point_literal] = ACTIONS(812), + [sym_true] = ACTIONS(812), + [sym_false] = ACTIONS(812), + [sym_character_literal] = ACTIONS(810), + [sym_string_literal] = ACTIONS(812), + [sym_text_block] = ACTIONS(810), + [sym_null_literal] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(812), + [anon_sym_DASH] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(810), + [anon_sym_case] = ACTIONS(812), + [anon_sym_default] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_assert] = ACTIONS(812), + [anon_sym_do] = ACTIONS(812), + [anon_sym_while] = ACTIONS(812), + [anon_sym_break] = ACTIONS(812), + [anon_sym_continue] = ACTIONS(812), + [anon_sym_return] = ACTIONS(812), + [anon_sym_yield] = ACTIONS(812), + [anon_sym_synchronized] = ACTIONS(812), + [anon_sym_throw] = ACTIONS(812), + [anon_sym_try] = ACTIONS(812), + [anon_sym_if] = ACTIONS(812), + [anon_sym_else] = ACTIONS(812), + [anon_sym_for] = ACTIONS(812), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_open] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_static] = ACTIONS(812), + [anon_sym_package] = ACTIONS(812), + [anon_sym_import] = ACTIONS(812), + [anon_sym_enum] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_abstract] = ACTIONS(812), + [anon_sym_final] = ACTIONS(812), + [anon_sym_strictfp] = ACTIONS(812), + [anon_sym_native] = ACTIONS(812), + [anon_sym_transient] = ACTIONS(812), + [anon_sym_volatile] = ACTIONS(812), + [anon_sym_sealed] = ACTIONS(812), + [anon_sym_non_DASHsealed] = ACTIONS(810), + [anon_sym_record] = ACTIONS(812), + [anon_sym_ATinterface] = ACTIONS(810), + [anon_sym_interface] = ACTIONS(812), + [anon_sym_byte] = ACTIONS(812), + [anon_sym_short] = ACTIONS(812), + [anon_sym_int] = ACTIONS(812), + [anon_sym_long] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_float] = ACTIONS(812), + [anon_sym_double] = ACTIONS(812), + [sym_boolean_type] = ACTIONS(812), + [sym_void_type] = ACTIONS(812), + [sym_this] = ACTIONS(812), + [sym_super] = ACTIONS(812), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(812), - [sym_identifier] = ACTIONS(814), - [sym_decimal_integer_literal] = ACTIONS(814), - [sym_hex_integer_literal] = ACTIONS(814), - [sym_octal_integer_literal] = ACTIONS(812), - [sym_binary_integer_literal] = ACTIONS(812), - [sym_decimal_floating_point_literal] = ACTIONS(812), - [sym_hex_floating_point_literal] = ACTIONS(814), - [sym_true] = ACTIONS(814), - [sym_false] = ACTIONS(814), - [sym_character_literal] = ACTIONS(812), - [sym_string_literal] = ACTIONS(814), - [sym_text_block] = ACTIONS(812), - [sym_null_literal] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(812), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(812), - [anon_sym_RBRACE] = ACTIONS(812), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_assert] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_yield] = ACTIONS(814), - [anon_sym_synchronized] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_try] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_for] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_open] = ACTIONS(814), - [anon_sym_module] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_strictfp] = ACTIONS(814), - [anon_sym_native] = ACTIONS(814), - [anon_sym_transient] = ACTIONS(814), - [anon_sym_volatile] = ACTIONS(814), - [anon_sym_sealed] = ACTIONS(814), - [anon_sym_non_DASHsealed] = ACTIONS(812), - [anon_sym_record] = ACTIONS(814), - [anon_sym_ATinterface] = ACTIONS(812), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_byte] = ACTIONS(814), - [anon_sym_short] = ACTIONS(814), - [anon_sym_int] = ACTIONS(814), - [anon_sym_long] = ACTIONS(814), - [anon_sym_char] = ACTIONS(814), - [anon_sym_float] = ACTIONS(814), - [anon_sym_double] = ACTIONS(814), - [sym_boolean_type] = ACTIONS(814), - [sym_void_type] = ACTIONS(814), - [sym_this] = ACTIONS(814), - [sym_super] = ACTIONS(814), + [ts_builtin_sym_end] = ACTIONS(814), + [sym_identifier] = ACTIONS(816), + [sym_decimal_integer_literal] = ACTIONS(816), + [sym_hex_integer_literal] = ACTIONS(816), + [sym_octal_integer_literal] = ACTIONS(814), + [sym_binary_integer_literal] = ACTIONS(814), + [sym_decimal_floating_point_literal] = ACTIONS(814), + [sym_hex_floating_point_literal] = ACTIONS(816), + [sym_true] = ACTIONS(816), + [sym_false] = ACTIONS(816), + [sym_character_literal] = ACTIONS(814), + [sym_string_literal] = ACTIONS(816), + [sym_text_block] = ACTIONS(814), + [sym_null_literal] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(814), + [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_new] = ACTIONS(816), + [anon_sym_class] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_RBRACE] = ACTIONS(814), + [anon_sym_case] = ACTIONS(816), + [anon_sym_default] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_assert] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [anon_sym_break] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_return] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(816), + [anon_sym_synchronized] = ACTIONS(816), + [anon_sym_throw] = ACTIONS(816), + [anon_sym_try] = ACTIONS(816), + [anon_sym_if] = ACTIONS(816), + [anon_sym_else] = ACTIONS(816), + [anon_sym_for] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(816), + [anon_sym_open] = ACTIONS(816), + [anon_sym_module] = ACTIONS(816), + [anon_sym_static] = ACTIONS(816), + [anon_sym_package] = ACTIONS(816), + [anon_sym_import] = ACTIONS(816), + [anon_sym_enum] = ACTIONS(816), + [anon_sym_public] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(816), + [anon_sym_final] = ACTIONS(816), + [anon_sym_strictfp] = ACTIONS(816), + [anon_sym_native] = ACTIONS(816), + [anon_sym_transient] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_sealed] = ACTIONS(816), + [anon_sym_non_DASHsealed] = ACTIONS(814), + [anon_sym_record] = ACTIONS(816), + [anon_sym_ATinterface] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(816), + [anon_sym_byte] = ACTIONS(816), + [anon_sym_short] = ACTIONS(816), + [anon_sym_int] = ACTIONS(816), + [anon_sym_long] = ACTIONS(816), + [anon_sym_char] = ACTIONS(816), + [anon_sym_float] = ACTIONS(816), + [anon_sym_double] = ACTIONS(816), + [sym_boolean_type] = ACTIONS(816), + [sym_void_type] = ACTIONS(816), + [sym_this] = ACTIONS(816), + [sym_super] = ACTIONS(816), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(816), - [sym_identifier] = ACTIONS(818), - [sym_decimal_integer_literal] = ACTIONS(818), - [sym_hex_integer_literal] = ACTIONS(818), - [sym_octal_integer_literal] = ACTIONS(816), - [sym_binary_integer_literal] = ACTIONS(816), - [sym_decimal_floating_point_literal] = ACTIONS(816), - [sym_hex_floating_point_literal] = ACTIONS(818), - [sym_true] = ACTIONS(818), - [sym_false] = ACTIONS(818), - [sym_character_literal] = ACTIONS(816), - [sym_string_literal] = ACTIONS(818), - [sym_text_block] = ACTIONS(816), - [sym_null_literal] = ACTIONS(818), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_BANG] = ACTIONS(816), - [anon_sym_TILDE] = ACTIONS(816), - [anon_sym_PLUS_PLUS] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(816), - [anon_sym_new] = ACTIONS(818), - [anon_sym_class] = ACTIONS(818), - [anon_sym_switch] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_case] = ACTIONS(818), - [anon_sym_default] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(816), - [anon_sym_assert] = ACTIONS(818), - [anon_sym_do] = ACTIONS(818), - [anon_sym_while] = ACTIONS(818), - [anon_sym_break] = ACTIONS(818), - [anon_sym_continue] = ACTIONS(818), - [anon_sym_return] = ACTIONS(818), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_synchronized] = ACTIONS(818), - [anon_sym_throw] = ACTIONS(818), - [anon_sym_try] = ACTIONS(818), - [anon_sym_if] = ACTIONS(818), - [anon_sym_else] = ACTIONS(818), - [anon_sym_for] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(818), - [anon_sym_open] = ACTIONS(818), - [anon_sym_module] = ACTIONS(818), - [anon_sym_static] = ACTIONS(818), - [anon_sym_package] = ACTIONS(818), - [anon_sym_import] = ACTIONS(818), - [anon_sym_enum] = ACTIONS(818), - [anon_sym_public] = ACTIONS(818), - [anon_sym_protected] = ACTIONS(818), - [anon_sym_private] = ACTIONS(818), - [anon_sym_abstract] = ACTIONS(818), - [anon_sym_final] = ACTIONS(818), - [anon_sym_strictfp] = ACTIONS(818), - [anon_sym_native] = ACTIONS(818), - [anon_sym_transient] = ACTIONS(818), - [anon_sym_volatile] = ACTIONS(818), - [anon_sym_sealed] = ACTIONS(818), - [anon_sym_non_DASHsealed] = ACTIONS(816), - [anon_sym_record] = ACTIONS(818), - [anon_sym_ATinterface] = ACTIONS(816), - [anon_sym_interface] = ACTIONS(818), - [anon_sym_byte] = ACTIONS(818), - [anon_sym_short] = ACTIONS(818), - [anon_sym_int] = ACTIONS(818), - [anon_sym_long] = ACTIONS(818), - [anon_sym_char] = ACTIONS(818), - [anon_sym_float] = ACTIONS(818), - [anon_sym_double] = ACTIONS(818), - [sym_boolean_type] = ACTIONS(818), - [sym_void_type] = ACTIONS(818), - [sym_this] = ACTIONS(818), - [sym_super] = ACTIONS(818), + [ts_builtin_sym_end] = ACTIONS(818), + [sym_identifier] = ACTIONS(820), + [sym_decimal_integer_literal] = ACTIONS(820), + [sym_hex_integer_literal] = ACTIONS(820), + [sym_octal_integer_literal] = ACTIONS(818), + [sym_binary_integer_literal] = ACTIONS(818), + [sym_decimal_floating_point_literal] = ACTIONS(818), + [sym_hex_floating_point_literal] = ACTIONS(820), + [sym_true] = ACTIONS(820), + [sym_false] = ACTIONS(820), + [sym_character_literal] = ACTIONS(818), + [sym_string_literal] = ACTIONS(820), + [sym_text_block] = ACTIONS(818), + [sym_null_literal] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_PLUS_PLUS] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(818), + [anon_sym_new] = ACTIONS(820), + [anon_sym_class] = ACTIONS(820), + [anon_sym_switch] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_case] = ACTIONS(820), + [anon_sym_default] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_assert] = ACTIONS(820), + [anon_sym_do] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_break] = ACTIONS(820), + [anon_sym_continue] = ACTIONS(820), + [anon_sym_return] = ACTIONS(820), + [anon_sym_yield] = ACTIONS(820), + [anon_sym_synchronized] = ACTIONS(820), + [anon_sym_throw] = ACTIONS(820), + [anon_sym_try] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_else] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(820), + [anon_sym_open] = ACTIONS(820), + [anon_sym_module] = ACTIONS(820), + [anon_sym_static] = ACTIONS(820), + [anon_sym_package] = ACTIONS(820), + [anon_sym_import] = ACTIONS(820), + [anon_sym_enum] = ACTIONS(820), + [anon_sym_public] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_final] = ACTIONS(820), + [anon_sym_strictfp] = ACTIONS(820), + [anon_sym_native] = ACTIONS(820), + [anon_sym_transient] = ACTIONS(820), + [anon_sym_volatile] = ACTIONS(820), + [anon_sym_sealed] = ACTIONS(820), + [anon_sym_non_DASHsealed] = ACTIONS(818), + [anon_sym_record] = ACTIONS(820), + [anon_sym_ATinterface] = ACTIONS(818), + [anon_sym_interface] = ACTIONS(820), + [anon_sym_byte] = ACTIONS(820), + [anon_sym_short] = ACTIONS(820), + [anon_sym_int] = ACTIONS(820), + [anon_sym_long] = ACTIONS(820), + [anon_sym_char] = ACTIONS(820), + [anon_sym_float] = ACTIONS(820), + [anon_sym_double] = ACTIONS(820), + [sym_boolean_type] = ACTIONS(820), + [sym_void_type] = ACTIONS(820), + [sym_this] = ACTIONS(820), + [sym_super] = ACTIONS(820), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(820), - [sym_identifier] = ACTIONS(822), - [sym_decimal_integer_literal] = ACTIONS(822), - [sym_hex_integer_literal] = ACTIONS(822), - [sym_octal_integer_literal] = ACTIONS(820), - [sym_binary_integer_literal] = ACTIONS(820), - [sym_decimal_floating_point_literal] = ACTIONS(820), - [sym_hex_floating_point_literal] = ACTIONS(822), - [sym_true] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [sym_character_literal] = ACTIONS(820), - [sym_string_literal] = ACTIONS(822), - [sym_text_block] = ACTIONS(820), - [sym_null_literal] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_new] = ACTIONS(822), - [anon_sym_class] = ACTIONS(822), - [anon_sym_switch] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_case] = ACTIONS(822), - [anon_sym_default] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_assert] = ACTIONS(822), - [anon_sym_do] = ACTIONS(822), - [anon_sym_while] = ACTIONS(822), - [anon_sym_break] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(822), - [anon_sym_return] = ACTIONS(822), - [anon_sym_yield] = ACTIONS(822), - [anon_sym_synchronized] = ACTIONS(822), - [anon_sym_throw] = ACTIONS(822), - [anon_sym_try] = ACTIONS(822), - [anon_sym_if] = ACTIONS(822), - [anon_sym_else] = ACTIONS(822), - [anon_sym_for] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(822), - [anon_sym_open] = ACTIONS(822), - [anon_sym_module] = ACTIONS(822), - [anon_sym_static] = ACTIONS(822), - [anon_sym_package] = ACTIONS(822), - [anon_sym_import] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(822), - [anon_sym_public] = ACTIONS(822), - [anon_sym_protected] = ACTIONS(822), - [anon_sym_private] = ACTIONS(822), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_final] = ACTIONS(822), - [anon_sym_strictfp] = ACTIONS(822), - [anon_sym_native] = ACTIONS(822), - [anon_sym_transient] = ACTIONS(822), - [anon_sym_volatile] = ACTIONS(822), - [anon_sym_sealed] = ACTIONS(822), - [anon_sym_non_DASHsealed] = ACTIONS(820), - [anon_sym_record] = ACTIONS(822), - [anon_sym_ATinterface] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_byte] = ACTIONS(822), - [anon_sym_short] = ACTIONS(822), - [anon_sym_int] = ACTIONS(822), - [anon_sym_long] = ACTIONS(822), - [anon_sym_char] = ACTIONS(822), - [anon_sym_float] = ACTIONS(822), - [anon_sym_double] = ACTIONS(822), - [sym_boolean_type] = ACTIONS(822), - [sym_void_type] = ACTIONS(822), - [sym_this] = ACTIONS(822), - [sym_super] = ACTIONS(822), + [ts_builtin_sym_end] = ACTIONS(822), + [sym_identifier] = ACTIONS(824), + [sym_decimal_integer_literal] = ACTIONS(824), + [sym_hex_integer_literal] = ACTIONS(824), + [sym_octal_integer_literal] = ACTIONS(822), + [sym_binary_integer_literal] = ACTIONS(822), + [sym_decimal_floating_point_literal] = ACTIONS(822), + [sym_hex_floating_point_literal] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_character_literal] = ACTIONS(822), + [sym_string_literal] = ACTIONS(824), + [sym_text_block] = ACTIONS(822), + [sym_null_literal] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_BANG] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(822), + [anon_sym_new] = ACTIONS(824), + [anon_sym_class] = ACTIONS(824), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_case] = ACTIONS(824), + [anon_sym_default] = ACTIONS(824), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(824), + [anon_sym_do] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_break] = ACTIONS(824), + [anon_sym_continue] = ACTIONS(824), + [anon_sym_return] = ACTIONS(824), + [anon_sym_yield] = ACTIONS(824), + [anon_sym_synchronized] = ACTIONS(824), + [anon_sym_throw] = ACTIONS(824), + [anon_sym_try] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_else] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(824), + [anon_sym_open] = ACTIONS(824), + [anon_sym_module] = ACTIONS(824), + [anon_sym_static] = ACTIONS(824), + [anon_sym_package] = ACTIONS(824), + [anon_sym_import] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(824), + [anon_sym_public] = ACTIONS(824), + [anon_sym_protected] = ACTIONS(824), + [anon_sym_private] = ACTIONS(824), + [anon_sym_abstract] = ACTIONS(824), + [anon_sym_final] = ACTIONS(824), + [anon_sym_strictfp] = ACTIONS(824), + [anon_sym_native] = ACTIONS(824), + [anon_sym_transient] = ACTIONS(824), + [anon_sym_volatile] = ACTIONS(824), + [anon_sym_sealed] = ACTIONS(824), + [anon_sym_non_DASHsealed] = ACTIONS(822), + [anon_sym_record] = ACTIONS(824), + [anon_sym_ATinterface] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_byte] = ACTIONS(824), + [anon_sym_short] = ACTIONS(824), + [anon_sym_int] = ACTIONS(824), + [anon_sym_long] = ACTIONS(824), + [anon_sym_char] = ACTIONS(824), + [anon_sym_float] = ACTIONS(824), + [anon_sym_double] = ACTIONS(824), + [sym_boolean_type] = ACTIONS(824), + [sym_void_type] = ACTIONS(824), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(824), - [sym_identifier] = ACTIONS(826), - [sym_decimal_integer_literal] = ACTIONS(826), - [sym_hex_integer_literal] = ACTIONS(826), - [sym_octal_integer_literal] = ACTIONS(824), - [sym_binary_integer_literal] = ACTIONS(824), - [sym_decimal_floating_point_literal] = ACTIONS(824), - [sym_hex_floating_point_literal] = ACTIONS(826), - [sym_true] = ACTIONS(826), - [sym_false] = ACTIONS(826), - [sym_character_literal] = ACTIONS(824), - [sym_string_literal] = ACTIONS(826), - [sym_text_block] = ACTIONS(824), - [sym_null_literal] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym_new] = ACTIONS(826), - [anon_sym_class] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_case] = ACTIONS(826), - [anon_sym_default] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_yield] = ACTIONS(826), - [anon_sym_synchronized] = ACTIONS(826), - [anon_sym_throw] = ACTIONS(826), - [anon_sym_try] = ACTIONS(826), - [anon_sym_if] = ACTIONS(826), - [anon_sym_else] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_AT] = ACTIONS(826), - [anon_sym_open] = ACTIONS(826), - [anon_sym_module] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_package] = ACTIONS(826), - [anon_sym_import] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [anon_sym_public] = ACTIONS(826), - [anon_sym_protected] = ACTIONS(826), - [anon_sym_private] = ACTIONS(826), - [anon_sym_abstract] = ACTIONS(826), - [anon_sym_final] = ACTIONS(826), - [anon_sym_strictfp] = ACTIONS(826), - [anon_sym_native] = ACTIONS(826), - [anon_sym_transient] = ACTIONS(826), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_sealed] = ACTIONS(826), - [anon_sym_non_DASHsealed] = ACTIONS(824), - [anon_sym_record] = ACTIONS(826), - [anon_sym_ATinterface] = ACTIONS(824), - [anon_sym_interface] = ACTIONS(826), - [anon_sym_byte] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_int] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_char] = ACTIONS(826), - [anon_sym_float] = ACTIONS(826), - [anon_sym_double] = ACTIONS(826), - [sym_boolean_type] = ACTIONS(826), - [sym_void_type] = ACTIONS(826), - [sym_this] = ACTIONS(826), - [sym_super] = ACTIONS(826), + [ts_builtin_sym_end] = ACTIONS(826), + [sym_identifier] = ACTIONS(828), + [sym_decimal_integer_literal] = ACTIONS(828), + [sym_hex_integer_literal] = ACTIONS(828), + [sym_octal_integer_literal] = ACTIONS(826), + [sym_binary_integer_literal] = ACTIONS(826), + [sym_decimal_floating_point_literal] = ACTIONS(826), + [sym_hex_floating_point_literal] = ACTIONS(828), + [sym_true] = ACTIONS(828), + [sym_false] = ACTIONS(828), + [sym_character_literal] = ACTIONS(826), + [sym_string_literal] = ACTIONS(828), + [sym_text_block] = ACTIONS(826), + [sym_null_literal] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_new] = ACTIONS(828), + [anon_sym_class] = ACTIONS(828), + [anon_sym_switch] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_case] = ACTIONS(828), + [anon_sym_default] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_assert] = ACTIONS(828), + [anon_sym_do] = ACTIONS(828), + [anon_sym_while] = ACTIONS(828), + [anon_sym_break] = ACTIONS(828), + [anon_sym_continue] = ACTIONS(828), + [anon_sym_return] = ACTIONS(828), + [anon_sym_yield] = ACTIONS(828), + [anon_sym_synchronized] = ACTIONS(828), + [anon_sym_throw] = ACTIONS(828), + [anon_sym_try] = ACTIONS(828), + [anon_sym_if] = ACTIONS(828), + [anon_sym_else] = ACTIONS(828), + [anon_sym_for] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(828), + [anon_sym_open] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_static] = ACTIONS(828), + [anon_sym_package] = ACTIONS(828), + [anon_sym_import] = ACTIONS(828), + [anon_sym_enum] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_abstract] = ACTIONS(828), + [anon_sym_final] = ACTIONS(828), + [anon_sym_strictfp] = ACTIONS(828), + [anon_sym_native] = ACTIONS(828), + [anon_sym_transient] = ACTIONS(828), + [anon_sym_volatile] = ACTIONS(828), + [anon_sym_sealed] = ACTIONS(828), + [anon_sym_non_DASHsealed] = ACTIONS(826), + [anon_sym_record] = ACTIONS(828), + [anon_sym_ATinterface] = ACTIONS(826), + [anon_sym_interface] = ACTIONS(828), + [anon_sym_byte] = ACTIONS(828), + [anon_sym_short] = ACTIONS(828), + [anon_sym_int] = ACTIONS(828), + [anon_sym_long] = ACTIONS(828), + [anon_sym_char] = ACTIONS(828), + [anon_sym_float] = ACTIONS(828), + [anon_sym_double] = ACTIONS(828), + [sym_boolean_type] = ACTIONS(828), + [sym_void_type] = ACTIONS(828), + [sym_this] = ACTIONS(828), + [sym_super] = ACTIONS(828), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(828), - [sym_identifier] = ACTIONS(830), - [sym_decimal_integer_literal] = ACTIONS(830), - [sym_hex_integer_literal] = ACTIONS(830), - [sym_octal_integer_literal] = ACTIONS(828), - [sym_binary_integer_literal] = ACTIONS(828), - [sym_decimal_floating_point_literal] = ACTIONS(828), - [sym_hex_floating_point_literal] = ACTIONS(830), - [sym_true] = ACTIONS(830), - [sym_false] = ACTIONS(830), - [sym_character_literal] = ACTIONS(828), - [sym_string_literal] = ACTIONS(830), - [sym_text_block] = ACTIONS(828), - [sym_null_literal] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(830), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_PLUS_PLUS] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(828), - [anon_sym_new] = ACTIONS(830), - [anon_sym_class] = ACTIONS(830), - [anon_sym_switch] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_case] = ACTIONS(830), - [anon_sym_default] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_assert] = ACTIONS(830), - [anon_sym_do] = ACTIONS(830), - [anon_sym_while] = ACTIONS(830), - [anon_sym_break] = ACTIONS(830), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(830), - [anon_sym_synchronized] = ACTIONS(830), - [anon_sym_throw] = ACTIONS(830), - [anon_sym_try] = ACTIONS(830), - [anon_sym_if] = ACTIONS(830), - [anon_sym_else] = ACTIONS(830), - [anon_sym_for] = ACTIONS(830), - [anon_sym_AT] = ACTIONS(830), - [anon_sym_open] = ACTIONS(830), - [anon_sym_module] = ACTIONS(830), - [anon_sym_static] = ACTIONS(830), - [anon_sym_package] = ACTIONS(830), - [anon_sym_import] = ACTIONS(830), - [anon_sym_enum] = ACTIONS(830), - [anon_sym_public] = ACTIONS(830), - [anon_sym_protected] = ACTIONS(830), - [anon_sym_private] = ACTIONS(830), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_final] = ACTIONS(830), - [anon_sym_strictfp] = ACTIONS(830), - [anon_sym_native] = ACTIONS(830), - [anon_sym_transient] = ACTIONS(830), - [anon_sym_volatile] = ACTIONS(830), - [anon_sym_sealed] = ACTIONS(830), - [anon_sym_non_DASHsealed] = ACTIONS(828), - [anon_sym_record] = ACTIONS(830), - [anon_sym_ATinterface] = ACTIONS(828), - [anon_sym_interface] = ACTIONS(830), - [anon_sym_byte] = ACTIONS(830), - [anon_sym_short] = ACTIONS(830), - [anon_sym_int] = ACTIONS(830), - [anon_sym_long] = ACTIONS(830), - [anon_sym_char] = ACTIONS(830), - [anon_sym_float] = ACTIONS(830), - [anon_sym_double] = ACTIONS(830), - [sym_boolean_type] = ACTIONS(830), - [sym_void_type] = ACTIONS(830), - [sym_this] = ACTIONS(830), - [sym_super] = ACTIONS(830), + [ts_builtin_sym_end] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [sym_decimal_integer_literal] = ACTIONS(832), + [sym_hex_integer_literal] = ACTIONS(832), + [sym_octal_integer_literal] = ACTIONS(830), + [sym_binary_integer_literal] = ACTIONS(830), + [sym_decimal_floating_point_literal] = ACTIONS(830), + [sym_hex_floating_point_literal] = ACTIONS(832), + [sym_true] = ACTIONS(832), + [sym_false] = ACTIONS(832), + [sym_character_literal] = ACTIONS(830), + [sym_string_literal] = ACTIONS(832), + [sym_text_block] = ACTIONS(830), + [sym_null_literal] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(830), + [anon_sym_new] = ACTIONS(832), + [anon_sym_class] = ACTIONS(832), + [anon_sym_switch] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_case] = ACTIONS(832), + [anon_sym_default] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_assert] = ACTIONS(832), + [anon_sym_do] = ACTIONS(832), + [anon_sym_while] = ACTIONS(832), + [anon_sym_break] = ACTIONS(832), + [anon_sym_continue] = ACTIONS(832), + [anon_sym_return] = ACTIONS(832), + [anon_sym_yield] = ACTIONS(832), + [anon_sym_synchronized] = ACTIONS(832), + [anon_sym_throw] = ACTIONS(832), + [anon_sym_try] = ACTIONS(832), + [anon_sym_if] = ACTIONS(832), + [anon_sym_else] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(832), + [anon_sym_open] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_static] = ACTIONS(832), + [anon_sym_package] = ACTIONS(832), + [anon_sym_import] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_abstract] = ACTIONS(832), + [anon_sym_final] = ACTIONS(832), + [anon_sym_strictfp] = ACTIONS(832), + [anon_sym_native] = ACTIONS(832), + [anon_sym_transient] = ACTIONS(832), + [anon_sym_volatile] = ACTIONS(832), + [anon_sym_sealed] = ACTIONS(832), + [anon_sym_non_DASHsealed] = ACTIONS(830), + [anon_sym_record] = ACTIONS(832), + [anon_sym_ATinterface] = ACTIONS(830), + [anon_sym_interface] = ACTIONS(832), + [anon_sym_byte] = ACTIONS(832), + [anon_sym_short] = ACTIONS(832), + [anon_sym_int] = ACTIONS(832), + [anon_sym_long] = ACTIONS(832), + [anon_sym_char] = ACTIONS(832), + [anon_sym_float] = ACTIONS(832), + [anon_sym_double] = ACTIONS(832), + [sym_boolean_type] = ACTIONS(832), + [sym_void_type] = ACTIONS(832), + [sym_this] = ACTIONS(832), + [sym_super] = ACTIONS(832), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(832), - [sym_identifier] = ACTIONS(834), - [sym_decimal_integer_literal] = ACTIONS(834), - [sym_hex_integer_literal] = ACTIONS(834), - [sym_octal_integer_literal] = ACTIONS(832), - [sym_binary_integer_literal] = ACTIONS(832), - [sym_decimal_floating_point_literal] = ACTIONS(832), - [sym_hex_floating_point_literal] = ACTIONS(834), - [sym_true] = ACTIONS(834), - [sym_false] = ACTIONS(834), - [sym_character_literal] = ACTIONS(832), - [sym_string_literal] = ACTIONS(834), - [sym_text_block] = ACTIONS(832), - [sym_null_literal] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(832), - [anon_sym_TILDE] = ACTIONS(832), - [anon_sym_PLUS_PLUS] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(832), - [anon_sym_new] = ACTIONS(834), - [anon_sym_class] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_case] = ACTIONS(834), - [anon_sym_default] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_assert] = ACTIONS(834), - [anon_sym_do] = ACTIONS(834), - [anon_sym_while] = ACTIONS(834), - [anon_sym_break] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_return] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(834), - [anon_sym_synchronized] = ACTIONS(834), - [anon_sym_throw] = ACTIONS(834), - [anon_sym_try] = ACTIONS(834), - [anon_sym_if] = ACTIONS(834), - [anon_sym_else] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_open] = ACTIONS(834), - [anon_sym_module] = ACTIONS(834), - [anon_sym_static] = ACTIONS(834), - [anon_sym_package] = ACTIONS(834), - [anon_sym_import] = ACTIONS(834), - [anon_sym_enum] = ACTIONS(834), - [anon_sym_public] = ACTIONS(834), - [anon_sym_protected] = ACTIONS(834), - [anon_sym_private] = ACTIONS(834), - [anon_sym_abstract] = ACTIONS(834), - [anon_sym_final] = ACTIONS(834), - [anon_sym_strictfp] = ACTIONS(834), - [anon_sym_native] = ACTIONS(834), - [anon_sym_transient] = ACTIONS(834), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_sealed] = ACTIONS(834), - [anon_sym_non_DASHsealed] = ACTIONS(832), - [anon_sym_record] = ACTIONS(834), - [anon_sym_ATinterface] = ACTIONS(832), - [anon_sym_interface] = ACTIONS(834), - [anon_sym_byte] = ACTIONS(834), - [anon_sym_short] = ACTIONS(834), - [anon_sym_int] = ACTIONS(834), - [anon_sym_long] = ACTIONS(834), - [anon_sym_char] = ACTIONS(834), - [anon_sym_float] = ACTIONS(834), - [anon_sym_double] = ACTIONS(834), - [sym_boolean_type] = ACTIONS(834), - [sym_void_type] = ACTIONS(834), - [sym_this] = ACTIONS(834), - [sym_super] = ACTIONS(834), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [sym_decimal_integer_literal] = ACTIONS(836), + [sym_hex_integer_literal] = ACTIONS(836), + [sym_octal_integer_literal] = ACTIONS(834), + [sym_binary_integer_literal] = ACTIONS(834), + [sym_decimal_floating_point_literal] = ACTIONS(834), + [sym_hex_floating_point_literal] = ACTIONS(836), + [sym_true] = ACTIONS(836), + [sym_false] = ACTIONS(836), + [sym_character_literal] = ACTIONS(834), + [sym_string_literal] = ACTIONS(836), + [sym_text_block] = ACTIONS(834), + [sym_null_literal] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), + [anon_sym_new] = ACTIONS(836), + [anon_sym_class] = ACTIONS(836), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_case] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_assert] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_synchronized] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_try] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_open] = ACTIONS(836), + [anon_sym_module] = ACTIONS(836), + [anon_sym_static] = ACTIONS(836), + [anon_sym_package] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_enum] = ACTIONS(836), + [anon_sym_public] = ACTIONS(836), + [anon_sym_protected] = ACTIONS(836), + [anon_sym_private] = ACTIONS(836), + [anon_sym_abstract] = ACTIONS(836), + [anon_sym_final] = ACTIONS(836), + [anon_sym_strictfp] = ACTIONS(836), + [anon_sym_native] = ACTIONS(836), + [anon_sym_transient] = ACTIONS(836), + [anon_sym_volatile] = ACTIONS(836), + [anon_sym_sealed] = ACTIONS(836), + [anon_sym_non_DASHsealed] = ACTIONS(834), + [anon_sym_record] = ACTIONS(836), + [anon_sym_ATinterface] = ACTIONS(834), + [anon_sym_interface] = ACTIONS(836), + [anon_sym_byte] = ACTIONS(836), + [anon_sym_short] = ACTIONS(836), + [anon_sym_int] = ACTIONS(836), + [anon_sym_long] = ACTIONS(836), + [anon_sym_char] = ACTIONS(836), + [anon_sym_float] = ACTIONS(836), + [anon_sym_double] = ACTIONS(836), + [sym_boolean_type] = ACTIONS(836), + [sym_void_type] = ACTIONS(836), + [sym_this] = ACTIONS(836), + [sym_super] = ACTIONS(836), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(838), - [sym_decimal_integer_literal] = ACTIONS(838), - [sym_hex_integer_literal] = ACTIONS(838), - [sym_octal_integer_literal] = ACTIONS(836), - [sym_binary_integer_literal] = ACTIONS(836), - [sym_decimal_floating_point_literal] = ACTIONS(836), - [sym_hex_floating_point_literal] = ACTIONS(838), - [sym_true] = ACTIONS(838), - [sym_false] = ACTIONS(838), - [sym_character_literal] = ACTIONS(836), - [sym_string_literal] = ACTIONS(838), - [sym_text_block] = ACTIONS(836), - [sym_null_literal] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(838), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_new] = ACTIONS(838), - [anon_sym_class] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(838), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_assert] = ACTIONS(838), - [anon_sym_do] = ACTIONS(838), - [anon_sym_while] = ACTIONS(838), - [anon_sym_break] = ACTIONS(838), - [anon_sym_continue] = ACTIONS(838), - [anon_sym_return] = ACTIONS(838), - [anon_sym_yield] = ACTIONS(838), - [anon_sym_synchronized] = ACTIONS(838), - [anon_sym_throw] = ACTIONS(838), - [anon_sym_try] = ACTIONS(838), - [anon_sym_if] = ACTIONS(838), - [anon_sym_else] = ACTIONS(838), - [anon_sym_for] = ACTIONS(838), - [anon_sym_AT] = ACTIONS(838), - [anon_sym_open] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_static] = ACTIONS(838), - [anon_sym_package] = ACTIONS(838), - [anon_sym_import] = ACTIONS(838), - [anon_sym_enum] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_abstract] = ACTIONS(838), - [anon_sym_final] = ACTIONS(838), - [anon_sym_strictfp] = ACTIONS(838), - [anon_sym_native] = ACTIONS(838), - [anon_sym_transient] = ACTIONS(838), - [anon_sym_volatile] = ACTIONS(838), - [anon_sym_sealed] = ACTIONS(838), - [anon_sym_non_DASHsealed] = ACTIONS(836), - [anon_sym_record] = ACTIONS(838), - [anon_sym_ATinterface] = ACTIONS(836), - [anon_sym_interface] = ACTIONS(838), - [anon_sym_byte] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_int] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_char] = ACTIONS(838), - [anon_sym_float] = ACTIONS(838), - [anon_sym_double] = ACTIONS(838), - [sym_boolean_type] = ACTIONS(838), - [sym_void_type] = ACTIONS(838), - [sym_this] = ACTIONS(838), - [sym_super] = ACTIONS(838), + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(840), + [sym_decimal_integer_literal] = ACTIONS(840), + [sym_hex_integer_literal] = ACTIONS(840), + [sym_octal_integer_literal] = ACTIONS(838), + [sym_binary_integer_literal] = ACTIONS(838), + [sym_decimal_floating_point_literal] = ACTIONS(838), + [sym_hex_floating_point_literal] = ACTIONS(840), + [sym_true] = ACTIONS(840), + [sym_false] = ACTIONS(840), + [sym_character_literal] = ACTIONS(838), + [sym_string_literal] = ACTIONS(840), + [sym_text_block] = ACTIONS(838), + [sym_null_literal] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(838), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_PLUS_PLUS] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(838), + [anon_sym_new] = ACTIONS(840), + [anon_sym_class] = ACTIONS(840), + [anon_sym_switch] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_case] = ACTIONS(840), + [anon_sym_default] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_do] = ACTIONS(840), + [anon_sym_while] = ACTIONS(840), + [anon_sym_break] = ACTIONS(840), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_return] = ACTIONS(840), + [anon_sym_yield] = ACTIONS(840), + [anon_sym_synchronized] = ACTIONS(840), + [anon_sym_throw] = ACTIONS(840), + [anon_sym_try] = ACTIONS(840), + [anon_sym_if] = ACTIONS(840), + [anon_sym_else] = ACTIONS(840), + [anon_sym_for] = ACTIONS(840), + [anon_sym_AT] = ACTIONS(840), + [anon_sym_open] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_static] = ACTIONS(840), + [anon_sym_package] = ACTIONS(840), + [anon_sym_import] = ACTIONS(840), + [anon_sym_enum] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_abstract] = ACTIONS(840), + [anon_sym_final] = ACTIONS(840), + [anon_sym_strictfp] = ACTIONS(840), + [anon_sym_native] = ACTIONS(840), + [anon_sym_transient] = ACTIONS(840), + [anon_sym_volatile] = ACTIONS(840), + [anon_sym_sealed] = ACTIONS(840), + [anon_sym_non_DASHsealed] = ACTIONS(838), + [anon_sym_record] = ACTIONS(840), + [anon_sym_ATinterface] = ACTIONS(838), + [anon_sym_interface] = ACTIONS(840), + [anon_sym_byte] = ACTIONS(840), + [anon_sym_short] = ACTIONS(840), + [anon_sym_int] = ACTIONS(840), + [anon_sym_long] = ACTIONS(840), + [anon_sym_char] = ACTIONS(840), + [anon_sym_float] = ACTIONS(840), + [anon_sym_double] = ACTIONS(840), + [sym_boolean_type] = ACTIONS(840), + [sym_void_type] = ACTIONS(840), + [sym_this] = ACTIONS(840), + [sym_super] = ACTIONS(840), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_identifier] = ACTIONS(842), - [sym_decimal_integer_literal] = ACTIONS(842), - [sym_hex_integer_literal] = ACTIONS(842), - [sym_octal_integer_literal] = ACTIONS(840), - [sym_binary_integer_literal] = ACTIONS(840), - [sym_decimal_floating_point_literal] = ACTIONS(840), - [sym_hex_floating_point_literal] = ACTIONS(842), - [sym_true] = ACTIONS(842), - [sym_false] = ACTIONS(842), - [sym_character_literal] = ACTIONS(840), - [sym_string_literal] = ACTIONS(842), - [sym_text_block] = ACTIONS(840), - [sym_null_literal] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(840), - [anon_sym_TILDE] = ACTIONS(840), - [anon_sym_PLUS_PLUS] = ACTIONS(840), - [anon_sym_DASH_DASH] = ACTIONS(840), - [anon_sym_new] = ACTIONS(842), - [anon_sym_class] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(840), - [anon_sym_RBRACE] = ACTIONS(840), - [anon_sym_case] = ACTIONS(842), - [anon_sym_default] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(842), - [anon_sym_do] = ACTIONS(842), - [anon_sym_while] = ACTIONS(842), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_return] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(842), - [anon_sym_synchronized] = ACTIONS(842), - [anon_sym_throw] = ACTIONS(842), - [anon_sym_try] = ACTIONS(842), - [anon_sym_if] = ACTIONS(842), - [anon_sym_else] = ACTIONS(842), - [anon_sym_for] = ACTIONS(842), - [anon_sym_AT] = ACTIONS(842), - [anon_sym_open] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_static] = ACTIONS(842), - [anon_sym_package] = ACTIONS(842), - [anon_sym_import] = ACTIONS(842), - [anon_sym_enum] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_abstract] = ACTIONS(842), - [anon_sym_final] = ACTIONS(842), - [anon_sym_strictfp] = ACTIONS(842), - [anon_sym_native] = ACTIONS(842), - [anon_sym_transient] = ACTIONS(842), - [anon_sym_volatile] = ACTIONS(842), - [anon_sym_sealed] = ACTIONS(842), - [anon_sym_non_DASHsealed] = ACTIONS(840), - [anon_sym_record] = ACTIONS(842), - [anon_sym_ATinterface] = ACTIONS(840), - [anon_sym_interface] = ACTIONS(842), - [anon_sym_byte] = ACTIONS(842), - [anon_sym_short] = ACTIONS(842), - [anon_sym_int] = ACTIONS(842), - [anon_sym_long] = ACTIONS(842), - [anon_sym_char] = ACTIONS(842), - [anon_sym_float] = ACTIONS(842), - [anon_sym_double] = ACTIONS(842), - [sym_boolean_type] = ACTIONS(842), - [sym_void_type] = ACTIONS(842), - [sym_this] = ACTIONS(842), - [sym_super] = ACTIONS(842), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_identifier] = ACTIONS(844), + [sym_decimal_integer_literal] = ACTIONS(844), + [sym_hex_integer_literal] = ACTIONS(844), + [sym_octal_integer_literal] = ACTIONS(842), + [sym_binary_integer_literal] = ACTIONS(842), + [sym_decimal_floating_point_literal] = ACTIONS(842), + [sym_hex_floating_point_literal] = ACTIONS(844), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_character_literal] = ACTIONS(842), + [sym_string_literal] = ACTIONS(844), + [sym_text_block] = ACTIONS(842), + [sym_null_literal] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(842), + [anon_sym_PLUS_PLUS] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(842), + [anon_sym_new] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(842), + [anon_sym_assert] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(844), + [anon_sym_synchronized] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_try] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_for] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_open] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_package] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_strictfp] = ACTIONS(844), + [anon_sym_native] = ACTIONS(844), + [anon_sym_transient] = ACTIONS(844), + [anon_sym_volatile] = ACTIONS(844), + [anon_sym_sealed] = ACTIONS(844), + [anon_sym_non_DASHsealed] = ACTIONS(842), + [anon_sym_record] = ACTIONS(844), + [anon_sym_ATinterface] = ACTIONS(842), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_byte] = ACTIONS(844), + [anon_sym_short] = ACTIONS(844), + [anon_sym_int] = ACTIONS(844), + [anon_sym_long] = ACTIONS(844), + [anon_sym_char] = ACTIONS(844), + [anon_sym_float] = ACTIONS(844), + [anon_sym_double] = ACTIONS(844), + [sym_boolean_type] = ACTIONS(844), + [sym_void_type] = ACTIONS(844), + [sym_this] = ACTIONS(844), + [sym_super] = ACTIONS(844), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(844), - [sym_identifier] = ACTIONS(846), - [sym_decimal_integer_literal] = ACTIONS(846), - [sym_hex_integer_literal] = ACTIONS(846), - [sym_octal_integer_literal] = ACTIONS(844), - [sym_binary_integer_literal] = ACTIONS(844), - [sym_decimal_floating_point_literal] = ACTIONS(844), - [sym_hex_floating_point_literal] = ACTIONS(846), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_character_literal] = ACTIONS(844), - [sym_string_literal] = ACTIONS(846), - [sym_text_block] = ACTIONS(844), - [sym_null_literal] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_new] = ACTIONS(846), - [anon_sym_class] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_case] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_assert] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_yield] = ACTIONS(846), - [anon_sym_synchronized] = ACTIONS(846), - [anon_sym_throw] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_else] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_AT] = ACTIONS(846), - [anon_sym_open] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_static] = ACTIONS(846), - [anon_sym_package] = ACTIONS(846), - [anon_sym_import] = ACTIONS(846), - [anon_sym_enum] = ACTIONS(846), - [anon_sym_public] = ACTIONS(846), - [anon_sym_protected] = ACTIONS(846), - [anon_sym_private] = ACTIONS(846), - [anon_sym_abstract] = ACTIONS(846), - [anon_sym_final] = ACTIONS(846), - [anon_sym_strictfp] = ACTIONS(846), - [anon_sym_native] = ACTIONS(846), - [anon_sym_transient] = ACTIONS(846), - [anon_sym_volatile] = ACTIONS(846), - [anon_sym_sealed] = ACTIONS(846), - [anon_sym_non_DASHsealed] = ACTIONS(844), - [anon_sym_record] = ACTIONS(846), - [anon_sym_ATinterface] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(846), - [anon_sym_byte] = ACTIONS(846), - [anon_sym_short] = ACTIONS(846), - [anon_sym_int] = ACTIONS(846), - [anon_sym_long] = ACTIONS(846), - [anon_sym_char] = ACTIONS(846), - [anon_sym_float] = ACTIONS(846), - [anon_sym_double] = ACTIONS(846), - [sym_boolean_type] = ACTIONS(846), - [sym_void_type] = ACTIONS(846), - [sym_this] = ACTIONS(846), - [sym_super] = ACTIONS(846), + [ts_builtin_sym_end] = ACTIONS(846), + [sym_identifier] = ACTIONS(848), + [sym_decimal_integer_literal] = ACTIONS(848), + [sym_hex_integer_literal] = ACTIONS(848), + [sym_octal_integer_literal] = ACTIONS(846), + [sym_binary_integer_literal] = ACTIONS(846), + [sym_decimal_floating_point_literal] = ACTIONS(846), + [sym_hex_floating_point_literal] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_character_literal] = ACTIONS(846), + [sym_string_literal] = ACTIONS(848), + [sym_text_block] = ACTIONS(846), + [sym_null_literal] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_TILDE] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_new] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_assert] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_synchronized] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_open] = ACTIONS(848), + [anon_sym_module] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_package] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_enum] = ACTIONS(848), + [anon_sym_public] = ACTIONS(848), + [anon_sym_protected] = ACTIONS(848), + [anon_sym_private] = ACTIONS(848), + [anon_sym_abstract] = ACTIONS(848), + [anon_sym_final] = ACTIONS(848), + [anon_sym_strictfp] = ACTIONS(848), + [anon_sym_native] = ACTIONS(848), + [anon_sym_transient] = ACTIONS(848), + [anon_sym_volatile] = ACTIONS(848), + [anon_sym_sealed] = ACTIONS(848), + [anon_sym_non_DASHsealed] = ACTIONS(846), + [anon_sym_record] = ACTIONS(848), + [anon_sym_ATinterface] = ACTIONS(846), + [anon_sym_interface] = ACTIONS(848), + [anon_sym_byte] = ACTIONS(848), + [anon_sym_short] = ACTIONS(848), + [anon_sym_int] = ACTIONS(848), + [anon_sym_long] = ACTIONS(848), + [anon_sym_char] = ACTIONS(848), + [anon_sym_float] = ACTIONS(848), + [anon_sym_double] = ACTIONS(848), + [sym_boolean_type] = ACTIONS(848), + [sym_void_type] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(848), - [sym_identifier] = ACTIONS(850), - [sym_decimal_integer_literal] = ACTIONS(850), - [sym_hex_integer_literal] = ACTIONS(850), - [sym_octal_integer_literal] = ACTIONS(848), - [sym_binary_integer_literal] = ACTIONS(848), - [sym_decimal_floating_point_literal] = ACTIONS(848), - [sym_hex_floating_point_literal] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_character_literal] = ACTIONS(848), - [sym_string_literal] = ACTIONS(850), - [sym_text_block] = ACTIONS(848), - [sym_null_literal] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS_PLUS] = ACTIONS(848), - [anon_sym_DASH_DASH] = ACTIONS(848), - [anon_sym_new] = ACTIONS(850), - [anon_sym_class] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(848), - [anon_sym_assert] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_synchronized] = ACTIONS(850), - [anon_sym_throw] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_else] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_AT] = ACTIONS(850), - [anon_sym_open] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_static] = ACTIONS(850), - [anon_sym_package] = ACTIONS(850), - [anon_sym_import] = ACTIONS(850), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_public] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(850), - [anon_sym_final] = ACTIONS(850), - [anon_sym_strictfp] = ACTIONS(850), - [anon_sym_native] = ACTIONS(850), - [anon_sym_transient] = ACTIONS(850), - [anon_sym_volatile] = ACTIONS(850), - [anon_sym_sealed] = ACTIONS(850), - [anon_sym_non_DASHsealed] = ACTIONS(848), - [anon_sym_record] = ACTIONS(850), - [anon_sym_ATinterface] = ACTIONS(848), - [anon_sym_interface] = ACTIONS(850), - [anon_sym_byte] = ACTIONS(850), - [anon_sym_short] = ACTIONS(850), - [anon_sym_int] = ACTIONS(850), - [anon_sym_long] = ACTIONS(850), - [anon_sym_char] = ACTIONS(850), - [anon_sym_float] = ACTIONS(850), - [anon_sym_double] = ACTIONS(850), - [sym_boolean_type] = ACTIONS(850), - [sym_void_type] = ACTIONS(850), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [sym_decimal_integer_literal] = ACTIONS(852), + [sym_hex_integer_literal] = ACTIONS(852), + [sym_octal_integer_literal] = ACTIONS(850), + [sym_binary_integer_literal] = ACTIONS(850), + [sym_decimal_floating_point_literal] = ACTIONS(850), + [sym_hex_floating_point_literal] = ACTIONS(852), + [sym_true] = ACTIONS(852), + [sym_false] = ACTIONS(852), + [sym_character_literal] = ACTIONS(850), + [sym_string_literal] = ACTIONS(852), + [sym_text_block] = ACTIONS(850), + [sym_null_literal] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(850), + [anon_sym_new] = ACTIONS(852), + [anon_sym_class] = ACTIONS(852), + [anon_sym_switch] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_case] = ACTIONS(852), + [anon_sym_default] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_assert] = ACTIONS(852), + [anon_sym_do] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_synchronized] = ACTIONS(852), + [anon_sym_throw] = ACTIONS(852), + [anon_sym_try] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_AT] = ACTIONS(852), + [anon_sym_open] = ACTIONS(852), + [anon_sym_module] = ACTIONS(852), + [anon_sym_static] = ACTIONS(852), + [anon_sym_package] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_enum] = ACTIONS(852), + [anon_sym_public] = ACTIONS(852), + [anon_sym_protected] = ACTIONS(852), + [anon_sym_private] = ACTIONS(852), + [anon_sym_abstract] = ACTIONS(852), + [anon_sym_final] = ACTIONS(852), + [anon_sym_strictfp] = ACTIONS(852), + [anon_sym_native] = ACTIONS(852), + [anon_sym_transient] = ACTIONS(852), + [anon_sym_volatile] = ACTIONS(852), + [anon_sym_sealed] = ACTIONS(852), + [anon_sym_non_DASHsealed] = ACTIONS(850), + [anon_sym_record] = ACTIONS(852), + [anon_sym_ATinterface] = ACTIONS(850), + [anon_sym_interface] = ACTIONS(852), + [anon_sym_byte] = ACTIONS(852), + [anon_sym_short] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_long] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_double] = ACTIONS(852), + [sym_boolean_type] = ACTIONS(852), + [sym_void_type] = ACTIONS(852), + [sym_this] = ACTIONS(852), + [sym_super] = ACTIONS(852), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(852), - [sym_identifier] = ACTIONS(854), - [sym_decimal_integer_literal] = ACTIONS(854), - [sym_hex_integer_literal] = ACTIONS(854), - [sym_octal_integer_literal] = ACTIONS(852), - [sym_binary_integer_literal] = ACTIONS(852), - [sym_decimal_floating_point_literal] = ACTIONS(852), - [sym_hex_floating_point_literal] = ACTIONS(854), - [sym_true] = ACTIONS(854), - [sym_false] = ACTIONS(854), - [sym_character_literal] = ACTIONS(852), - [sym_string_literal] = ACTIONS(854), - [sym_text_block] = ACTIONS(852), - [sym_null_literal] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_new] = ACTIONS(854), - [anon_sym_class] = ACTIONS(854), - [anon_sym_switch] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_case] = ACTIONS(854), - [anon_sym_default] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_assert] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_yield] = ACTIONS(854), - [anon_sym_synchronized] = ACTIONS(854), - [anon_sym_throw] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_else] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(854), - [anon_sym_open] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_static] = ACTIONS(854), - [anon_sym_package] = ACTIONS(854), - [anon_sym_import] = ACTIONS(854), - [anon_sym_enum] = ACTIONS(854), - [anon_sym_public] = ACTIONS(854), - [anon_sym_protected] = ACTIONS(854), - [anon_sym_private] = ACTIONS(854), - [anon_sym_abstract] = ACTIONS(854), - [anon_sym_final] = ACTIONS(854), - [anon_sym_strictfp] = ACTIONS(854), - [anon_sym_native] = ACTIONS(854), - [anon_sym_transient] = ACTIONS(854), - [anon_sym_volatile] = ACTIONS(854), - [anon_sym_sealed] = ACTIONS(854), - [anon_sym_non_DASHsealed] = ACTIONS(852), - [anon_sym_record] = ACTIONS(854), - [anon_sym_ATinterface] = ACTIONS(852), - [anon_sym_interface] = ACTIONS(854), - [anon_sym_byte] = ACTIONS(854), - [anon_sym_short] = ACTIONS(854), - [anon_sym_int] = ACTIONS(854), - [anon_sym_long] = ACTIONS(854), - [anon_sym_char] = ACTIONS(854), - [anon_sym_float] = ACTIONS(854), - [anon_sym_double] = ACTIONS(854), - [sym_boolean_type] = ACTIONS(854), - [sym_void_type] = ACTIONS(854), - [sym_this] = ACTIONS(854), - [sym_super] = ACTIONS(854), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_identifier] = ACTIONS(856), + [sym_decimal_integer_literal] = ACTIONS(856), + [sym_hex_integer_literal] = ACTIONS(856), + [sym_octal_integer_literal] = ACTIONS(854), + [sym_binary_integer_literal] = ACTIONS(854), + [sym_decimal_floating_point_literal] = ACTIONS(854), + [sym_hex_floating_point_literal] = ACTIONS(856), + [sym_true] = ACTIONS(856), + [sym_false] = ACTIONS(856), + [sym_character_literal] = ACTIONS(854), + [sym_string_literal] = ACTIONS(856), + [sym_text_block] = ACTIONS(854), + [sym_null_literal] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_new] = ACTIONS(856), + [anon_sym_class] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_case] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_assert] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(856), + [anon_sym_synchronized] = ACTIONS(856), + [anon_sym_throw] = ACTIONS(856), + [anon_sym_try] = ACTIONS(856), + [anon_sym_if] = ACTIONS(856), + [anon_sym_else] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_AT] = ACTIONS(856), + [anon_sym_open] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_static] = ACTIONS(856), + [anon_sym_package] = ACTIONS(856), + [anon_sym_import] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_abstract] = ACTIONS(856), + [anon_sym_final] = ACTIONS(856), + [anon_sym_strictfp] = ACTIONS(856), + [anon_sym_native] = ACTIONS(856), + [anon_sym_transient] = ACTIONS(856), + [anon_sym_volatile] = ACTIONS(856), + [anon_sym_sealed] = ACTIONS(856), + [anon_sym_non_DASHsealed] = ACTIONS(854), + [anon_sym_record] = ACTIONS(856), + [anon_sym_ATinterface] = ACTIONS(854), + [anon_sym_interface] = ACTIONS(856), + [anon_sym_byte] = ACTIONS(856), + [anon_sym_short] = ACTIONS(856), + [anon_sym_int] = ACTIONS(856), + [anon_sym_long] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_float] = ACTIONS(856), + [anon_sym_double] = ACTIONS(856), + [sym_boolean_type] = ACTIONS(856), + [sym_void_type] = ACTIONS(856), + [sym_this] = ACTIONS(856), + [sym_super] = ACTIONS(856), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(856), - [sym_identifier] = ACTIONS(858), - [sym_decimal_integer_literal] = ACTIONS(858), - [sym_hex_integer_literal] = ACTIONS(858), - [sym_octal_integer_literal] = ACTIONS(856), - [sym_binary_integer_literal] = ACTIONS(856), - [sym_decimal_floating_point_literal] = ACTIONS(856), - [sym_hex_floating_point_literal] = ACTIONS(858), - [sym_true] = ACTIONS(858), - [sym_false] = ACTIONS(858), - [sym_character_literal] = ACTIONS(856), - [sym_string_literal] = ACTIONS(858), - [sym_text_block] = ACTIONS(856), - [sym_null_literal] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(856), - [anon_sym_TILDE] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_class] = ACTIONS(858), - [anon_sym_switch] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(856), - [anon_sym_RBRACE] = ACTIONS(856), - [anon_sym_case] = ACTIONS(858), - [anon_sym_default] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_assert] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_synchronized] = ACTIONS(858), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_else] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(858), - [anon_sym_open] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_static] = ACTIONS(858), - [anon_sym_package] = ACTIONS(858), - [anon_sym_import] = ACTIONS(858), - [anon_sym_enum] = ACTIONS(858), - [anon_sym_public] = ACTIONS(858), - [anon_sym_protected] = ACTIONS(858), - [anon_sym_private] = ACTIONS(858), - [anon_sym_abstract] = ACTIONS(858), - [anon_sym_final] = ACTIONS(858), - [anon_sym_strictfp] = ACTIONS(858), - [anon_sym_native] = ACTIONS(858), - [anon_sym_transient] = ACTIONS(858), - [anon_sym_volatile] = ACTIONS(858), - [anon_sym_sealed] = ACTIONS(858), - [anon_sym_non_DASHsealed] = ACTIONS(856), - [anon_sym_record] = ACTIONS(858), - [anon_sym_ATinterface] = ACTIONS(856), - [anon_sym_interface] = ACTIONS(858), - [anon_sym_byte] = ACTIONS(858), - [anon_sym_short] = ACTIONS(858), - [anon_sym_int] = ACTIONS(858), - [anon_sym_long] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_float] = ACTIONS(858), - [anon_sym_double] = ACTIONS(858), - [sym_boolean_type] = ACTIONS(858), - [sym_void_type] = ACTIONS(858), - [sym_this] = ACTIONS(858), - [sym_super] = ACTIONS(858), + [ts_builtin_sym_end] = ACTIONS(858), + [sym_identifier] = ACTIONS(860), + [sym_decimal_integer_literal] = ACTIONS(860), + [sym_hex_integer_literal] = ACTIONS(860), + [sym_octal_integer_literal] = ACTIONS(858), + [sym_binary_integer_literal] = ACTIONS(858), + [sym_decimal_floating_point_literal] = ACTIONS(858), + [sym_hex_floating_point_literal] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_character_literal] = ACTIONS(858), + [sym_string_literal] = ACTIONS(860), + [sym_text_block] = ACTIONS(858), + [sym_null_literal] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_new] = ACTIONS(860), + [anon_sym_class] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_case] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_do] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_synchronized] = ACTIONS(860), + [anon_sym_throw] = ACTIONS(860), + [anon_sym_try] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_else] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_open] = ACTIONS(860), + [anon_sym_module] = ACTIONS(860), + [anon_sym_static] = ACTIONS(860), + [anon_sym_package] = ACTIONS(860), + [anon_sym_import] = ACTIONS(860), + [anon_sym_enum] = ACTIONS(860), + [anon_sym_public] = ACTIONS(860), + [anon_sym_protected] = ACTIONS(860), + [anon_sym_private] = ACTIONS(860), + [anon_sym_abstract] = ACTIONS(860), + [anon_sym_final] = ACTIONS(860), + [anon_sym_strictfp] = ACTIONS(860), + [anon_sym_native] = ACTIONS(860), + [anon_sym_transient] = ACTIONS(860), + [anon_sym_volatile] = ACTIONS(860), + [anon_sym_sealed] = ACTIONS(860), + [anon_sym_non_DASHsealed] = ACTIONS(858), + [anon_sym_record] = ACTIONS(860), + [anon_sym_ATinterface] = ACTIONS(858), + [anon_sym_interface] = ACTIONS(860), + [anon_sym_byte] = ACTIONS(860), + [anon_sym_short] = ACTIONS(860), + [anon_sym_int] = ACTIONS(860), + [anon_sym_long] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_float] = ACTIONS(860), + [anon_sym_double] = ACTIONS(860), + [sym_boolean_type] = ACTIONS(860), + [sym_void_type] = ACTIONS(860), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(860), - [sym_identifier] = ACTIONS(862), - [sym_decimal_integer_literal] = ACTIONS(862), - [sym_hex_integer_literal] = ACTIONS(862), - [sym_octal_integer_literal] = ACTIONS(860), - [sym_binary_integer_literal] = ACTIONS(860), - [sym_decimal_floating_point_literal] = ACTIONS(860), - [sym_hex_floating_point_literal] = ACTIONS(862), - [sym_true] = ACTIONS(862), - [sym_false] = ACTIONS(862), - [sym_character_literal] = ACTIONS(860), - [sym_string_literal] = ACTIONS(862), - [sym_text_block] = ACTIONS(860), - [sym_null_literal] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(860), - [anon_sym_PLUS] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(860), - [anon_sym_PLUS_PLUS] = ACTIONS(860), - [anon_sym_DASH_DASH] = ACTIONS(860), - [anon_sym_new] = ACTIONS(862), - [anon_sym_class] = ACTIONS(862), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_case] = ACTIONS(862), - [anon_sym_default] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_assert] = ACTIONS(862), - [anon_sym_do] = ACTIONS(862), - [anon_sym_while] = ACTIONS(862), - [anon_sym_break] = ACTIONS(862), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_return] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(862), - [anon_sym_synchronized] = ACTIONS(862), - [anon_sym_throw] = ACTIONS(862), - [anon_sym_try] = ACTIONS(862), - [anon_sym_if] = ACTIONS(862), - [anon_sym_else] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_AT] = ACTIONS(862), - [anon_sym_open] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_static] = ACTIONS(862), - [anon_sym_package] = ACTIONS(862), - [anon_sym_import] = ACTIONS(862), - [anon_sym_enum] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_abstract] = ACTIONS(862), - [anon_sym_final] = ACTIONS(862), - [anon_sym_strictfp] = ACTIONS(862), - [anon_sym_native] = ACTIONS(862), - [anon_sym_transient] = ACTIONS(862), - [anon_sym_volatile] = ACTIONS(862), - [anon_sym_sealed] = ACTIONS(862), - [anon_sym_non_DASHsealed] = ACTIONS(860), - [anon_sym_record] = ACTIONS(862), - [anon_sym_ATinterface] = ACTIONS(860), - [anon_sym_interface] = ACTIONS(862), - [anon_sym_byte] = ACTIONS(862), - [anon_sym_short] = ACTIONS(862), - [anon_sym_int] = ACTIONS(862), - [anon_sym_long] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_float] = ACTIONS(862), - [anon_sym_double] = ACTIONS(862), - [sym_boolean_type] = ACTIONS(862), - [sym_void_type] = ACTIONS(862), - [sym_this] = ACTIONS(862), - [sym_super] = ACTIONS(862), + [ts_builtin_sym_end] = ACTIONS(862), + [sym_identifier] = ACTIONS(864), + [sym_decimal_integer_literal] = ACTIONS(864), + [sym_hex_integer_literal] = ACTIONS(864), + [sym_octal_integer_literal] = ACTIONS(862), + [sym_binary_integer_literal] = ACTIONS(862), + [sym_decimal_floating_point_literal] = ACTIONS(862), + [sym_hex_floating_point_literal] = ACTIONS(864), + [sym_true] = ACTIONS(864), + [sym_false] = ACTIONS(864), + [sym_character_literal] = ACTIONS(862), + [sym_string_literal] = ACTIONS(864), + [sym_text_block] = ACTIONS(862), + [sym_null_literal] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(864), + [anon_sym_DASH] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [anon_sym_new] = ACTIONS(864), + [anon_sym_class] = ACTIONS(864), + [anon_sym_switch] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_case] = ACTIONS(864), + [anon_sym_default] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_assert] = ACTIONS(864), + [anon_sym_do] = ACTIONS(864), + [anon_sym_while] = ACTIONS(864), + [anon_sym_break] = ACTIONS(864), + [anon_sym_continue] = ACTIONS(864), + [anon_sym_return] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(864), + [anon_sym_synchronized] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(864), + [anon_sym_try] = ACTIONS(864), + [anon_sym_if] = ACTIONS(864), + [anon_sym_else] = ACTIONS(864), + [anon_sym_for] = ACTIONS(864), + [anon_sym_AT] = ACTIONS(864), + [anon_sym_open] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_static] = ACTIONS(864), + [anon_sym_package] = ACTIONS(864), + [anon_sym_import] = ACTIONS(864), + [anon_sym_enum] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_abstract] = ACTIONS(864), + [anon_sym_final] = ACTIONS(864), + [anon_sym_strictfp] = ACTIONS(864), + [anon_sym_native] = ACTIONS(864), + [anon_sym_transient] = ACTIONS(864), + [anon_sym_volatile] = ACTIONS(864), + [anon_sym_sealed] = ACTIONS(864), + [anon_sym_non_DASHsealed] = ACTIONS(862), + [anon_sym_record] = ACTIONS(864), + [anon_sym_ATinterface] = ACTIONS(862), + [anon_sym_interface] = ACTIONS(864), + [anon_sym_byte] = ACTIONS(864), + [anon_sym_short] = ACTIONS(864), + [anon_sym_int] = ACTIONS(864), + [anon_sym_long] = ACTIONS(864), + [anon_sym_char] = ACTIONS(864), + [anon_sym_float] = ACTIONS(864), + [anon_sym_double] = ACTIONS(864), + [sym_boolean_type] = ACTIONS(864), + [sym_void_type] = ACTIONS(864), + [sym_this] = ACTIONS(864), + [sym_super] = ACTIONS(864), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(864), - [sym_identifier] = ACTIONS(866), - [sym_decimal_integer_literal] = ACTIONS(866), - [sym_hex_integer_literal] = ACTIONS(866), - [sym_octal_integer_literal] = ACTIONS(864), - [sym_binary_integer_literal] = ACTIONS(864), - [sym_decimal_floating_point_literal] = ACTIONS(864), - [sym_hex_floating_point_literal] = ACTIONS(866), - [sym_true] = ACTIONS(866), - [sym_false] = ACTIONS(866), - [sym_character_literal] = ACTIONS(864), - [sym_string_literal] = ACTIONS(866), - [sym_text_block] = ACTIONS(864), - [sym_null_literal] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(866), - [anon_sym_DASH] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_new] = ACTIONS(866), - [anon_sym_class] = ACTIONS(866), - [anon_sym_switch] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_case] = ACTIONS(866), - [anon_sym_default] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_assert] = ACTIONS(866), - [anon_sym_do] = ACTIONS(866), - [anon_sym_while] = ACTIONS(866), - [anon_sym_break] = ACTIONS(866), - [anon_sym_continue] = ACTIONS(866), - [anon_sym_return] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(866), - [anon_sym_synchronized] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_try] = ACTIONS(866), - [anon_sym_if] = ACTIONS(866), - [anon_sym_else] = ACTIONS(866), - [anon_sym_for] = ACTIONS(866), - [anon_sym_AT] = ACTIONS(866), - [anon_sym_open] = ACTIONS(866), - [anon_sym_module] = ACTIONS(866), - [anon_sym_static] = ACTIONS(866), - [anon_sym_package] = ACTIONS(866), - [anon_sym_import] = ACTIONS(866), - [anon_sym_enum] = ACTIONS(866), - [anon_sym_public] = ACTIONS(866), - [anon_sym_protected] = ACTIONS(866), - [anon_sym_private] = ACTIONS(866), - [anon_sym_abstract] = ACTIONS(866), - [anon_sym_final] = ACTIONS(866), - [anon_sym_strictfp] = ACTIONS(866), - [anon_sym_native] = ACTIONS(866), - [anon_sym_transient] = ACTIONS(866), - [anon_sym_volatile] = ACTIONS(866), - [anon_sym_sealed] = ACTIONS(866), - [anon_sym_non_DASHsealed] = ACTIONS(864), - [anon_sym_record] = ACTIONS(866), - [anon_sym_ATinterface] = ACTIONS(864), - [anon_sym_interface] = ACTIONS(866), - [anon_sym_byte] = ACTIONS(866), - [anon_sym_short] = ACTIONS(866), - [anon_sym_int] = ACTIONS(866), - [anon_sym_long] = ACTIONS(866), - [anon_sym_char] = ACTIONS(866), - [anon_sym_float] = ACTIONS(866), - [anon_sym_double] = ACTIONS(866), - [sym_boolean_type] = ACTIONS(866), - [sym_void_type] = ACTIONS(866), - [sym_this] = ACTIONS(866), - [sym_super] = ACTIONS(866), + [ts_builtin_sym_end] = ACTIONS(866), + [sym_identifier] = ACTIONS(868), + [sym_decimal_integer_literal] = ACTIONS(868), + [sym_hex_integer_literal] = ACTIONS(868), + [sym_octal_integer_literal] = ACTIONS(866), + [sym_binary_integer_literal] = ACTIONS(866), + [sym_decimal_floating_point_literal] = ACTIONS(866), + [sym_hex_floating_point_literal] = ACTIONS(868), + [sym_true] = ACTIONS(868), + [sym_false] = ACTIONS(868), + [sym_character_literal] = ACTIONS(866), + [sym_string_literal] = ACTIONS(868), + [sym_text_block] = ACTIONS(866), + [sym_null_literal] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(868), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(866), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(868), + [anon_sym_class] = ACTIONS(868), + [anon_sym_switch] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_case] = ACTIONS(868), + [anon_sym_default] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_assert] = ACTIONS(868), + [anon_sym_do] = ACTIONS(868), + [anon_sym_while] = ACTIONS(868), + [anon_sym_break] = ACTIONS(868), + [anon_sym_continue] = ACTIONS(868), + [anon_sym_return] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(868), + [anon_sym_synchronized] = ACTIONS(868), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_try] = ACTIONS(868), + [anon_sym_if] = ACTIONS(868), + [anon_sym_else] = ACTIONS(868), + [anon_sym_for] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(868), + [anon_sym_open] = ACTIONS(868), + [anon_sym_module] = ACTIONS(868), + [anon_sym_static] = ACTIONS(868), + [anon_sym_package] = ACTIONS(868), + [anon_sym_import] = ACTIONS(868), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_public] = ACTIONS(868), + [anon_sym_protected] = ACTIONS(868), + [anon_sym_private] = ACTIONS(868), + [anon_sym_abstract] = ACTIONS(868), + [anon_sym_final] = ACTIONS(868), + [anon_sym_strictfp] = ACTIONS(868), + [anon_sym_native] = ACTIONS(868), + [anon_sym_transient] = ACTIONS(868), + [anon_sym_volatile] = ACTIONS(868), + [anon_sym_sealed] = ACTIONS(868), + [anon_sym_non_DASHsealed] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_ATinterface] = ACTIONS(866), + [anon_sym_interface] = ACTIONS(868), + [anon_sym_byte] = ACTIONS(868), + [anon_sym_short] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_long] = ACTIONS(868), + [anon_sym_char] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_double] = ACTIONS(868), + [sym_boolean_type] = ACTIONS(868), + [sym_void_type] = ACTIONS(868), + [sym_this] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(868), - [sym_identifier] = ACTIONS(870), - [sym_decimal_integer_literal] = ACTIONS(870), - [sym_hex_integer_literal] = ACTIONS(870), - [sym_octal_integer_literal] = ACTIONS(868), - [sym_binary_integer_literal] = ACTIONS(868), - [sym_decimal_floating_point_literal] = ACTIONS(868), - [sym_hex_floating_point_literal] = ACTIONS(870), - [sym_true] = ACTIONS(870), - [sym_false] = ACTIONS(870), - [sym_character_literal] = ACTIONS(868), - [sym_string_literal] = ACTIONS(870), - [sym_text_block] = ACTIONS(868), - [sym_null_literal] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(870), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(868), - [anon_sym_TILDE] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(868), - [anon_sym_new] = ACTIONS(870), - [anon_sym_class] = ACTIONS(870), - [anon_sym_switch] = ACTIONS(870), - [anon_sym_LBRACE] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_case] = ACTIONS(870), - [anon_sym_default] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_assert] = ACTIONS(870), - [anon_sym_do] = ACTIONS(870), - [anon_sym_while] = ACTIONS(870), - [anon_sym_break] = ACTIONS(870), - [anon_sym_continue] = ACTIONS(870), - [anon_sym_return] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(870), - [anon_sym_synchronized] = ACTIONS(870), - [anon_sym_throw] = ACTIONS(870), - [anon_sym_try] = ACTIONS(870), - [anon_sym_if] = ACTIONS(870), - [anon_sym_else] = ACTIONS(870), - [anon_sym_for] = ACTIONS(870), - [anon_sym_AT] = ACTIONS(870), - [anon_sym_open] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_static] = ACTIONS(870), - [anon_sym_package] = ACTIONS(870), - [anon_sym_import] = ACTIONS(870), - [anon_sym_enum] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_abstract] = ACTIONS(870), - [anon_sym_final] = ACTIONS(870), - [anon_sym_strictfp] = ACTIONS(870), - [anon_sym_native] = ACTIONS(870), - [anon_sym_transient] = ACTIONS(870), - [anon_sym_volatile] = ACTIONS(870), - [anon_sym_sealed] = ACTIONS(870), - [anon_sym_non_DASHsealed] = ACTIONS(868), - [anon_sym_record] = ACTIONS(870), - [anon_sym_ATinterface] = ACTIONS(868), - [anon_sym_interface] = ACTIONS(870), - [anon_sym_byte] = ACTIONS(870), - [anon_sym_short] = ACTIONS(870), - [anon_sym_int] = ACTIONS(870), - [anon_sym_long] = ACTIONS(870), - [anon_sym_char] = ACTIONS(870), - [anon_sym_float] = ACTIONS(870), - [anon_sym_double] = ACTIONS(870), - [sym_boolean_type] = ACTIONS(870), - [sym_void_type] = ACTIONS(870), - [sym_this] = ACTIONS(870), - [sym_super] = ACTIONS(870), + [sym__literal] = STATE(473), + [sym_expression] = STATE(517), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym_block] = STATE(509), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(313), - [sym_identifier] = ACTIONS(315), - [sym_decimal_integer_literal] = ACTIONS(315), - [sym_hex_integer_literal] = ACTIONS(315), - [sym_octal_integer_literal] = ACTIONS(313), - [sym_binary_integer_literal] = ACTIONS(313), - [sym_decimal_floating_point_literal] = ACTIONS(313), - [sym_hex_floating_point_literal] = ACTIONS(315), - [sym_true] = ACTIONS(315), - [sym_false] = ACTIONS(315), - [sym_character_literal] = ACTIONS(313), - [sym_string_literal] = ACTIONS(315), - [sym_text_block] = ACTIONS(313), - [sym_null_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(313), - [anon_sym_TILDE] = ACTIONS(313), - [anon_sym_PLUS_PLUS] = ACTIONS(313), - [anon_sym_DASH_DASH] = ACTIONS(313), - [anon_sym_new] = ACTIONS(315), - [anon_sym_class] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(313), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(313), - [anon_sym_assert] = ACTIONS(315), - [anon_sym_do] = ACTIONS(315), - [anon_sym_while] = ACTIONS(315), - [anon_sym_break] = ACTIONS(315), - [anon_sym_continue] = ACTIONS(315), - [anon_sym_return] = ACTIONS(315), - [anon_sym_yield] = ACTIONS(315), - [anon_sym_synchronized] = ACTIONS(315), - [anon_sym_throw] = ACTIONS(315), - [anon_sym_try] = ACTIONS(315), - [anon_sym_if] = ACTIONS(315), - [anon_sym_else] = ACTIONS(315), - [anon_sym_for] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(315), - [anon_sym_open] = ACTIONS(315), - [anon_sym_module] = ACTIONS(315), - [anon_sym_static] = ACTIONS(315), - [anon_sym_package] = ACTIONS(315), - [anon_sym_import] = ACTIONS(315), - [anon_sym_enum] = ACTIONS(315), - [anon_sym_public] = ACTIONS(315), - [anon_sym_protected] = ACTIONS(315), - [anon_sym_private] = ACTIONS(315), - [anon_sym_abstract] = ACTIONS(315), - [anon_sym_final] = ACTIONS(315), - [anon_sym_strictfp] = ACTIONS(315), - [anon_sym_native] = ACTIONS(315), - [anon_sym_transient] = ACTIONS(315), - [anon_sym_volatile] = ACTIONS(315), - [anon_sym_sealed] = ACTIONS(315), - [anon_sym_non_DASHsealed] = ACTIONS(313), - [anon_sym_record] = ACTIONS(315), - [anon_sym_ATinterface] = ACTIONS(313), - [anon_sym_interface] = ACTIONS(315), - [anon_sym_byte] = ACTIONS(315), - [anon_sym_short] = ACTIONS(315), - [anon_sym_int] = ACTIONS(315), - [anon_sym_long] = ACTIONS(315), - [anon_sym_char] = ACTIONS(315), - [anon_sym_float] = ACTIONS(315), - [anon_sym_double] = ACTIONS(315), - [sym_boolean_type] = ACTIONS(315), - [sym_void_type] = ACTIONS(315), - [sym_this] = ACTIONS(315), - [sym_super] = ACTIONS(315), + [ts_builtin_sym_end] = ACTIONS(870), + [sym_identifier] = ACTIONS(872), + [sym_decimal_integer_literal] = ACTIONS(872), + [sym_hex_integer_literal] = ACTIONS(872), + [sym_octal_integer_literal] = ACTIONS(870), + [sym_binary_integer_literal] = ACTIONS(870), + [sym_decimal_floating_point_literal] = ACTIONS(870), + [sym_hex_floating_point_literal] = ACTIONS(872), + [sym_true] = ACTIONS(872), + [sym_false] = ACTIONS(872), + [sym_character_literal] = ACTIONS(870), + [sym_string_literal] = ACTIONS(872), + [sym_text_block] = ACTIONS(870), + [sym_null_literal] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_PLUS] = ACTIONS(872), + [anon_sym_DASH] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(870), + [anon_sym_TILDE] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(870), + [anon_sym_DASH_DASH] = ACTIONS(870), + [anon_sym_new] = ACTIONS(872), + [anon_sym_class] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(870), + [anon_sym_case] = ACTIONS(872), + [anon_sym_default] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_assert] = ACTIONS(872), + [anon_sym_do] = ACTIONS(872), + [anon_sym_while] = ACTIONS(872), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(872), + [anon_sym_return] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(872), + [anon_sym_synchronized] = ACTIONS(872), + [anon_sym_throw] = ACTIONS(872), + [anon_sym_try] = ACTIONS(872), + [anon_sym_if] = ACTIONS(872), + [anon_sym_else] = ACTIONS(872), + [anon_sym_for] = ACTIONS(872), + [anon_sym_AT] = ACTIONS(872), + [anon_sym_open] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_static] = ACTIONS(872), + [anon_sym_package] = ACTIONS(872), + [anon_sym_import] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(872), + [anon_sym_public] = ACTIONS(872), + [anon_sym_protected] = ACTIONS(872), + [anon_sym_private] = ACTIONS(872), + [anon_sym_abstract] = ACTIONS(872), + [anon_sym_final] = ACTIONS(872), + [anon_sym_strictfp] = ACTIONS(872), + [anon_sym_native] = ACTIONS(872), + [anon_sym_transient] = ACTIONS(872), + [anon_sym_volatile] = ACTIONS(872), + [anon_sym_sealed] = ACTIONS(872), + [anon_sym_non_DASHsealed] = ACTIONS(870), + [anon_sym_record] = ACTIONS(872), + [anon_sym_ATinterface] = ACTIONS(870), + [anon_sym_interface] = ACTIONS(872), + [anon_sym_byte] = ACTIONS(872), + [anon_sym_short] = ACTIONS(872), + [anon_sym_int] = ACTIONS(872), + [anon_sym_long] = ACTIONS(872), + [anon_sym_char] = ACTIONS(872), + [anon_sym_float] = ACTIONS(872), + [anon_sym_double] = ACTIONS(872), + [sym_boolean_type] = ACTIONS(872), + [sym_void_type] = ACTIONS(872), + [sym_this] = ACTIONS(872), + [sym_super] = ACTIONS(872), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(872), - [sym_identifier] = ACTIONS(874), - [sym_decimal_integer_literal] = ACTIONS(874), - [sym_hex_integer_literal] = ACTIONS(874), - [sym_octal_integer_literal] = ACTIONS(872), - [sym_binary_integer_literal] = ACTIONS(872), - [sym_decimal_floating_point_literal] = ACTIONS(872), - [sym_hex_floating_point_literal] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_character_literal] = ACTIONS(872), - [sym_string_literal] = ACTIONS(874), - [sym_text_block] = ACTIONS(872), - [sym_null_literal] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_new] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_RBRACE] = ACTIONS(872), - [anon_sym_case] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_assert] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_synchronized] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_open] = ACTIONS(874), - [anon_sym_module] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_package] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_enum] = ACTIONS(874), - [anon_sym_public] = ACTIONS(874), - [anon_sym_protected] = ACTIONS(874), - [anon_sym_private] = ACTIONS(874), - [anon_sym_abstract] = ACTIONS(874), - [anon_sym_final] = ACTIONS(874), - [anon_sym_strictfp] = ACTIONS(874), - [anon_sym_native] = ACTIONS(874), - [anon_sym_transient] = ACTIONS(874), - [anon_sym_volatile] = ACTIONS(874), - [anon_sym_sealed] = ACTIONS(874), - [anon_sym_non_DASHsealed] = ACTIONS(872), - [anon_sym_record] = ACTIONS(874), - [anon_sym_ATinterface] = ACTIONS(872), - [anon_sym_interface] = ACTIONS(874), - [anon_sym_byte] = ACTIONS(874), - [anon_sym_short] = ACTIONS(874), - [anon_sym_int] = ACTIONS(874), - [anon_sym_long] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_float] = ACTIONS(874), - [anon_sym_double] = ACTIONS(874), - [sym_boolean_type] = ACTIONS(874), - [sym_void_type] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), + [sym_decimal_integer_literal] = ACTIONS(876), + [sym_hex_integer_literal] = ACTIONS(876), + [sym_octal_integer_literal] = ACTIONS(874), + [sym_binary_integer_literal] = ACTIONS(874), + [sym_decimal_floating_point_literal] = ACTIONS(874), + [sym_hex_floating_point_literal] = ACTIONS(876), + [sym_true] = ACTIONS(876), + [sym_false] = ACTIONS(876), + [sym_character_literal] = ACTIONS(874), + [sym_string_literal] = ACTIONS(876), + [sym_text_block] = ACTIONS(874), + [sym_null_literal] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_case] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_assert] = ACTIONS(876), + [anon_sym_do] = ACTIONS(876), + [anon_sym_while] = ACTIONS(876), + [anon_sym_break] = ACTIONS(876), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_return] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_synchronized] = ACTIONS(876), + [anon_sym_throw] = ACTIONS(876), + [anon_sym_try] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_else] = ACTIONS(876), + [anon_sym_for] = ACTIONS(876), + [anon_sym_AT] = ACTIONS(876), + [anon_sym_open] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_static] = ACTIONS(876), + [anon_sym_package] = ACTIONS(876), + [anon_sym_import] = ACTIONS(876), + [anon_sym_enum] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_abstract] = ACTIONS(876), + [anon_sym_final] = ACTIONS(876), + [anon_sym_strictfp] = ACTIONS(876), + [anon_sym_native] = ACTIONS(876), + [anon_sym_transient] = ACTIONS(876), + [anon_sym_volatile] = ACTIONS(876), + [anon_sym_sealed] = ACTIONS(876), + [anon_sym_non_DASHsealed] = ACTIONS(874), + [anon_sym_record] = ACTIONS(876), + [anon_sym_ATinterface] = ACTIONS(874), + [anon_sym_interface] = ACTIONS(876), + [anon_sym_byte] = ACTIONS(876), + [anon_sym_short] = ACTIONS(876), + [anon_sym_int] = ACTIONS(876), + [anon_sym_long] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_float] = ACTIONS(876), + [anon_sym_double] = ACTIONS(876), + [sym_boolean_type] = ACTIONS(876), + [sym_void_type] = ACTIONS(876), + [sym_this] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(878), - [sym_decimal_integer_literal] = ACTIONS(878), - [sym_hex_integer_literal] = ACTIONS(878), - [sym_octal_integer_literal] = ACTIONS(876), - [sym_binary_integer_literal] = ACTIONS(876), - [sym_decimal_floating_point_literal] = ACTIONS(876), - [sym_hex_floating_point_literal] = ACTIONS(878), - [sym_true] = ACTIONS(878), - [sym_false] = ACTIONS(878), - [sym_character_literal] = ACTIONS(876), - [sym_string_literal] = ACTIONS(878), - [sym_text_block] = ACTIONS(876), - [sym_null_literal] = ACTIONS(878), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_class] = ACTIONS(878), - [anon_sym_switch] = ACTIONS(878), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_case] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_assert] = ACTIONS(878), - [anon_sym_do] = ACTIONS(878), - [anon_sym_while] = ACTIONS(878), - [anon_sym_break] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(878), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_synchronized] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(878), - [anon_sym_try] = ACTIONS(878), - [anon_sym_if] = ACTIONS(878), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_identifier] = ACTIONS(880), + [sym_decimal_integer_literal] = ACTIONS(880), + [sym_hex_integer_literal] = ACTIONS(880), + [sym_octal_integer_literal] = ACTIONS(878), + [sym_binary_integer_literal] = ACTIONS(878), + [sym_decimal_floating_point_literal] = ACTIONS(878), + [sym_hex_floating_point_literal] = ACTIONS(880), + [sym_true] = ACTIONS(880), + [sym_false] = ACTIONS(880), + [sym_character_literal] = ACTIONS(878), + [sym_string_literal] = ACTIONS(880), + [sym_text_block] = ACTIONS(878), + [sym_null_literal] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_BANG] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(878), + [anon_sym_PLUS_PLUS] = ACTIONS(878), + [anon_sym_DASH_DASH] = ACTIONS(878), + [anon_sym_new] = ACTIONS(880), + [anon_sym_class] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_assert] = ACTIONS(880), + [anon_sym_do] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_break] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_yield] = ACTIONS(880), + [anon_sym_synchronized] = ACTIONS(880), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_try] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), [anon_sym_else] = ACTIONS(880), - [anon_sym_for] = ACTIONS(878), - [anon_sym_AT] = ACTIONS(878), - [anon_sym_open] = ACTIONS(878), - [anon_sym_module] = ACTIONS(878), - [anon_sym_static] = ACTIONS(878), - [anon_sym_package] = ACTIONS(878), - [anon_sym_import] = ACTIONS(878), - [anon_sym_enum] = ACTIONS(878), - [anon_sym_public] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(878), - [anon_sym_final] = ACTIONS(878), - [anon_sym_strictfp] = ACTIONS(878), - [anon_sym_native] = ACTIONS(878), - [anon_sym_transient] = ACTIONS(878), - [anon_sym_volatile] = ACTIONS(878), - [anon_sym_sealed] = ACTIONS(878), - [anon_sym_non_DASHsealed] = ACTIONS(876), - [anon_sym_record] = ACTIONS(878), - [anon_sym_ATinterface] = ACTIONS(876), - [anon_sym_interface] = ACTIONS(878), - [anon_sym_byte] = ACTIONS(878), - [anon_sym_short] = ACTIONS(878), - [anon_sym_int] = ACTIONS(878), - [anon_sym_long] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_float] = ACTIONS(878), - [anon_sym_double] = ACTIONS(878), - [sym_boolean_type] = ACTIONS(878), - [sym_void_type] = ACTIONS(878), - [sym_this] = ACTIONS(878), - [sym_super] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_AT] = ACTIONS(880), + [anon_sym_open] = ACTIONS(880), + [anon_sym_module] = ACTIONS(880), + [anon_sym_static] = ACTIONS(880), + [anon_sym_package] = ACTIONS(880), + [anon_sym_import] = ACTIONS(880), + [anon_sym_enum] = ACTIONS(880), + [anon_sym_public] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(880), + [anon_sym_final] = ACTIONS(880), + [anon_sym_strictfp] = ACTIONS(880), + [anon_sym_native] = ACTIONS(880), + [anon_sym_transient] = ACTIONS(880), + [anon_sym_volatile] = ACTIONS(880), + [anon_sym_sealed] = ACTIONS(880), + [anon_sym_non_DASHsealed] = ACTIONS(878), + [anon_sym_record] = ACTIONS(880), + [anon_sym_ATinterface] = ACTIONS(878), + [anon_sym_interface] = ACTIONS(880), + [anon_sym_byte] = ACTIONS(880), + [anon_sym_short] = ACTIONS(880), + [anon_sym_int] = ACTIONS(880), + [anon_sym_long] = ACTIONS(880), + [anon_sym_char] = ACTIONS(880), + [anon_sym_float] = ACTIONS(880), + [anon_sym_double] = ACTIONS(880), + [sym_boolean_type] = ACTIONS(880), + [sym_void_type] = ACTIONS(880), + [sym_this] = ACTIONS(880), + [sym_super] = ACTIONS(880), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -31949,80 +31954,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [242] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(553), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym_array_initializer] = STATE(1040), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(354), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(327), + [sym_identifier] = ACTIONS(329), + [sym_decimal_integer_literal] = ACTIONS(329), + [sym_hex_integer_literal] = ACTIONS(329), + [sym_octal_integer_literal] = ACTIONS(327), + [sym_binary_integer_literal] = ACTIONS(327), + [sym_decimal_floating_point_literal] = ACTIONS(327), + [sym_hex_floating_point_literal] = ACTIONS(329), + [sym_true] = ACTIONS(329), + [sym_false] = ACTIONS(329), + [sym_character_literal] = ACTIONS(327), + [sym_string_literal] = ACTIONS(329), + [sym_text_block] = ACTIONS(327), + [sym_null_literal] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_case] = ACTIONS(329), + [anon_sym_default] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_open] = ACTIONS(329), + [anon_sym_module] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_enum] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_abstract] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_strictfp] = ACTIONS(329), + [anon_sym_native] = ACTIONS(329), + [anon_sym_transient] = ACTIONS(329), + [anon_sym_volatile] = ACTIONS(329), + [anon_sym_sealed] = ACTIONS(329), + [anon_sym_non_DASHsealed] = ACTIONS(327), + [anon_sym_record] = ACTIONS(329), + [anon_sym_ATinterface] = ACTIONS(327), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_byte] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [sym_boolean_type] = ACTIONS(329), + [sym_void_type] = ACTIONS(329), + [sym_this] = ACTIONS(329), + [sym_super] = ACTIONS(329), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -32105,84 +32110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(283), - [sym_decimal_integer_literal] = ACTIONS(283), - [sym_hex_integer_literal] = ACTIONS(283), - [sym_octal_integer_literal] = ACTIONS(281), - [sym_binary_integer_literal] = ACTIONS(281), - [sym_decimal_floating_point_literal] = ACTIONS(281), - [sym_hex_floating_point_literal] = ACTIONS(283), - [sym_true] = ACTIONS(283), - [sym_false] = ACTIONS(283), - [sym_character_literal] = ACTIONS(281), - [sym_string_literal] = ACTIONS(283), - [sym_text_block] = ACTIONS(281), - [sym_null_literal] = ACTIONS(283), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(281), - [anon_sym_DASH_DASH] = ACTIONS(281), - [anon_sym_new] = ACTIONS(283), - [anon_sym_class] = ACTIONS(283), - [anon_sym_switch] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_case] = ACTIONS(283), - [anon_sym_default] = ACTIONS(283), - [anon_sym_SEMI] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(283), - [anon_sym_do] = ACTIONS(283), - [anon_sym_while] = ACTIONS(283), - [anon_sym_break] = ACTIONS(283), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_return] = ACTIONS(283), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_synchronized] = ACTIONS(283), - [anon_sym_throw] = ACTIONS(283), - [anon_sym_try] = ACTIONS(283), - [anon_sym_if] = ACTIONS(283), - [anon_sym_else] = ACTIONS(283), - [anon_sym_for] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [anon_sym_open] = ACTIONS(283), - [anon_sym_module] = ACTIONS(283), - [anon_sym_static] = ACTIONS(283), - [anon_sym_package] = ACTIONS(283), - [anon_sym_import] = ACTIONS(283), - [anon_sym_enum] = ACTIONS(283), - [anon_sym_public] = ACTIONS(283), - [anon_sym_protected] = ACTIONS(283), - [anon_sym_private] = ACTIONS(283), - [anon_sym_abstract] = ACTIONS(283), - [anon_sym_final] = ACTIONS(283), - [anon_sym_strictfp] = ACTIONS(283), - [anon_sym_native] = ACTIONS(283), - [anon_sym_transient] = ACTIONS(283), - [anon_sym_volatile] = ACTIONS(283), - [anon_sym_sealed] = ACTIONS(283), - [anon_sym_non_DASHsealed] = ACTIONS(281), - [anon_sym_record] = ACTIONS(283), - [anon_sym_ATinterface] = ACTIONS(281), - [anon_sym_interface] = ACTIONS(283), - [anon_sym_byte] = ACTIONS(283), - [anon_sym_short] = ACTIONS(283), - [anon_sym_int] = ACTIONS(283), - [anon_sym_long] = ACTIONS(283), - [anon_sym_char] = ACTIONS(283), - [anon_sym_float] = ACTIONS(283), - [anon_sym_double] = ACTIONS(283), - [sym_boolean_type] = ACTIONS(283), - [sym_void_type] = ACTIONS(283), - [sym_this] = ACTIONS(283), - [sym_super] = ACTIONS(283), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { [ts_builtin_sym_end] = ACTIONS(898), [sym_identifier] = ACTIONS(900), [sym_decimal_integer_literal] = ACTIONS(900), @@ -32260,7 +32187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [246] = { + [245] = { [ts_builtin_sym_end] = ACTIONS(902), [sym_identifier] = ACTIONS(904), [sym_decimal_integer_literal] = ACTIONS(904), @@ -32301,7 +32228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(904), [anon_sym_try] = ACTIONS(904), [anon_sym_if] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), + [anon_sym_else] = ACTIONS(906), [anon_sym_for] = ACTIONS(904), [anon_sym_AT] = ACTIONS(904), [anon_sym_open] = ACTIONS(904), @@ -32338,666 +32265,744 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [246] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(910), + [sym_decimal_integer_literal] = ACTIONS(910), + [sym_hex_integer_literal] = ACTIONS(910), + [sym_octal_integer_literal] = ACTIONS(908), + [sym_binary_integer_literal] = ACTIONS(908), + [sym_decimal_floating_point_literal] = ACTIONS(908), + [sym_hex_floating_point_literal] = ACTIONS(910), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_character_literal] = ACTIONS(908), + [sym_string_literal] = ACTIONS(910), + [sym_text_block] = ACTIONS(908), + [sym_null_literal] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_new] = ACTIONS(910), + [anon_sym_class] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_assert] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_synchronized] = ACTIONS(910), + [anon_sym_throw] = ACTIONS(910), + [anon_sym_try] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_AT] = ACTIONS(910), + [anon_sym_open] = ACTIONS(910), + [anon_sym_module] = ACTIONS(910), + [anon_sym_static] = ACTIONS(910), + [anon_sym_package] = ACTIONS(910), + [anon_sym_import] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_public] = ACTIONS(910), + [anon_sym_protected] = ACTIONS(910), + [anon_sym_private] = ACTIONS(910), + [anon_sym_abstract] = ACTIONS(910), + [anon_sym_final] = ACTIONS(910), + [anon_sym_strictfp] = ACTIONS(910), + [anon_sym_native] = ACTIONS(910), + [anon_sym_transient] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_sealed] = ACTIONS(910), + [anon_sym_non_DASHsealed] = ACTIONS(908), + [anon_sym_record] = ACTIONS(910), + [anon_sym_ATinterface] = ACTIONS(908), + [anon_sym_interface] = ACTIONS(910), + [anon_sym_byte] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_int] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_char] = ACTIONS(910), + [anon_sym_float] = ACTIONS(910), + [anon_sym_double] = ACTIONS(910), + [sym_boolean_type] = ACTIONS(910), + [sym_void_type] = ACTIONS(910), + [sym_this] = ACTIONS(910), + [sym_super] = ACTIONS(910), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [247] = { - [ts_builtin_sym_end] = ACTIONS(906), - [sym_identifier] = ACTIONS(908), - [sym_decimal_integer_literal] = ACTIONS(908), - [sym_hex_integer_literal] = ACTIONS(908), - [sym_octal_integer_literal] = ACTIONS(906), - [sym_binary_integer_literal] = ACTIONS(906), - [sym_decimal_floating_point_literal] = ACTIONS(906), - [sym_hex_floating_point_literal] = ACTIONS(908), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_character_literal] = ACTIONS(906), - [sym_string_literal] = ACTIONS(908), - [sym_text_block] = ACTIONS(906), - [sym_null_literal] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_new] = ACTIONS(908), - [anon_sym_class] = ACTIONS(908), - [anon_sym_switch] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_case] = ACTIONS(908), - [anon_sym_default] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_assert] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(908), - [anon_sym_synchronized] = ACTIONS(908), - [anon_sym_throw] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_else] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_AT] = ACTIONS(908), - [anon_sym_open] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_static] = ACTIONS(908), - [anon_sym_package] = ACTIONS(908), - [anon_sym_import] = ACTIONS(908), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_abstract] = ACTIONS(908), - [anon_sym_final] = ACTIONS(908), - [anon_sym_strictfp] = ACTIONS(908), - [anon_sym_native] = ACTIONS(908), - [anon_sym_transient] = ACTIONS(908), - [anon_sym_volatile] = ACTIONS(908), - [anon_sym_sealed] = ACTIONS(908), - [anon_sym_non_DASHsealed] = ACTIONS(906), - [anon_sym_record] = ACTIONS(908), - [anon_sym_ATinterface] = ACTIONS(906), - [anon_sym_interface] = ACTIONS(908), - [anon_sym_byte] = ACTIONS(908), - [anon_sym_short] = ACTIONS(908), - [anon_sym_int] = ACTIONS(908), - [anon_sym_long] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_float] = ACTIONS(908), - [anon_sym_double] = ACTIONS(908), - [sym_boolean_type] = ACTIONS(908), - [sym_void_type] = ACTIONS(908), - [sym_this] = ACTIONS(908), - [sym_super] = ACTIONS(908), + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(914), + [sym_decimal_integer_literal] = ACTIONS(914), + [sym_hex_integer_literal] = ACTIONS(914), + [sym_octal_integer_literal] = ACTIONS(912), + [sym_binary_integer_literal] = ACTIONS(912), + [sym_decimal_floating_point_literal] = ACTIONS(912), + [sym_hex_floating_point_literal] = ACTIONS(914), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_character_literal] = ACTIONS(912), + [sym_string_literal] = ACTIONS(914), + [sym_text_block] = ACTIONS(912), + [sym_null_literal] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_new] = ACTIONS(914), + [anon_sym_class] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_assert] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_yield] = ACTIONS(914), + [anon_sym_synchronized] = ACTIONS(914), + [anon_sym_throw] = ACTIONS(914), + [anon_sym_try] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_AT] = ACTIONS(914), + [anon_sym_open] = ACTIONS(914), + [anon_sym_module] = ACTIONS(914), + [anon_sym_static] = ACTIONS(914), + [anon_sym_package] = ACTIONS(914), + [anon_sym_import] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_public] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(914), + [anon_sym_final] = ACTIONS(914), + [anon_sym_strictfp] = ACTIONS(914), + [anon_sym_native] = ACTIONS(914), + [anon_sym_transient] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_sealed] = ACTIONS(914), + [anon_sym_non_DASHsealed] = ACTIONS(912), + [anon_sym_record] = ACTIONS(914), + [anon_sym_ATinterface] = ACTIONS(912), + [anon_sym_interface] = ACTIONS(914), + [anon_sym_byte] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [anon_sym_int] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_float] = ACTIONS(914), + [anon_sym_double] = ACTIONS(914), + [sym_boolean_type] = ACTIONS(914), + [sym_void_type] = ACTIONS(914), + [sym_this] = ACTIONS(914), + [sym_super] = ACTIONS(914), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(910), - [sym_identifier] = ACTIONS(912), - [sym_decimal_integer_literal] = ACTIONS(912), - [sym_hex_integer_literal] = ACTIONS(912), - [sym_octal_integer_literal] = ACTIONS(910), - [sym_binary_integer_literal] = ACTIONS(910), - [sym_decimal_floating_point_literal] = ACTIONS(910), - [sym_hex_floating_point_literal] = ACTIONS(912), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_character_literal] = ACTIONS(910), - [sym_string_literal] = ACTIONS(912), - [sym_text_block] = ACTIONS(910), - [sym_null_literal] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_TILDE] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(910), - [anon_sym_new] = ACTIONS(912), - [anon_sym_class] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(910), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_assert] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_yield] = ACTIONS(912), - [anon_sym_synchronized] = ACTIONS(912), - [anon_sym_throw] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_AT] = ACTIONS(912), - [anon_sym_open] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_static] = ACTIONS(912), - [anon_sym_package] = ACTIONS(912), - [anon_sym_import] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(912), - [anon_sym_public] = ACTIONS(912), - [anon_sym_protected] = ACTIONS(912), - [anon_sym_private] = ACTIONS(912), - [anon_sym_abstract] = ACTIONS(912), - [anon_sym_final] = ACTIONS(912), - [anon_sym_strictfp] = ACTIONS(912), - [anon_sym_native] = ACTIONS(912), - [anon_sym_transient] = ACTIONS(912), - [anon_sym_volatile] = ACTIONS(912), - [anon_sym_sealed] = ACTIONS(912), - [anon_sym_non_DASHsealed] = ACTIONS(910), - [anon_sym_record] = ACTIONS(912), - [anon_sym_ATinterface] = ACTIONS(910), - [anon_sym_interface] = ACTIONS(912), - [anon_sym_byte] = ACTIONS(912), - [anon_sym_short] = ACTIONS(912), - [anon_sym_int] = ACTIONS(912), - [anon_sym_long] = ACTIONS(912), - [anon_sym_char] = ACTIONS(912), - [anon_sym_float] = ACTIONS(912), - [anon_sym_double] = ACTIONS(912), - [sym_boolean_type] = ACTIONS(912), - [sym_void_type] = ACTIONS(912), - [sym_this] = ACTIONS(912), - [sym_super] = ACTIONS(912), + [sym__literal] = STATE(473), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym_array_initializer] = STATE(1176), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(914), - [sym_identifier] = ACTIONS(916), - [sym_decimal_integer_literal] = ACTIONS(916), - [sym_hex_integer_literal] = ACTIONS(916), - [sym_octal_integer_literal] = ACTIONS(914), - [sym_binary_integer_literal] = ACTIONS(914), - [sym_decimal_floating_point_literal] = ACTIONS(914), - [sym_hex_floating_point_literal] = ACTIONS(916), - [sym_true] = ACTIONS(916), - [sym_false] = ACTIONS(916), - [sym_character_literal] = ACTIONS(914), - [sym_string_literal] = ACTIONS(916), - [sym_text_block] = ACTIONS(914), - [sym_null_literal] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_new] = ACTIONS(916), - [anon_sym_class] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_synchronized] = ACTIONS(916), - [anon_sym_throw] = ACTIONS(916), - [anon_sym_try] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_AT] = ACTIONS(916), - [anon_sym_open] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_static] = ACTIONS(916), - [anon_sym_package] = ACTIONS(916), - [anon_sym_import] = ACTIONS(916), - [anon_sym_enum] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_abstract] = ACTIONS(916), - [anon_sym_final] = ACTIONS(916), - [anon_sym_strictfp] = ACTIONS(916), - [anon_sym_native] = ACTIONS(916), - [anon_sym_transient] = ACTIONS(916), - [anon_sym_volatile] = ACTIONS(916), - [anon_sym_sealed] = ACTIONS(916), - [anon_sym_non_DASHsealed] = ACTIONS(914), - [anon_sym_record] = ACTIONS(916), - [anon_sym_ATinterface] = ACTIONS(914), - [anon_sym_interface] = ACTIONS(916), - [anon_sym_byte] = ACTIONS(916), - [anon_sym_short] = ACTIONS(916), - [anon_sym_int] = ACTIONS(916), - [anon_sym_long] = ACTIONS(916), - [anon_sym_char] = ACTIONS(916), - [anon_sym_float] = ACTIONS(916), - [anon_sym_double] = ACTIONS(916), - [sym_boolean_type] = ACTIONS(916), - [sym_void_type] = ACTIONS(916), - [sym_this] = ACTIONS(916), - [sym_super] = ACTIONS(916), + [ts_builtin_sym_end] = ACTIONS(916), + [sym_identifier] = ACTIONS(918), + [sym_decimal_integer_literal] = ACTIONS(918), + [sym_hex_integer_literal] = ACTIONS(918), + [sym_octal_integer_literal] = ACTIONS(916), + [sym_binary_integer_literal] = ACTIONS(916), + [sym_decimal_floating_point_literal] = ACTIONS(916), + [sym_hex_floating_point_literal] = ACTIONS(918), + [sym_true] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [sym_character_literal] = ACTIONS(916), + [sym_string_literal] = ACTIONS(918), + [sym_text_block] = ACTIONS(916), + [sym_null_literal] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_class] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_assert] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_synchronized] = ACTIONS(918), + [anon_sym_throw] = ACTIONS(918), + [anon_sym_try] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_AT] = ACTIONS(918), + [anon_sym_open] = ACTIONS(918), + [anon_sym_module] = ACTIONS(918), + [anon_sym_static] = ACTIONS(918), + [anon_sym_package] = ACTIONS(918), + [anon_sym_import] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_public] = ACTIONS(918), + [anon_sym_protected] = ACTIONS(918), + [anon_sym_private] = ACTIONS(918), + [anon_sym_abstract] = ACTIONS(918), + [anon_sym_final] = ACTIONS(918), + [anon_sym_strictfp] = ACTIONS(918), + [anon_sym_native] = ACTIONS(918), + [anon_sym_transient] = ACTIONS(918), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_sealed] = ACTIONS(918), + [anon_sym_non_DASHsealed] = ACTIONS(916), + [anon_sym_record] = ACTIONS(918), + [anon_sym_ATinterface] = ACTIONS(916), + [anon_sym_interface] = ACTIONS(918), + [anon_sym_byte] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [anon_sym_int] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_char] = ACTIONS(918), + [anon_sym_float] = ACTIONS(918), + [anon_sym_double] = ACTIONS(918), + [sym_boolean_type] = ACTIONS(918), + [sym_void_type] = ACTIONS(918), + [sym_this] = ACTIONS(918), + [sym_super] = ACTIONS(918), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(918), - [sym_identifier] = ACTIONS(920), - [sym_decimal_integer_literal] = ACTIONS(920), - [sym_hex_integer_literal] = ACTIONS(920), - [sym_octal_integer_literal] = ACTIONS(918), - [sym_binary_integer_literal] = ACTIONS(918), - [sym_decimal_floating_point_literal] = ACTIONS(918), - [sym_hex_floating_point_literal] = ACTIONS(920), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_character_literal] = ACTIONS(918), - [sym_string_literal] = ACTIONS(920), - [sym_text_block] = ACTIONS(918), - [sym_null_literal] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_new] = ACTIONS(920), - [anon_sym_class] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_assert] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_yield] = ACTIONS(920), - [anon_sym_synchronized] = ACTIONS(920), - [anon_sym_throw] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_open] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_static] = ACTIONS(920), - [anon_sym_package] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_public] = ACTIONS(920), - [anon_sym_protected] = ACTIONS(920), - [anon_sym_private] = ACTIONS(920), - [anon_sym_abstract] = ACTIONS(920), - [anon_sym_final] = ACTIONS(920), - [anon_sym_strictfp] = ACTIONS(920), - [anon_sym_native] = ACTIONS(920), - [anon_sym_transient] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_sealed] = ACTIONS(920), - [anon_sym_non_DASHsealed] = ACTIONS(918), - [anon_sym_record] = ACTIONS(920), - [anon_sym_ATinterface] = ACTIONS(918), - [anon_sym_interface] = ACTIONS(920), - [anon_sym_byte] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [anon_sym_int] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_char] = ACTIONS(920), - [anon_sym_float] = ACTIONS(920), - [anon_sym_double] = ACTIONS(920), - [sym_boolean_type] = ACTIONS(920), - [sym_void_type] = ACTIONS(920), - [sym_this] = ACTIONS(920), - [sym_super] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(920), + [sym_identifier] = ACTIONS(922), + [sym_decimal_integer_literal] = ACTIONS(922), + [sym_hex_integer_literal] = ACTIONS(922), + [sym_octal_integer_literal] = ACTIONS(920), + [sym_binary_integer_literal] = ACTIONS(920), + [sym_decimal_floating_point_literal] = ACTIONS(920), + [sym_hex_floating_point_literal] = ACTIONS(922), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_character_literal] = ACTIONS(920), + [sym_string_literal] = ACTIONS(922), + [sym_text_block] = ACTIONS(920), + [sym_null_literal] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_new] = ACTIONS(922), + [anon_sym_class] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_assert] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_yield] = ACTIONS(922), + [anon_sym_synchronized] = ACTIONS(922), + [anon_sym_throw] = ACTIONS(922), + [anon_sym_try] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(922), + [anon_sym_open] = ACTIONS(922), + [anon_sym_module] = ACTIONS(922), + [anon_sym_static] = ACTIONS(922), + [anon_sym_package] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_public] = ACTIONS(922), + [anon_sym_protected] = ACTIONS(922), + [anon_sym_private] = ACTIONS(922), + [anon_sym_abstract] = ACTIONS(922), + [anon_sym_final] = ACTIONS(922), + [anon_sym_strictfp] = ACTIONS(922), + [anon_sym_native] = ACTIONS(922), + [anon_sym_transient] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym_sealed] = ACTIONS(922), + [anon_sym_non_DASHsealed] = ACTIONS(920), + [anon_sym_record] = ACTIONS(922), + [anon_sym_ATinterface] = ACTIONS(920), + [anon_sym_interface] = ACTIONS(922), + [anon_sym_byte] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [anon_sym_int] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_char] = ACTIONS(922), + [anon_sym_float] = ACTIONS(922), + [anon_sym_double] = ACTIONS(922), + [sym_boolean_type] = ACTIONS(922), + [sym_void_type] = ACTIONS(922), + [sym_this] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(922), - [sym_identifier] = ACTIONS(924), - [sym_decimal_integer_literal] = ACTIONS(924), - [sym_hex_integer_literal] = ACTIONS(924), - [sym_octal_integer_literal] = ACTIONS(922), - [sym_binary_integer_literal] = ACTIONS(922), - [sym_decimal_floating_point_literal] = ACTIONS(922), - [sym_hex_floating_point_literal] = ACTIONS(924), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_character_literal] = ACTIONS(922), - [sym_string_literal] = ACTIONS(924), - [sym_text_block] = ACTIONS(922), - [sym_null_literal] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_new] = ACTIONS(924), - [anon_sym_class] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_assert] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_yield] = ACTIONS(924), - [anon_sym_synchronized] = ACTIONS(924), - [anon_sym_throw] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_AT] = ACTIONS(924), - [anon_sym_open] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_static] = ACTIONS(924), - [anon_sym_package] = ACTIONS(924), - [anon_sym_import] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_public] = ACTIONS(924), - [anon_sym_protected] = ACTIONS(924), - [anon_sym_private] = ACTIONS(924), - [anon_sym_abstract] = ACTIONS(924), - [anon_sym_final] = ACTIONS(924), - [anon_sym_strictfp] = ACTIONS(924), - [anon_sym_native] = ACTIONS(924), - [anon_sym_transient] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_sealed] = ACTIONS(924), - [anon_sym_non_DASHsealed] = ACTIONS(922), - [anon_sym_record] = ACTIONS(924), - [anon_sym_ATinterface] = ACTIONS(922), - [anon_sym_interface] = ACTIONS(924), - [anon_sym_byte] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [anon_sym_int] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_char] = ACTIONS(924), - [anon_sym_float] = ACTIONS(924), - [anon_sym_double] = ACTIONS(924), - [sym_boolean_type] = ACTIONS(924), - [sym_void_type] = ACTIONS(924), - [sym_this] = ACTIONS(924), - [sym_super] = ACTIONS(924), + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(926), + [sym_decimal_integer_literal] = ACTIONS(926), + [sym_hex_integer_literal] = ACTIONS(926), + [sym_octal_integer_literal] = ACTIONS(924), + [sym_binary_integer_literal] = ACTIONS(924), + [sym_decimal_floating_point_literal] = ACTIONS(924), + [sym_hex_floating_point_literal] = ACTIONS(926), + [sym_true] = ACTIONS(926), + [sym_false] = ACTIONS(926), + [sym_character_literal] = ACTIONS(924), + [sym_string_literal] = ACTIONS(926), + [sym_text_block] = ACTIONS(924), + [sym_null_literal] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_new] = ACTIONS(926), + [anon_sym_class] = ACTIONS(926), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_yield] = ACTIONS(926), + [anon_sym_synchronized] = ACTIONS(926), + [anon_sym_throw] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_open] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_package] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_abstract] = ACTIONS(926), + [anon_sym_final] = ACTIONS(926), + [anon_sym_strictfp] = ACTIONS(926), + [anon_sym_native] = ACTIONS(926), + [anon_sym_transient] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_sealed] = ACTIONS(926), + [anon_sym_non_DASHsealed] = ACTIONS(924), + [anon_sym_record] = ACTIONS(926), + [anon_sym_ATinterface] = ACTIONS(924), + [anon_sym_interface] = ACTIONS(926), + [anon_sym_byte] = ACTIONS(926), + [anon_sym_short] = ACTIONS(926), + [anon_sym_int] = ACTIONS(926), + [anon_sym_long] = ACTIONS(926), + [anon_sym_char] = ACTIONS(926), + [anon_sym_float] = ACTIONS(926), + [anon_sym_double] = ACTIONS(926), + [sym_boolean_type] = ACTIONS(926), + [sym_void_type] = ACTIONS(926), + [sym_this] = ACTIONS(926), + [sym_super] = ACTIONS(926), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_decimal_integer_literal] = ACTIONS(928), - [sym_hex_integer_literal] = ACTIONS(928), - [sym_octal_integer_literal] = ACTIONS(926), - [sym_binary_integer_literal] = ACTIONS(926), - [sym_decimal_floating_point_literal] = ACTIONS(926), - [sym_hex_floating_point_literal] = ACTIONS(928), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_character_literal] = ACTIONS(926), - [sym_string_literal] = ACTIONS(928), - [sym_text_block] = ACTIONS(926), - [sym_null_literal] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_new] = ACTIONS(928), - [anon_sym_class] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_assert] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_synchronized] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_open] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_static] = ACTIONS(928), - [anon_sym_package] = ACTIONS(928), - [anon_sym_import] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_abstract] = ACTIONS(928), - [anon_sym_final] = ACTIONS(928), - [anon_sym_strictfp] = ACTIONS(928), - [anon_sym_native] = ACTIONS(928), - [anon_sym_transient] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_sealed] = ACTIONS(928), - [anon_sym_non_DASHsealed] = ACTIONS(926), - [anon_sym_record] = ACTIONS(928), - [anon_sym_ATinterface] = ACTIONS(926), - [anon_sym_interface] = ACTIONS(928), - [anon_sym_byte] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [anon_sym_int] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_char] = ACTIONS(928), - [anon_sym_float] = ACTIONS(928), - [anon_sym_double] = ACTIONS(928), - [sym_boolean_type] = ACTIONS(928), - [sym_void_type] = ACTIONS(928), - [sym_this] = ACTIONS(928), - [sym_super] = ACTIONS(928), + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(930), + [sym_decimal_integer_literal] = ACTIONS(930), + [sym_hex_integer_literal] = ACTIONS(930), + [sym_octal_integer_literal] = ACTIONS(928), + [sym_binary_integer_literal] = ACTIONS(928), + [sym_decimal_floating_point_literal] = ACTIONS(928), + [sym_hex_floating_point_literal] = ACTIONS(930), + [sym_true] = ACTIONS(930), + [sym_false] = ACTIONS(930), + [sym_character_literal] = ACTIONS(928), + [sym_string_literal] = ACTIONS(930), + [sym_text_block] = ACTIONS(928), + [sym_null_literal] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_new] = ACTIONS(930), + [anon_sym_class] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_assert] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_yield] = ACTIONS(930), + [anon_sym_synchronized] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_try] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(930), + [anon_sym_open] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_static] = ACTIONS(930), + [anon_sym_package] = ACTIONS(930), + [anon_sym_import] = ACTIONS(930), + [anon_sym_enum] = ACTIONS(930), + [anon_sym_public] = ACTIONS(930), + [anon_sym_protected] = ACTIONS(930), + [anon_sym_private] = ACTIONS(930), + [anon_sym_abstract] = ACTIONS(930), + [anon_sym_final] = ACTIONS(930), + [anon_sym_strictfp] = ACTIONS(930), + [anon_sym_native] = ACTIONS(930), + [anon_sym_transient] = ACTIONS(930), + [anon_sym_volatile] = ACTIONS(930), + [anon_sym_sealed] = ACTIONS(930), + [anon_sym_non_DASHsealed] = ACTIONS(928), + [anon_sym_record] = ACTIONS(930), + [anon_sym_ATinterface] = ACTIONS(928), + [anon_sym_interface] = ACTIONS(930), + [anon_sym_byte] = ACTIONS(930), + [anon_sym_short] = ACTIONS(930), + [anon_sym_int] = ACTIONS(930), + [anon_sym_long] = ACTIONS(930), + [anon_sym_char] = ACTIONS(930), + [anon_sym_float] = ACTIONS(930), + [anon_sym_double] = ACTIONS(930), + [sym_boolean_type] = ACTIONS(930), + [sym_void_type] = ACTIONS(930), + [sym_this] = ACTIONS(930), + [sym_super] = ACTIONS(930), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(932), - [sym_decimal_integer_literal] = ACTIONS(932), - [sym_hex_integer_literal] = ACTIONS(932), - [sym_octal_integer_literal] = ACTIONS(930), - [sym_binary_integer_literal] = ACTIONS(930), - [sym_decimal_floating_point_literal] = ACTIONS(930), - [sym_hex_floating_point_literal] = ACTIONS(932), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_character_literal] = ACTIONS(930), - [sym_string_literal] = ACTIONS(932), - [sym_text_block] = ACTIONS(930), - [sym_null_literal] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_new] = ACTIONS(932), - [anon_sym_class] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_assert] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(932), - [anon_sym_synchronized] = ACTIONS(932), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_AT] = ACTIONS(932), - [anon_sym_open] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_static] = ACTIONS(932), - [anon_sym_package] = ACTIONS(932), - [anon_sym_import] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_public] = ACTIONS(932), - [anon_sym_protected] = ACTIONS(932), - [anon_sym_private] = ACTIONS(932), - [anon_sym_abstract] = ACTIONS(932), - [anon_sym_final] = ACTIONS(932), - [anon_sym_strictfp] = ACTIONS(932), - [anon_sym_native] = ACTIONS(932), - [anon_sym_transient] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_sealed] = ACTIONS(932), - [anon_sym_non_DASHsealed] = ACTIONS(930), - [anon_sym_record] = ACTIONS(932), - [anon_sym_ATinterface] = ACTIONS(930), - [anon_sym_interface] = ACTIONS(932), - [anon_sym_byte] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [anon_sym_int] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_char] = ACTIONS(932), - [anon_sym_float] = ACTIONS(932), - [anon_sym_double] = ACTIONS(932), - [sym_boolean_type] = ACTIONS(932), - [sym_void_type] = ACTIONS(932), - [sym_this] = ACTIONS(932), - [sym_super] = ACTIONS(932), + [ts_builtin_sym_end] = ACTIONS(932), + [sym_identifier] = ACTIONS(934), + [sym_decimal_integer_literal] = ACTIONS(934), + [sym_hex_integer_literal] = ACTIONS(934), + [sym_octal_integer_literal] = ACTIONS(932), + [sym_binary_integer_literal] = ACTIONS(932), + [sym_decimal_floating_point_literal] = ACTIONS(932), + [sym_hex_floating_point_literal] = ACTIONS(934), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), + [sym_character_literal] = ACTIONS(932), + [sym_string_literal] = ACTIONS(934), + [sym_text_block] = ACTIONS(932), + [sym_null_literal] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(932), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(934), + [anon_sym_class] = ACTIONS(934), + [anon_sym_switch] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_case] = ACTIONS(934), + [anon_sym_default] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_assert] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_yield] = ACTIONS(934), + [anon_sym_synchronized] = ACTIONS(934), + [anon_sym_throw] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_AT] = ACTIONS(934), + [anon_sym_open] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_static] = ACTIONS(934), + [anon_sym_package] = ACTIONS(934), + [anon_sym_import] = ACTIONS(934), + [anon_sym_enum] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_protected] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_abstract] = ACTIONS(934), + [anon_sym_final] = ACTIONS(934), + [anon_sym_strictfp] = ACTIONS(934), + [anon_sym_native] = ACTIONS(934), + [anon_sym_transient] = ACTIONS(934), + [anon_sym_volatile] = ACTIONS(934), + [anon_sym_sealed] = ACTIONS(934), + [anon_sym_non_DASHsealed] = ACTIONS(932), + [anon_sym_record] = ACTIONS(934), + [anon_sym_ATinterface] = ACTIONS(932), + [anon_sym_interface] = ACTIONS(934), + [anon_sym_byte] = ACTIONS(934), + [anon_sym_short] = ACTIONS(934), + [anon_sym_int] = ACTIONS(934), + [anon_sym_long] = ACTIONS(934), + [anon_sym_char] = ACTIONS(934), + [anon_sym_float] = ACTIONS(934), + [anon_sym_double] = ACTIONS(934), + [sym_boolean_type] = ACTIONS(934), + [sym_void_type] = ACTIONS(934), + [sym_this] = ACTIONS(934), + [sym_super] = ACTIONS(934), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(936), - [sym_decimal_integer_literal] = ACTIONS(936), - [sym_hex_integer_literal] = ACTIONS(936), - [sym_octal_integer_literal] = ACTIONS(934), - [sym_binary_integer_literal] = ACTIONS(934), - [sym_decimal_floating_point_literal] = ACTIONS(934), - [sym_hex_floating_point_literal] = ACTIONS(936), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_character_literal] = ACTIONS(934), - [sym_string_literal] = ACTIONS(936), - [sym_text_block] = ACTIONS(934), - [sym_null_literal] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_new] = ACTIONS(936), - [anon_sym_class] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_assert] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_yield] = ACTIONS(936), - [anon_sym_synchronized] = ACTIONS(936), - [anon_sym_throw] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_AT] = ACTIONS(936), - [anon_sym_open] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_static] = ACTIONS(936), - [anon_sym_package] = ACTIONS(936), - [anon_sym_import] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_public] = ACTIONS(936), - [anon_sym_protected] = ACTIONS(936), - [anon_sym_private] = ACTIONS(936), - [anon_sym_abstract] = ACTIONS(936), - [anon_sym_final] = ACTIONS(936), - [anon_sym_strictfp] = ACTIONS(936), - [anon_sym_native] = ACTIONS(936), - [anon_sym_transient] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_sealed] = ACTIONS(936), - [anon_sym_non_DASHsealed] = ACTIONS(934), - [anon_sym_record] = ACTIONS(936), - [anon_sym_ATinterface] = ACTIONS(934), - [anon_sym_interface] = ACTIONS(936), - [anon_sym_byte] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [anon_sym_int] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), - [anon_sym_float] = ACTIONS(936), - [anon_sym_double] = ACTIONS(936), - [sym_boolean_type] = ACTIONS(936), - [sym_void_type] = ACTIONS(936), - [sym_this] = ACTIONS(936), - [sym_super] = ACTIONS(936), + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(938), + [sym_decimal_integer_literal] = ACTIONS(938), + [sym_hex_integer_literal] = ACTIONS(938), + [sym_octal_integer_literal] = ACTIONS(936), + [sym_binary_integer_literal] = ACTIONS(936), + [sym_decimal_floating_point_literal] = ACTIONS(936), + [sym_hex_floating_point_literal] = ACTIONS(938), + [sym_true] = ACTIONS(938), + [sym_false] = ACTIONS(938), + [sym_character_literal] = ACTIONS(936), + [sym_string_literal] = ACTIONS(938), + [sym_text_block] = ACTIONS(936), + [sym_null_literal] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_new] = ACTIONS(938), + [anon_sym_class] = ACTIONS(938), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_case] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_assert] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_yield] = ACTIONS(938), + [anon_sym_synchronized] = ACTIONS(938), + [anon_sym_throw] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_AT] = ACTIONS(938), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(938), + [anon_sym_package] = ACTIONS(938), + [anon_sym_import] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_public] = ACTIONS(938), + [anon_sym_protected] = ACTIONS(938), + [anon_sym_private] = ACTIONS(938), + [anon_sym_abstract] = ACTIONS(938), + [anon_sym_final] = ACTIONS(938), + [anon_sym_strictfp] = ACTIONS(938), + [anon_sym_native] = ACTIONS(938), + [anon_sym_transient] = ACTIONS(938), + [anon_sym_volatile] = ACTIONS(938), + [anon_sym_sealed] = ACTIONS(938), + [anon_sym_non_DASHsealed] = ACTIONS(936), + [anon_sym_record] = ACTIONS(938), + [anon_sym_ATinterface] = ACTIONS(936), + [anon_sym_interface] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(938), + [anon_sym_short] = ACTIONS(938), + [anon_sym_int] = ACTIONS(938), + [anon_sym_long] = ACTIONS(938), + [anon_sym_char] = ACTIONS(938), + [anon_sym_float] = ACTIONS(938), + [anon_sym_double] = ACTIONS(938), + [sym_boolean_type] = ACTIONS(938), + [sym_void_type] = ACTIONS(938), + [sym_this] = ACTIONS(938), + [sym_super] = ACTIONS(938), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [255] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(557), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(611), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33012,7 +33017,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(938), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33021,10 +33025,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33040,41 +33045,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [256] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(620), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33097,11 +33102,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33117,41 +33122,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [257] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(623), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33174,11 +33179,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33194,41 +33199,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [258] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(559), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(574), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33243,7 +33248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(946), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33252,10 +33257,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33271,41 +33276,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [259] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(615), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33328,11 +33333,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33348,41 +33353,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [260] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(554), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(564), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33397,7 +33402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(950), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33406,10 +33411,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33425,41 +33430,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [261] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(609), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(606), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33482,11 +33487,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33502,41 +33507,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [262] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(563), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33551,6 +33556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(954), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33559,11 +33565,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33579,41 +33584,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [263] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(581), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33628,7 +33633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(956), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33637,10 +33642,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33656,41 +33661,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [264] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(603), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(561), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33705,6 +33710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(958), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33713,11 +33719,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33733,41 +33738,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [265] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(550), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(541), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33782,7 +33787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(960), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33791,10 +33796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33810,41 +33815,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [266] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(586), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(625), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33859,7 +33864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(960), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33867,11 +33871,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(962), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33887,41 +33892,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [267] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(625), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(575), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33936,6 +33941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(964), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -33944,11 +33950,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -33964,41 +33969,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [268] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(560), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(569), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34013,7 +34018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(966), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34022,10 +34027,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34041,41 +34046,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [269] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(610), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(619), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34097,12 +34102,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(966), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34118,41 +34123,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [270] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(580), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34167,7 +34172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(968), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34175,11 +34179,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(970), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34195,41 +34200,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [271] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(570), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34244,7 +34249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34253,10 +34258,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34272,41 +34277,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [272] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(558), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(622), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34321,7 +34326,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34330,10 +34334,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34349,41 +34354,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [273] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(563), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(548), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34398,7 +34403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(976), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34407,10 +34412,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34426,41 +34431,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [274] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(566), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34475,7 +34480,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(976), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34484,10 +34488,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34503,41 +34508,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [275] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(556), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(566), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34552,7 +34557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(980), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34561,10 +34566,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34580,41 +34585,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [276] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(624), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(573), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34629,6 +34634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(982), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34636,12 +34642,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(980), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34657,41 +34662,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [277] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(606), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(625), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34713,12 +34718,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(984), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34734,41 +34739,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [278] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(612), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(624), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34791,11 +34796,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34811,41 +34816,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [279] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(562), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34860,7 +34865,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(986), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34868,11 +34872,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(988), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34888,41 +34893,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [280] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(610), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(559), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34937,6 +34942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(990), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -34944,12 +34950,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(988), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -34965,41 +34970,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [281] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(583), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(581), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35014,7 +35019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(992), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -35023,10 +35028,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35042,41 +35047,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [282] = { - [sym__literal] = STATE(455), + [sym__literal] = STATE(473), [sym_expression] = STATE(576), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35091,7 +35096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(994), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -35100,10 +35105,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35119,41 +35124,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [283] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(578), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35168,7 +35173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(996), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -35177,10 +35182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35196,41 +35201,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [284] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(624), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(577), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35245,6 +35250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(998), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -35252,12 +35258,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(19), [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(996), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35273,41 +35278,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [285] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(561), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(580), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [286] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(602), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35330,10 +35411,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35348,43 +35429,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(587), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [287] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(538), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35397,19 +35478,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35424,42 +35505,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(611), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [288] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35482,10 +35563,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35500,43 +35581,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [289] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(562), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35549,19 +35630,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35576,43 +35657,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(535), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [290] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(600), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35625,19 +35706,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35652,43 +35733,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(502), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [291] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(593), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35701,19 +35782,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35728,42 +35809,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(514), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [292] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(595), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35786,10 +35867,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35804,43 +35885,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(569), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [293] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(578), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35853,19 +35934,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35880,43 +35961,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [293] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(594), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [294] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(556), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35929,19 +36010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -35956,42 +36037,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [294] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(600), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [295] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(609), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36014,10 +36095,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36032,42 +36113,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(529), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [296] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(518), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36090,10 +36171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36108,43 +36189,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(567), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [297] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36157,19 +36238,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36184,42 +36265,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(591), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [298] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(520), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36242,10 +36323,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36260,42 +36341,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(519), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [299] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(524), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36318,10 +36399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36336,43 +36417,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [299] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(610), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [300] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36385,19 +36466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36412,42 +36493,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [300] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [301] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(612), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36470,10 +36551,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36488,43 +36569,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [301] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(505), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [302] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(536), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36537,19 +36618,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36564,42 +36645,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [302] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(607), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [303] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(514), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36622,10 +36703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36640,42 +36721,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [303] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(622), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [304] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(513), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36698,10 +36779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36716,43 +36797,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [304] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(493), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [305] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36765,19 +36846,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36792,42 +36873,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [305] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(624), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [306] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(512), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36850,10 +36931,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36868,42 +36949,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [306] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(596), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [307] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(516), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36926,10 +37007,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -36944,42 +37025,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [307] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(493), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [308] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_new] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [309] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(603), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37002,10 +37159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37020,118 +37177,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [308] = { - [sym_identifier] = ACTIONS(750), - [sym_decimal_integer_literal] = ACTIONS(750), - [sym_hex_integer_literal] = ACTIONS(750), - [sym_octal_integer_literal] = ACTIONS(752), - [sym_binary_integer_literal] = ACTIONS(752), - [sym_decimal_floating_point_literal] = ACTIONS(752), - [sym_hex_floating_point_literal] = ACTIONS(750), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_character_literal] = ACTIONS(752), - [sym_string_literal] = ACTIONS(750), - [sym_text_block] = ACTIONS(752), - [sym_null_literal] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_new] = ACTIONS(750), - [anon_sym_class] = ACTIONS(750), - [anon_sym_switch] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_case] = ACTIONS(750), - [anon_sym_default] = ACTIONS(750), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_do] = ACTIONS(750), - [anon_sym_while] = ACTIONS(750), - [anon_sym_break] = ACTIONS(750), - [anon_sym_continue] = ACTIONS(750), - [anon_sym_return] = ACTIONS(750), - [anon_sym_yield] = ACTIONS(750), - [anon_sym_synchronized] = ACTIONS(750), - [anon_sym_throw] = ACTIONS(750), - [anon_sym_try] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_for] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_static] = ACTIONS(750), - [anon_sym_package] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_enum] = ACTIONS(750), - [anon_sym_public] = ACTIONS(750), - [anon_sym_protected] = ACTIONS(750), - [anon_sym_private] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(750), - [anon_sym_final] = ACTIONS(750), - [anon_sym_strictfp] = ACTIONS(750), - [anon_sym_native] = ACTIONS(750), - [anon_sym_transient] = ACTIONS(750), - [anon_sym_volatile] = ACTIONS(750), - [anon_sym_sealed] = ACTIONS(750), - [anon_sym_non_DASHsealed] = ACTIONS(752), - [anon_sym_record] = ACTIONS(750), - [anon_sym_ATinterface] = ACTIONS(752), - [anon_sym_interface] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(750), - [anon_sym_short] = ACTIONS(750), - [anon_sym_int] = ACTIONS(750), - [anon_sym_long] = ACTIONS(750), - [anon_sym_char] = ACTIONS(750), - [anon_sym_float] = ACTIONS(750), - [anon_sym_double] = ACTIONS(750), - [sym_boolean_type] = ACTIONS(750), - [sym_void_type] = ACTIONS(750), - [sym_this] = ACTIONS(750), - [sym_super] = ACTIONS(750), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [309] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(528), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [310] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(501), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37154,10 +37235,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37172,43 +37253,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [310] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(599), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [311] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(560), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37221,19 +37302,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37248,43 +37329,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [311] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(617), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [312] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(496), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37297,19 +37378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37324,42 +37405,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [312] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(608), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [313] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(614), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37382,10 +37463,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37400,43 +37481,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [313] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(549), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [314] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(547), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37449,19 +37530,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37476,42 +37557,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [314] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(626), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [315] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(515), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37534,10 +37615,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37552,42 +37633,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [315] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(545), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [316] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(519), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37610,10 +37691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37628,43 +37709,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [316] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(575), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [317] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(582), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37677,19 +37758,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37704,43 +37785,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [317] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(584), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [318] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(610), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37753,19 +37834,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37780,43 +37861,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [318] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(595), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [319] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(494), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37829,19 +37910,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37856,42 +37937,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [319] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(525), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [320] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(540), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37914,10 +37995,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37932,42 +38013,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [320] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(512), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [321] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(623), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37990,10 +38071,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38008,43 +38089,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [321] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [322] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(501), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1218), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1218), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38057,19 +38138,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38084,43 +38165,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [322] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(571), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [323] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(506), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38133,19 +38214,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38160,43 +38241,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [323] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(570), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [324] = { + [sym_identifier] = ACTIONS(696), + [sym_decimal_integer_literal] = ACTIONS(696), + [sym_hex_integer_literal] = ACTIONS(696), + [sym_octal_integer_literal] = ACTIONS(698), + [sym_binary_integer_literal] = ACTIONS(698), + [sym_decimal_floating_point_literal] = ACTIONS(698), + [sym_hex_floating_point_literal] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_character_literal] = ACTIONS(698), + [sym_string_literal] = ACTIONS(696), + [sym_text_block] = ACTIONS(698), + [sym_null_literal] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_new] = ACTIONS(696), + [anon_sym_class] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_case] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_assert] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_while] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_synchronized] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(696), + [anon_sym_open] = ACTIONS(696), + [anon_sym_module] = ACTIONS(696), + [anon_sym_static] = ACTIONS(696), + [anon_sym_package] = ACTIONS(696), + [anon_sym_import] = ACTIONS(696), + [anon_sym_enum] = ACTIONS(696), + [anon_sym_public] = ACTIONS(696), + [anon_sym_protected] = ACTIONS(696), + [anon_sym_private] = ACTIONS(696), + [anon_sym_abstract] = ACTIONS(696), + [anon_sym_final] = ACTIONS(696), + [anon_sym_strictfp] = ACTIONS(696), + [anon_sym_native] = ACTIONS(696), + [anon_sym_transient] = ACTIONS(696), + [anon_sym_volatile] = ACTIONS(696), + [anon_sym_sealed] = ACTIONS(696), + [anon_sym_non_DASHsealed] = ACTIONS(698), + [anon_sym_record] = ACTIONS(696), + [anon_sym_ATinterface] = ACTIONS(698), + [anon_sym_interface] = ACTIONS(696), + [anon_sym_byte] = ACTIONS(696), + [anon_sym_short] = ACTIONS(696), + [anon_sym_int] = ACTIONS(696), + [anon_sym_long] = ACTIONS(696), + [anon_sym_char] = ACTIONS(696), + [anon_sym_float] = ACTIONS(696), + [anon_sym_double] = ACTIONS(696), + [sym_boolean_type] = ACTIONS(696), + [sym_void_type] = ACTIONS(696), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [325] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(584), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38209,19 +38366,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38236,43 +38393,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [324] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [326] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(583), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38285,19 +38442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38312,42 +38469,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [325] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [327] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38370,10 +38527,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38388,43 +38545,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [326] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(539), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [328] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(496), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(376), + [sym_array_access] = STATE(376), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38437,19 +38594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(17), + [anon_sym_PLUS_PLUS] = ACTIONS(19), + [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38464,43 +38621,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [327] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(585), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [329] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(587), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38513,19 +38670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38540,42 +38697,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [328] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(521), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [330] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(526), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38598,10 +38755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38616,42 +38773,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [329] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [331] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(617), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38674,10 +38831,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38692,43 +38849,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [330] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(503), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [332] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(586), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38741,19 +38898,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38768,42 +38925,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [331] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(502), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [333] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38826,10 +38983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38844,42 +39001,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [332] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(619), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [334] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(567), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38902,10 +39059,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38920,118 +39077,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [333] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(547), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [334] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(601), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [335] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(591), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39054,10 +39135,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39072,119 +39153,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [335] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), + [336] = { + [sym__literal] = STATE(473), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(389), - [sym_array_access] = STATE(389), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(390), + [sym_array_access] = STATE(390), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(642), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(652), - [anon_sym_module] = ACTIONS(652), - [anon_sym_record] = ACTIONS(652), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [336] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(515), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [sym_identifier] = ACTIONS(307), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(648), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39197,19 +39202,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(658), + [anon_sym_module] = ACTIONS(658), + [anon_sym_record] = ACTIONS(658), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39225,41 +39230,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [337] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(517), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39282,10 +39287,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39301,41 +39306,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [338] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(520), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(596), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39358,10 +39363,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39377,41 +39382,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [339] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(503), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(625), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39434,10 +39439,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39453,41 +39458,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [340] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(614), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(506), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39510,10 +39515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39529,41 +39534,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [341] = { - [sym__literal] = STATE(455), - [sym_expression] = STATE(505), - [sym_cast_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_binary_expression] = STATE(506), - [sym_instanceof_expression] = STATE(506), - [sym_lambda_expression] = STATE(506), - [sym_inferred_parameters] = STATE(1186), - [sym_ternary_expression] = STATE(506), - [sym_unary_expression] = STATE(506), - [sym_update_expression] = STATE(506), - [sym_primary_expression] = STATE(458), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), + [sym__literal] = STATE(473), + [sym_expression] = STATE(494), + [sym_cast_expression] = STATE(495), + [sym_assignment_expression] = STATE(495), + [sym_binary_expression] = STATE(495), + [sym_instanceof_expression] = STATE(495), + [sym_lambda_expression] = STATE(495), + [sym_inferred_parameters] = STATE(1247), + [sym_ternary_expression] = STATE(495), + [sym_unary_expression] = STATE(495), + [sym_update_expression] = STATE(495), + [sym_primary_expression] = STATE(469), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), [sym_field_access] = STATE(376), [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_switch_expression] = STATE(506), - [sym__annotation] = STATE(650), - [sym_marker_annotation] = STATE(650), - [sym_annotation] = STATE(650), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(749), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [sym_formal_parameters] = STATE(1186), - [aux_sym_array_creation_expression_repeat1] = STATE(650), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_switch_expression] = STATE(495), + [sym__annotation] = STATE(654), + [sym_marker_annotation] = STATE(654), + [sym_annotation] = STATE(654), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(755), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [sym_formal_parameters] = STATE(1247), + [aux_sym_array_creation_expression_repeat1] = STATE(654), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39586,10 +39591,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(19), [anon_sym_new] = ACTIONS(21), [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_record] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39605,108 +39610,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [342] = { - [sym_identifier] = ACTIONS(998), - [sym_decimal_integer_literal] = ACTIONS(998), - [sym_hex_integer_literal] = ACTIONS(998), - [sym_octal_integer_literal] = ACTIONS(1000), - [sym_binary_integer_literal] = ACTIONS(1000), - [sym_decimal_floating_point_literal] = ACTIONS(1000), - [sym_hex_floating_point_literal] = ACTIONS(998), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_character_literal] = ACTIONS(1000), - [sym_string_literal] = ACTIONS(998), - [sym_text_block] = ACTIONS(1000), - [sym_null_literal] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_new] = ACTIONS(998), - [anon_sym_class] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_assert] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(998), - [anon_sym_synchronized] = ACTIONS(998), - [anon_sym_throw] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(998), - [anon_sym_open] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_static] = ACTIONS(998), - [anon_sym_package] = ACTIONS(998), - [anon_sym_import] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(998), - [anon_sym_final] = ACTIONS(998), - [anon_sym_strictfp] = ACTIONS(998), - [anon_sym_native] = ACTIONS(998), - [anon_sym_transient] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_sealed] = ACTIONS(998), - [anon_sym_non_DASHsealed] = ACTIONS(1000), - [anon_sym_record] = ACTIONS(998), - [anon_sym_ATinterface] = ACTIONS(1000), - [anon_sym_interface] = ACTIONS(998), - [anon_sym_byte] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [anon_sym_int] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_char] = ACTIONS(998), - [anon_sym_float] = ACTIONS(998), - [anon_sym_double] = ACTIONS(998), - [sym_boolean_type] = ACTIONS(998), - [sym_void_type] = ACTIONS(998), - [sym_this] = ACTIONS(998), - [sym_super] = ACTIONS(998), + [sym_identifier] = ACTIONS(1000), + [sym_decimal_integer_literal] = ACTIONS(1000), + [sym_hex_integer_literal] = ACTIONS(1000), + [sym_octal_integer_literal] = ACTIONS(1002), + [sym_binary_integer_literal] = ACTIONS(1002), + [sym_decimal_floating_point_literal] = ACTIONS(1002), + [sym_hex_floating_point_literal] = ACTIONS(1000), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_character_literal] = ACTIONS(1002), + [sym_string_literal] = ACTIONS(1000), + [sym_text_block] = ACTIONS(1002), + [sym_null_literal] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1000), + [anon_sym_class] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_assert] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1000), + [anon_sym_synchronized] = ACTIONS(1000), + [anon_sym_throw] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(1000), + [anon_sym_open] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_package] = ACTIONS(1000), + [anon_sym_import] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_public] = ACTIONS(1000), + [anon_sym_protected] = ACTIONS(1000), + [anon_sym_private] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(1000), + [anon_sym_final] = ACTIONS(1000), + [anon_sym_strictfp] = ACTIONS(1000), + [anon_sym_native] = ACTIONS(1000), + [anon_sym_transient] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_sealed] = ACTIONS(1000), + [anon_sym_non_DASHsealed] = ACTIONS(1002), + [anon_sym_record] = ACTIONS(1000), + [anon_sym_ATinterface] = ACTIONS(1002), + [anon_sym_interface] = ACTIONS(1000), + [anon_sym_byte] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_char] = ACTIONS(1000), + [anon_sym_float] = ACTIONS(1000), + [anon_sym_double] = ACTIONS(1000), + [sym_boolean_type] = ACTIONS(1000), + [sym_void_type] = ACTIONS(1000), + [sym_this] = ACTIONS(1000), + [sym_super] = ACTIONS(1000), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [343] = { - [sym__literal] = STATE(455), - [sym_primary_expression] = STATE(1046), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(881), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_resource] = STATE(1150), + [sym_identifier] = ACTIONS(1004), + [sym_decimal_integer_literal] = ACTIONS(1004), + [sym_hex_integer_literal] = ACTIONS(1004), + [sym_octal_integer_literal] = ACTIONS(1006), + [sym_binary_integer_literal] = ACTIONS(1006), + [sym_decimal_floating_point_literal] = ACTIONS(1006), + [sym_hex_floating_point_literal] = ACTIONS(1004), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_character_literal] = ACTIONS(1006), + [sym_string_literal] = ACTIONS(1004), + [sym_text_block] = ACTIONS(1006), + [sym_null_literal] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1004), + [anon_sym_class] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_assert] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_synchronized] = ACTIONS(1004), + [anon_sym_throw] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_AT] = ACTIONS(1004), + [anon_sym_open] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_package] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_public] = ACTIONS(1004), + [anon_sym_protected] = ACTIONS(1004), + [anon_sym_private] = ACTIONS(1004), + [anon_sym_abstract] = ACTIONS(1004), + [anon_sym_final] = ACTIONS(1004), + [anon_sym_strictfp] = ACTIONS(1004), + [anon_sym_native] = ACTIONS(1004), + [anon_sym_transient] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_sealed] = ACTIONS(1004), + [anon_sym_non_DASHsealed] = ACTIONS(1006), + [anon_sym_record] = ACTIONS(1004), + [anon_sym_ATinterface] = ACTIONS(1006), + [anon_sym_interface] = ACTIONS(1004), + [anon_sym_byte] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [anon_sym_int] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym_float] = ACTIONS(1004), + [anon_sym_double] = ACTIONS(1004), + [sym_boolean_type] = ACTIONS(1004), + [sym_void_type] = ACTIONS(1004), + [sym_this] = ACTIONS(1004), + [sym_super] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [344] = { + [sym_identifier] = ACTIONS(1008), + [sym_decimal_integer_literal] = ACTIONS(1008), + [sym_hex_integer_literal] = ACTIONS(1008), + [sym_octal_integer_literal] = ACTIONS(1010), + [sym_binary_integer_literal] = ACTIONS(1010), + [sym_decimal_floating_point_literal] = ACTIONS(1010), + [sym_hex_floating_point_literal] = ACTIONS(1008), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_character_literal] = ACTIONS(1010), + [sym_string_literal] = ACTIONS(1008), + [sym_text_block] = ACTIONS(1010), + [sym_null_literal] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_assert] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_synchronized] = ACTIONS(1008), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym_open] = ACTIONS(1008), + [anon_sym_module] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_package] = ACTIONS(1008), + [anon_sym_import] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_public] = ACTIONS(1008), + [anon_sym_protected] = ACTIONS(1008), + [anon_sym_private] = ACTIONS(1008), + [anon_sym_abstract] = ACTIONS(1008), + [anon_sym_final] = ACTIONS(1008), + [anon_sym_strictfp] = ACTIONS(1008), + [anon_sym_native] = ACTIONS(1008), + [anon_sym_transient] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_sealed] = ACTIONS(1008), + [anon_sym_non_DASHsealed] = ACTIONS(1010), + [anon_sym_record] = ACTIONS(1008), + [anon_sym_ATinterface] = ACTIONS(1010), + [anon_sym_interface] = ACTIONS(1008), + [anon_sym_byte] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [anon_sym_int] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), + [anon_sym_float] = ACTIONS(1008), + [anon_sym_double] = ACTIONS(1008), + [sym_boolean_type] = ACTIONS(1008), + [sym_void_type] = ACTIONS(1008), + [sym_this] = ACTIONS(1008), + [sym_super] = ACTIONS(1008), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [345] = { + [sym_identifier] = ACTIONS(1012), + [sym_decimal_integer_literal] = ACTIONS(1012), + [sym_hex_integer_literal] = ACTIONS(1012), + [sym_octal_integer_literal] = ACTIONS(1014), + [sym_binary_integer_literal] = ACTIONS(1014), + [sym_decimal_floating_point_literal] = ACTIONS(1014), + [sym_hex_floating_point_literal] = ACTIONS(1012), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_character_literal] = ACTIONS(1014), + [sym_string_literal] = ACTIONS(1012), + [sym_text_block] = ACTIONS(1014), + [sym_null_literal] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1012), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_assert] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_yield] = ACTIONS(1012), + [anon_sym_synchronized] = ACTIONS(1012), + [anon_sym_throw] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_AT] = ACTIONS(1012), + [anon_sym_open] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_package] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_abstract] = ACTIONS(1012), + [anon_sym_final] = ACTIONS(1012), + [anon_sym_strictfp] = ACTIONS(1012), + [anon_sym_native] = ACTIONS(1012), + [anon_sym_transient] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_sealed] = ACTIONS(1012), + [anon_sym_non_DASHsealed] = ACTIONS(1014), + [anon_sym_record] = ACTIONS(1012), + [anon_sym_ATinterface] = ACTIONS(1014), + [anon_sym_interface] = ACTIONS(1012), + [anon_sym_byte] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [anon_sym_int] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_char] = ACTIONS(1012), + [anon_sym_float] = ACTIONS(1012), + [anon_sym_double] = ACTIONS(1012), + [sym_boolean_type] = ACTIONS(1012), + [sym_void_type] = ACTIONS(1012), + [sym_this] = ACTIONS(1012), + [sym_super] = ACTIONS(1012), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [346] = { + [sym__literal] = STATE(473), + [sym_primary_expression] = STATE(1031), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(869), + [sym_array_access] = STATE(473), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_resource] = STATE(1105), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(691), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(700), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [aux_sym_modifiers_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1002), + [sym_modifiers] = STATE(694), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(701), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [aux_sym_modifiers_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(1016), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39719,14 +39949,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1022), [anon_sym_default] = ACTIONS(299), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), [anon_sym_static] = ACTIONS(299), [anon_sym_public] = ACTIONS(299), [anon_sym_protected] = ACTIONS(299), @@ -39739,7 +39969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(299), [anon_sym_sealed] = ACTIONS(299), [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1010), + [anon_sym_record] = ACTIONS(1024), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39754,184 +39984,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [344] = { - [sym_identifier] = ACTIONS(1012), - [sym_decimal_integer_literal] = ACTIONS(1012), - [sym_hex_integer_literal] = ACTIONS(1012), - [sym_octal_integer_literal] = ACTIONS(1014), - [sym_binary_integer_literal] = ACTIONS(1014), - [sym_decimal_floating_point_literal] = ACTIONS(1014), - [sym_hex_floating_point_literal] = ACTIONS(1012), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_character_literal] = ACTIONS(1014), - [sym_string_literal] = ACTIONS(1012), - [sym_text_block] = ACTIONS(1014), - [sym_null_literal] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_new] = ACTIONS(1012), - [anon_sym_class] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_assert] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_yield] = ACTIONS(1012), - [anon_sym_synchronized] = ACTIONS(1012), - [anon_sym_throw] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_AT] = ACTIONS(1012), - [anon_sym_open] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_package] = ACTIONS(1012), - [anon_sym_import] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_abstract] = ACTIONS(1012), - [anon_sym_final] = ACTIONS(1012), - [anon_sym_strictfp] = ACTIONS(1012), - [anon_sym_native] = ACTIONS(1012), - [anon_sym_transient] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_sealed] = ACTIONS(1012), - [anon_sym_non_DASHsealed] = ACTIONS(1014), - [anon_sym_record] = ACTIONS(1012), - [anon_sym_ATinterface] = ACTIONS(1014), - [anon_sym_interface] = ACTIONS(1012), - [anon_sym_byte] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [anon_sym_int] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_char] = ACTIONS(1012), - [anon_sym_float] = ACTIONS(1012), - [anon_sym_double] = ACTIONS(1012), - [sym_boolean_type] = ACTIONS(1012), - [sym_void_type] = ACTIONS(1012), - [sym_this] = ACTIONS(1012), - [sym_super] = ACTIONS(1012), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [345] = { - [sym_identifier] = ACTIONS(1016), - [sym_decimal_integer_literal] = ACTIONS(1016), - [sym_hex_integer_literal] = ACTIONS(1016), - [sym_octal_integer_literal] = ACTIONS(1018), - [sym_binary_integer_literal] = ACTIONS(1018), - [sym_decimal_floating_point_literal] = ACTIONS(1018), - [sym_hex_floating_point_literal] = ACTIONS(1016), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_character_literal] = ACTIONS(1018), - [sym_string_literal] = ACTIONS(1016), - [sym_text_block] = ACTIONS(1018), - [sym_null_literal] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_new] = ACTIONS(1016), - [anon_sym_class] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_assert] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_yield] = ACTIONS(1016), - [anon_sym_synchronized] = ACTIONS(1016), - [anon_sym_throw] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_AT] = ACTIONS(1016), - [anon_sym_open] = ACTIONS(1016), - [anon_sym_module] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_package] = ACTIONS(1016), - [anon_sym_import] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_public] = ACTIONS(1016), - [anon_sym_protected] = ACTIONS(1016), - [anon_sym_private] = ACTIONS(1016), - [anon_sym_abstract] = ACTIONS(1016), - [anon_sym_final] = ACTIONS(1016), - [anon_sym_strictfp] = ACTIONS(1016), - [anon_sym_native] = ACTIONS(1016), - [anon_sym_transient] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_sealed] = ACTIONS(1016), - [anon_sym_non_DASHsealed] = ACTIONS(1018), - [anon_sym_record] = ACTIONS(1016), - [anon_sym_ATinterface] = ACTIONS(1018), - [anon_sym_interface] = ACTIONS(1016), - [anon_sym_byte] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [anon_sym_int] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_char] = ACTIONS(1016), - [anon_sym_float] = ACTIONS(1016), - [anon_sym_double] = ACTIONS(1016), - [sym_boolean_type] = ACTIONS(1016), - [sym_void_type] = ACTIONS(1016), - [sym_this] = ACTIONS(1016), - [sym_super] = ACTIONS(1016), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [346] = { - [sym__literal] = STATE(455), - [sym_primary_expression] = STATE(1046), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(881), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_resource] = STATE(1150), + [347] = { + [sym__literal] = STATE(473), + [sym_primary_expression] = STATE(1031), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(869), + [sym_array_access] = STATE(473), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_resource] = STATE(1105), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(691), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(700), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [aux_sym_modifiers_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1002), + [sym_modifiers] = STATE(694), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(701), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [aux_sym_modifiers_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(1016), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39944,14 +40024,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_new] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_new] = ACTIONS(1022), [anon_sym_default] = ACTIONS(299), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), [anon_sym_static] = ACTIONS(299), [anon_sym_public] = ACTIONS(299), [anon_sym_protected] = ACTIONS(299), @@ -39964,7 +40044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(299), [anon_sym_sealed] = ACTIONS(299), [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1010), + [anon_sym_record] = ACTIONS(1024), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39979,109 +40059,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [347] = { - [sym_identifier] = ACTIONS(1022), - [sym_decimal_integer_literal] = ACTIONS(1022), - [sym_hex_integer_literal] = ACTIONS(1022), - [sym_octal_integer_literal] = ACTIONS(1024), - [sym_binary_integer_literal] = ACTIONS(1024), - [sym_decimal_floating_point_literal] = ACTIONS(1024), - [sym_hex_floating_point_literal] = ACTIONS(1022), - [sym_true] = ACTIONS(1022), - [sym_false] = ACTIONS(1022), - [sym_character_literal] = ACTIONS(1024), - [sym_string_literal] = ACTIONS(1022), - [sym_text_block] = ACTIONS(1024), - [sym_null_literal] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_class] = ACTIONS(1022), - [anon_sym_switch] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_assert] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_yield] = ACTIONS(1022), - [anon_sym_synchronized] = ACTIONS(1022), - [anon_sym_throw] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_AT] = ACTIONS(1022), - [anon_sym_open] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_package] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1022), - [anon_sym_enum] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_abstract] = ACTIONS(1022), - [anon_sym_final] = ACTIONS(1022), - [anon_sym_strictfp] = ACTIONS(1022), - [anon_sym_native] = ACTIONS(1022), - [anon_sym_transient] = ACTIONS(1022), - [anon_sym_volatile] = ACTIONS(1022), - [anon_sym_sealed] = ACTIONS(1022), - [anon_sym_non_DASHsealed] = ACTIONS(1024), - [anon_sym_record] = ACTIONS(1022), - [anon_sym_ATinterface] = ACTIONS(1024), - [anon_sym_interface] = ACTIONS(1022), - [anon_sym_byte] = ACTIONS(1022), - [anon_sym_short] = ACTIONS(1022), - [anon_sym_int] = ACTIONS(1022), - [anon_sym_long] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym_float] = ACTIONS(1022), - [anon_sym_double] = ACTIONS(1022), - [sym_boolean_type] = ACTIONS(1022), - [sym_void_type] = ACTIONS(1022), - [sym_this] = ACTIONS(1022), - [sym_super] = ACTIONS(1022), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [348] = { - [sym__literal] = STATE(455), - [sym_primary_expression] = STATE(1046), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(881), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_resource] = STATE(1047), + [sym__literal] = STATE(473), + [sym_primary_expression] = STATE(1031), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(869), + [sym_array_access] = STATE(473), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_resource] = STATE(1033), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(691), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(700), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [aux_sym_modifiers_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1002), + [sym_modifiers] = STATE(694), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(701), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [aux_sym_modifiers_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(1016), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -40094,13 +40099,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_new] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_new] = ACTIONS(1022), [anon_sym_default] = ACTIONS(299), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), [anon_sym_static] = ACTIONS(299), [anon_sym_public] = ACTIONS(299), [anon_sym_protected] = ACTIONS(299), @@ -40113,7 +40118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(299), [anon_sym_sealed] = ACTIONS(299), [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1010), + [anon_sym_record] = ACTIONS(1024), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -40129,33 +40134,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [349] = { - [sym__literal] = STATE(455), - [sym_primary_expression] = STATE(1046), - [sym_array_creation_expression] = STATE(455), - [sym_parenthesized_expression] = STATE(455), - [sym_class_literal] = STATE(455), - [sym_object_creation_expression] = STATE(455), - [sym__unqualified_object_creation_expression] = STATE(459), - [sym_field_access] = STATE(881), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(455), - [sym_method_reference] = STATE(455), - [sym_resource] = STATE(1150), + [sym__literal] = STATE(473), + [sym_primary_expression] = STATE(1031), + [sym_array_creation_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_class_literal] = STATE(473), + [sym_object_creation_expression] = STATE(473), + [sym__unqualified_object_creation_expression] = STATE(466), + [sym_field_access] = STATE(869), + [sym_array_access] = STATE(473), + [sym_method_invocation] = STATE(473), + [sym_method_reference] = STATE(473), + [sym_resource] = STATE(1105), [sym__annotation] = STATE(590), [sym_marker_annotation] = STATE(590), [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(691), - [sym__type] = STATE(1181), - [sym__unannotated_type] = STATE(700), - [sym_annotated_type] = STATE(758), - [sym_scoped_type_identifier] = STATE(712), - [sym_generic_type] = STATE(733), - [sym_array_type] = STATE(668), - [sym_integral_type] = STATE(668), - [sym_floating_point_type] = STATE(668), - [aux_sym_array_creation_expression_repeat1] = STATE(650), - [aux_sym_modifiers_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1002), + [sym_modifiers] = STATE(694), + [sym__type] = STATE(1246), + [sym__unannotated_type] = STATE(701), + [sym_annotated_type] = STATE(759), + [sym_scoped_type_identifier] = STATE(709), + [sym_generic_type] = STATE(736), + [sym_array_type] = STATE(672), + [sym_integral_type] = STATE(672), + [sym_floating_point_type] = STATE(672), + [aux_sym_array_creation_expression_repeat1] = STATE(654), + [aux_sym_modifiers_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(1016), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -40168,13 +40173,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_new] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_new] = ACTIONS(1022), [anon_sym_default] = ACTIONS(299), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), [anon_sym_static] = ACTIONS(299), [anon_sym_public] = ACTIONS(299), [anon_sym_protected] = ACTIONS(299), @@ -40187,7 +40192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(299), [anon_sym_sealed] = ACTIONS(299), [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1010), + [anon_sym_record] = ACTIONS(1024), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -40220,31 +40225,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1026), 1, - sym_identifier, ACTIONS(1028), 1, - anon_sym_LT, + sym_identifier, ACTIONS(1030), 1, - anon_sym_RBRACE, + anon_sym_LT, ACTIONS(1032), 1, - anon_sym_SEMI, + anon_sym_RBRACE, ACTIONS(1034), 1, - anon_sym_static, + anon_sym_SEMI, ACTIONS(1036), 1, + anon_sym_static, + ACTIONS(1038), 1, anon_sym_record, - STATE(593), 1, + STATE(599), 1, sym_modifiers, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(644), 1, + STATE(657), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(685), 1, + STATE(683), 1, sym__unannotated_type, - STATE(889), 1, + STATE(937), 1, sym__constructor_declarator, - STATE(951), 1, + STATE(1059), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -40255,11 +40260,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -40270,7 +40275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(351), 11, + STATE(354), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -40310,31 +40315,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1026), 1, - sym_identifier, ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, anon_sym_LT, - ACTIONS(1034), 1, - anon_sym_static, ACTIONS(1036), 1, - anon_sym_record, + anon_sym_static, ACTIONS(1038), 1, - anon_sym_RBRACE, + anon_sym_record, ACTIONS(1040), 1, + anon_sym_RBRACE, + ACTIONS(1042), 1, anon_sym_SEMI, - STATE(593), 1, + STATE(599), 1, sym_modifiers, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(644), 1, + STATE(657), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(685), 1, + STATE(683), 1, sym__unannotated_type, - STATE(889), 1, + STATE(937), 1, sym__constructor_declarator, - STATE(951), 1, + STATE(1059), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -40345,11 +40350,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -40360,7 +40365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(353), 11, + STATE(352), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -40400,31 +40405,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1026), 1, - sym_identifier, ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, anon_sym_LT, ACTIONS(1034), 1, - anon_sym_static, + anon_sym_SEMI, ACTIONS(1036), 1, + anon_sym_static, + ACTIONS(1038), 1, anon_sym_record, - ACTIONS(1042), 1, - anon_sym_RBRACE, ACTIONS(1044), 1, - anon_sym_SEMI, - STATE(593), 1, + anon_sym_RBRACE, + STATE(599), 1, sym_modifiers, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(644), 1, + STATE(657), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(685), 1, + STATE(683), 1, sym__unannotated_type, - STATE(889), 1, + STATE(937), 1, sym__constructor_declarator, - STATE(951), 1, + STATE(1059), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -40435,11 +40440,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -40476,71 +40481,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [354] = 28, - ACTIONS(1046), 1, - sym_identifier, - ACTIONS(1049), 1, - anon_sym_LT, - ACTIONS(1052), 1, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(1055), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(1058), 1, - anon_sym_RBRACE, - ACTIONS(1063), 1, - anon_sym_SEMI, - ACTIONS(1066), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1069), 1, - anon_sym_static, - ACTIONS(1072), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(1075), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1078), 1, - anon_sym_record, - ACTIONS(1081), 1, + ACTIONS(73), 1, anon_sym_ATinterface, - ACTIONS(1084), 1, + ACTIONS(75), 1, anon_sym_interface, - STATE(593), 1, + ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, + anon_sym_LT, + ACTIONS(1036), 1, + anon_sym_static, + ACTIONS(1038), 1, + anon_sym_record, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(1048), 1, + anon_sym_SEMI, + STATE(599), 1, sym_modifiers, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(644), 1, + STATE(657), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(685), 1, + STATE(683), 1, sym__unannotated_type, - STATE(889), 1, + STATE(937), 1, sym__constructor_declarator, - STATE(951), 1, + STATE(1059), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1090), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1093), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1087), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(353), 11, + STATE(350), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -40552,7 +40557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(1060), 12, + ACTIONS(29), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -40566,71 +40571,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [472] = 28, - ACTIONS(23), 1, + ACTIONS(1050), 1, + sym_identifier, + ACTIONS(1053), 1, + anon_sym_LT, + ACTIONS(1056), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(1059), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(1062), 1, + anon_sym_RBRACE, + ACTIONS(1067), 1, + anon_sym_SEMI, + ACTIONS(1070), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1073), 1, + anon_sym_static, + ACTIONS(1076), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1079), 1, anon_sym_non_DASHsealed, - ACTIONS(73), 1, + ACTIONS(1082), 1, + anon_sym_record, + ACTIONS(1085), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(1088), 1, anon_sym_interface, - ACTIONS(1026), 1, - sym_identifier, - ACTIONS(1028), 1, - anon_sym_LT, - ACTIONS(1034), 1, - anon_sym_static, - ACTIONS(1036), 1, - anon_sym_record, - ACTIONS(1040), 1, - anon_sym_SEMI, - ACTIONS(1096), 1, - anon_sym_RBRACE, - STATE(593), 1, + STATE(599), 1, sym_modifiers, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(644), 1, + STATE(657), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(685), 1, + STATE(683), 1, sym__unannotated_type, - STATE(889), 1, + STATE(937), 1, sym__constructor_declarator, - STATE(951), 1, + STATE(1059), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(1094), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(1097), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(1091), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(353), 11, + STATE(354), 11, sym_block, sym_enum_declaration, sym_class_declaration, @@ -40642,7 +40647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_method_declaration, aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(1064), 12, anon_sym_default, anon_sym_synchronized, anon_sym_public, @@ -40656,34 +40661,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [590] = 14, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1108), 1, anon_sym_EQ, - ACTIONS(1110), 1, + ACTIONS(1112), 1, anon_sym_LT, - ACTIONS(1113), 1, + ACTIONS(1115), 1, anon_sym_DASH_GT, - ACTIONS(1118), 1, + ACTIONS(1120), 1, anon_sym_DOT, - ACTIONS(1122), 1, + ACTIONS(1124), 1, anon_sym_AT, - STATE(464), 1, + STATE(454), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1115), 2, + ACTIONS(1117), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1098), 4, + ACTIONS(1100), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1108), 11, + ACTIONS(1110), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -40695,7 +40700,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(1102), 14, + ACTIONS(1104), 14, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -40710,7 +40715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1104), 14, + ACTIONS(1106), 14, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40726,63 +40731,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [674] = 24, - ACTIONS(1124), 1, - sym_identifier, - ACTIONS(1127), 1, - anon_sym_LT, - ACTIONS(1130), 1, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(1133), 1, - anon_sym_RBRACE, - ACTIONS(1138), 1, - anon_sym_SEMI, - ACTIONS(1141), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1144), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(1147), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1150), 1, + ACTIONS(73), 1, anon_sym_ATinterface, - ACTIONS(1153), 1, + ACTIONS(75), 1, anon_sym_interface, + ACTIONS(1030), 1, + anon_sym_LT, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, + anon_sym_RBRACE, + ACTIONS(1130), 1, + anon_sym_SEMI, STATE(635), 1, sym_modifiers, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(652), 1, + STATE(660), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(693), 1, + STATE(684), 1, sym__unannotated_type, - STATE(951), 1, + STATE(1059), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1159), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1162), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1156), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(356), 7, + STATE(357), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -40790,7 +40795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(1135), 13, + ACTIONS(29), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -40817,25 +40822,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1028), 1, + ACTIONS(1030), 1, anon_sym_LT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1167), 1, + ACTIONS(1132), 1, anon_sym_RBRACE, - ACTIONS(1169), 1, + ACTIONS(1134), 1, anon_sym_SEMI, STATE(635), 1, sym_modifiers, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(652), 1, + STATE(660), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(693), 1, + STATE(684), 1, sym__unannotated_type, - STATE(951), 1, + STATE(1059), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -40846,11 +40851,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -40861,7 +40866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(359), 7, + STATE(358), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -40883,45 +40888,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [880] = 18, - ACTIONS(1100), 1, + [880] = 24, + ACTIONS(1136), 1, + sym_identifier, + ACTIONS(1139), 1, + anon_sym_LT, + ACTIONS(1142), 1, + anon_sym_class, + ACTIONS(1145), 1, + anon_sym_RBRACE, + ACTIONS(1150), 1, + anon_sym_SEMI, + ACTIONS(1153), 1, + anon_sym_AT, + ACTIONS(1156), 1, + anon_sym_enum, + ACTIONS(1159), 1, + anon_sym_non_DASHsealed, + ACTIONS(1162), 1, + anon_sym_ATinterface, + ACTIONS(1165), 1, + anon_sym_interface, + STATE(635), 1, + sym_modifiers, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(660), 1, + sym_type_parameters, + STATE(669), 1, + sym_generic_type, + STATE(684), 1, + sym__unannotated_type, + STATE(1059), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1171), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1174), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(424), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1168), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(358), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_constant_declaration, + sym_method_declaration, + aux_sym_interface_body_repeat1, + ACTIONS(1147), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [983] = 18, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1108), 1, anon_sym_EQ, - ACTIONS(1110), 1, + ACTIONS(1112), 1, anon_sym_LT, - ACTIONS(1113), 1, + ACTIONS(1115), 1, anon_sym_DASH_GT, - ACTIONS(1171), 1, + ACTIONS(1177), 1, anon_sym_AMP, - ACTIONS(1174), 1, + ACTIONS(1180), 1, anon_sym_RPAREN, - ACTIONS(1178), 1, + ACTIONS(1184), 1, anon_sym_COMMA, - ACTIONS(1180), 1, + ACTIONS(1186), 1, anon_sym_DOT, - STATE(464), 1, + STATE(454), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, - STATE(1051), 1, + STATE(1004), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1115), 2, + ACTIONS(1117), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1122), 2, + ACTIONS(1124), 2, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1098), 5, + ACTIONS(1100), 5, anon_sym_open, anon_sym_module, anon_sym_record, sym_this, sym_identifier, - ACTIONS(1104), 9, + ACTIONS(1106), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -40931,7 +41015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1108), 11, + ACTIONS(1110), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -40943,7 +41027,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(1102), 12, + ACTIONS(1104), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -40956,116 +41040,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [971] = 24, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(73), 1, - anon_sym_ATinterface, - ACTIONS(75), 1, - anon_sym_interface, - ACTIONS(1028), 1, - anon_sym_LT, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1184), 1, - anon_sym_RBRACE, - ACTIONS(1186), 1, - anon_sym_SEMI, - STATE(635), 1, - sym_modifiers, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(652), 1, - sym_type_parameters, - STATE(669), 1, - sym_generic_type, - STATE(693), 1, - sym__unannotated_type, - STATE(951), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(423), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(356), 7, - sym_enum_declaration, - sym_class_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_constant_declaration, - sym_method_declaration, - aux_sym_interface_body_repeat1, - ACTIONS(29), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, [1074] = 15, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1108), 1, anon_sym_EQ, - ACTIONS(1110), 1, + ACTIONS(1112), 1, anon_sym_LT, - ACTIONS(1113), 1, + ACTIONS(1115), 1, anon_sym_DASH_GT, - ACTIONS(1118), 1, + ACTIONS(1120), 1, anon_sym_DOT, - ACTIONS(1122), 1, + ACTIONS(1124), 1, anon_sym_AT, - ACTIONS(1188), 1, + ACTIONS(1190), 1, anon_sym_COLON, - STATE(464), 1, + STATE(454), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1115), 2, + ACTIONS(1117), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1098), 4, + ACTIONS(1100), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1104), 10, + ACTIONS(1106), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -41076,7 +41081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1108), 11, + ACTIONS(1110), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41088,7 +41093,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(1102), 13, + ACTIONS(1104), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -41103,36 +41108,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, [1156] = 15, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1108), 1, anon_sym_EQ, - ACTIONS(1110), 1, + ACTIONS(1112), 1, anon_sym_LT, - ACTIONS(1113), 1, + ACTIONS(1115), 1, anon_sym_DASH_GT, - ACTIONS(1118), 1, + ACTIONS(1120), 1, anon_sym_DOT, - ACTIONS(1122), 1, + ACTIONS(1124), 1, anon_sym_AT, - ACTIONS(1190), 1, + ACTIONS(1192), 1, anon_sym_COLON, - STATE(464), 1, + STATE(454), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1115), 2, + ACTIONS(1117), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1098), 4, + ACTIONS(1100), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1104), 10, + ACTIONS(1106), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -41143,7 +41148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1108), 11, + ACTIONS(1110), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41155,7 +41160,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(1102), 13, + ACTIONS(1104), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -41170,23 +41175,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, [1238] = 20, - ACTIONS(23), 1, + ACTIONS(1194), 1, + sym_identifier, + ACTIONS(1197), 1, anon_sym_class, - ACTIONS(57), 1, + ACTIONS(1200), 1, + anon_sym_RBRACE, + ACTIONS(1205), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1208), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1211), 1, anon_sym_non_DASHsealed, - ACTIONS(73), 1, + ACTIONS(1214), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(1217), 1, anon_sym_interface, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1192), 1, - anon_sym_RBRACE, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(664), 1, sym_modifiers, @@ -41197,28 +41202,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(1223), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(1226), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(1220), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(363), 7, + STATE(362), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -41226,7 +41231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, + ACTIONS(1202), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41241,23 +41246,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [1329] = 20, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1197), 1, + ACTIONS(23), 1, anon_sym_class, - ACTIONS(1200), 1, - anon_sym_RBRACE, - ACTIONS(1205), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1208), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(1211), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1214), 1, + ACTIONS(73), 1, anon_sym_ATinterface, - ACTIONS(1217), 1, + ACTIONS(75), 1, anon_sym_interface, - STATE(642), 1, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1229), 1, + anon_sym_RBRACE, + STATE(648), 1, sym_scoped_type_identifier, STATE(664), 1, sym_modifiers, @@ -41268,28 +41273,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1223), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1226), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1220), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(363), 7, + STATE(362), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -41297,7 +41302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(1202), 13, + ACTIONS(29), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41324,11 +41329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1229), 1, + ACTIONS(1231), 1, anon_sym_RBRACE, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(664), 1, sym_modifiers, @@ -41345,11 +41350,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(424), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -41360,7 +41365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(362), 7, + STATE(363), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -41382,15 +41387,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1511] = 5, - ACTIONS(1100), 1, + [1511] = 8, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(1237), 1, + anon_sym_EQ, + ACTIONS(1241), 1, + anon_sym_DASH_GT, + STATE(472), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1239), 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(1233), 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(1235), 18, + 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, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [1577] = 5, + ACTIONS(1102), 1, anon_sym_LPAREN, - STATE(453), 1, + STATE(481), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1231), 15, + ACTIONS(1243), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -41406,7 +41469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1233), 30, + ACTIONS(1245), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -41437,15 +41500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1571] = 5, - ACTIONS(1100), 1, + [1637] = 5, + ACTIONS(1102), 1, anon_sym_LPAREN, - STATE(484), 1, + STATE(482), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1235), 15, + ACTIONS(1247), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -41461,7 +41524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1237), 30, + ACTIONS(1249), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -41492,15 +41555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1631] = 5, - ACTIONS(1100), 1, + [1697] = 5, + ACTIONS(1102), 1, anon_sym_LPAREN, - STATE(452), 1, + STATE(457), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1239), 15, + ACTIONS(1251), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -41516,7 +41579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1241), 30, + ACTIONS(1253), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -41547,19 +41610,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1691] = 8, - ACTIONS(1100), 1, + [1757] = 11, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(1237), 1, anon_sym_EQ, - ACTIONS(1251), 1, + ACTIONS(1241), 1, anon_sym_DASH_GT, - STATE(476), 1, + ACTIONS(1255), 1, + sym_identifier, + STATE(472), 1, sym_argument_list, + STATE(993), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1249), 11, + ACTIONS(1257), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1239), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41571,7 +41642,21 @@ 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(1243), 14, + ACTIONS(1235), 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_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + ACTIONS(1233), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -41585,9 +41670,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_instanceof, + [1829] = 5, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(458), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1259), 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(1245), 18, + ACTIONS(1261), 30, 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, @@ -41595,6 +41715,7 @@ 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, @@ -41605,15 +41726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1757] = 5, - ACTIONS(1100), 1, - anon_sym_LPAREN, - STATE(481), 1, - sym_argument_list, + [1889] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 15, + ACTIONS(1247), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -41629,7 +41746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1255), 30, + ACTIONS(1249), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -41660,27 +41777,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1817] = 11, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(1247), 1, - anon_sym_EQ, - ACTIONS(1251), 1, - anon_sym_DASH_GT, - ACTIONS(1257), 1, - sym_identifier, - STATE(476), 1, - sym_argument_list, - STATE(1028), 1, - sym_scoped_identifier, + [1943] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1259), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - ACTIONS(1249), 11, + ACTIONS(1251), 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(1253), 30, + anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41692,40 +41810,29 @@ 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(1245), 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_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_RBRACE, anon_sym_SEMI, - ACTIONS(1243), 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_instanceof, - [1889] = 3, + [1997] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1231), 15, + ACTIONS(1263), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -41741,7 +41848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1233), 30, + ACTIONS(1265), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -41772,30 +41879,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1943] = 13, - ACTIONS(1100), 1, + [2051] = 13, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1110), 1, + ACTIONS(1112), 1, anon_sym_LT, - ACTIONS(1118), 1, + ACTIONS(1120), 1, anon_sym_DOT, - ACTIONS(1122), 1, + ACTIONS(1124), 1, anon_sym_AT, - ACTIONS(1261), 1, + ACTIONS(1267), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1271), 1, anon_sym_DASH_GT, - STATE(464), 1, + STATE(454), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1115), 2, + ACTIONS(1117), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1104), 11, + ACTIONS(1106), 11, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -41807,7 +41914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1263), 11, + ACTIONS(1269), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41819,7 +41926,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(1102), 13, + ACTIONS(1104), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -41833,13 +41940,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - [2017] = 3, + [2125] = 11, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_COMMA, + ACTIONS(1237), 1, + anon_sym_EQ, + ACTIONS(1241), 1, + anon_sym_DASH_GT, + ACTIONS(1274), 1, + anon_sym_RPAREN, + STATE(472), 1, + sym_argument_list, + STATE(1003), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 15, + ACTIONS(1239), 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(1233), 13, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, @@ -41852,20 +41984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1255), 30, - 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(1235), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -41873,24 +41992,32 @@ 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_RBRACE, - anon_sym_SEMI, - [2071] = 3, + [2194] = 5, + ACTIONS(1108), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1268), 15, + ACTIONS(1110), 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(1104), 14, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, @@ -41904,19 +42031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1270), 30, + ACTIONS(1106), 18, 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, @@ -41924,7 +42040,6 @@ 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, @@ -41935,30 +42050,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2125] = 13, - ACTIONS(1100), 1, + [2251] = 13, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1110), 1, + ACTIONS(1112), 1, anon_sym_LT, - ACTIONS(1113), 1, + ACTIONS(1115), 1, anon_sym_DASH_GT, - ACTIONS(1118), 1, + ACTIONS(1120), 1, anon_sym_DOT, - ACTIONS(1122), 1, + ACTIONS(1124), 1, anon_sym_AT, - ACTIONS(1272), 1, + ACTIONS(1277), 1, anon_sym_EQ, - STATE(464), 1, + STATE(454), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1115), 2, + ACTIONS(1117), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1104), 11, + ACTIONS(1106), 11, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -41970,7 +42085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1108), 11, + ACTIONS(1110), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41982,7 +42097,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(1102), 12, + ACTIONS(1104), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -41995,40 +42110,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - [2198] = 5, - ACTIONS(1106), 1, - anon_sym_EQ, + [2324] = 7, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1283), 1, + anon_sym_LBRACK, + STATE(380), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1108), 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(1102), 14, + STATE(831), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1279), 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_instanceof, anon_sym_COLON, - ACTIONS(1104), 18, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1281), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42036,85 +42148,34 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACE, - anon_sym_SEMI, - [2255] = 9, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(1247), 1, - anon_sym_EQ, - ACTIONS(1251), 1, - anon_sym_DASH_GT, - ACTIONS(1274), 1, - anon_sym_module, - STATE(476), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1249), 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(1243), 13, - 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, - ACTIONS(1245), 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_RBRACE, anon_sym_SEMI, - [2319] = 8, - ACTIONS(1100), 1, + [2384] = 8, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1285), 1, anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(1289), 1, anon_sym_DASH_GT, - STATE(476), 1, + STATE(472), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1278), 11, + ACTIONS(1287), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42126,7 +42187,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(1243), 14, + ACTIONS(1233), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42141,7 +42202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1245), 14, + ACTIONS(1235), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42156,77 +42217,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [2381] = 9, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(1247), 1, - anon_sym_EQ, - ACTIONS(1251), 1, - anon_sym_DASH_GT, - ACTIONS(1283), 1, - sym_identifier, - STATE(476), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1249), 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(1245), 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_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - ACTIONS(1243), 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_instanceof, - [2445] = 7, - ACTIONS(1289), 1, + [2446] = 7, + ACTIONS(1296), 1, anon_sym_LBRACK, - ACTIONS(1292), 1, + ACTIONS(1299), 1, anon_sym_AT, STATE(380), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(843), 4, + STATE(831), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1285), 14, + ACTIONS(1292), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42241,7 +42247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1287), 22, + ACTIONS(1294), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42264,80 +42270,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2505] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1299), 1, - anon_sym_LBRACK, - STATE(380), 1, - aux_sym_dimensions_repeat1, + [2506] = 9, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(1237), 1, + anon_sym_EQ, + ACTIONS(1241), 1, + anon_sym_DASH_GT, + ACTIONS(1302), 1, + sym_identifier, + STATE(472), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(843), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1295), 14, + ACTIONS(1239), 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(1235), 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_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + ACTIONS(1233), 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_instanceof, - anon_sym_COLON, - anon_sym_open, + [2570] = 9, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(1237), 1, + anon_sym_EQ, + ACTIONS(1241), 1, + anon_sym_DASH_GT, + ACTIONS(1304), 1, anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1297), 22, - anon_sym_RPAREN, + STATE(472), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1239), 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(1233), 13, + 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, + ACTIONS(1235), 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_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_instanceof, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_RBRACE, anon_sym_SEMI, - [2565] = 9, + [2634] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1305), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(381), 1, + STATE(378), 1, aux_sym_dimensions_repeat1, - STATE(479), 1, + STATE(456), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(841), 4, + STATE(825), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1301), 9, + ACTIONS(1306), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42347,7 +42410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1303), 23, + ACTIONS(1308), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42371,24 +42434,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2628] = 8, + [2697] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1299), 1, + ACTIONS(1283), 1, anon_sym_LBRACK, - STATE(381), 1, + STATE(378), 1, aux_sym_dimensions_repeat1, - STATE(417), 1, + STATE(416), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(843), 4, + STATE(831), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1307), 13, + ACTIONS(1312), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42402,7 +42465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1309), 21, + ACTIONS(1314), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42424,27 +42487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [2689] = 9, + [2758] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1305), 1, + ACTIONS(1283), 1, anon_sym_LBRACK, - STATE(381), 1, + STATE(378), 1, aux_sym_dimensions_repeat1, - STATE(472), 1, + STATE(416), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(841), 4, + STATE(831), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1311), 9, + ACTIONS(1316), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42453,8 +42513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1313), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1318), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42467,38 +42531,36 @@ 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_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2752] = 9, + [2819] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1305), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(381), 1, + STATE(378), 1, aux_sym_dimensions_repeat1, STATE(467), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(841), 4, + STATE(825), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1315), 9, + ACTIONS(1320), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42508,7 +42570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1317), 23, + ACTIONS(1322), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42532,24 +42594,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2815] = 8, + [2882] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1299), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(381), 1, + STATE(378), 1, aux_sym_dimensions_repeat1, - STATE(417), 1, + STATE(485), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(843), 4, + STATE(393), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(825), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1319), 13, + ACTIONS(1324), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42558,12 +42623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1321), 21, + anon_sym_COLON, + ACTIONS(1326), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42576,36 +42637,38 @@ 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_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2876] = 9, + [2945] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1305), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(381), 1, + STATE(378), 1, aux_sym_dimensions_repeat1, - STATE(485), 1, + STATE(461), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(841), 4, + STATE(825), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1323), 9, + ACTIONS(1328), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42615,7 +42678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1325), 23, + ACTIONS(1330), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42639,28 +42702,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2939] = 19, + [3008] = 19, ACTIONS(297), 1, anon_sym_RPAREN, ACTIONS(301), 1, anon_sym_AT, ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(393), 1, + STATE(394), 1, sym_receiver_parameter, - STATE(513), 1, + STATE(525), 1, aux_sym_modifiers_repeat1, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(649), 1, + STATE(643), 1, aux_sym_array_creation_expression_repeat1, + STATE(648), 1, + sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(692), 1, + STATE(691), 1, sym_modifiers, - STATE(702), 1, + STATE(700), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -42671,14 +42734,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(985), 2, + STATE(980), 2, sym_formal_parameter, sym_spread_parameter, STATE(590), 3, sym__annotation, sym_marker_annotation, sym_annotation, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -42702,13 +42765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3021] = 5, - ACTIONS(1261), 1, + [3090] = 5, + ACTIONS(1267), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 11, + ACTIONS(1269), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42720,7 +42783,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(1102), 14, + ACTIONS(1104), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42735,7 +42798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1104), 15, + ACTIONS(1106), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42751,11 +42814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [3075] = 3, + [3144] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1329), 8, + ACTIONS(1334), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -42764,7 +42827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1327), 33, + ACTIONS(1332), 33, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -42798,11 +42861,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3125] = 3, + [3194] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1333), 8, + ACTIONS(1338), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -42811,7 +42874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1331), 33, + ACTIONS(1336), 33, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -42845,23 +42908,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3175] = 7, - ACTIONS(1339), 1, + [3244] = 7, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1342), 1, + ACTIONS(1347), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(777), 4, + STATE(797), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1335), 9, + ACTIONS(1340), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -42871,7 +42934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1337), 23, + ACTIONS(1342), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42895,22 +42958,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3232] = 16, + [3301] = 16, ACTIONS(301), 1, anon_sym_AT, ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1350), 1, anon_sym_RPAREN, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(692), 1, + STATE(691), 1, sym_modifiers, - STATE(708), 1, + STATE(711), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -42921,14 +42984,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(984), 2, + STATE(1019), 2, sym_formal_parameter, sym_spread_parameter, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(513), 4, + STATE(525), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -42953,68 +43016,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3306] = 3, + [3375] = 15, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1126), 1, + sym_identifier, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(691), 1, + sym_modifiers, + STATE(711), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1285), 14, - 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_COLON, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1287), 24, - 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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [3353] = 16, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(1084), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(525), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(299), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3446] = 16, ACTIONS(301), 1, anon_sym_AT, ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(678), 1, + STATE(680), 1, sym_modifiers, - STATE(709), 1, + STATE(712), 1, sym__unannotated_type, - STATE(854), 1, + STATE(868), 1, sym_catch_type, - STATE(1190), 1, + STATE(1241), 1, sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, @@ -43025,11 +43100,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(513), 4, + STATE(525), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -43054,67 +43129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3426] = 15, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1165), 1, - sym_identifier, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(692), 1, - sym_modifiers, - STATE(708), 1, - sym__unannotated_type, + [3519] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(1106), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(513), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(299), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [3497] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1347), 14, + ACTIONS(1352), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43129,7 +43148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1349), 24, + ACTIONS(1354), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43154,17 +43173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3544] = 6, - ACTIONS(1351), 1, + [3566] = 6, + ACTIONS(1356), 1, anon_sym_LT, - ACTIONS(1354), 1, + ACTIONS(1359), 1, anon_sym_DOT, - STATE(409), 1, + STATE(411), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1098), 12, + ACTIONS(1100), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -43177,7 +43196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1122), 23, + ACTIONS(1124), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43201,7 +43220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3597] = 3, + [3619] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -43245,11 +43264,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [3644] = 3, + [3666] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(800), 12, + ACTIONS(874), 12, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, @@ -43262,7 +43281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_SEMI, anon_sym_AT, - ACTIONS(802), 26, + ACTIONS(876), 26, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -43289,30 +43308,26 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [3691] = 6, - ACTIONS(1360), 1, - anon_sym_LT, - ACTIONS(1363), 1, - anon_sym_DOT, - STATE(406), 1, - sym_type_arguments, + [3713] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 12, + ACTIONS(1292), 14, 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_COLON, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1358), 23, + ACTIONS(1294), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43328,68 +43343,28 @@ 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_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3744] = 6, - ACTIONS(1367), 1, - anon_sym_LPAREN, - ACTIONS(1371), 1, - anon_sym_DOT, - STATE(444), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1369), 3, + [3760] = 6, + ACTIONS(1365), 1, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1365), 31, - 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_final, - 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, - [3796] = 3, + ACTIONS(1368), 1, + anon_sym_DOT, + STATE(403), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1373), 13, + ACTIONS(1361), 12, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -43400,7 +43375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1375), 24, + ACTIONS(1363), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43421,15 +43396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3842] = 3, + [3813] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1377), 13, + ACTIONS(1370), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43443,7 +43417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1379), 24, + ACTIONS(1372), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43468,11 +43442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3888] = 3, + [3859] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1381), 13, + ACTIONS(1374), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43486,7 +43460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1383), 24, + ACTIONS(1376), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43511,11 +43485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3934] = 3, + [3905] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 13, + ACTIONS(1378), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43529,7 +43503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1387), 24, + ACTIONS(1380), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43554,11 +43528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3980] = 3, + [3951] = 4, + ACTIONS(1368), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1389), 13, + ACTIONS(1361), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43572,7 +43548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1391), 24, + ACTIONS(1363), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43593,25 +43569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4026] = 6, - ACTIONS(1367), 1, + [3999] = 6, + ACTIONS(1384), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1388), 1, anon_sym_DOT, - STATE(445), 1, + STATE(428), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 3, + ACTIONS(1386), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1393), 31, + ACTIONS(1382), 31, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -43643,11 +43618,57 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4078] = 3, + [4051] = 6, + ACTIONS(1384), 1, + anon_sym_LPAREN, + ACTIONS(1394), 1, + anon_sym_DOT, + STATE(436), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1399), 13, + ACTIONS(1392), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1390), 31, + 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_final, + 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, + [4103] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1396), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43661,7 +43682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1401), 24, + ACTIONS(1398), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43686,11 +43707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4124] = 3, + [4149] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1403), 13, + ACTIONS(1400), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43704,7 +43725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1405), 24, + ACTIONS(1402), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43729,13 +43750,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4170] = 4, - ACTIONS(1363), 1, + [4195] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1404), 13, + 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_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1406), 24, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4241] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 13, + ACTIONS(1408), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43749,7 +43811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1358), 23, + ACTIONS(1410), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43770,14 +43832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4218] = 3, + [4287] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1407), 13, + ACTIONS(1412), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43791,7 +43854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1409), 24, + ACTIONS(1414), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43816,11 +43879,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4264] = 3, + [4333] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1411), 13, + ACTIONS(1416), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43834,7 +43897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1413), 24, + ACTIONS(1418), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43859,11 +43922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4310] = 3, + [4379] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 13, + ACTIONS(1361), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43877,7 +43940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1417), 23, + ACTIONS(1363), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43901,11 +43964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4355] = 3, + [4424] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 13, + ACTIONS(1420), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43919,7 +43982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1358), 23, + ACTIONS(1422), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43943,11 +44006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4400] = 3, + [4469] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 13, + ACTIONS(1424), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43961,7 +44024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1421), 23, + ACTIONS(1426), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43985,11 +44048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4445] = 3, + [4514] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 13, + ACTIONS(1428), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44003,7 +44066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1425), 23, + ACTIONS(1430), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44027,15 +44090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4490] = 5, - ACTIONS(1431), 1, + [4559] = 5, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(476), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 9, + ACTIONS(1432), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44045,7 +44108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1429), 24, + ACTIONS(1434), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44070,60 +44133,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4538] = 7, - ACTIONS(1440), 1, - anon_sym_AT, - ACTIONS(1443), 1, - anon_sym_non_DASHsealed, + [4607] = 5, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(477), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 2, + ACTIONS(1438), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_ATinterface, - STATE(419), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1437), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1433), 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, - [4590] = 5, - ACTIONS(1431), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1440), 24, + 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_RBRACE, + anon_sym_SEMI, + [4655] = 5, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(466), 1, + STATE(475), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1446), 9, + ACTIONS(1442), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44133,7 +44194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1448), 24, + ACTIONS(1444), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44158,15 +44219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4638] = 5, - ACTIONS(1431), 1, + [4703] = 5, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(465), 1, + STATE(486), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1450), 9, + ACTIONS(1446), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44176,7 +44237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1452), 24, + ACTIONS(1448), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44201,66 +44262,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4686] = 5, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(470), 1, - sym_class_body, + [4751] = 7, + ACTIONS(1457), 1, + anon_sym_AT, + ACTIONS(1460), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1454), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1452), 2, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1456), 24, - 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_RBRACE, - anon_sym_SEMI, - [4734] = 7, + anon_sym_ATinterface, + STATE(423), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1454), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + ACTIONS(1450), 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, + [4803] = 7, ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1464), 1, + ACTIONS(1469), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1460), 2, + ACTIONS(1465), 2, anon_sym_LT, anon_sym_ATinterface, - STATE(419), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1462), 13, + ACTIONS(1467), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -44274,7 +44337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - ACTIONS(1458), 14, + ACTIONS(1463), 14, anon_sym_class, anon_sym_enum, anon_sym_record, @@ -44289,23 +44352,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4786] = 3, + [4855] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1468), 3, + ACTIONS(1473), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1466), 31, + ACTIONS(1471), 28, 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, @@ -44329,23 +44392,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4829] = 3, + [4898] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1472), 6, + ACTIONS(1477), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1470), 28, + ACTIONS(1475), 31, 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, @@ -44369,11 +44432,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4872] = 3, + [4941] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1474), 9, + ACTIONS(1479), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44383,7 +44446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1476), 25, + ACTIONS(1481), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44409,63 +44472,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4915] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1307), 13, - 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_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1309), 21, - 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_RBRACE, - anon_sym_SEMI, - [4958] = 3, + [4984] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 6, + ACTIONS(1485), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1478), 28, + ACTIONS(1483), 31, 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, @@ -44489,65 +44512,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5001] = 5, - ACTIONS(1482), 1, - sym_identifier, + [5027] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1488), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - ACTIONS(1484), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1489), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - ACTIONS(1486), 21, - 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [5048] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1492), 3, - anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1490), 31, + ACTIONS(1487), 28, 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, @@ -44571,18 +44552,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5091] = 3, + [5070] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1496), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1494), 28, + ACTIONS(1491), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44611,11 +44592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5134] = 3, + [5113] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1498), 9, + ACTIONS(1495), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44625,7 +44606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1500), 25, + ACTIONS(1497), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44651,18 +44632,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5177] = 3, + [5156] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1504), 6, + ACTIONS(1316), 13, + 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_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1318), 21, + 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_RBRACE, + anon_sym_SEMI, + [5199] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1501), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1502), 28, + ACTIONS(1499), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44691,18 +44712,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5220] = 3, + [5242] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1508), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1506), 28, + ACTIONS(1503), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44731,23 +44752,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5263] = 3, + [5285] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1512), 6, + ACTIONS(1509), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1510), 28, + ACTIONS(1507), 31, 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, @@ -44771,23 +44792,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5306] = 3, + [5328] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1516), 6, + ACTIONS(1513), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1514), 28, + ACTIONS(1511), 31, 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, @@ -44811,18 +44832,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5349] = 3, + [5371] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1520), 6, + ACTIONS(1517), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1518), 28, + ACTIONS(1515), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44851,23 +44872,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5392] = 3, + [5414] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1524), 6, + ACTIONS(1521), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1522), 28, + ACTIONS(1519), 31, 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, @@ -44891,58 +44912,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5435] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1526), 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(1528), 25, - 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_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - [5478] = 3, + [5457] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1532), 6, + ACTIONS(1525), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1530), 28, + ACTIONS(1523), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44971,18 +44952,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5521] = 3, + [5500] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1536), 6, + ACTIONS(1529), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1534), 28, + ACTIONS(1527), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -45011,11 +44992,57 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5564] = 3, + [5543] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1538), 9, + ACTIONS(1533), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1531), 28, + 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_final, + 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, + [5586] = 5, + ACTIONS(1535), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1541), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1537), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45024,8 +45051,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, + anon_sym_instanceof, + ACTIONS(1539), 21, + 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, - ACTIONS(1540), 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [5633] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1543), 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(1545), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45051,63 +45114,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [5607] = 3, + [5676] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1544), 6, + ACTIONS(1547), 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(1549), 25, + 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_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1542), 28, - 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_final, - 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, - [5650] = 3, + [5719] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1548), 3, + ACTIONS(1553), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1546), 31, + ACTIONS(1551), 28, 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, @@ -45131,23 +45194,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5693] = 3, + [5762] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1552), 3, + ACTIONS(1557), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1550), 31, + ACTIONS(1555), 28, 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, @@ -45171,23 +45234,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5736] = 3, + [5805] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 3, + ACTIONS(1561), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1554), 31, + ACTIONS(1559), 28, 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, @@ -45211,18 +45274,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5779] = 3, + [5848] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1560), 6, + ACTIONS(1565), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1558), 28, + ACTIONS(1563), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -45251,18 +45314,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5822] = 3, + [5891] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1564), 6, + ACTIONS(1569), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1562), 28, + ACTIONS(1567), 28, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -45291,11 +45354,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5865] = 3, + [5934] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1566), 9, + ACTIONS(1571), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45305,7 +45368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1568), 25, + ACTIONS(1573), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45331,11 +45394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [5908] = 3, + [5977] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1570), 9, + ACTIONS(1575), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45345,7 +45408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1572), 24, + ACTIONS(1577), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45370,11 +45433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5950] = 3, + [6019] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1574), 9, + ACTIONS(1579), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45384,7 +45447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1576), 24, + ACTIONS(1581), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45409,11 +45472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5992] = 3, + [6061] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1578), 9, + ACTIONS(1583), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45423,7 +45486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1580), 24, + ACTIONS(1585), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45448,11 +45511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6034] = 3, + [6103] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1582), 9, + ACTIONS(1587), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45462,7 +45525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1584), 24, + ACTIONS(1589), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45487,11 +45550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6076] = 3, + [6145] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1586), 9, + ACTIONS(1591), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45501,7 +45564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1588), 24, + ACTIONS(1593), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45526,11 +45589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6118] = 3, + [6187] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1102), 9, + ACTIONS(1595), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45540,7 +45603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1104), 24, + ACTIONS(1597), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45565,11 +45628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6160] = 3, + [6229] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1590), 9, + ACTIONS(1599), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45579,7 +45642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1592), 24, + ACTIONS(1601), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45604,11 +45667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6202] = 3, + [6271] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1594), 9, + ACTIONS(1603), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45618,7 +45681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1596), 24, + ACTIONS(1605), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45643,17 +45706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6244] = 6, - ACTIONS(1598), 1, - anon_sym_LBRACK, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_COLON_COLON, + [6313] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(285), 9, + ACTIONS(1607), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45663,7 +45720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(287), 21, + ACTIONS(1609), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45682,14 +45739,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_RBRACE, anon_sym_SEMI, - [6292] = 3, + [6355] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 9, + ACTIONS(1611), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45699,7 +45759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1606), 24, + ACTIONS(1613), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45724,52 +45784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6334] = 5, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1615), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1613), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1608), 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(1611), 17, - 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_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - [6380] = 3, + [6397] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1617), 9, + ACTIONS(1615), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45779,7 +45798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1619), 24, + ACTIONS(1617), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45804,52 +45823,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6422] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(428), 1, - sym_block, + [6439] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1615), 3, + ACTIONS(1619), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1611), 28, - 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_final, - 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, - [6468] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1621), 24, + 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_RBRACE, + anon_sym_SEMI, + [6481] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1621), 9, + ACTIONS(1623), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45859,7 +45876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1623), 24, + ACTIONS(1625), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45884,11 +45901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6510] = 3, + [6523] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1625), 9, + ACTIONS(1627), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45898,7 +45915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1627), 24, + ACTIONS(1629), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45923,11 +45940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6552] = 3, + [6565] = 5, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1629), 9, + ACTIONS(1638), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1636), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1631), 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(1634), 17, + 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_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + [6611] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1640), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45937,7 +45995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1631), 24, + ACTIONS(1642), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45962,11 +46020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6594] = 3, + [6653] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1633), 9, + ACTIONS(1644), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45976,7 +46034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1635), 24, + ACTIONS(1646), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46001,11 +46059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6636] = 3, + [6695] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1637), 9, + ACTIONS(1648), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46015,7 +46073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1639), 24, + ACTIONS(1650), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46040,11 +46098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6678] = 3, + [6737] = 6, + ACTIONS(1652), 1, + anon_sym_LBRACK, + ACTIONS(1654), 1, + anon_sym_DOT, + ACTIONS(1656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1641), 9, + ACTIONS(285), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46054,7 +46118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1643), 24, + ACTIONS(287), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46073,56 +46137,55 @@ 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_RBRACE, anon_sym_SEMI, - [6720] = 3, + [6785] = 5, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1645), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1638), 3, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1647), 24, - 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_RBRACE, - anon_sym_SEMI, - [6762] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1634), 28, + 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_final, + 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, + [6831] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1649), 9, + ACTIONS(1658), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46132,7 +46195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1651), 24, + ACTIONS(1660), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46157,11 +46220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6804] = 3, + [6873] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1653), 9, + ACTIONS(1662), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46171,7 +46234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1655), 24, + ACTIONS(1664), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46196,11 +46259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6846] = 3, + [6915] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1657), 9, + ACTIONS(1104), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46210,7 +46273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1659), 24, + ACTIONS(1106), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46235,11 +46298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6888] = 3, + [6957] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1661), 9, + ACTIONS(1666), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46249,7 +46312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1663), 24, + ACTIONS(1668), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46274,11 +46337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6930] = 3, + [6999] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1665), 9, + ACTIONS(1670), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46288,7 +46351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1667), 24, + ACTIONS(1672), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46313,11 +46376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6972] = 3, + [7041] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1669), 9, + ACTIONS(1674), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46327,7 +46390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1671), 24, + ACTIONS(1676), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46352,11 +46415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7014] = 3, + [7083] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1673), 9, + ACTIONS(1678), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46366,7 +46429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1675), 24, + ACTIONS(1680), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46391,11 +46454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7056] = 3, + [7125] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1677), 9, + ACTIONS(1682), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46405,7 +46468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1679), 24, + ACTIONS(1684), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46430,11 +46493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7098] = 3, + [7167] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1681), 9, + ACTIONS(1686), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46444,7 +46507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1683), 24, + ACTIONS(1688), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46469,11 +46532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7140] = 3, + [7209] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1685), 9, + ACTIONS(1690), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46483,7 +46546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1687), 24, + ACTIONS(1692), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46508,11 +46571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7182] = 3, + [7251] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1689), 9, + ACTIONS(1694), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46522,7 +46585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1691), 24, + ACTIONS(1696), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46547,11 +46610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7224] = 3, + [7293] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1693), 9, + ACTIONS(1698), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46561,7 +46624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1695), 24, + ACTIONS(1700), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46586,11 +46649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7266] = 3, + [7335] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1697), 9, + ACTIONS(1702), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46600,7 +46663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1699), 24, + ACTIONS(1704), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46625,11 +46688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7308] = 3, + [7377] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1701), 9, + ACTIONS(1706), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46639,7 +46702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1703), 24, + ACTIONS(1708), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46664,11 +46727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7350] = 3, + [7419] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1705), 9, + ACTIONS(1710), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46678,7 +46741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1707), 24, + ACTIONS(1712), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46703,11 +46766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7392] = 3, + [7461] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1709), 9, + ACTIONS(1714), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46717,7 +46780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1711), 24, + ACTIONS(1716), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46742,18 +46805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7434] = 5, - ACTIONS(1004), 1, - anon_sym_LPAREN, - STATE(1107), 1, - sym_parenthesized_expression, + [7503] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1615), 2, + ACTIONS(1720), 5, + anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1611), 28, + ACTIONS(1718), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46770,7 +46832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_record, anon_sym_interface, anon_sym_byte, anon_sym_short, @@ -46782,17 +46843,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7479] = 3, + [7544] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1715), 5, + ACTIONS(1724), 5, anon_sym_LT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1713), 27, + ACTIONS(1722), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46820,17 +46881,166 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7520] = 3, + [7585] = 5, + ACTIONS(1018), 1, + anon_sym_LPAREN, + STATE(1121), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1719), 5, - anon_sym_LT, - anon_sym_RBRACE, + ACTIONS(1638), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1634), 28, + 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_final, + 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, + [7630] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1380), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1378), 19, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + 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, + [7670] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1414), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1412), 19, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + 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, + [7710] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1410), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1408), 19, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + 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, + [7750] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1728), 3, + anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1717), 27, + ACTIONS(1726), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46858,161 +47068,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7561] = 3, + [7789] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1403), 19, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - 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, - [7601] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1391), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1389), 19, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - 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, - [7641] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1383), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1381), 19, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - 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, - [7681] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1723), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1721), 27, - 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_final, - 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, - [7720] = 4, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1725), 8, + ACTIONS(1730), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47021,7 +47081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1727), 20, + ACTIONS(1732), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47039,14 +47099,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_RBRACE, anon_sym_SEMI, - [7761] = 3, + [7828] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1731), 8, + ACTIONS(285), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47055,7 +47117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1733), 22, + ACTIONS(287), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47078,11 +47140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7800] = 3, + [7867] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 8, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1734), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47091,7 +47156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1737), 22, + ACTIONS(1736), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47109,52 +47174,14 @@ 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_RBRACE, anon_sym_SEMI, - [7839] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1741), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1739), 27, - 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_final, - 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, - [7878] = 3, + [7908] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 8, + ACTIONS(1730), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47163,7 +47190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1745), 22, + ACTIONS(1732), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47186,87 +47213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7917] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1749), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1747), 27, - 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_final, - 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, - [7956] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1753), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1751), 27, - 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_final, - 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, - [7995] = 3, + [7947] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 3, + ACTIONS(1742), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1755), 27, + ACTIONS(1740), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -47294,11 +47249,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8034] = 3, + [7986] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1759), 8, + ACTIONS(1744), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47307,7 +47262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1761), 22, + ACTIONS(1746), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47330,11 +47285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8073] = 3, + [8025] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1763), 8, + ACTIONS(1748), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47343,7 +47298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1765), 22, + ACTIONS(1750), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47366,14 +47321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8112] = 4, + [8064] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1767), 8, + ACTIONS(1752), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47382,7 +47334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1769), 20, + ACTIONS(1754), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47400,14 +47352,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_RBRACE, anon_sym_SEMI, - [8153] = 3, + [8103] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1759), 8, + ACTIONS(1756), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47416,7 +47370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1761), 22, + ACTIONS(1758), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47439,48 +47393,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8192] = 4, + [8142] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1771), 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(1773), 20, - 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_RBRACK, + ACTIONS(1762), 3, anon_sym_RBRACE, - anon_sym_SEMI, - [8233] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1760), 27, + 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_final, + 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, + [8181] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(285), 8, + ACTIONS(1766), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1764), 27, + 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_final, + 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, + [8220] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1770), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1768), 27, + 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_final, + 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, + [8259] = 4, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1772), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47489,7 +47517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(287), 22, + ACTIONS(1774), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47507,20 +47535,18 @@ 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_RBRACE, anon_sym_SEMI, - [8272] = 3, + [8300] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 3, + ACTIONS(1778), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1775), 27, + ACTIONS(1776), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -47548,11 +47574,48 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8311] = 3, + [8339] = 4, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1780), 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(1782), 20, + 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_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8380] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1779), 8, + ACTIONS(1784), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47561,7 +47624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1781), 22, + ACTIONS(1786), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47584,15 +47647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8350] = 3, + [8419] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 3, + ACTIONS(1790), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1783), 27, + ACTIONS(1788), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -47620,15 +47683,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8389] = 3, + [8458] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1789), 3, + ACTIONS(1794), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1787), 27, + ACTIONS(1792), 27, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -47656,82 +47719,123 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8428] = 18, - ACTIONS(1791), 1, + [8497] = 15, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1814), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1782), 9, + 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_RBRACE, + anon_sym_SEMI, + [8559] = 12, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1780), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1798), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1800), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1781), 6, + ACTIONS(1782), 12, 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_RBRACE, anon_sym_SEMI, - [8496] = 9, - ACTIONS(1807), 1, + [8615] = 9, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1767), 4, + ACTIONS(1780), 4, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, - ACTIONS(1769), 15, + ACTIONS(1782), 15, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47747,116 +47851,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8546] = 6, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1823), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(526), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1458), 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(1821), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [8590] = 18, - ACTIONS(1791), 1, + [8665] = 16, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1825), 6, + ACTIONS(1782), 8, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8658] = 7, - ACTIONS(1807), 1, + [8729] = 6, + ACTIONS(1808), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1767), 5, + ACTIONS(1780), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1769), 17, + ACTIONS(1782), 17, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47874,354 +47937,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8704] = 6, - ACTIONS(1827), 1, - anon_sym_LPAREN, - ACTIONS(1829), 1, - anon_sym_DOT, - STATE(541), 1, - sym_annotation_argument_list, + [8773] = 18, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1365), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [8748] = 14, - ACTIONS(1767), 1, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1798), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1800), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1802), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1814), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1786), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8841] = 15, + ACTIONS(1780), 1, anon_sym_PIPE, - ACTIONS(1791), 1, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1815), 1, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 10, + ACTIONS(1782), 9, 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_RBRACE, anon_sym_SEMI, - [8808] = 5, - ACTIONS(1100), 1, - anon_sym_LPAREN, - STATE(1204), 1, - sym_argument_list, + [8903] = 14, + ACTIONS(1780), 1, + anon_sym_PIPE, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1102), 8, - anon_sym_AMP, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1104), 19, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + ACTIONS(1782), 10, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + 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_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_SEMI, - [8850] = 18, - ACTIONS(1791), 1, + [8963] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1831), 6, + ACTIONS(1826), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8918] = 15, - ACTIONS(1767), 1, - anon_sym_PIPE, - ACTIONS(1791), 1, + [9031] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1811), 1, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 9, + ACTIONS(1758), 6, 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_RBRACE, anon_sym_SEMI, - [8980] = 16, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1807), 1, + [9099] = 7, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1780), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1782), 17, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1813), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 8, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9044] = 15, - ACTIONS(1791), 1, + [9145] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 9, + ACTIONS(1828), 6, 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_RBRACE, anon_sym_SEMI, - [9106] = 12, - ACTIONS(1807), 1, + [9213] = 13, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1767), 2, + ACTIONS(1780), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1803), 2, + ACTIONS(1802), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 12, + ACTIONS(1782), 10, anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -48231,21 +48314,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9162] = 6, - ACTIONS(1827), 1, - anon_sym_LPAREN, - ACTIONS(1833), 1, - anon_sym_DOT, - STATE(568), 1, - sym_annotation_argument_list, + [9271] = 6, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1832), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1393), 23, + STATE(527), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1463), 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(1830), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -48259,75 +48352,70 @@ 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, - [9206] = 13, - ACTIONS(1807), 1, + [9315] = 18, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1815), 1, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1767), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 10, + ACTIONS(1834), 6, 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_RBRACE, anon_sym_SEMI, - [9264] = 6, - ACTIONS(1838), 1, + [9383] = 6, + ACTIONS(1839), 1, anon_sym_AT, - ACTIONS(1841), 1, + ACTIONS(1842), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(526), 4, + STATE(527), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1433), 10, + ACTIONS(1450), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -48338,7 +48426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1835), 13, + ACTIONS(1836), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -48352,193 +48440,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [9308] = 18, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, - anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, + [9427] = 6, + ACTIONS(1845), 1, + anon_sym_LPAREN, + ACTIONS(1847), 1, + anon_sym_DOT, + STATE(551), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1793), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1795), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1745), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [9376] = 18, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, - anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, + ACTIONS(1386), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1382), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [9471] = 6, + ACTIONS(1845), 1, + anon_sym_LPAREN, + ACTIONS(1849), 1, + anon_sym_DOT, + STATE(552), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1793), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1795), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1844), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [9444] = 6, - ACTIONS(1807), 1, - anon_sym_SLASH, + ACTIONS(1392), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1390), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [9515] = 5, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(1217), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1805), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1767), 7, + ACTIONS(1104), 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(1769), 17, - anon_sym_RPAREN, + ACTIONS(1106), 19, 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_RBRACE, - anon_sym_SEMI, - [9488] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LBRACK, - STATE(532), 1, - aux_sym_dimensions_repeat1, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + [9557] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1297), 10, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1295), 11, - anon_sym_COLON, + ACTIONS(1334), 5, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1332), 23, anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, - [9533] = 3, + [9594] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1329), 5, + ACTIONS(1338), 5, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1327), 23, + ACTIONS(1336), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -48562,22 +48621,22 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9570] = 7, - ACTIONS(1292), 1, + [9631] = 7, + ACTIONS(1299), 1, anon_sym_AT, - ACTIONS(1848), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - STATE(532), 1, + STATE(533), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1287), 10, + ACTIONS(1294), 10, anon_sym_AMP, anon_sym_RPAREN, anon_sym_EQ, @@ -48588,7 +48647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - ACTIONS(1285), 11, + ACTIONS(1292), 11, anon_sym_COLON, anon_sym_DOT, anon_sym_default, @@ -48600,46 +48659,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - [9615] = 3, + [9676] = 7, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1854), 1, + anon_sym_LBRACK, + STATE(533), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1333), 5, - anon_sym_LPAREN, - anon_sym_LBRACK, + STATE(779), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1281), 10, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1279), 11, + anon_sym_COLON, anon_sym_DOT, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1331), 23, anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, sym_identifier, - [9652] = 6, - ACTIONS(1598), 1, + [9721] = 6, + ACTIONS(1652), 1, anon_sym_LBRACK, - ACTIONS(1602), 1, + ACTIONS(1656), 1, anon_sym_COLON_COLON, - ACTIONS(1851), 1, + ACTIONS(1856), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, @@ -48670,120 +48733,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - [9694] = 20, - ACTIONS(1817), 1, + [9763] = 20, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_AMP_AMP, - ACTIONS(1863), 1, + ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1869), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_COMMA, - ACTIONS(1883), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - STATE(902), 1, + STATE(925), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1879), 2, + ACTIONS(1884), 2, anon_sym_DASH_GT, anon_sym_COLON, - [9764] = 18, - ACTIONS(1791), 1, + [9833] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1885), 4, + ACTIONS(1890), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [9830] = 15, - ACTIONS(342), 1, + [9899] = 13, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1874), 1, + anon_sym_SLASH, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1780), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1864), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1870), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1872), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1880), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1782), 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, + [9954] = 15, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1887), 1, + ACTIONS(1892), 1, anon_sym_GT, - ACTIONS(1889), 1, + ACTIONS(1894), 1, anon_sym_QMARK, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, ACTIONS(3), 2, sym_line_comment, @@ -48794,14 +48899,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(954), 2, + STATE(1027), 2, sym_wildcard, sym__type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(639), 4, + STATE(642), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -48812,132 +48917,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [9889] = 12, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1891), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_COMMA, - ACTIONS(1895), 1, - anon_sym_RBRACE, - ACTIONS(1897), 1, - anon_sym_SEMI, - STATE(852), 1, - sym_enum_constant, - STATE(1183), 1, - sym_enum_body_declarations, - STATE(1185), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(513), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [9942] = 15, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1853), 1, + [10013] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1869), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, + ACTIONS(1884), 1, + anon_sym_COLON, + ACTIONS(1896), 1, + anon_sym_COMMA, + STATE(1039), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 6, + [10082] = 20, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, anon_sym_AMP_AMP, + ACTIONS(1822), 1, anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(1824), 1, anon_sym_QMARK, - anon_sym_COLON, - [10001] = 3, + ACTIONS(1898), 1, + anon_sym_RPAREN, + ACTIONS(1900), 1, + anon_sym_COMMA, + STATE(1002), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1901), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1899), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10036] = 3, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1798), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1800), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1802), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1814), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10151] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1548), 3, + ACTIONS(1521), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1546), 23, + ACTIONS(1519), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -48961,414 +49047,503 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10071] = 4, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(281), 2, - anon_sym_while, - anon_sym_else, - ACTIONS(285), 8, + [10186] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1808), 1, anon_sym_SLASH, + ACTIONS(1810), 1, anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(287), 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, + ACTIONS(1812), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - [10108] = 20, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1820), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, + ACTIONS(1822), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, - anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1903), 1, - anon_sym_RPAREN, - ACTIONS(1905), 1, - anon_sym_COMMA, - STATE(1058), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10177] = 20, - ACTIONS(1791), 1, + ACTIONS(1902), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [10251] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1907), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1909), 1, - anon_sym_RBRACE, - STATE(973), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(1904), 1, + anon_sym_RPAREN, + STATE(1013), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10246] = 18, - ACTIONS(1791), 1, + [10320] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1908), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1906), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [10355] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(1912), 1, + anon_sym_RBRACE, + STATE(1020), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1911), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [10311] = 20, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + [10424] = 9, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(1913), 1, - anon_sym_COMMA, - ACTIONS(1915), 1, - anon_sym_SEMI, - STATE(1026), 1, - aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1795), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10380] = 15, - ACTIONS(1767), 1, - anon_sym_PIPE, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1853), 1, + ACTIONS(1780), 4, anon_sym_AMP, - ACTIONS(1869), 1, - anon_sym_SLASH, - ACTIONS(1873), 1, - anon_sym_CARET, - ACTIONS(1877), 1, - anon_sym_GT_GT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1855), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + anon_sym_PIPE, + ACTIONS(1782), 12, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1875), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1769), 6, 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, - [10439] = 14, - ACTIONS(1767), 1, - anon_sym_PIPE, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1853), 1, + [10471] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1869), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1877), 1, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1914), 1, + anon_sym_RPAREN, + STATE(965), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 7, + [10540] = 20, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, anon_sym_AMP_AMP, + ACTIONS(1822), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(1824), 1, anon_sym_QMARK, - anon_sym_COLON, - [10496] = 7, - ACTIONS(1869), 1, - anon_sym_SLASH, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1916), 1, + anon_sym_RPAREN, + STATE(1048), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1767), 5, - anon_sym_AMP, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1769), 14, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + [10609] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1920), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1918), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [10644] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1485), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1483), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [10679] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1513), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1511), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [10714] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1924), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1922), 23, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + 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, + [10749] = 18, + ACTIONS(1818), 1, anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [10539] = 20, - ACTIONS(1791), 1, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1866), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, + ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(1917), 1, - anon_sym_RPAREN, - STATE(1052), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10608] = 3, + ACTIONS(1926), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10814] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1492), 3, + ACTIONS(1509), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1490), 23, + ACTIONS(1507), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -49392,608 +49567,585 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10643] = 12, - ACTIONS(1817), 1, + [10849] = 18, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1858), 1, + anon_sym_AMP, + ACTIONS(1866), 1, + anon_sym_AMP_AMP, + ACTIONS(1868), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1877), 1, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1882), 1, anon_sym_GT_GT, + ACTIONS(1888), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1767), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1865), 2, + ACTIONS(1864), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 9, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1834), 3, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - [10696] = 18, - ACTIONS(1791), 1, + [10914] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(1930), 1, + anon_sym_SEMI, + STATE(1049), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1919), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [10761] = 20, - ACTIONS(1791), 1, + [10983] = 18, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1866), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, + ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_RPAREN, - STATE(1049), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10830] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1925), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1923), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10865] = 20, - ACTIONS(1791), 1, + ACTIONS(1786), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [11048] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1927), 1, + ACTIONS(1932), 1, anon_sym_RPAREN, - STATE(1019), 1, + STATE(964), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10934] = 20, - ACTIONS(1791), 1, + [11117] = 12, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1874), 1, + anon_sym_SLASH, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1780), 2, anon_sym_AMP, - ACTIONS(1799), 1, + anon_sym_PIPE, + ACTIONS(1860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1870), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1872), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1880), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1782), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1801), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + anon_sym_CARET, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [11170] = 20, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1929), 1, + ACTIONS(1934), 1, anon_sym_RPAREN, - STATE(969), 1, + STATE(979), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11003] = 20, - ACTIONS(1791), 1, + [11239] = 18, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1866), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, + ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(1931), 1, - anon_sym_RPAREN, - STATE(981), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11072] = 20, - ACTIONS(1791), 1, + ACTIONS(1826), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [11304] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1933), 1, + ACTIONS(1936), 1, anon_sym_RPAREN, - STATE(1043), 1, + STATE(967), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11141] = 20, - ACTIONS(1791), 1, + [11373] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1935), 1, + ACTIONS(1938), 1, anon_sym_RPAREN, - STATE(996), 1, + STATE(974), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11210] = 20, - ACTIONS(1791), 1, + [11442] = 18, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1866), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, + ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1879), 1, - anon_sym_COLON, - ACTIONS(1937), 1, - anon_sym_COMMA, - STATE(1022), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11279] = 20, - ACTIONS(1791), 1, + ACTIONS(1758), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [11507] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1939), 1, + ACTIONS(1940), 1, anon_sym_RPAREN, - STATE(1037), 1, + STATE(953), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11348] = 20, - ACTIONS(1791), 1, + [11576] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(1941), 1, - anon_sym_RPAREN, - STATE(983), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11417] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1945), 3, + ACTIONS(1926), 3, anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1943), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [11452] = 3, + anon_sym_COMMA, + anon_sym_COLON, + [11641] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1468), 3, - anon_sym_LBRACK, + ACTIONS(1944), 3, + anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1466), 23, + ACTIONS(1942), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -50017,111 +50169,176 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11487] = 20, - ACTIONS(1791), 1, + [11676] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1896), 1, anon_sym_COMMA, - ACTIONS(1947), 1, + ACTIONS(1946), 1, anon_sym_RPAREN, - STATE(1014), 1, - aux_sym_for_statement_repeat2, + STATE(1045), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11556] = 18, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1853), 1, + [11745] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_AMP_AMP, - ACTIONS(1863), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1869), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1883), 1, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1948), 1, + anon_sym_RPAREN, + STATE(1030), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1911), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11621] = 3, + [11814] = 15, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1894), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, + anon_sym_GT, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(686), 1, + sym__unannotated_type, + STATE(759), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1552), 3, - anon_sym_LBRACK, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(1022), 2, + sym_wildcard, + sym__type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(642), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [11873] = 12, + ACTIONS(301), 1, anon_sym_AT, + ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1550), 23, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, + anon_sym_COMMA, + ACTIONS(1956), 1, + anon_sym_RBRACE, + ACTIONS(1958), 1, + anon_sym_SEMI, + STATE(881), 1, + sym_enum_constant, + STATE(1205), 1, + sym_modifiers, + STATE(1209), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(525), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(299), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -50135,888 +50352,685 @@ 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, - [11656] = 18, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1853), 1, + [11926] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_AMP_AMP, - ACTIONS(1863), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1869), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1883), 1, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1960), 1, + anon_sym_RPAREN, + STATE(956), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1875), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1825), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11721] = 9, - ACTIONS(1869), 1, - anon_sym_SLASH, - ACTIONS(1877), 1, - anon_sym_GT_GT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1767), 4, + [11995] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1769), 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, + ACTIONS(1812), 1, anon_sym_CARET, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - anon_sym_COLON, - [11768] = 13, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_SLASH, - ACTIONS(1877), 1, - anon_sym_GT_GT, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1962), 1, + anon_sym_RPAREN, + STATE(994), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1767), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 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, - [11823] = 18, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1853), 1, + [12064] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_AMP_AMP, - ACTIONS(1863), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1869), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1883), 1, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1964), 1, + anon_sym_RPAREN, + STATE(982), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1745), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11888] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1951), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1949), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [11923] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1556), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1554), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [11958] = 18, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1853), 1, + [12133] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_AMP_AMP, - ACTIONS(1863), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1869), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1883), 1, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1966), 1, + anon_sym_RPAREN, + STATE(988), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1831), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [12023] = 20, - ACTIONS(1791), 1, + [12202] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1953), 1, + ACTIONS(1968), 1, anon_sym_RPAREN, STATE(989), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12092] = 18, - ACTIONS(1817), 1, + [12271] = 18, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_AMP_AMP, - ACTIONS(1863), 1, + ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1869), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1883), 1, + ACTIONS(1888), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1781), 3, + ACTIONS(1828), 3, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, - [12157] = 20, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, - anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(1955), 1, - anon_sym_RPAREN, - STATE(993), 1, - aux_sym_for_statement_repeat2, + [12336] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(281), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(285), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(287), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1813), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12226] = 20, - ACTIONS(1791), 1, + anon_sym_instanceof, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [12373] = 15, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(1913), 1, - anon_sym_COMMA, - ACTIONS(1957), 1, - anon_sym_SEMI, - STATE(1036), 1, - aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12295] = 20, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1782), 6, anon_sym_AMP_AMP, - ACTIONS(1801), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [12432] = 20, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1905), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(1959), 1, + ACTIONS(1970), 1, anon_sym_RPAREN, - STATE(1057), 1, + STATE(991), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12364] = 20, - ACTIONS(1791), 1, + [12501] = 16, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1866), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(1961), 1, - anon_sym_RPAREN, - STATE(1044), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12433] = 15, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1889), 1, + ACTIONS(1782), 5, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(1963), 1, - anon_sym_GT, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(687), 1, - sym__unannotated_type, - STATE(758), 1, - sym_annotated_type, + anon_sym_COLON, + [12562] = 7, + ACTIONS(1874), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(952), 2, - sym_wildcard, - sym__type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(639), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12492] = 20, - ACTIONS(1791), 1, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1870), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1872), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1780), 5, anon_sym_AMP, - ACTIONS(1799), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1782), 14, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1801), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, - anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(1937), 1, + anon_sym_DASH_GT, anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_RPAREN, - STATE(976), 1, - aux_sym_argument_list_repeat1, + anon_sym_QMARK, + anon_sym_COLON, + [12605] = 6, + ACTIONS(1874), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1872), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1780), 7, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1782), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1813), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12561] = 18, - ACTIONS(1817), 1, anon_sym_instanceof, - ACTIONS(1853), 1, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [12646] = 20, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_AMP_AMP, - ACTIONS(1863), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1869), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1871), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1883), 1, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, + anon_sym_SEMI, + STATE(959), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1844), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [12626] = 16, - ACTIONS(1817), 1, + [12715] = 15, + ACTIONS(1780), 1, + anon_sym_PIPE, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_AMP_AMP, - ACTIONS(1869), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1871), 1, - anon_sym_PIPE, - ACTIONS(1873), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1877), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1857), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1867), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1875), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1769), 5, + ACTIONS(1782), 6, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [12687] = 20, - ACTIONS(1791), 1, + [12774] = 14, + ACTIONS(1780), 1, + anon_sym_PIPE, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1858), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(1967), 1, - anon_sym_RPAREN, - STATE(1048), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1870), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1872), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12756] = 6, - ACTIONS(1869), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1767), 7, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1769), 14, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1782), 7, 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, - [12797] = 11, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1891), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_SEMI, - ACTIONS(1969), 1, - anon_sym_RBRACE, - STATE(998), 1, - sym_enum_constant, - STATE(1185), 1, - sym_modifiers, - STATE(1219), 1, - sym_enum_body_declarations, + [12831] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(513), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 13, + ACTIONS(1477), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1475), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -51030,61 +51044,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [12847] = 18, - ACTIONS(1791), 1, + 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, + [12866] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1971), 2, + ACTIONS(1974), 2, anon_sym_COMMA, anon_sym_RBRACE, - [12911] = 5, - ACTIONS(1615), 1, + [12930] = 5, + ACTIONS(1638), 1, anon_sym_non_DASHsealed, - ACTIONS(1973), 1, + ACTIONS(1976), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1608), 10, + ACTIONS(1631), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -51095,7 +51119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1611), 13, + ACTIONS(1634), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -51109,73 +51133,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [12949] = 18, - ACTIONS(1791), 1, + [12968] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1976), 2, + ACTIONS(1979), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [13013] = 11, + anon_sym_COMMA, + [13032] = 11, ACTIONS(301), 1, anon_sym_AT, ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1891), 1, + ACTIONS(1952), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1958), 1, anon_sym_SEMI, - ACTIONS(1978), 1, + ACTIONS(1981), 1, anon_sym_RBRACE, - STATE(998), 1, + STATE(1052), 1, sym_enum_constant, - STATE(1176), 1, - sym_enum_body_declarations, - STATE(1185), 1, + STATE(1205), 1, sym_modifiers, + STATE(1237), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(513), 4, + STATE(525), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -51194,205 +51218,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [13063] = 18, - ACTIONS(1026), 1, - sym_identifier, - ACTIONS(1028), 1, - anon_sym_LT, - ACTIONS(1980), 1, - anon_sym_class, - ACTIONS(1982), 1, - anon_sym_enum, - ACTIONS(1984), 1, - anon_sym_record, - ACTIONS(1986), 1, - anon_sym_ATinterface, - ACTIONS(1988), 1, - anon_sym_interface, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(644), 1, - sym_type_parameters, - STATE(669), 1, - sym_generic_type, - STATE(688), 1, - sym__unannotated_type, - STATE(943), 1, - sym__constructor_declarator, - STATE(978), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13127] = 18, - ACTIONS(1791), 1, + [13082] = 19, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(1983), 1, + anon_sym_COLON, + ACTIONS(1985), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1990), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [13191] = 18, - ACTIONS(1791), 1, + [13148] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1992), 2, + ACTIONS(1890), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [13255] = 19, - ACTIONS(1791), 1, + anon_sym_COMMA, + [13212] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(1994), 1, - anon_sym_COLON, - ACTIONS(1996), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13321] = 14, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1889), 1, - anon_sym_QMARK, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(687), 1, - sym__unannotated_type, - STATE(758), 1, + ACTIONS(1987), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [13276] = 18, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1798), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1800), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1802), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1814), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1989), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [13340] = 11, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1958), 1, + anon_sym_SEMI, + ACTIONS(1991), 1, + anon_sym_RBRACE, + STATE(1052), 1, + sym_enum_constant, + STATE(1205), 1, + sym_modifiers, + STATE(1212), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(525), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(299), 13, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_final, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [13390] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1894), 1, + anon_sym_QMARK, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(686), 1, + sym__unannotated_type, + STATE(759), 1, sym_annotated_type, ACTIONS(3), 2, sym_line_comment, @@ -51403,14 +51466,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(1087), 2, + STATE(1073), 2, sym_wildcard, sym__type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(639), 4, + STATE(642), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -51421,335 +51484,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [13377] = 18, - ACTIONS(1791), 1, + [13446] = 18, + ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, + anon_sym_LT, + ACTIONS(1993), 1, + anon_sym_class, + ACTIONS(1995), 1, + anon_sym_enum, + ACTIONS(1997), 1, + anon_sym_record, + ACTIONS(1999), 1, + anon_sym_ATinterface, + ACTIONS(2001), 1, + anon_sym_interface, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(657), 1, + sym_type_parameters, + STATE(669), 1, + sym_generic_type, + STATE(688), 1, + sym__unannotated_type, + STATE(922), 1, + sym__constructor_declarator, + STATE(1009), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13510] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1885), 2, + ACTIONS(2003), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [13441] = 18, - ACTIONS(1791), 1, + anon_sym_SEMI, + [13574] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1126), 1, + sym_identifier, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(686), 1, + sym__unannotated_type, + STATE(759), 1, + sym_annotated_type, + STATE(938), 1, + sym__type, + STATE(1264), 1, + sym_type_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(654), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13629] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, + ACTIONS(2005), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1998), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [13505] = 18, - ACTIONS(1791), 1, + [13692] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2000), 1, - anon_sym_SEMI, + ACTIONS(2007), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13568] = 18, - ACTIONS(1791), 1, + [13755] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(2009), 1, + anon_sym_open, + ACTIONS(2011), 1, + anon_sym_module, + ACTIONS(2013), 1, + anon_sym_package, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(678), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13810] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2002), 1, - anon_sym_COLON, + ACTIONS(2015), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13631] = 18, - ACTIONS(1791), 1, + [13873] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2004), 1, + ACTIONS(2017), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13694] = 18, - ACTIONS(1791), 1, + [13936] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2006), 1, + ACTIONS(2019), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13757] = 14, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(1165), 1, - sym_identifier, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(687), 1, - sym__unannotated_type, - STATE(758), 1, - sym_annotated_type, - STATE(933), 1, - sym__type, - STATE(1180), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(650), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13812] = 14, - ACTIONS(342), 1, + [13999] = 14, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, - STATE(933), 1, + STATE(938), 1, sym__type, - STATE(1119), 1, + STATE(1179), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, @@ -51760,11 +51909,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -51775,958 +51924,788 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [13867] = 18, - ACTIONS(1791), 1, + [14054] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2008), 1, - anon_sym_SEMI, + ACTIONS(2021), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13930] = 18, - ACTIONS(1791), 1, + [14117] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2010), 1, + ACTIONS(2023), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13993] = 18, - ACTIONS(1791), 1, + [14180] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2012), 1, + ACTIONS(2025), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14056] = 18, - ACTIONS(1791), 1, + [14243] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2014), 1, + ACTIONS(2027), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14119] = 18, - ACTIONS(1791), 1, + [14306] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2016), 1, - anon_sym_RBRACK, + ACTIONS(2029), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14182] = 18, - ACTIONS(1791), 1, + [14369] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2018), 1, + ACTIONS(2031), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14245] = 18, - ACTIONS(1791), 1, + [14432] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(2020), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1793), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1795), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14308] = 14, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(2022), 1, - anon_sym_open, - ACTIONS(2024), 1, - anon_sym_module, - ACTIONS(2026), 1, - anon_sym_package, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(679), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14363] = 18, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1820), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, + ACTIONS(1822), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, - anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2028), 1, - anon_sym_RPAREN, + ACTIONS(2033), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14426] = 18, - ACTIONS(1791), 1, + [14495] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2030), 1, + ACTIONS(2035), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14489] = 18, - ACTIONS(1791), 1, + [14558] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2032), 1, - anon_sym_SEMI, + ACTIONS(2037), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14552] = 18, - ACTIONS(1791), 1, + [14621] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2034), 1, + ACTIONS(2039), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14615] = 14, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(1165), 1, - sym_identifier, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(687), 1, - sym__unannotated_type, - STATE(758), 1, - sym_annotated_type, - STATE(933), 1, - sym__type, - STATE(1072), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(650), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14670] = 18, - ACTIONS(1791), 1, + [14684] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(2036), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1729), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1793), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1795), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1805), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14733] = 18, - ACTIONS(1791), 1, - anon_sym_AMP, - ACTIONS(1799), 1, + ACTIONS(1820), 1, anon_sym_AMP_AMP, - ACTIONS(1801), 1, + ACTIONS(1822), 1, anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, - anon_sym_SLASH, - ACTIONS(1809), 1, - anon_sym_PIPE, - ACTIONS(1811), 1, - anon_sym_CARET, - ACTIONS(1815), 1, - anon_sym_GT_GT, - ACTIONS(1817), 1, - anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2038), 1, + ACTIONS(2041), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14796] = 18, - ACTIONS(1791), 1, + [14747] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2040), 1, - anon_sym_RPAREN, + ACTIONS(2043), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14859] = 18, - ACTIONS(1791), 1, + [14810] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2042), 1, - anon_sym_RPAREN, + ACTIONS(2045), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14922] = 18, - ACTIONS(1791), 1, + [14873] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2044), 1, + ACTIONS(2047), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14985] = 18, - ACTIONS(1791), 1, + [14936] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2046), 1, + ACTIONS(2049), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15048] = 18, - ACTIONS(1791), 1, + [14999] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2048), 1, + ACTIONS(2051), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15111] = 18, - ACTIONS(1791), 1, + [15062] = 18, + ACTIONS(1796), 1, anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_AMP_AMP, - ACTIONS(1801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1807), 1, + ACTIONS(1808), 1, anon_sym_SLASH, - ACTIONS(1809), 1, + ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1811), 1, + ACTIONS(1812), 1, anon_sym_CARET, - ACTIONS(1815), 1, + ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1817), 1, + ACTIONS(1818), 1, anon_sym_instanceof, - ACTIONS(1819), 1, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, anon_sym_QMARK, - ACTIONS(2050), 1, - anon_sym_COLON, + ACTIONS(2053), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1729), 2, + ACTIONS(1738), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1793), 2, + ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1795), 2, + ACTIONS(1800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1797), 2, + ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1803), 2, + ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1806), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1813), 2, + ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15174] = 13, - ACTIONS(342), 1, + [15125] = 14, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, - STATE(1092), 1, + STATE(938), 1, sym__type, + STATE(1168), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -52736,11 +52715,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -52751,49 +52730,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15226] = 3, + [15180] = 18, + ACTIONS(1796), 1, + anon_sym_AMP, + ACTIONS(1808), 1, + anon_sym_SLASH, + ACTIONS(1810), 1, + anon_sym_PIPE, + ACTIONS(1812), 1, + anon_sym_CARET, + ACTIONS(1816), 1, + anon_sym_GT_GT, + ACTIONS(1818), 1, + anon_sym_instanceof, + ACTIONS(1820), 1, + anon_sym_AMP_AMP, + ACTIONS(1822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_QMARK, + ACTIONS(2055), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1285), 11, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1287), 12, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(1738), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1798), 2, 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, - [15258] = 13, - ACTIONS(342), 1, + anon_sym_LT, + ACTIONS(1800), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1802), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1804), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1814), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15243] = 13, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, - STATE(936), 1, + STATE(1042), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -52804,11 +52799,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -52819,59 +52814,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15310] = 13, - ACTIONS(342), 1, + [15295] = 13, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2052), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(383), 1, - sym__unannotated_type, - STATE(401), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(411), 1, + STATE(669), 1, sym_generic_type, - STATE(427), 1, + STATE(686), 1, + sym__unannotated_type, + STATE(759), 1, sym_annotated_type, - STATE(429), 1, + STATE(895), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2056), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2058), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(415), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(647), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2054), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15362] = 13, - ACTIONS(342), 1, + [15347] = 13, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, - STATE(1149), 1, + STATE(1062), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -52882,11 +52877,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -52897,59 +52892,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15414] = 13, - ACTIONS(342), 1, + [15399] = 13, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(2057), 1, sym_identifier, - STATE(642), 1, + STATE(385), 1, + sym__unannotated_type, + STATE(402), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(406), 1, sym_generic_type, - STATE(687), 1, - sym__unannotated_type, - STATE(758), 1, + STATE(432), 1, sym_annotated_type, - STATE(1033), 1, + STATE(442), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(2061), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2063), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(415), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(645), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(2059), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15466] = 13, - ACTIONS(342), 1, + [15451] = 13, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, - STATE(892), 1, + STATE(919), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -52960,11 +52955,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -52975,11 +52970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15518] = 3, + [15503] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1347), 11, + ACTIONS(1352), 11, anon_sym_COLON, anon_sym_DOT, anon_sym_default, @@ -52991,7 +52986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - ACTIONS(1349), 12, + ACTIONS(1354), 12, anon_sym_AMP, anon_sym_RPAREN, anon_sym_EQ, @@ -53004,28 +52999,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15550] = 16, - ACTIONS(1028), 1, + [15535] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1292), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1294), 12, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [15567] = 16, + ACTIONS(1030), 1, anon_sym_LT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1980), 1, + ACTIONS(1993), 1, anon_sym_class, - ACTIONS(1982), 1, + ACTIONS(1995), 1, anon_sym_enum, - ACTIONS(1986), 1, + ACTIONS(1999), 1, anon_sym_ATinterface, - ACTIONS(1988), 1, + ACTIONS(2001), 1, anon_sym_interface, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, - STATE(652), 1, + STATE(660), 1, sym_type_parameters, STATE(669), 1, sym_generic_type, - STATE(690), 1, + STATE(687), 1, sym__unannotated_type, - STATE(978), 1, + STATE(1009), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -53036,7 +53060,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -53046,20 +53070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15608] = 13, - ACTIONS(342), 1, + [15625] = 13, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, - STATE(1020), 1, + STATE(894), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -53070,11 +53094,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53085,20 +53109,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15660] = 13, - ACTIONS(342), 1, + [15677] = 13, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(687), 1, + STATE(686), 1, sym__unannotated_type, - STATE(758), 1, + STATE(759), 1, sym_annotated_type, - STATE(898), 1, + STATE(1070), 1, + sym__type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(654), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15729] = 13, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1126), 1, + sym_identifier, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(686), 1, + sym__unannotated_type, + STATE(759), 1, + sym_annotated_type, + STATE(1087), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -53109,11 +53172,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(650), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53124,24 +53187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15712] = 6, - ACTIONS(2060), 1, + [15781] = 6, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2062), 1, + ACTIONS(2067), 1, anon_sym_DOT, - STATE(675), 1, + STATE(668), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 6, + ACTIONS(1386), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1393), 13, + ACTIONS(1382), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -53155,58 +53218,52 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15749] = 12, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(2064), 1, - anon_sym_QMARK, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(679), 1, - sym__unannotated_type, + [15818] = 6, + ACTIONS(2065), 1, + anon_sym_LPAREN, + ACTIONS(2069), 1, + anon_sym_DOT, + STATE(667), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(1392), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1390), 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, - [15798] = 8, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [15855] = 8, ACTIONS(301), 1, anon_sym_AT, ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1891), 1, + ACTIONS(1952), 1, sym_identifier, - STATE(998), 1, + STATE(1052), 1, sym_enum_constant, - STATE(1185), 1, + STATE(1205), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(513), 4, + STATE(525), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53225,107 +53282,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [15839] = 6, - ACTIONS(2060), 1, - anon_sym_LPAREN, - ACTIONS(2066), 1, - anon_sym_DOT, - STATE(666), 1, - sym_annotation_argument_list, + [15896] = 12, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_QMARK, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(678), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1365), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 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, - [15876] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2068), 1, - anon_sym_DOT, - STATE(661), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 7, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1358), 11, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [15912] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2070), 1, - anon_sym_DOT, - STATE(660), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1098), 7, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1122), 11, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [15948] = 11, - ACTIONS(342), 1, + [15945] = 11, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2072), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(724), 1, + STATE(751), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -53336,11 +53339,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53351,45 +53354,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15994] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1377), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1379), 13, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [16024] = 12, + [15991] = 12, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(342), 1, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2074), 1, + ACTIONS(2073), 1, sym_identifier, - STATE(703), 1, + STATE(705), 1, sym_scoped_type_identifier, - STATE(711), 1, + STATE(710), 1, sym_type_arguments, - STATE(730), 1, + STATE(722), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -53397,13 +53373,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2076), 2, + ACTIONS(2075), 2, sym_boolean_type, sym_void_type, - STATE(731), 2, + STATE(737), 2, sym_integral_type, sym_floating_point_type, - STATE(671), 4, + STATE(675), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53414,46 +53390,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16072] = 11, - ACTIONS(342), 1, + [16039] = 11, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2052), 1, + ACTIONS(2057), 1, sym_identifier, - STATE(386), 1, + STATE(384), 1, sym__unannotated_type, - STATE(401), 1, + STATE(402), 1, sym_scoped_type_identifier, - STATE(411), 1, + STATE(406), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2056), 2, + ACTIONS(2061), 2, anon_sym_float, anon_sym_double, - ACTIONS(2058), 2, + ACTIONS(2063), 2, sym_boolean_type, sym_void_type, STATE(415), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(672), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2054), 5, + ACTIONS(2059), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16118] = 3, + [16085] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1396), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1398), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16115] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1400), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1402), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16145] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2077), 1, + anon_sym_DOT, + STATE(665), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1361), 7, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1363), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16181] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1329), 8, + ACTIONS(1338), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -53462,7 +53522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1327), 13, + ACTIONS(1336), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -53476,66 +53536,32 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16148] = 11, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(1165), 1, - sym_identifier, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(756), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [16194] = 11, - ACTIONS(342), 1, + [16211] = 12, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(2079), 1, sym_identifier, - STATE(642), 1, + STATE(702), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(710), 1, + sym_type_arguments, + STATE(728), 1, sym_generic_type, - STATE(679), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2081), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, - sym_array_type, + STATE(733), 2, sym_integral_type, sym_floating_point_type, - STATE(672), 4, + STATE(671), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53546,16 +53572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16240] = 11, - ACTIONS(342), 1, + [16259] = 11, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(718), 1, + STATE(714), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -53566,11 +53592,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(672), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53581,16 +53607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16286] = 11, - ACTIONS(342), 1, + [16305] = 11, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(724), 1, + STATE(730), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -53601,11 +53627,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53616,11 +53642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16332] = 3, + [16351] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1333), 8, + ACTIONS(1334), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -53629,7 +53655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1331), 13, + ACTIONS(1332), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -53643,16 +53669,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16362] = 11, - ACTIONS(342), 1, + [16381] = 11, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1165), 1, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(725), 1, + STATE(678), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -53663,74 +53689,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [16408] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1373), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1375), 13, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [16438] = 12, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2078), 1, - sym_identifier, - STATE(704), 1, - sym_scoped_type_identifier, - STATE(711), 1, - sym_type_arguments, - STATE(713), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2080), 2, - sym_boolean_type, - sym_void_type, - STATE(737), 2, - sym_integral_type, - sym_floating_point_type, - STATE(670), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53741,24 +53704,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16486] = 14, - ACTIONS(1165), 1, + [16427] = 14, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1980), 1, + ACTIONS(1993), 1, anon_sym_class, - ACTIONS(1982), 1, + ACTIONS(1995), 1, anon_sym_enum, - ACTIONS(1984), 1, + ACTIONS(1997), 1, anon_sym_record, - ACTIONS(1986), 1, + ACTIONS(1999), 1, anon_sym_ATinterface, - ACTIONS(1988), 1, + ACTIONS(2001), 1, anon_sym_interface, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(697), 1, + STATE(703), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -53769,7 +53732,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -53779,11 +53742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16538] = 3, + [16479] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1407), 8, + ACTIONS(1374), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -53792,7 +53755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1409), 13, + ACTIONS(1376), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -53806,12 +53769,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16568] = 3, + [16509] = 11, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2083), 1, + sym_identifier, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(723), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1411), 8, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(652), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16555] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2085), 1, anon_sym_DOT, + STATE(662), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1100), 7, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -53819,12 +53822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1413), 13, - anon_sym_LPAREN, + ACTIONS(1124), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -53833,11 +53834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16598] = 3, + [16591] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1399), 8, + ACTIONS(1416), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -53846,11 +53847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1401), 12, + ACTIONS(1418), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -53859,11 +53861,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16627] = 3, + [16621] = 11, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1126), 1, + sym_identifier, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(723), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(652), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16667] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 8, + ACTIONS(1424), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -53872,7 +53909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1387), 12, + ACTIONS(1426), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -53885,11 +53922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16656] = 3, + [16696] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 8, + ACTIONS(1404), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -53898,7 +53935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1417), 12, + ACTIONS(1406), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -53911,11 +53948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16685] = 3, + [16725] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 8, + ACTIONS(1428), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -53924,7 +53961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1421), 12, + ACTIONS(1430), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -53937,22 +53974,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16714] = 13, - ACTIONS(1165), 1, + [16754] = 13, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1980), 1, + ACTIONS(1993), 1, anon_sym_class, - ACTIONS(1982), 1, + ACTIONS(1995), 1, anon_sym_enum, - ACTIONS(1986), 1, + ACTIONS(1999), 1, anon_sym_ATinterface, - ACTIONS(1988), 1, + ACTIONS(2001), 1, anon_sym_interface, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(701), 1, + STATE(706), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -53963,7 +54000,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -53973,11 +54010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16763] = 3, + [16803] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 8, + ACTIONS(1370), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -53986,7 +54023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1425), 11, + ACTIONS(1372), 12, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -53998,18 +54036,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16791] = 3, + [16832] = 5, + ACTIONS(2089), 1, + anon_sym_QMARK, + ACTIONS(2091), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1548), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1546), 13, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2087), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -54023,73 +54063,63 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16819] = 13, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, - anon_sym_LBRACK, - ACTIONS(2082), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_DOT, - ACTIONS(2088), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2090), 1, - sym_this, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(665), 1, - sym_dimensions, - STATE(1099), 1, - sym__variable_declarator_id, + [16864] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 3, - anon_sym_AMP, + ACTIONS(1513), 6, anon_sym_RPAREN, - anon_sym_COLON_COLON, - ACTIONS(2086), 3, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1511), 13, anon_sym_open, anon_sym_module, - anon_sym_record, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [16867] = 3, + 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, + [16892] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1358), 11, - anon_sym_AMP, + ACTIONS(1485), 6, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16895] = 4, - ACTIONS(2068), 1, + ACTIONS(1483), 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, + [16920] = 4, + ACTIONS(2077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 7, + ACTIONS(1361), 7, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -54097,7 +54127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1358), 11, + ACTIONS(1363), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -54109,46 +54139,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16925] = 10, - ACTIONS(342), 1, + [16950] = 13, + ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2092), 1, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(2094), 1, sym_identifier, - STATE(726), 1, - sym_scoped_type_identifier, - STATE(748), 1, - sym_generic_type, + ACTIONS(2096), 1, + anon_sym_DOT, + ACTIONS(2100), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2102), 1, + sym_this, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(676), 1, + sym_dimensions, + STATE(1175), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2094), 2, - sym_boolean_type, - sym_void_type, - STATE(752), 2, - sym_integral_type, - sym_floating_point_type, - STATE(672), 4, + ACTIONS(1318), 3, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [16967] = 10, - ACTIONS(342), 1, + [16998] = 10, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2096), 1, + ACTIONS(2104), 1, sym_identifier, - STATE(723), 1, + STATE(719), 1, sym_scoped_type_identifier, - STATE(741), 1, + STATE(743), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -54156,13 +54189,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2098), 2, + ACTIONS(2106), 2, sym_boolean_type, sym_void_type, - STATE(750), 2, + STATE(754), 2, sym_integral_type, sym_floating_point_type, - STATE(672), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54173,45 +54206,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17009] = 5, - ACTIONS(2102), 1, - anon_sym_QMARK, - ACTIONS(2104), 1, - anon_sym_AT, + [17040] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2100), 13, + ACTIONS(1361), 8, + anon_sym_DOT, 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, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - [17041] = 3, + ACTIONS(1363), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [17068] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 6, + ACTIONS(1509), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1554), 13, + ACTIONS(1507), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -54225,18 +54256,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17069] = 3, + [17096] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1468), 6, + ACTIONS(1477), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1466), 13, + ACTIONS(1475), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -54250,43 +54281,75 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17097] = 3, + [17124] = 10, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2108), 1, + sym_identifier, + STATE(720), 1, + sym_scoped_type_identifier, + STATE(749), 1, + sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1552), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1550), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2110), 2, + sym_boolean_type, + sym_void_type, + STATE(756), 2, + sym_integral_type, + sym_floating_point_type, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 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, + [17166] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1420), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - [17125] = 3, + ACTIONS(1422), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [17194] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1492), 6, + ACTIONS(1521), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1490), 13, + ACTIONS(1519), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -54300,49 +54363,76 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17153] = 13, + [17222] = 7, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1854), 1, + anon_sym_LBRACK, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(676), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(779), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1314), 9, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [17256] = 13, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1309), 1, + ACTIONS(1318), 1, anon_sym_COLON_COLON, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2112), 1, sym_identifier, - ACTIONS(2109), 1, + ACTIONS(2114), 1, anon_sym_DOT, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(905), 1, + STATE(941), 1, sym__variable_declarator_id, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1246), 1, + STATE(1211), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17199] = 10, - ACTIONS(1165), 1, + [17302] = 10, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(709), 1, + STATE(712), 1, sym__unannotated_type, - STATE(850), 1, + STATE(851), 1, sym_catch_type, ACTIONS(3), 2, sym_line_comment, @@ -54353,7 +54443,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -54363,224 +54453,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17239] = 7, + [17342] = 13, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1318), 1, + anon_sym_COLON_COLON, + ACTIONS(1854), 1, anon_sym_LBRACK, - STATE(530), 1, + ACTIONS(2112), 1, + sym_identifier, + ACTIONS(2114), 1, + anon_sym_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, + STATE(891), 1, + sym__variable_declarator_id, + STATE(1000), 1, + sym_variable_declarator, + STATE(1211), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1321), 9, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [17273] = 13, + [17388] = 13, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1309), 1, + ACTIONS(1318), 1, anon_sym_COLON_COLON, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2112), 1, sym_identifier, - ACTIONS(2109), 1, + ACTIONS(2114), 1, anon_sym_DOT, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(922), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1210), 1, + STATE(1189), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17319] = 13, + [17434] = 12, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1309), 1, - anon_sym_COLON_COLON, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2116), 1, sym_identifier, - ACTIONS(2109), 1, - anon_sym_DOT, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(934), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(1032), 1, + STATE(917), 1, + sym__method_declarator, + STATE(1000), 1, sym_variable_declarator, - STATE(1210), 1, + STATE(1187), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2118), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17365] = 9, - ACTIONS(1165), 1, - sym_identifier, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(698), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17402] = 10, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2111), 1, - sym_identifier, - STATE(711), 1, - sym_type_arguments, - STATE(875), 1, - sym_scoped_type_identifier, - STATE(1055), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2113), 2, - sym_boolean_type, - sym_void_type, - STATE(1091), 2, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17441] = 9, - ACTIONS(1165), 1, - sym_identifier, - STATE(642), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(695), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(668), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17478] = 12, + [17477] = 12, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2115), 1, + ACTIONS(2116), 1, sym_identifier, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(905), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(921), 1, + STATE(917), 1, sym__method_declarator, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1221), 1, + STATE(1265), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 3, + ACTIONS(2118), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17521] = 3, + [17520] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 3, + ACTIONS(2122), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AT, - ACTIONS(2119), 13, + ACTIONS(2120), 13, anon_sym_extends, anon_sym_implements, anon_sym_permits, @@ -54594,24 +54603,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17546] = 7, + [17545] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1309), 8, + ACTIONS(1318), 8, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -54620,45 +54629,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [17579] = 12, + [17578] = 12, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2115), 1, + ACTIONS(2116), 1, sym_identifier, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(905), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(921), 1, + STATE(917), 1, + sym__method_declarator, + STATE(1000), 1, + sym_variable_declarator, + STATE(1257), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2118), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(779), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17621] = 12, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(2116), 1, + sym_identifier, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(676), 1, + sym_dimensions, + STATE(916), 1, + sym__variable_declarator_id, + STATE(917), 1, sym__method_declarator, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1231), 1, + STATE(1204), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 3, + ACTIONS(2118), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17622] = 9, - ACTIONS(1165), 1, + [17664] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2126), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2124), 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, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [17689] = 10, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2128), 1, + sym_identifier, + STATE(710), 1, + sym_type_arguments, + STATE(853), 1, + sym_scoped_type_identifier, + STATE(995), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2130), 2, + sym_boolean_type, + sym_void_type, + STATE(1144), 2, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17728] = 9, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(717), 1, + STATE(713), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -54669,7 +54760,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -54679,45 +54770,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17659] = 12, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, - anon_sym_LBRACK, - ACTIONS(2115), 1, + [17765] = 9, + ACTIONS(1126), 1, sym_identifier, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(665), 1, - sym_dimensions, - STATE(905), 1, - sym__variable_declarator_id, - STATE(921), 1, - sym__method_declarator, - STATE(1032), 1, - sym_variable_declarator, - STATE(1178), 1, - sym__variable_declarator_list, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(726), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [17702] = 9, - ACTIONS(1165), 1, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17802] = 9, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(715), 1, + STATE(698), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -54728,7 +54816,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -54738,14 +54826,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17739] = 9, - ACTIONS(1165), 1, + [17839] = 9, + ACTIONS(1126), 1, sym_identifier, - STATE(642), 1, + STATE(648), 1, sym_scoped_type_identifier, STATE(669), 1, sym_generic_type, - STATE(710), 1, + STATE(716), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(672), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17876] = 9, + ACTIONS(1126), 1, + sym_identifier, + STATE(648), 1, + sym_scoped_type_identifier, + STATE(669), 1, + sym_generic_type, + STATE(697), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -54756,7 +54872,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(668), 3, + STATE(672), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -54766,517 +54882,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17776] = 12, + [17913] = 12, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_LBRACK, + ACTIONS(2134), 1, + anon_sym_DOT, + STATE(422), 1, + sym_argument_list, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(662), 1, + sym_type_arguments, + STATE(1164), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(388), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17955] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2115), 1, + ACTIONS(2112), 1, sym_identifier, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(905), 1, + STATE(889), 1, sym__variable_declarator_id, - STATE(921), 1, - sym__method_declarator, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1177), 1, + STATE(1197), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17819] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2125), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(2123), 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, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [17844] = 11, + [17995] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2112), 1, sym_identifier, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(935), 1, + STATE(948), 1, sym__variable_declarator_id, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1198), 1, + STATE(1197), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17884] = 4, - ACTIONS(2127), 1, + [18035] = 11, + ACTIONS(301), 1, anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1885), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1613), 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, - [17910] = 11, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(905), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1257), 1, + STATE(1265), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17950] = 11, + [18075] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2094), 1, sym_identifier, - STATE(530), 1, + ACTIONS(2100), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2102), 1, + sym_this, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(924), 1, + STATE(1175), 1, sym__variable_declarator_id, - STATE(1032), 1, - sym_variable_declarator, - STATE(1198), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17990] = 11, + [18115] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1318), 1, + anon_sym_COLON_COLON, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2129), 1, + ACTIONS(2112), 1, sym_identifier, - STATE(530), 1, + ACTIONS(2114), 1, + anon_sym_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(905), 1, + STATE(1235), 1, sym__variable_declarator_id, - STATE(1032), 1, - sym_variable_declarator, - STATE(1177), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18030] = 11, + [18155] = 12, + ACTIONS(87), 1, + anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1309), 1, - anon_sym_COLON_COLON, - ACTIONS(1846), 1, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, - sym_identifier, - ACTIONS(2109), 1, + ACTIONS(2138), 1, anon_sym_DOT, - STATE(530), 1, + STATE(420), 1, + sym_argument_list, + STATE(534), 1, aux_sym_dimensions_repeat1, STATE(665), 1, + sym_type_arguments, + STATE(1166), 1, sym_dimensions, - STATE(1229), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(817), 4, + STATE(387), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18070] = 11, + [18197] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2131), 1, + ACTIONS(2112), 1, sym_identifier, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(905), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(1032), 1, + STATE(1000), 1, sym_variable_declarator, - STATE(1178), 1, + STATE(1238), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18110] = 11, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, - anon_sym_LBRACK, - ACTIONS(2082), 1, - sym_identifier, - ACTIONS(2088), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2090), 1, - sym_this, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(665), 1, - sym_dimensions, - STATE(1099), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18150] = 12, + [18237] = 12, ACTIONS(87), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2134), 1, anon_sym_DOT, - STATE(421), 1, + STATE(422), 1, sym_argument_list, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(661), 1, + STATE(662), 1, sym_type_arguments, - STATE(1110), 1, + STATE(1164), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(739), 2, + STATE(738), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18192] = 12, + [18279] = 12, ACTIONS(87), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2138), 1, anon_sym_DOT, - STATE(421), 1, + STATE(420), 1, sym_argument_list, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(661), 1, + STATE(665), 1, sym_type_arguments, - STATE(1110), 1, + STATE(1166), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(385), 2, + STATE(739), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18234] = 12, - ACTIONS(87), 1, - anon_sym_LT, + [18321] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, - anon_sym_DOT, - STATE(422), 1, - sym_argument_list, - STATE(530), 1, + ACTIONS(2140), 1, + sym_identifier, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(660), 1, - sym_type_arguments, - STATE(1111), 1, + STATE(676), 1, sym_dimensions, + STATE(916), 1, + sym__variable_declarator_id, + STATE(1000), 1, + sym_variable_declarator, + STATE(1257), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(384), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18276] = 12, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(301), 1, + [18361] = 4, + ACTIONS(2142), 1, anon_sym_AT, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2133), 1, - anon_sym_LBRACK, - ACTIONS(2137), 1, - anon_sym_DOT, - STATE(422), 1, - sym_argument_list, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(660), 1, - sym_type_arguments, - STATE(1111), 1, - sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(738), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18318] = 10, + ACTIONS(1890), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1636), 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, + [18387] = 10, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1120), 1, anon_sym_DOT, - ACTIONS(1122), 1, + ACTIONS(1124), 1, anon_sym_AT, - STATE(464), 1, + STATE(454), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1115), 2, + ACTIONS(1117), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(2139), 2, + ACTIONS(2144), 2, anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(1098), 4, + ACTIONS(1100), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - [18355] = 10, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, - anon_sym_LBRACK, - ACTIONS(2088), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2107), 1, - sym_identifier, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(665), 1, - sym_dimensions, - STATE(1099), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18392] = 9, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_PIPE, - STATE(530), 1, - aux_sym_dimensions_repeat1, + [18424] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2146), 1, + anon_sym_DOT, STATE(665), 1, - sym_dimensions, - STATE(840), 1, - aux_sym_catch_type_repeat1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2141), 4, + ACTIONS(1361), 5, anon_sym_open, anon_sym_module, anon_sym_record, + sym_this, sym_identifier, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18427] = 10, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1363), 6, + anon_sym_AMP, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2107), 1, - sym_identifier, - ACTIONS(2145), 1, + anon_sym_COLON_COLON, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(665), 1, - sym_dimensions, - STATE(1144), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18464] = 8, - ACTIONS(2147), 1, + [18453] = 8, + ACTIONS(2149), 1, sym_identifier, - STATE(858), 1, + STATE(882), 1, sym_scoped_type_identifier, - STATE(1005), 1, + STATE(1026), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -55284,10 +55290,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2149), 2, + ACTIONS(2151), 2, sym_boolean_type, sym_void_type, - STATE(1112), 2, + STATE(1159), 2, sym_integral_type, sym_floating_point_type, ACTIONS(77), 5, @@ -55296,442 +55302,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [18497] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2151), 1, - anon_sym_DOT, - STATE(661), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 5, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1358), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [18526] = 10, + [18486] = 10, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, - anon_sym_DOT, - STATE(421), 1, - sym_argument_list, - STATE(530), 1, + ACTIONS(2100), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2112), 1, + sym_identifier, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1110), 1, + STATE(676), 1, sym_dimensions, + STATE(1175), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(385), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18562] = 9, - ACTIONS(2154), 1, - anon_sym_RBRACE, - ACTIONS(2156), 1, - anon_sym_requires, - ACTIONS(2159), 1, - anon_sym_exports, - ACTIONS(2162), 1, - anon_sym_opens, - ACTIONS(2165), 1, - anon_sym_uses, - ACTIONS(2168), 1, - anon_sym_provides, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(714), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(816), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [18596] = 9, + [18523] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, - sym_identifier, - STATE(530), 1, + ACTIONS(2155), 1, + anon_sym_PIPE, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(1192), 1, - sym__variable_declarator_id, + STATE(837), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2153), 4, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + sym_identifier, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18630] = 9, - ACTIONS(2171), 1, - anon_sym_RBRACE, - ACTIONS(2173), 1, - anon_sym_requires, - ACTIONS(2175), 1, - anon_sym_exports, - ACTIONS(2177), 1, - anon_sym_opens, - ACTIONS(2179), 1, - anon_sym_uses, - ACTIONS(2181), 1, - anon_sym_provides, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(721), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(816), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [18664] = 8, + [18558] = 10, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, - anon_sym_PIPE, - STATE(530), 1, + ACTIONS(2112), 1, + sym_identifier, + ACTIONS(2157), 1, + anon_sym_DOT_DOT_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, + STATE(1088), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 4, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - sym_identifier, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18696] = 9, + [18595] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2159), 1, sym_identifier, - ACTIONS(2189), 1, + ACTIONS(2161), 1, sym_this, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1321), 3, + ACTIONS(1314), 3, anon_sym_AMP, anon_sym_RPAREN, anon_sym_COLON_COLON, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18730] = 7, + [18629] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(877), 1, + STATE(865), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2191), 5, + ACTIONS(2163), 5, anon_sym_RPAREN, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_SEMI, - [18760] = 9, + [18659] = 9, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(2112), 1, + sym_identifier, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(676), 1, + sym_dimensions, + STATE(1226), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(779), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18693] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2193), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(746), 1, + STATE(747), 1, sym_formal_parameters, - STATE(877), 1, + STATE(865), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 3, + ACTIONS(2163), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18794] = 9, - ACTIONS(2173), 1, + [18727] = 9, + ACTIONS(2167), 1, + anon_sym_RBRACE, + ACTIONS(2169), 1, anon_sym_requires, - ACTIONS(2175), 1, + ACTIONS(2172), 1, anon_sym_exports, - ACTIONS(2177), 1, + ACTIONS(2175), 1, anon_sym_opens, - ACTIONS(2179), 1, + ACTIONS(2178), 1, anon_sym_uses, ACTIONS(2181), 1, anon_sym_provides, - ACTIONS(2195), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(714), 2, + STATE(718), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(816), 5, + STATE(835), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [18828] = 9, + [18761] = 10, + ACTIONS(87), 1, + anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2193), 1, - anon_sym_LPAREN, - STATE(530), 1, + ACTIONS(2138), 1, + anon_sym_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(745), 1, - sym_formal_parameters, - STATE(864), 1, + STATE(665), 1, + sym_type_arguments, + STATE(1078), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(817), 4, + STATE(383), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18862] = 10, + [18797] = 10, ACTIONS(87), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2138), 1, anon_sym_DOT, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(661), 1, + STATE(665), 1, sym_type_arguments, - STATE(1133), 1, + STATE(1078), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 2, + STATE(735), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18898] = 9, + [18833] = 10, + ACTIONS(87), 1, + anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2199), 1, - sym_identifier, - STATE(530), 1, + ACTIONS(2134), 1, + anon_sym_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(662), 1, + sym_type_arguments, + STATE(1077), 1, sym_dimensions, - STATE(888), 1, - sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(817), 4, + STATE(734), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18869] = 10, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_LBRACK, + ACTIONS(2138), 1, + anon_sym_DOT, + STATE(420), 1, + sym_argument_list, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(1166), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(739), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18932] = 9, + [18905] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2199), 1, + ACTIONS(2184), 1, sym_identifier, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(676), 1, sym_dimensions, - STATE(887), 1, + STATE(898), 1, sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 3, + ACTIONS(2186), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18966] = 10, + [18939] = 10, ACTIONS(87), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2134), 1, anon_sym_DOT, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(661), 1, + STATE(662), 1, sym_type_arguments, - STATE(1133), 1, + STATE(1077), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(382), 2, + STATE(386), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19002] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1846), 1, - anon_sym_LBRACK, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(864), 1, - sym_dimensions, + [18975] = 9, + ACTIONS(2188), 1, + anon_sym_RBRACE, + ACTIONS(2190), 1, + anon_sym_requires, + ACTIONS(2192), 1, + anon_sym_exports, + ACTIONS(2194), 1, + anon_sym_opens, + ACTIONS(2196), 1, + anon_sym_uses, + ACTIONS(2198), 1, + anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2197), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [19032] = 10, - ACTIONS(87), 1, - anon_sym_LT, + STATE(727), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(835), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [19009] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, - anon_sym_DOT, - STATE(530), 1, + ACTIONS(2202), 1, + anon_sym_PIPE, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(660), 1, - sym_type_arguments, - STATE(1126), 1, + STATE(676), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(735), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + ACTIONS(2200), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19068] = 10, - ACTIONS(87), 1, - anon_sym_LT, + [19041] = 9, + ACTIONS(2190), 1, + anon_sym_requires, + ACTIONS(2192), 1, + anon_sym_exports, + ACTIONS(2194), 1, + anon_sym_opens, + ACTIONS(2196), 1, + anon_sym_uses, + ACTIONS(2198), 1, + anon_sym_provides, + ACTIONS(2204), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(718), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(835), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [19075] = 10, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, + ACTIONS(2138), 1, anon_sym_DOT, - STATE(530), 1, + STATE(420), 1, + sym_argument_list, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(660), 1, - sym_type_arguments, - STATE(1126), 1, + STATE(1166), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, @@ -55739,1968 +55755,1979 @@ static const uint16_t ts_small_parse_table[] = { STATE(387), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19104] = 10, + [19111] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, - anon_sym_DOT, - STATE(421), 1, - sym_argument_list, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1110), 1, + STATE(878), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(739), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19140] = 9, + ACTIONS(2206), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19141] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - STATE(421), 1, - sym_argument_list, - STATE(530), 1, + ACTIONS(2184), 1, + sym_identifier, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1110), 1, + STATE(676), 1, sym_dimensions, + STATE(888), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(739), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + ACTIONS(2186), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19173] = 8, + [19175] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2203), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(877), 1, + STATE(746), 1, + sym_formal_parameters, + STATE(878), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 3, + ACTIONS(2206), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19204] = 4, - ACTIONS(2151), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 5, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1358), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [19227] = 8, + [19209] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2205), 1, + ACTIONS(2208), 1, anon_sym_LPAREN, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(877), 1, + STATE(865), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 3, + ACTIONS(2163), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19258] = 8, + [19240] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(485), 1, - sym_dimensions, - STATE(530), 1, + STATE(420), 1, + sym_argument_list, + STATE(534), 1, aux_sym_dimensions_repeat1, + STATE(1166), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1325), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(392), 2, + STATE(387), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19289] = 8, + [19273] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(479), 1, + STATE(467), 1, sym_dimensions, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1303), 2, + ACTIONS(1322), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(392), 2, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19320] = 9, + [19304] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(421), 1, - sym_argument_list, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(1110), 1, + STATE(456), 1, sym_dimensions, + STATE(534), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(385), 2, + ACTIONS(1308), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19353] = 8, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2133), 1, - anon_sym_LBRACK, - STATE(472), 1, - sym_dimensions, - STATE(530), 1, - aux_sym_dimensions_repeat1, + [19335] = 4, + ACTIONS(2146), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1313), 2, - anon_sym_DOT, + ACTIONS(1361), 5, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1363), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_COLON_COLON, - STATE(392), 2, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19358] = 9, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_LBRACK, + STATE(420), 1, + sym_argument_list, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(1166), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(739), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19384] = 8, + [19391] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(467), 1, + STATE(461), 1, sym_dimensions, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 2, + ACTIONS(1330), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(392), 2, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19415] = 8, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2137), 1, - anon_sym_DOT, - ACTIONS(2193), 1, - anon_sym_LPAREN, - STATE(660), 1, - sym_type_arguments, - STATE(1109), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1122), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1098), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [19445] = 8, + [19422] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, - anon_sym_DOT, - STATE(530), 1, - aux_sym_dimensions_repeat1, - STATE(1133), 1, + STATE(485), 1, sym_dimensions, + STATE(534), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 2, + ACTIONS(1326), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(393), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19475] = 9, + [19453] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2207), 1, - anon_sym_default, - ACTIONS(2209), 1, - anon_sym_SEMI, - STATE(530), 1, + ACTIONS(2210), 1, + anon_sym_LPAREN, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(982), 1, + STATE(865), 1, sym_dimensions, - STATE(1226), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + ACTIONS(2163), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19507] = 8, + [19484] = 8, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(2137), 1, + ACTIONS(2134), 1, anon_sym_DOT, - ACTIONS(2193), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, - STATE(1103), 1, + STATE(1158), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1122), 2, + ACTIONS(1124), 2, anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1098), 4, + ACTIONS(1100), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - [19537] = 8, + [19514] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2211), 1, - anon_sym_DOT, - STATE(530), 1, + ACTIONS(2212), 1, + anon_sym_default, + ACTIONS(2214), 1, + anon_sym_SEMI, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(877), 1, + STATE(990), 1, sym_dimensions, + STATE(1233), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19567] = 7, + [19546] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(530), 1, + ACTIONS(2138), 1, + anon_sym_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1004), 1, + STATE(1078), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(817), 4, + STATE(383), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19595] = 7, + [19576] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - STATE(530), 1, + ACTIONS(2216), 1, + anon_sym_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(987), 1, + STATE(865), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(817), 4, + ACTIONS(2163), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19623] = 9, + [19606] = 8, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(2134), 1, + anon_sym_DOT, + ACTIONS(2165), 1, + anon_sym_LPAREN, + STATE(662), 1, + sym_type_arguments, + STATE(1151), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1124), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1100), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19636] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2207), 1, - anon_sym_default, - ACTIONS(2217), 1, - anon_sym_SEMI, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1018), 1, + STATE(986), 1, sym_dimensions, - STATE(1250), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + ACTIONS(2218), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19655] = 8, + [19664] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, - anon_sym_DOT, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1133), 1, + STATE(984), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(382), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + ACTIONS(2220), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19685] = 8, + [19692] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1309), 1, - anon_sym_COLON_COLON, - ACTIONS(1846), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_DOT, - STATE(530), 1, + ACTIONS(2212), 1, + anon_sym_default, + ACTIONS(2222), 1, + anon_sym_SEMI, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(1023), 1, sym_dimensions, + STATE(1224), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19714] = 7, + [19724] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(530), 1, + ACTIONS(2138), 1, + anon_sym_DOT, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1133), 1, + STATE(1078), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(736), 2, + STATE(735), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19741] = 11, - ACTIONS(1028), 1, + [19754] = 11, + ACTIONS(1030), 1, anon_sym_LT, - ACTIONS(1431), 1, + ACTIONS(1436), 1, anon_sym_LBRACE, - ACTIONS(2219), 1, + ACTIONS(2224), 1, anon_sym_extends, - ACTIONS(2221), 1, + ACTIONS(2226), 1, anon_sym_implements, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_permits, - STATE(106), 1, + STATE(150), 1, sym_class_body, - STATE(762), 1, + STATE(766), 1, sym_type_parameters, - STATE(797), 1, + STATE(832), 1, sym_superclass, - STATE(891), 1, + STATE(945), 1, sym_super_interfaces, - STATE(1084), 1, + STATE(1108), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19776] = 7, + [19789] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2133), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - STATE(530), 1, + ACTIONS(2159), 1, + sym_identifier, + ACTIONS(2161), 1, + sym_this, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(1133), 1, + STATE(676), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(382), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19803] = 11, - ACTIONS(1028), 1, - anon_sym_LT, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2219), 1, - anon_sym_extends, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(146), 1, - sym_class_body, - STATE(764), 1, - sym_type_parameters, - STATE(793), 1, - sym_superclass, - STATE(923), 1, - sym_super_interfaces, - STATE(1121), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [19838] = 9, + [19818] = 9, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(2225), 1, + ACTIONS(2230), 1, sym_identifier, - ACTIONS(2227), 1, + ACTIONS(2232), 1, anon_sym_new, - ACTIONS(2231), 1, + ACTIONS(2236), 1, sym_this, - ACTIONS(2233), 1, + ACTIONS(2238), 1, sym_super, - STATE(463), 1, + STATE(471), 1, sym__unqualified_object_creation_expression, - STATE(876), 1, + STATE(929), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 3, + ACTIONS(2234), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [19869] = 9, + [19849] = 9, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(2225), 1, + ACTIONS(2230), 1, sym_identifier, - ACTIONS(2227), 1, + ACTIONS(2232), 1, anon_sym_new, - ACTIONS(2231), 1, + ACTIONS(2236), 1, sym_this, - ACTIONS(2235), 1, + ACTIONS(2240), 1, sym_super, - STATE(463), 1, + STATE(471), 1, sym__unqualified_object_creation_expression, - STATE(919), 1, + STATE(877), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 3, + ACTIONS(2234), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [19900] = 8, + [19880] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1846), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, - sym_identifier, - ACTIONS(2189), 1, - sym_this, - STATE(530), 1, + STATE(534), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(1078), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(817), 4, + STATE(383), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19929] = 8, - ACTIONS(2237), 1, - anon_sym_RBRACE, - ACTIONS(2239), 1, - anon_sym_case, - ACTIONS(2241), 1, - anon_sym_default, - STATE(3), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1114), 1, - sym_switch_label, + [19907] = 8, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1318), 1, + anon_sym_COLON_COLON, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(2114), 1, + anon_sym_DOT, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(676), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(771), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - STATE(785), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [19957] = 2, + STATE(779), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19936] = 7, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(2132), 1, + anon_sym_LBRACK, + STATE(534), 1, + aux_sym_dimensions_repeat1, + STATE(1078), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 9, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, + STATE(735), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(785), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19963] = 11, + ACTIONS(1030), 1, + anon_sym_LT, + ACTIONS(1436), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2224), 1, + anon_sym_extends, + ACTIONS(2226), 1, anon_sym_implements, + ACTIONS(2228), 1, anon_sym_permits, - [19973] = 7, - ACTIONS(2243), 1, + STATE(110), 1, + sym_class_body, + STATE(767), 1, + sym_type_parameters, + STATE(795), 1, + sym_superclass, + STATE(923), 1, + sym_super_interfaces, + STATE(1124), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [19998] = 9, + ACTIONS(2242), 1, sym_identifier, - STATE(760), 1, + ACTIONS(2244), 1, + anon_sym_open, + ACTIONS(2246), 1, + anon_sym_module, + ACTIONS(2250), 1, + anon_sym_record, + STATE(764), 1, aux_sym_requires_module_directive_repeat1, - STATE(815), 1, + STATE(830), 1, sym_requires_modifier, - STATE(1140), 1, + STATE(1136), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 2, + ACTIONS(2248), 2, anon_sym_transitive, anon_sym_static, - ACTIONS(2245), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [19999] = 9, - ACTIONS(2249), 1, + [20028] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1318), 9, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [20044] = 8, + ACTIONS(2252), 1, + anon_sym_RBRACE, + ACTIONS(2254), 1, + anon_sym_case, + ACTIONS(2256), 1, + anon_sym_default, + STATE(3), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1165), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(769), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + STATE(826), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [20072] = 7, + ACTIONS(2258), 1, sym_identifier, - ACTIONS(2251), 1, - anon_sym_open, - ACTIONS(2253), 1, - anon_sym_module, - ACTIONS(2255), 1, - anon_sym_record, - STATE(766), 1, + STATE(758), 1, aux_sym_requires_module_directive_repeat1, - STATE(815), 1, + STATE(830), 1, sym_requires_modifier, - STATE(1173), 1, + STATE(1104), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 2, + ACTIONS(2248), 2, anon_sym_transitive, anon_sym_static, - [20029] = 7, + ACTIONS(2260), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20098] = 7, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(2225), 1, + ACTIONS(2230), 1, sym_identifier, - ACTIONS(2231), 1, + ACTIONS(2236), 1, sym_this, - ACTIONS(2235), 1, + ACTIONS(2238), 1, sym_super, - STATE(919), 1, + STATE(929), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 3, + ACTIONS(2234), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20054] = 9, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2219), 1, - anon_sym_extends, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(149), 1, - sym_class_body, - STATE(846), 1, - sym_superclass, - STATE(947), 1, - sym_super_interfaces, - STATE(1067), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20083] = 9, - ACTIONS(1028), 1, + [20123] = 9, + ACTIONS(1030), 1, anon_sym_LT, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_permits, - ACTIONS(2257), 1, + ACTIONS(2262), 1, anon_sym_extends, - ACTIONS(2259), 1, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(109), 1, + STATE(159), 1, sym_interface_body, - STATE(809), 1, + STATE(811), 1, sym_type_parameters, - STATE(900), 1, + STATE(928), 1, sym_extends_interfaces, - STATE(1065), 1, + STATE(1114), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20112] = 9, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2219), 1, - anon_sym_extends, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(142), 1, - sym_class_body, - STATE(837), 1, - sym_superclass, - STATE(927), 1, - sym_super_interfaces, - STATE(1125), 1, - sym_permits, + [20152] = 5, + STATE(764), 1, + aux_sym_requires_module_directive_repeat1, + STATE(830), 1, + sym_requires_modifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20141] = 9, - ACTIONS(1028), 1, + ACTIONS(2268), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2266), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [20173] = 9, + ACTIONS(1030), 1, anon_sym_LT, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_permits, - ACTIONS(2257), 1, + ACTIONS(2262), 1, anon_sym_extends, - ACTIONS(2259), 1, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(111), 1, + STATE(137), 1, sym_interface_body, - STATE(782), 1, + STATE(801), 1, sym_type_parameters, - STATE(925), 1, + STATE(896), 1, sym_extends_interfaces, - STATE(1154), 1, + STATE(1085), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20170] = 5, - STATE(766), 1, - aux_sym_requires_module_directive_repeat1, - STATE(815), 1, - sym_requires_modifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2263), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2261), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [20191] = 6, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(1431), 1, + [20202] = 9, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(862), 1, - sym_argument_list, - STATE(991), 1, + ACTIONS(2224), 1, + anon_sym_extends, + ACTIONS(2226), 1, + anon_sym_implements, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(146), 1, sym_class_body, + STATE(822), 1, + sym_superclass, + STATE(934), 1, + sym_super_interfaces, + STATE(1102), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20213] = 5, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2268), 1, - sym_identifier, - STATE(1089), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(824), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20233] = 5, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2268), 1, - sym_identifier, - STATE(1023), 1, - sym_type_parameter, + [20231] = 9, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2224), 1, + anon_sym_extends, + ACTIONS(2226), 1, + anon_sym_implements, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(155), 1, + sym_class_body, + STATE(824), 1, + sym_superclass, + STATE(939), 1, + sym_super_interfaces, + STATE(1069), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(824), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20253] = 7, - ACTIONS(2270), 1, + [20260] = 7, + ACTIONS(2271), 1, anon_sym_RBRACE, - ACTIONS(2272), 1, + ACTIONS(2273), 1, anon_sym_case, - ACTIONS(2275), 1, + ACTIONS(2276), 1, anon_sym_default, STATE(3), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1208), 1, + STATE(1219), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(770), 2, + STATE(768), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [20277] = 7, - ACTIONS(2241), 1, + [20284] = 7, + ACTIONS(2256), 1, anon_sym_default, - ACTIONS(2278), 1, + ACTIONS(2279), 1, anon_sym_RBRACE, - ACTIONS(2280), 1, + ACTIONS(2281), 1, anon_sym_case, STATE(3), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1208), 1, + STATE(1219), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(770), 2, + STATE(768), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [20301] = 6, - ACTIONS(1100), 1, + [20308] = 6, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(848), 1, + sym_argument_list, + STATE(1054), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2283), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20330] = 5, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2285), 1, + sym_identifier, + STATE(1169), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(823), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20350] = 6, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(1431), 1, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(849), 1, + STATE(867), 1, sym_argument_list, - STATE(980), 1, + STATE(1040), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 3, + ACTIONS(2287), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20323] = 6, + [20372] = 6, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(2284), 1, + ACTIONS(2289), 1, sym_identifier, - ACTIONS(2288), 1, + ACTIONS(2293), 1, sym_this, - STATE(942), 1, + STATE(935), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 3, + ACTIONS(2291), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20345] = 6, - ACTIONS(2290), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, - anon_sym_case, - ACTIONS(2295), 1, - anon_sym_default, - STATE(1206), 1, - sym_switch_label, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(774), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [20366] = 4, - ACTIONS(342), 1, + [20394] = 5, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2298), 1, + ACTIONS(2285), 1, sym_identifier, + STATE(1056), 1, + sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(839), 4, + STATE(823), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20383] = 5, - ACTIONS(2107), 1, + [20414] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2295), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [20427] = 5, + ACTIONS(2297), 1, sym_identifier, - STATE(905), 1, - sym__variable_declarator_id, - STATE(1062), 1, - sym_variable_declarator, + ACTIONS(2301), 1, + anon_sym_static, + STATE(1141), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2299), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20402] = 4, - ACTIONS(301), 1, + [20446] = 4, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2300), 1, - anon_sym_LBRACK, + ACTIONS(2303), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, + STATE(812), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20419] = 2, + [20463] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 6, + ACTIONS(2305), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20432] = 2, + [20476] = 4, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(2307), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20445] = 2, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20493] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2309), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20458] = 2, + STATE(816), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20510] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 6, + ACTIONS(2305), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20471] = 7, - ACTIONS(2223), 1, - anon_sym_permits, - ACTIONS(2257), 1, - anon_sym_extends, - ACTIONS(2259), 1, - anon_sym_LBRACE, - STATE(115), 1, - sym_interface_body, - STATE(941), 1, - sym_extends_interfaces, - STATE(1060), 1, - sym_permits, + [20523] = 5, + ACTIONS(2112), 1, + sym_identifier, + STATE(916), 1, + sym__variable_declarator_id, + STATE(1086), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20494] = 2, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20542] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20507] = 2, + ACTIONS(2311), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [20555] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 6, + ACTIONS(2313), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20520] = 6, - ACTIONS(2239), 1, - anon_sym_case, - ACTIONS(2241), 1, - anon_sym_default, - ACTIONS(2278), 1, - anon_sym_RBRACE, - STATE(1206), 1, - sym_switch_label, + [20568] = 4, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(2315), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(774), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [20541] = 2, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20585] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2317), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20554] = 2, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20602] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2319), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20619] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 6, + ACTIONS(2313), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20567] = 2, + [20632] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 6, + ACTIONS(2313), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20580] = 2, + [20645] = 4, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2321), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20593] = 2, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20662] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2324), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20606] = 2, + STATE(786), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20679] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2326), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(787), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20696] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 6, + ACTIONS(2328), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20619] = 2, + [20709] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 6, + ACTIONS(2330), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20632] = 7, - ACTIONS(1431), 1, + [20722] = 7, + ACTIONS(1436), 1, anon_sym_LBRACE, - ACTIONS(2221), 1, + ACTIONS(2226), 1, anon_sym_implements, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_permits, - STATE(132), 1, + STATE(122), 1, sym_class_body, - STATE(899), 1, + STATE(940), 1, sym_super_interfaces, - STATE(1159), 1, + STATE(1067), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20655] = 2, + [20745] = 6, + ACTIONS(2332), 1, + anon_sym_RBRACE, + ACTIONS(2334), 1, + anon_sym_case, + ACTIONS(2337), 1, + anon_sym_default, + STATE(1215), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20668] = 2, + STATE(796), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [20766] = 4, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(2340), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 6, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20783] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2342), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20681] = 2, + [20796] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 6, + ACTIONS(2344), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [20809] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2346), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20694] = 7, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2223), 1, + [20822] = 7, + ACTIONS(2228), 1, anon_sym_permits, - STATE(151), 1, - sym_class_body, - STATE(930), 1, - sym_super_interfaces, - STATE(1068), 1, + ACTIONS(2262), 1, + anon_sym_extends, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(157), 1, + sym_interface_body, + STATE(921), 1, + sym_extends_interfaces, + STATE(1154), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20717] = 2, + [20845] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 6, + ACTIONS(2348), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20730] = 2, + [20858] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 6, + ACTIONS(2350), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20743] = 2, + [20871] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 6, + ACTIONS(2352), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20756] = 2, + [20884] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2338), 6, + ACTIONS(2354), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20769] = 2, + [20897] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 6, + ACTIONS(2356), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20782] = 2, + [20910] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 6, + ACTIONS(2358), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20795] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2342), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [20808] = 2, + [20923] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 6, + ACTIONS(2360), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20821] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2346), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [20834] = 2, + [20936] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 6, + ACTIONS(2362), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20847] = 2, + [20949] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 6, + ACTIONS(2364), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20860] = 7, - ACTIONS(2223), 1, + [20962] = 7, + ACTIONS(2228), 1, anon_sym_permits, - ACTIONS(2257), 1, + ACTIONS(2262), 1, anon_sym_extends, - ACTIONS(2259), 1, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(158), 1, + STATE(165), 1, sym_interface_body, - STATE(906), 1, + STATE(949), 1, sym_extends_interfaces, - STATE(1075), 1, + STATE(1167), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20883] = 5, - ACTIONS(2107), 1, + [20985] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2366), 1, sym_identifier, - STATE(905), 1, - sym__variable_declarator_id, - STATE(1155), 1, - sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [20902] = 5, - ACTIONS(2350), 1, - sym_identifier, - ACTIONS(2354), 1, - anon_sym_static, - STATE(1083), 1, - sym_scoped_identifier, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21002] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [20921] = 4, - ACTIONS(2356), 1, + ACTIONS(2368), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21015] = 4, + ACTIONS(2370), 1, anon_sym_PIPE, - STATE(812), 1, + STATE(814), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 4, + ACTIONS(2200), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - [20938] = 2, + [21032] = 5, + ACTIONS(2112), 1, + sym_identifier, + STATE(916), 1, + sym__variable_declarator_id, + STATE(1133), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2359), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [20951] = 4, - ACTIONS(342), 1, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21051] = 4, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2361), 1, + ACTIONS(2373), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(821), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20968] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2363), 6, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - anon_sym_record, - sym_identifier, - [20981] = 2, + [21068] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2365), 6, + ACTIONS(2375), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20994] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2367), 1, - anon_sym_LBRACK, + [21081] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21011] = 4, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2369), 1, + ACTIONS(2377), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21094] = 5, + ACTIONS(2112), 1, sym_identifier, + STATE(916), 1, + sym__variable_declarator_id, + STATE(1163), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(830), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21028] = 2, + ACTIONS(2098), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21113] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2371), 6, + ACTIONS(2379), 6, anon_sym_open, anon_sym_module, anon_sym_transitive, anon_sym_static, anon_sym_record, sym_identifier, - [21041] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2373), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [21054] = 4, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2375), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21071] = 2, + [21126] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2377), 6, + ACTIONS(2381), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21084] = 2, + [21139] = 7, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2226), 1, + anon_sym_implements, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(133), 1, + sym_class_body, + STATE(942), 1, + sym_super_interfaces, + STATE(1113), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2379), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21097] = 4, - ACTIONS(342), 1, + [21162] = 4, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2381), 1, + ACTIONS(2383), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(672), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21114] = 4, + [21179] = 7, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2226), 1, + anon_sym_implements, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(123), 1, + sym_class_body, + STATE(912), 1, + sym_super_interfaces, + STATE(1103), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21202] = 4, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2383), 1, + ACTIONS(2385), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21131] = 2, + [21219] = 6, + ACTIONS(2254), 1, + anon_sym_case, + ACTIONS(2256), 1, + anon_sym_default, + ACTIONS(2279), 1, + anon_sym_RBRACE, + STATE(1215), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2385), 6, + STATE(796), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [21240] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2387), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21144] = 2, + [21253] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 6, + ACTIONS(2389), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21157] = 4, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2389), 1, - sym_identifier, + [21266] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(836), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21174] = 5, - ACTIONS(2107), 1, - sym_identifier, - STATE(905), 1, - sym__variable_declarator_id, - STATE(1063), 1, - sym_variable_declarator, + ACTIONS(2391), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21279] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2393), 6, anon_sym_open, anon_sym_module, + anon_sym_transitive, + anon_sym_static, anon_sym_record, - [21193] = 4, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2391), 1, sym_identifier, + [21292] = 4, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(2395), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(672), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21210] = 4, - ACTIONS(2102), 1, - anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AT, + [21309] = 7, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2226), 1, + anon_sym_implements, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(149), 1, + sym_class_body, + STATE(927), 1, + sym_super_interfaces, + STATE(1178), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21227] = 2, + [21332] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21240] = 2, + ACTIONS(2397), 6, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_throws, + [21345] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2399), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21253] = 2, + [21358] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 6, + ACTIONS(2401), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21266] = 2, + [21371] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2403), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21279] = 4, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2404), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21296] = 7, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(116), 1, - sym_class_body, - STATE(896), 1, - sym_super_interfaces, - STATE(1136), 1, - sym_permits, + [21384] = 4, + ACTIONS(2155), 1, + anon_sym_PIPE, + STATE(814), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21319] = 2, + ACTIONS(2405), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [21401] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2407), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21332] = 4, - ACTIONS(342), 1, - anon_sym_AT, - ACTIONS(2408), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(672), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21349] = 4, - ACTIONS(2143), 1, - anon_sym_PIPE, - STATE(812), 1, - aux_sym_catch_type_repeat1, + [21414] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [21366] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2412), 1, - anon_sym_LBRACK, + ACTIONS(2409), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21427] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21383] = 2, + ACTIONS(2411), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21440] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2414), 6, + ACTIONS(2413), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21396] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2416), 1, - anon_sym_LBRACK, + [21453] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21413] = 2, + ACTIONS(2415), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21466] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 6, + ACTIONS(2417), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21426] = 2, + [21479] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 6, + ACTIONS(2419), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21439] = 7, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(125), 1, - sym_class_body, - STATE(944), 1, - sym_super_interfaces, - STATE(1167), 1, - sym_permits, + [21492] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21462] = 4, - ACTIONS(2422), 1, - sym_identifier, - STATE(1056), 1, - sym_scoped_identifier, + ACTIONS(2421), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21505] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21478] = 4, - ACTIONS(1100), 1, - anon_sym_LPAREN, - STATE(476), 1, - sym_argument_list, + ACTIONS(2423), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21518] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1245), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [21494] = 4, - ACTIONS(1431), 1, + ACTIONS(2425), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21531] = 4, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(1003), 1, + STATE(997), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2426), 3, + ACTIONS(2427), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21510] = 4, - ACTIONS(2107), 1, - sym_identifier, - STATE(1213), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21526] = 4, - ACTIONS(2428), 1, + [21547] = 4, + ACTIONS(2429), 1, sym_identifier, - STATE(1011), 1, + STATE(954), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 3, + ACTIONS(2431), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21542] = 6, - ACTIONS(1897), 1, - anon_sym_SEMI, - ACTIONS(2432), 1, - anon_sym_COMMA, - ACTIONS(2434), 1, - anon_sym_RBRACE, - STATE(882), 1, - aux_sym_enum_body_repeat1, - STATE(1240), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21562] = 4, - ACTIONS(2436), 1, + [21563] = 4, + ACTIONS(2433), 1, sym_identifier, - STATE(1034), 1, + STATE(1171), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2438), 3, + ACTIONS(2435), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21578] = 4, - ACTIONS(2107), 1, + [21579] = 4, + ACTIONS(2112), 1, sym_identifier, - STATE(1209), 1, + STATE(1242), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21594] = 5, - ACTIONS(2440), 1, - anon_sym_catch, - ACTIONS(2442), 1, - anon_sym_finally, - STATE(236), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(88), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [21612] = 6, + [21595] = 6, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(2137), 1, + ACTIONS(2134), 1, anon_sym_DOT, - STATE(420), 1, + STATE(422), 1, sym_argument_list, - STATE(660), 1, + STATE(662), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21632] = 4, - ACTIONS(2444), 1, - sym_identifier, - STATE(1086), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2446), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21648] = 6, + [21615] = 6, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(2135), 1, + ACTIONS(2138), 1, anon_sym_DOT, - STATE(418), 1, + STATE(420), 1, sym_argument_list, - STATE(661), 1, + STATE(665), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21668] = 4, - STATE(1079), 1, - sym__wildcard_bounds, + [21635] = 6, + ACTIONS(1958), 1, + anon_sym_SEMI, + ACTIONS(1981), 1, + anon_sym_RBRACE, + ACTIONS(2437), 1, + anon_sym_COMMA, + STATE(933), 1, + aux_sym_enum_body_repeat1, + STATE(1237), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 2, - anon_sym_GT, + [21655] = 4, + ACTIONS(2439), 1, anon_sym_COMMA, - ACTIONS(2450), 2, - anon_sym_extends, - sym_super, - [21684] = 4, + STATE(855), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2442), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_permits, + [21671] = 5, + ACTIONS(2444), 1, + anon_sym_catch, + ACTIONS(2446), 1, + anon_sym_finally, + STATE(242), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(90), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [21689] = 4, + ACTIONS(2448), 1, + sym_identifier, + STATE(1173), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2450), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21705] = 4, ACTIONS(2452), 1, sym_identifier, - STATE(967), 1, + STATE(1037), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, @@ -57709,10 +57736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_open, anon_sym_module, anon_sym_record, - [21700] = 4, + [21721] = 4, ACTIONS(2456), 1, sym_identifier, - STATE(1097), 1, + STATE(1012), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, @@ -57721,867 +57748,824 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_open, anon_sym_module, anon_sym_record, - [21716] = 4, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(1029), 1, - sym_class_body, + [21737] = 4, + ACTIONS(2460), 1, + sym_identifier, + STATE(963), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2460), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21732] = 4, - ACTIONS(2462), 1, - anon_sym_COMMA, - STATE(863), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2465), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_permits, - [21748] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2467), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [21760] = 4, - ACTIONS(2469), 1, + ACTIONS(2462), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21753] = 4, + ACTIONS(2464), 1, sym_identifier, - STATE(408), 1, + STATE(1122), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 3, + ACTIONS(2466), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21776] = 4, - STATE(1148), 1, + [21769] = 4, + STATE(1076), 1, sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 2, - anon_sym_extends, - sym_super, - ACTIONS(2473), 2, + ACTIONS(2468), 2, anon_sym_GT, anon_sym_COMMA, - [21792] = 4, - ACTIONS(2475), 1, + ACTIONS(2470), 2, + anon_sym_extends, + sym_super, + [21785] = 4, + ACTIONS(2472), 1, sym_identifier, - STATE(1118), 1, + STATE(408), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 3, + ACTIONS(2474), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21808] = 4, - ACTIONS(2479), 1, + [21801] = 4, + ACTIONS(2476), 1, sym_identifier, - STATE(917), 1, + STATE(1016), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2481), 3, + ACTIONS(2478), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21824] = 4, - ACTIONS(2483), 1, + [21817] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2480), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [21829] = 4, + ACTIONS(2482), 1, sym_identifier, - STATE(915), 1, + STATE(1131), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 3, + ACTIONS(2484), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21840] = 4, - ACTIONS(2487), 1, + [21845] = 4, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2486), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [21861] = 4, + ACTIONS(2112), 1, sym_identifier, - STATE(913), 1, - sym_scoped_identifier, + STATE(1240), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2489), 3, + ACTIONS(2098), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21856] = 4, - ACTIONS(2491), 1, + [21877] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2144), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1106), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [21891] = 4, + ACTIONS(2488), 1, sym_identifier, STATE(911), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 3, + ACTIONS(2490), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21872] = 4, - ACTIONS(2495), 1, + [21907] = 4, + ACTIONS(2492), 1, sym_identifier, STATE(909), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2497), 3, + ACTIONS(2494), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21888] = 4, - ACTIONS(2499), 1, + [21923] = 4, + ACTIONS(2496), 1, sym_identifier, - STATE(1095), 1, + STATE(907), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 3, + ACTIONS(2498), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21904] = 4, - ACTIONS(2503), 1, + [21939] = 4, + ACTIONS(2500), 1, sym_identifier, - STATE(1053), 1, + STATE(905), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 3, + ACTIONS(2502), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21920] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2135), 1, - anon_sym_DOT, - STATE(421), 1, - sym_argument_list, - STATE(661), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21940] = 4, - ACTIONS(2507), 1, + [21955] = 4, + ACTIONS(2504), 1, sym_identifier, - ACTIONS(2511), 1, - sym_super, + STATE(1006), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 3, + ACTIONS(2506), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21956] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2513), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [21968] = 4, - ACTIONS(2515), 1, + [21971] = 4, + ACTIONS(2508), 1, sym_identifier, - STATE(524), 1, + STATE(903), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2517), 3, + ACTIONS(2510), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21984] = 4, - ACTIONS(2519), 1, + [21987] = 4, + ACTIONS(2512), 1, sym_identifier, - STATE(886), 1, + STATE(901), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2521), 3, + ACTIONS(2514), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22000] = 4, - ACTIONS(2523), 1, + [22003] = 4, + ACTIONS(2516), 1, sym_identifier, - STATE(1000), 1, - sym_scoped_identifier, + ACTIONS(2520), 1, + sym_super, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 3, + ACTIONS(2518), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22016] = 3, + [22019] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 2, + ACTIONS(2522), 5, anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_SEMI, - ACTIONS(1104), 3, + [22031] = 4, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(472), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1235), 3, anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [22030] = 6, - ACTIONS(1897), 1, + [22047] = 4, + ACTIONS(2524), 1, + sym_identifier, + STATE(529), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2526), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22063] = 6, + ACTIONS(1958), 1, anon_sym_SEMI, - ACTIONS(1978), 1, - anon_sym_RBRACE, - ACTIONS(2527), 1, + ACTIONS(2528), 1, anon_sym_COMMA, - STATE(938), 1, + ACTIONS(2530), 1, + anon_sym_RBRACE, + STATE(854), 1, aux_sym_enum_body_repeat1, - STATE(1176), 1, + STATE(1228), 1, sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22050] = 6, + [22083] = 6, ACTIONS(87), 1, anon_sym_LT, - ACTIONS(1100), 1, + ACTIONS(1102), 1, anon_sym_LPAREN, - ACTIONS(2137), 1, + ACTIONS(2138), 1, anon_sym_DOT, - STATE(422), 1, + STATE(421), 1, sym_argument_list, - STATE(660), 1, + STATE(665), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22070] = 4, - ACTIONS(2529), 1, + [22103] = 6, + ACTIONS(87), 1, + anon_sym_LT, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2134), 1, + anon_sym_DOT, + STATE(419), 1, + sym_argument_list, + STATE(662), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22123] = 4, + STATE(1081), 1, + sym__wildcard_bounds, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2470), 2, + anon_sym_extends, + sym_super, + ACTIONS(2532), 2, + anon_sym_GT, + anon_sym_COMMA, + [22139] = 4, + ACTIONS(2534), 1, sym_identifier, - STATE(1163), 1, + STATE(1095), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2531), 3, + ACTIONS(2536), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22086] = 4, - ACTIONS(2533), 1, + [22155] = 4, + ACTIONS(2538), 1, sym_identifier, - STATE(638), 1, + STATE(640), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2535), 3, + ACTIONS(2540), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22102] = 5, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(2539), 1, - anon_sym_SEMI, - STATE(957), 1, - aux_sym_exports_module_directive_repeat1, + [22171] = 5, + ACTIONS(1656), 1, + anon_sym_COLON_COLON, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2544), 1, + anon_sym_RPAREN, + STATE(1028), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22119] = 4, - ACTIONS(2543), 1, + [22188] = 4, + ACTIONS(2548), 1, anon_sym_throws, - STATE(1115), 1, + STATE(1111), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2541), 2, + ACTIONS(2546), 2, anon_sym_LBRACE, anon_sym_SEMI, - [22134] = 4, - ACTIONS(2543), 1, - anon_sym_throws, - STATE(1147), 1, - sym_throws, + [22203] = 4, + ACTIONS(2550), 1, + anon_sym_EQ, + ACTIONS(2554), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2545), 2, - anon_sym_LBRACE, + ACTIONS(2552), 2, + anon_sym_COMMA, anon_sym_SEMI, - [22149] = 5, - ACTIONS(2543), 1, - anon_sym_throws, - ACTIONS(2547), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_constructor_body, - STATE(1116), 1, - sym_throws, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22166] = 5, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(1602), 1, - anon_sym_COLON_COLON, - ACTIONS(2549), 1, - anon_sym_DOT, - STATE(1204), 1, - sym_argument_list, + [22218] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22183] = 5, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(153), 1, - sym_class_body, - STATE(1069), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22200] = 4, - ACTIONS(2551), 1, + ACTIONS(2556), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(948), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2553), 2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - [22215] = 5, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2555), 1, - anon_sym_LBRACE, - STATE(123), 1, - sym_enum_body, - STATE(1171), 1, - sym_super_interfaces, + [22229] = 4, + ACTIONS(2550), 1, + anon_sym_EQ, + ACTIONS(2558), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22232] = 5, - ACTIONS(1028), 1, - anon_sym_LT, - ACTIONS(2193), 1, + ACTIONS(2552), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [22244] = 5, + ACTIONS(2560), 1, anon_sym_LPAREN, - STATE(1134), 1, - sym_formal_parameters, - STATE(1175), 1, - sym_type_parameters, + ACTIONS(2562), 1, + anon_sym_LBRACE, + STATE(856), 1, + sym_block, + STATE(1126), 1, + sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22249] = 5, - ACTIONS(1602), 1, + [22261] = 5, + ACTIONS(1656), 1, anon_sym_COLON_COLON, - ACTIONS(2557), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2559), 1, + ACTIONS(2564), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(1007), 1, aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22266] = 5, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(169), 1, - sym_class_body, - STATE(1132), 1, - sym_permits, + [22278] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22283] = 4, - ACTIONS(2551), 1, + ACTIONS(2442), 4, anon_sym_COMMA, - STATE(863), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2561), 2, anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_permits, - [22298] = 2, + [22289] = 4, + ACTIONS(2566), 1, + anon_sym_COMMA, + STATE(947), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 4, - anon_sym_COMMA, + ACTIONS(2568), 2, anon_sym_LBRACE, anon_sym_SEMI, + [22304] = 5, + ACTIONS(2228), 1, anon_sym_permits, - [22309] = 5, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(120), 1, - sym_class_body, - STATE(1138), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22326] = 5, - ACTIONS(2223), 1, - anon_sym_permits, - ACTIONS(2259), 1, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(161), 1, + STATE(160), 1, sym_interface_body, - STATE(1076), 1, + STATE(1064), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22343] = 4, - ACTIONS(87), 1, - anon_sym_LT, - STATE(1146), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2563), 2, - anon_sym_new, - sym_identifier, - [22358] = 4, - ACTIONS(1881), 1, - anon_sym_COMMA, - STATE(929), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2565), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22373] = 4, - ACTIONS(2567), 1, - anon_sym_COMMA, - STATE(903), 1, - aux_sym_argument_list_repeat1, + [22321] = 5, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(1656), 1, + anon_sym_COLON_COLON, + ACTIONS(2570), 1, + anon_sym_DOT, + STATE(1217), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1911), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [22388] = 2, + [22338] = 4, + ACTIONS(2548), 1, + anon_sym_throws, + STATE(1157), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2570), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2572), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [22399] = 3, + [22353] = 5, + ACTIONS(2226), 1, + anon_sym_implements, ACTIONS(2574), 1, - anon_sym_EQ, + anon_sym_LBRACE, + STATE(142), 1, + sym_enum_body, + STATE(1119), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 3, - anon_sym_RPAREN, + [22370] = 5, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2576), 1, anon_sym_COMMA, + ACTIONS(2578), 1, anon_sym_SEMI, - [22412] = 5, - ACTIONS(2223), 1, - anon_sym_permits, - ACTIONS(2259), 1, - anon_sym_LBRACE, - STATE(135), 1, - sym_interface_body, - STATE(1160), 1, - sym_permits, + STATE(966), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22429] = 5, - ACTIONS(1371), 1, + [22387] = 5, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2537), 1, - anon_sym_COMMA, ACTIONS(2576), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, anon_sym_SEMI, - STATE(955), 1, + STATE(968), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22446] = 5, - ACTIONS(1371), 1, + [22404] = 5, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2578), 1, + ACTIONS(2582), 1, anon_sym_SEMI, - STATE(958), 1, + STATE(969), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22463] = 5, - ACTIONS(1397), 1, + [22421] = 5, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2580), 1, + ACTIONS(2584), 1, anon_sym_SEMI, - STATE(960), 1, + STATE(971), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22480] = 5, - ACTIONS(1371), 1, + [22438] = 5, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2582), 1, + ACTIONS(2586), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(973), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22497] = 5, - ACTIONS(1397), 1, + [22455] = 5, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2584), 1, + ACTIONS(2588), 1, anon_sym_SEMI, - STATE(964), 1, + STATE(975), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22514] = 5, - ACTIONS(1371), 1, + [22472] = 5, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2586), 1, + ACTIONS(2590), 1, anon_sym_SEMI, - STATE(966), 1, + STATE(977), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22531] = 5, - ACTIONS(1397), 1, + [22489] = 5, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2588), 1, + ACTIONS(2592), 1, anon_sym_SEMI, - STATE(968), 1, + STATE(978), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22548] = 5, - ACTIONS(1371), 1, + [22506] = 5, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2590), 1, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2592), 1, + ACTIONS(2596), 1, anon_sym_SEMI, - STATE(971), 1, + STATE(981), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22565] = 5, - ACTIONS(1397), 1, + [22523] = 5, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2590), 1, - anon_sym_COMMA, ACTIONS(2594), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, anon_sym_SEMI, - STATE(949), 1, + STATE(983), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22582] = 5, - ACTIONS(1371), 1, + [22540] = 5, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2590), 1, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2596), 1, + ACTIONS(2600), 1, anon_sym_SEMI, - STATE(975), 1, + STATE(985), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22599] = 5, - ACTIONS(1397), 1, + [22557] = 5, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2590), 1, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2602), 1, anon_sym_SEMI, - STATE(977), 1, + STATE(987), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22616] = 2, + [22574] = 5, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(108), 1, + sym_class_body, + STATE(1139), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2600), 4, - anon_sym_RPAREN, + [22591] = 5, + ACTIONS(1030), 1, + anon_sym_LT, + ACTIONS(2165), 1, + anon_sym_LPAREN, + STATE(1116), 1, + sym_formal_parameters, + STATE(1117), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22608] = 4, + ACTIONS(2566), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22627] = 3, - ACTIONS(2507), 1, - sym_identifier, + STATE(855), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [22640] = 5, - ACTIONS(2221), 1, - anon_sym_implements, - ACTIONS(2555), 1, + ACTIONS(2604), 2, anon_sym_LBRACE, - STATE(107), 1, - sym_enum_body, - STATE(1082), 1, - sym_super_interfaces, + anon_sym_permits, + [22623] = 4, + ACTIONS(87), 1, + anon_sym_LT, + STATE(1110), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22657] = 4, - ACTIONS(2543), 1, + ACTIONS(2606), 2, + anon_sym_new, + sym_identifier, + [22638] = 3, + ACTIONS(2550), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2552), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [22651] = 4, + ACTIONS(2548), 1, anon_sym_throws, - STATE(1127), 1, + STATE(1109), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2602), 2, + ACTIONS(2608), 2, anon_sym_LBRACE, anon_sym_SEMI, - [22672] = 4, - ACTIONS(2574), 1, - anon_sym_EQ, - ACTIONS(2604), 1, - anon_sym_COLON, + [22666] = 3, + ACTIONS(2610), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [22687] = 5, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(171), 1, - sym_class_body, - STATE(1174), 1, - sym_permits, + ACTIONS(2612), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22679] = 4, + ACTIONS(2614), 1, + anon_sym_AMP, + STATE(943), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22704] = 4, - ACTIONS(2574), 1, - anon_sym_EQ, - ACTIONS(2606), 1, - anon_sym_COLON, + ACTIONS(2616), 2, + anon_sym_GT, + anon_sym_COMMA, + [22694] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 2, + ACTIONS(2618), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [22719] = 5, - ACTIONS(2223), 1, + [22705] = 5, + ACTIONS(2228), 1, anon_sym_permits, - ACTIONS(2259), 1, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(105), 1, + STATE(107), 1, sym_interface_body, - STATE(1108), 1, + STATE(1170), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22736] = 4, - ACTIONS(2610), 1, - anon_sym_extends, - STATE(1161), 1, - sym_type_bound, + [22722] = 5, + ACTIONS(2548), 1, + anon_sym_throws, + ACTIONS(2620), 1, + anon_sym_LBRACE, + STATE(433), 1, + sym_constructor_body, + STATE(1160), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 2, - anon_sym_GT, - anon_sym_COMMA, - [22751] = 5, - ACTIONS(1431), 1, + [22739] = 5, + ACTIONS(1436), 1, anon_sym_LBRACE, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_permits, - STATE(117), 1, + STATE(173), 1, sym_class_body, - STATE(1137), 1, + STATE(1066), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22768] = 4, - ACTIONS(2612), 1, - anon_sym_AMP, - STATE(928), 1, - aux_sym_type_bound_repeat1, + [22756] = 4, + ACTIONS(2624), 1, + anon_sym_extends, + STATE(1063), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2615), 2, + ACTIONS(2622), 2, anon_sym_GT, anon_sym_COMMA, - [22783] = 4, - ACTIONS(2617), 1, + [22771] = 4, + ACTIONS(1886), 1, anon_sym_COMMA, - STATE(929), 1, + STATE(926), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1911), 2, + ACTIONS(2626), 2, anon_sym_DASH_GT, anon_sym_COLON, - [22798] = 5, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(2223), 1, - anon_sym_permits, - STATE(128), 1, - sym_class_body, - STATE(1162), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22815] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2620), 4, - anon_sym_RPAREN, + [22786] = 4, + ACTIONS(2628), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22826] = 5, - ACTIONS(2622), 1, - anon_sym_LPAREN, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(855), 1, - sym_block, - STATE(1104), 1, - sym_resource_specification, + STATE(926), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22843] = 4, - ACTIONS(2551), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_type_list_repeat1, + ACTIONS(1926), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [22801] = 5, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(127), 1, + sym_class_body, + STATE(1120), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 2, - anon_sym_LBRACE, + [22818] = 5, + ACTIONS(2228), 1, anon_sym_permits, - [22858] = 4, - ACTIONS(2574), 1, - anon_sym_EQ, - ACTIONS(2628), 1, - anon_sym_COLON, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(162), 1, + sym_interface_body, + STATE(1161), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [22873] = 4, - ACTIONS(2574), 1, - anon_sym_EQ, - ACTIONS(2630), 1, - anon_sym_COLON, + [22835] = 3, + ACTIONS(2516), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [22888] = 4, - ACTIONS(2632), 1, + ACTIONS(2518), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22848] = 4, + ACTIONS(2631), 1, anon_sym_AMP, - STATE(946), 1, + STATE(930), 1, aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, @@ -58589,22 +58573,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2634), 2, anon_sym_GT, anon_sym_COMMA, - [22903] = 5, - ACTIONS(1028), 1, + [22863] = 5, + ACTIONS(2226), 1, + anon_sym_implements, + ACTIONS(2574), 1, + anon_sym_LBRACE, + STATE(148), 1, + sym_enum_body, + STATE(1107), 1, + sym_super_interfaces, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22880] = 5, + ACTIONS(1030), 1, anon_sym_LT, - ACTIONS(2193), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - STATE(1080), 1, + STATE(1090), 1, sym_formal_parameters, - STATE(1081), 1, + STATE(1091), 1, sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22920] = 4, + [22897] = 4, ACTIONS(2636), 1, anon_sym_COMMA, - STATE(938), 1, + STATE(933), 1, aux_sym_enum_body_repeat1, ACTIONS(3), 2, sym_line_comment, @@ -58612,88 +58608,113 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2639), 2, anon_sym_RBRACE, anon_sym_SEMI, - [22935] = 4, - ACTIONS(2610), 1, - anon_sym_extends, - STATE(1090), 1, - sym_type_bound, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2641), 2, - anon_sym_GT, - anon_sym_COMMA, - [22950] = 5, - ACTIONS(1602), 1, - anon_sym_COLON_COLON, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_RPAREN, - STATE(994), 1, - aux_sym_cast_expression_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22967] = 5, - ACTIONS(2223), 1, - anon_sym_permits, - ACTIONS(2259), 1, + [22912] = 5, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(147), 1, - sym_interface_body, - STATE(1066), 1, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(132), 1, + sym_class_body, + STATE(1115), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22984] = 3, - ACTIONS(2645), 1, + [22929] = 3, + ACTIONS(2641), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 3, + ACTIONS(2643), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22997] = 5, - ACTIONS(2543), 1, + [22942] = 4, + ACTIONS(2624), 1, + anon_sym_extends, + STATE(1118), 1, + sym_type_bound, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2645), 2, + anon_sym_GT, + anon_sym_COMMA, + [22957] = 5, + ACTIONS(2548), 1, anon_sym_throws, - ACTIONS(2547), 1, + ACTIONS(2620), 1, anon_sym_LBRACE, - STATE(433), 1, + STATE(425), 1, sym_constructor_body, - STATE(1093), 1, + STATE(1177), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23014] = 5, - ACTIONS(1431), 1, + [22974] = 4, + ACTIONS(2566), 1, + anon_sym_COMMA, + STATE(914), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2647), 2, + anon_sym_LBRACE, + anon_sym_permits, + [22989] = 5, + ACTIONS(1436), 1, anon_sym_LBRACE, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_permits, - STATE(152), 1, + STATE(130), 1, sym_class_body, - STATE(1122), 1, + STATE(1079), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23031] = 2, + [23006] = 5, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(175), 1, + sym_class_body, + STATE(1080), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 4, - anon_sym_RPAREN, + [23023] = 4, + ACTIONS(2550), 1, + anon_sym_EQ, + ACTIONS(2649), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2552), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [23042] = 4, - ACTIONS(2632), 1, + [23038] = 5, + ACTIONS(1436), 1, + anon_sym_LBRACE, + ACTIONS(2228), 1, + anon_sym_permits, + STATE(121), 1, + sym_class_body, + STATE(1162), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23055] = 4, + ACTIONS(2614), 1, anon_sym_AMP, - STATE(928), 1, + STATE(930), 1, aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, @@ -58701,2524 +58722,2599 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2651), 2, anon_sym_GT, anon_sym_COMMA, - [23057] = 5, - ACTIONS(1431), 1, + [23070] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2653), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23081] = 5, + ACTIONS(1436), 1, anon_sym_LBRACE, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_permits, - STATE(126), 1, + STATE(153), 1, sym_class_body, - STATE(1166), 1, + STATE(1134), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23074] = 4, - ACTIONS(2551), 1, + [23098] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2655), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23109] = 4, + ACTIONS(2566), 1, anon_sym_COMMA, - STATE(863), 1, + STATE(855), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 2, + ACTIONS(2657), 2, anon_sym_LBRACE, anon_sym_SEMI, - [23089] = 4, - ACTIONS(2590), 1, - anon_sym_COMMA, - ACTIONS(2655), 1, - anon_sym_SEMI, - STATE(1013), 1, - aux_sym_provides_module_directive_repeat1, + [23124] = 4, + ACTIONS(2550), 1, + anon_sym_EQ, + ACTIONS(2659), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23103] = 4, - ACTIONS(1897), 1, + ACTIONS(2552), 2, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2434), 1, - anon_sym_RBRACE, - STATE(1240), 1, - sym_enum_body_declarations, + [23139] = 5, + ACTIONS(2228), 1, + anon_sym_permits, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(140), 1, + sym_interface_body, + STATE(1075), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23117] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_SEMI, - STATE(443), 1, - sym_block, + [23156] = 4, + ACTIONS(2661), 1, + anon_sym_COMMA, + STATE(950), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23131] = 4, - ACTIONS(2659), 1, + ACTIONS(1926), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [23171] = 4, + ACTIONS(2664), 1, anon_sym_GT, - ACTIONS(2661), 1, + ACTIONS(2666), 1, anon_sym_COMMA, - STATE(992), 1, + STATE(1060), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23145] = 4, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2663), 1, + [23185] = 4, + ACTIONS(2668), 1, anon_sym_RPAREN, - STATE(1027), 1, - aux_sym_cast_expression_repeat1, + ACTIONS(2670), 1, + anon_sym_COMMA, + STATE(952), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23159] = 4, - ACTIONS(2661), 1, + [23199] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2665), 1, - anon_sym_GT, - STATE(963), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2673), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23173] = 4, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(2667), 1, - anon_sym_SEMI, - STATE(1002), 1, - aux_sym_exports_module_directive_repeat1, + [23213] = 4, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2675), 1, + anon_sym_LBRACE, + STATE(210), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23187] = 4, - ACTIONS(2669), 1, - anon_sym_GT, - ACTIONS(2671), 1, + [23227] = 4, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2675), 1, + anon_sym_LBRACE, + STATE(211), 1, + sym_module_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23241] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(956), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2677), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23201] = 4, - ACTIONS(2537), 1, + [23255] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1902), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2674), 1, anon_sym_SEMI, - STATE(1002), 1, - aux_sym_exports_module_directive_repeat1, + [23265] = 4, + ACTIONS(2679), 1, + anon_sym_COMMA, + ACTIONS(2682), 1, + anon_sym_SEMI, + STATE(958), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23215] = 4, - ACTIONS(2537), 1, + [23279] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(2676), 1, + ACTIONS(2684), 1, anon_sym_SEMI, - STATE(1002), 1, - aux_sym_exports_module_directive_repeat1, + STATE(962), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23229] = 4, - ACTIONS(1971), 1, - anon_sym_RBRACE, - ACTIONS(2678), 1, + [23293] = 4, + ACTIONS(2686), 1, anon_sym_COMMA, - STATE(959), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2689), 1, + anon_sym_RBRACE, + STATE(960), 1, + aux_sym_element_value_array_initializer_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23307] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23243] = 4, - ACTIONS(2537), 1, + ACTIONS(2691), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [23317] = 4, + ACTIONS(2693), 1, anon_sym_COMMA, - ACTIONS(2681), 1, + ACTIONS(2696), 1, anon_sym_SEMI, - STATE(1002), 1, - aux_sym_exports_module_directive_repeat1, + STATE(962), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23257] = 4, - ACTIONS(2683), 1, - anon_sym_RPAREN, - ACTIONS(2685), 1, + [23331] = 4, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2698), 1, anon_sym_SEMI, - STATE(961), 1, - aux_sym_resource_specification_repeat1, + ACTIONS(2700), 1, + anon_sym_to, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23345] = 4, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(2702), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23271] = 4, - ACTIONS(2537), 1, + [23359] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2688), 1, + ACTIONS(2704), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23373] = 4, + ACTIONS(2576), 1, + anon_sym_COMMA, + ACTIONS(2706), 1, anon_sym_SEMI, - STATE(1002), 1, + STATE(1008), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23285] = 4, - ACTIONS(2661), 1, + [23387] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2690), 1, - anon_sym_GT, - STATE(1025), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2708), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23299] = 4, - ACTIONS(2537), 1, + [23401] = 4, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2692), 1, + ACTIONS(2710), 1, anon_sym_SEMI, - STATE(1002), 1, + STATE(1008), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23313] = 4, - ACTIONS(2694), 1, + [23415] = 4, + ACTIONS(2576), 1, + anon_sym_COMMA, + ACTIONS(2712), 1, + anon_sym_SEMI, + STATE(1008), 1, + aux_sym_exports_module_directive_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23429] = 4, + ACTIONS(2714), 1, anon_sym_RPAREN, - ACTIONS(2696), 1, + ACTIONS(2716), 1, anon_sym_COMMA, - STATE(965), 1, - aux_sym_inferred_parameters_repeat1, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23327] = 4, - ACTIONS(2537), 1, + [23443] = 4, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2699), 1, + ACTIONS(2719), 1, anon_sym_SEMI, - STATE(1002), 1, + STATE(1008), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23341] = 4, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2701), 1, - anon_sym_LBRACE, - STATE(220), 1, - sym_module_body, + [23457] = 4, + ACTIONS(2721), 1, + anon_sym_COMMA, + ACTIONS(2723), 1, + anon_sym_RBRACE, + STATE(1025), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23355] = 4, - ACTIONS(2537), 1, + [23471] = 4, + ACTIONS(2576), 1, anon_sym_COMMA, - ACTIONS(2703), 1, + ACTIONS(2725), 1, anon_sym_SEMI, - STATE(1002), 1, + STATE(1008), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23369] = 4, - ACTIONS(1905), 1, + [23485] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2705), 1, + ACTIONS(2727), 1, anon_sym_RPAREN, - STATE(1059), 1, + STATE(970), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23383] = 4, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2709), 1, - anon_sym_STAR, - STATE(1188), 1, - sym_asterisk, + [23499] = 4, + ACTIONS(2576), 1, + anon_sym_COMMA, + ACTIONS(2729), 1, + anon_sym_SEMI, + STATE(1008), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23397] = 4, - ACTIONS(2590), 1, + [23513] = 4, + ACTIONS(2731), 1, + anon_sym_RPAREN, + ACTIONS(2733), 1, anon_sym_COMMA, - ACTIONS(2711), 1, + STATE(1029), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23527] = 4, + ACTIONS(2576), 1, + anon_sym_COMMA, + ACTIONS(2735), 1, anon_sym_SEMI, - STATE(1013), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1008), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23411] = 4, - ACTIONS(2709), 1, - anon_sym_STAR, - ACTIONS(2713), 1, - sym_identifier, - STATE(1182), 1, - sym_asterisk, + [23541] = 4, + ACTIONS(2576), 1, + anon_sym_COMMA, + ACTIONS(2737), 1, + anon_sym_SEMI, + STATE(1008), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23425] = 4, - ACTIONS(632), 1, - anon_sym_RBRACE, - ACTIONS(2715), 1, + [23555] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(959), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2739), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23439] = 4, - ACTIONS(2717), 1, + [23569] = 4, + ACTIONS(1350), 1, anon_sym_RPAREN, - ACTIONS(2719), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(979), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1014), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23453] = 4, - ACTIONS(2590), 1, + [23583] = 4, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2721), 1, + ACTIONS(2743), 1, anon_sym_SEMI, - STATE(1013), 1, + STATE(1018), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23467] = 4, - ACTIONS(1937), 1, + [23597] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2723), 1, + ACTIONS(2745), 1, anon_sym_RPAREN, - STATE(903), 1, - aux_sym_argument_list_repeat1, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23481] = 4, - ACTIONS(2590), 1, + [23611] = 4, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2725), 1, + ACTIONS(2747), 1, anon_sym_SEMI, - STATE(1013), 1, + STATE(1018), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23495] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2727), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_block, + [23625] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23509] = 4, - ACTIONS(2719), 1, + ACTIONS(2749), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + [23635] = 4, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2729), 1, - anon_sym_RPAREN, - STATE(1006), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2751), 1, + anon_sym_SEMI, + STATE(1018), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23523] = 2, + [23649] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2753), 3, + anon_sym_LBRACE, anon_sym_SEMI, - [23533] = 4, - ACTIONS(1905), 1, + anon_sym_throws, + [23659] = 4, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2733), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23547] = 4, - ACTIONS(2207), 1, - anon_sym_default, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_SEMI, - STATE(1251), 1, - sym__default_value, + STATE(1018), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23561] = 4, - ACTIONS(1905), 1, + [23673] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(2757), 1, anon_sym_RPAREN, - STATE(1059), 1, + STATE(970), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23575] = 4, - ACTIONS(2739), 1, - anon_sym_RPAREN, - ACTIONS(2741), 1, + [23687] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(986), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2759), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23589] = 4, - ACTIONS(1345), 1, - anon_sym_RPAREN, - ACTIONS(2741), 1, - anon_sym_COMMA, - STATE(988), 1, - aux_sym_formal_parameters_repeat1, + [23701] = 4, + ACTIONS(2212), 1, + anon_sym_default, + ACTIONS(2761), 1, + anon_sym_SEMI, + STATE(1222), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23603] = 4, - ACTIONS(2741), 1, + [23715] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - STATE(997), 1, - aux_sym_formal_parameters_repeat1, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23617] = 2, + [23729] = 4, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2675), 1, + anon_sym_LBRACE, + STATE(243), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 3, + [23743] = 4, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2675), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [23627] = 4, - ACTIONS(2739), 1, - anon_sym_RPAREN, - ACTIONS(2741), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_formal_parameters_repeat1, + STATE(241), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23641] = 4, - ACTIONS(1905), 1, + [23757] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2747), 1, + ACTIONS(2765), 1, anon_sym_RPAREN, - STATE(1059), 1, + STATE(970), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23655] = 4, - ACTIONS(1371), 1, + [23771] = 4, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, anon_sym_DOT, - ACTIONS(2701), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_module_body, + STATE(420), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23785] = 4, + ACTIONS(2767), 1, + anon_sym_RPAREN, + ACTIONS(2769), 1, + anon_sym_SEMI, + STATE(996), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23669] = 2, + [23799] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 3, + ACTIONS(2772), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [23679] = 4, - ACTIONS(2661), 1, + [23809] = 4, + ACTIONS(2733), 1, anon_sym_COMMA, - ACTIONS(2751), 1, - anon_sym_GT, - STATE(1025), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2774), 1, + anon_sym_RPAREN, + STATE(1029), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23693] = 4, - ACTIONS(1905), 1, + [23823] = 4, + ACTIONS(2733), 1, anon_sym_COMMA, - ACTIONS(2753), 1, + ACTIONS(2776), 1, anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + STATE(998), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23707] = 4, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2755), 1, - anon_sym_RPAREN, - STATE(1027), 1, - aux_sym_cast_expression_repeat1, + [23837] = 4, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2780), 1, + anon_sym_SEMI, + STATE(1053), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23721] = 4, - ACTIONS(2757), 1, + [23851] = 4, + ACTIONS(2782), 1, anon_sym_GT, - ACTIONS(2759), 1, + ACTIONS(2784), 1, anon_sym_COMMA, - STATE(956), 1, + STATE(1001), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23735] = 4, - ACTIONS(1905), 1, + [23865] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2761), 1, + ACTIONS(2787), 1, anon_sym_RPAREN, - STATE(1059), 1, + STATE(970), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23749] = 4, - ACTIONS(2763), 1, - anon_sym_RPAREN, - ACTIONS(2765), 1, + [23879] = 4, + ACTIONS(1184), 1, anon_sym_COMMA, - STATE(997), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2789), 1, + anon_sym_RPAREN, + STATE(1055), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23763] = 2, + [23893] = 4, + ACTIONS(1184), 1, + anon_sym_COMMA, + ACTIONS(2791), 1, + anon_sym_RPAREN, + STATE(1055), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2639), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [23773] = 3, - ACTIONS(1371), 1, + [23907] = 3, + ACTIONS(1388), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 2, + ACTIONS(2793), 2, anon_sym_COMMA, anon_sym_SEMI, - [23785] = 3, - ACTIONS(1397), 1, + [23919] = 3, + ACTIONS(1394), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2770), 2, + ACTIONS(2795), 2, anon_sym_COMMA, anon_sym_SEMI, - [23797] = 4, - ACTIONS(1006), 1, + [23931] = 4, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2797), 1, anon_sym_RPAREN, - ACTIONS(2772), 1, - anon_sym_SEMI, - STATE(961), 1, - aux_sym_resource_specification_repeat1, + STATE(1057), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23811] = 4, - ACTIONS(2774), 1, + [23945] = 4, + ACTIONS(2799), 1, anon_sym_COMMA, - ACTIONS(2777), 1, + ACTIONS(2802), 1, anon_sym_SEMI, - STATE(1002), 1, + STATE(1008), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23825] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2779), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + [23959] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(2804), 1, anon_sym_SEMI, - [23835] = 2, + STATE(439), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2781), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [23845] = 4, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2135), 1, + [23973] = 4, + ACTIONS(1388), 1, anon_sym_DOT, - STATE(418), 1, - sym_argument_list, + ACTIONS(2806), 1, + anon_sym_SEMI, + ACTIONS(2808), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23859] = 4, - ACTIONS(2783), 1, - anon_sym_RPAREN, - ACTIONS(2785), 1, + [23987] = 4, + ACTIONS(1974), 1, + anon_sym_RBRACE, + ACTIONS(2810), 1, anon_sym_COMMA, - STATE(1006), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1011), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23873] = 4, - ACTIONS(2709), 1, - anon_sym_STAR, - ACTIONS(2713), 1, - sym_identifier, - STATE(1237), 1, - sym_asterisk, + [24001] = 4, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_SEMI, + ACTIONS(2815), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23887] = 4, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2709), 1, - anon_sym_STAR, - STATE(1236), 1, - sym_asterisk, + [24015] = 4, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(2817), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23901] = 4, - ACTIONS(2719), 1, + [24029] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2819), 1, anon_sym_RPAREN, - STATE(1016), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(952), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23915] = 3, - ACTIONS(1371), 1, + [24043] = 3, + ACTIONS(1388), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 2, + ACTIONS(2821), 2, anon_sym_COMMA, anon_sym_SEMI, - [23927] = 3, - ACTIONS(1397), 1, + [24055] = 3, + ACTIONS(1394), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 2, + ACTIONS(2823), 2, anon_sym_COMMA, anon_sym_SEMI, - [23939] = 4, - ACTIONS(360), 1, - anon_sym_RBRACE, - ACTIONS(2794), 1, + [24067] = 4, + ACTIONS(2733), 1, anon_sym_COMMA, - STATE(1039), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2825), 1, + anon_sym_RPAREN, + STATE(1029), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23953] = 4, - ACTIONS(2796), 1, + [24081] = 4, + ACTIONS(2827), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(2830), 1, anon_sym_SEMI, - STATE(1013), 1, + STATE(1018), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23967] = 4, - ACTIONS(1905), 1, + [24095] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(2819), 1, anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + STATE(1061), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23981] = 4, - ACTIONS(2803), 1, + [24109] = 4, + ACTIONS(590), 1, + anon_sym_RBRACE, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(2806), 1, - anon_sym_SEMI, - STATE(1015), 1, - aux_sym_for_statement_repeat1, + STATE(1011), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23995] = 4, - ACTIONS(2719), 1, + [24123] = 4, + ACTIONS(2733), 1, anon_sym_COMMA, - ACTIONS(2808), 1, + ACTIONS(2834), 1, anon_sym_RPAREN, - STATE(1006), 1, + STATE(1017), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24009] = 4, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2810), 1, - anon_sym_DOT, - STATE(1227), 1, - sym_argument_list, + [24137] = 4, + ACTIONS(2666), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_GT, + STATE(951), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24023] = 4, - ACTIONS(2207), 1, + [24151] = 4, + ACTIONS(2212), 1, anon_sym_default, - ACTIONS(2812), 1, + ACTIONS(2838), 1, anon_sym_SEMI, - STATE(1249), 1, + STATE(1220), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24037] = 4, - ACTIONS(1905), 1, + [24165] = 4, + ACTIONS(2666), 1, anon_sym_COMMA, - ACTIONS(2814), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24051] = 2, + ACTIONS(2840), 1, + anon_sym_GT, + STATE(1060), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2615), 3, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - [24061] = 4, - ACTIONS(2816), 1, + [24179] = 4, + ACTIONS(356), 1, + anon_sym_RBRACE, + ACTIONS(2842), 1, anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_SEMI, - STATE(1042), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(960), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24075] = 4, - ACTIONS(1937), 1, - anon_sym_COMMA, - ACTIONS(2565), 1, - anon_sym_COLON, - STATE(903), 1, - aux_sym_argument_list_repeat1, + [24193] = 4, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_DOT, + STATE(421), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24089] = 4, - ACTIONS(2759), 1, + [24207] = 4, + ACTIONS(2666), 1, anon_sym_COMMA, - ACTIONS(2820), 1, + ACTIONS(2844), 1, anon_sym_GT, - STATE(995), 1, - aux_sym_type_parameters_repeat1, + STATE(1024), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24103] = 4, - ACTIONS(1907), 1, - anon_sym_COMMA, - ACTIONS(1909), 1, - anon_sym_RBRACE, - STATE(973), 1, - aux_sym_array_initializer_repeat1, + [24221] = 4, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2846), 1, + anon_sym_RPAREN, + STATE(1057), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24117] = 4, - ACTIONS(2822), 1, - anon_sym_GT, - ACTIONS(2824), 1, + [24235] = 4, + ACTIONS(2848), 1, + anon_sym_RPAREN, + ACTIONS(2850), 1, anon_sym_COMMA, - STATE(1025), 1, - aux_sym_type_arguments_repeat1, + STATE(1029), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24131] = 4, - ACTIONS(1913), 1, + [24249] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2827), 1, - anon_sym_SEMI, - STATE(1015), 1, - aux_sym_for_statement_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24145] = 4, - ACTIONS(2829), 1, - anon_sym_AMP, - ACTIONS(2832), 1, + ACTIONS(2853), 1, anon_sym_RPAREN, - STATE(1027), 1, - aux_sym_cast_expression_repeat1, + STATE(970), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24159] = 4, - ACTIONS(1397), 1, + [24263] = 4, + ACTIONS(1652), 1, + anon_sym_LBRACK, + ACTIONS(1654), 1, anon_sym_DOT, - ACTIONS(2701), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_module_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24173] = 2, + ACTIONS(1656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2834), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + [24277] = 4, + ACTIONS(1958), 1, anon_sym_SEMI, - [24183] = 4, - ACTIONS(2836), 1, - anon_sym_COMMA, - ACTIONS(2838), 1, + ACTIONS(2530), 1, anon_sym_RBRACE, - STATE(1012), 1, - aux_sym_element_value_array_initializer_repeat1, + STATE(1228), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24197] = 4, - ACTIONS(2719), 1, - anon_sym_COMMA, - ACTIONS(2840), 1, + [24291] = 4, + ACTIONS(2855), 1, anon_sym_RPAREN, - STATE(1038), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2857), 1, + anon_sym_SEMI, + STATE(1051), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24211] = 4, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2842), 1, - anon_sym_SEMI, - STATE(1021), 1, - aux_sym__variable_declarator_list_repeat1, + [24305] = 4, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_STAR, + STATE(1216), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24225] = 2, + [24319] = 4, + ACTIONS(2861), 1, + anon_sym_STAR, + ACTIONS(2863), 1, + sym_identifier, + STATE(1208), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2844), 3, - anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [24235] = 4, - ACTIONS(1397), 1, + [24333] = 4, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2701), 1, + ACTIONS(2675), 1, anon_sym_LBRACE, - STATE(179), 1, + STATE(185), 1, sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24249] = 4, - ACTIONS(1371), 1, + [24347] = 4, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2701), 1, + ACTIONS(2675), 1, anon_sym_LBRACE, - STATE(178), 1, + STATE(186), 1, sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24263] = 4, - ACTIONS(1913), 1, - anon_sym_COMMA, - ACTIONS(2846), 1, - anon_sym_SEMI, - STATE(1015), 1, - aux_sym_for_statement_repeat1, + [24361] = 4, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_STAR, + STATE(1253), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24277] = 4, - ACTIONS(1905), 1, + [24375] = 4, + ACTIONS(1896), 1, anon_sym_COMMA, - ACTIONS(2848), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2626), 1, + anon_sym_COLON, + STATE(950), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24291] = 4, - ACTIONS(2719), 1, - anon_sym_COMMA, - ACTIONS(2850), 1, - anon_sym_RPAREN, - STATE(1006), 1, - aux_sym_annotation_argument_list_repeat1, + [24389] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24305] = 4, - ACTIONS(2852), 1, + ACTIONS(2865), 3, anon_sym_COMMA, - ACTIONS(2855), 1, anon_sym_RBRACE, - STATE(1039), 1, - aux_sym_element_value_array_initializer_repeat1, + anon_sym_SEMI, + [24399] = 4, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2867), 1, + anon_sym_SEMI, + ACTIONS(2869), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24319] = 2, + [24413] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1919), 3, - anon_sym_RPAREN, + ACTIONS(2634), 3, + anon_sym_AMP, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SEMI, - [24329] = 2, + [24423] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2857), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [24339] = 4, - ACTIONS(2859), 1, + ACTIONS(2871), 3, anon_sym_COMMA, - ACTIONS(2862), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(1042), 1, - aux_sym__variable_declarator_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24353] = 4, - ACTIONS(1905), 1, + [24433] = 4, + ACTIONS(2873), 1, + anon_sym_GT, + ACTIONS(2875), 1, anon_sym_COMMA, - ACTIONS(2864), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + STATE(1001), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24367] = 4, - ACTIONS(1905), 1, + [24447] = 4, + ACTIONS(1896), 1, anon_sym_COMMA, - ACTIONS(2866), 1, + ACTIONS(2877), 1, anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24381] = 4, - ACTIONS(1371), 1, - anon_sym_DOT, - ACTIONS(2701), 1, - anon_sym_LBRACE, - STATE(202), 1, - sym_module_body, + STATE(950), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24395] = 4, - ACTIONS(1598), 1, - anon_sym_LBRACK, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_COLON_COLON, + [24461] = 4, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(1912), 1, + anon_sym_RBRACE, + STATE(1020), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24409] = 4, - ACTIONS(2868), 1, + [24475] = 4, + ACTIONS(2733), 1, + anon_sym_COMMA, + ACTIONS(2879), 1, anon_sym_RPAREN, - ACTIONS(2870), 1, - anon_sym_SEMI, - STATE(1001), 1, - aux_sym_resource_specification_repeat1, + STATE(976), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24423] = 4, - ACTIONS(1905), 1, + [24489] = 4, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2872), 1, + ACTIONS(2881), 1, anon_sym_RPAREN, - STATE(1059), 1, + STATE(970), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24437] = 4, - ACTIONS(1905), 1, + [24503] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2883), 1, + anon_sym_SEMI, + STATE(962), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24451] = 4, - ACTIONS(1371), 1, + [24517] = 4, + ACTIONS(1102), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, anon_sym_DOT, - ACTIONS(2876), 1, - anon_sym_SEMI, - ACTIONS(2878), 1, - anon_sym_to, + STATE(1206), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24465] = 4, - ACTIONS(1178), 1, - anon_sym_COMMA, - ACTIONS(2880), 1, + [24531] = 4, + ACTIONS(1026), 1, anon_sym_RPAREN, - STATE(965), 1, - aux_sym_inferred_parameters_repeat1, + ACTIONS(2887), 1, + anon_sym_SEMI, + STATE(996), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24479] = 4, - ACTIONS(1905), 1, - anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + [24545] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24493] = 4, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2884), 1, + ACTIONS(2639), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2886), 1, - anon_sym_to, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24507] = 4, - ACTIONS(1371), 1, - anon_sym_DOT, - ACTIONS(2888), 1, + [24555] = 4, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, anon_sym_SEMI, - ACTIONS(2890), 1, - anon_sym_to, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24521] = 4, - ACTIONS(1100), 1, - anon_sym_LPAREN, - ACTIONS(2135), 1, - anon_sym_DOT, - STATE(421), 1, - sym_argument_list, + STATE(958), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24535] = 4, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2892), 1, - anon_sym_SEMI, - ACTIONS(2894), 1, - anon_sym_to, + [24569] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24549] = 4, - ACTIONS(1905), 1, + ACTIONS(2891), 3, anon_sym_COMMA, - ACTIONS(2896), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + [24579] = 4, + ACTIONS(2893), 1, anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2895), 1, + anon_sym_COMMA, + STATE(1055), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24563] = 4, - ACTIONS(1905), 1, + [24593] = 4, + ACTIONS(2875), 1, anon_sym_COMMA, ACTIONS(2898), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + anon_sym_GT, + STATE(1044), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24577] = 4, + [24607] = 4, ACTIONS(2900), 1, + anon_sym_AMP, + ACTIONS(2903), 1, anon_sym_RPAREN, - ACTIONS(2902), 1, - anon_sym_COMMA, - STATE(1059), 1, - aux_sym_for_statement_repeat2, + STATE(1057), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24591] = 3, - ACTIONS(2259), 1, - anon_sym_LBRACE, - STATE(145), 1, - sym_interface_body, + [24621] = 4, + ACTIONS(2861), 1, + anon_sym_STAR, + ACTIONS(2863), 1, + sym_identifier, + STATE(1225), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24602] = 3, + [24635] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, ACTIONS(2905), 1, - anon_sym_DOT, - ACTIONS(2907), 1, anon_sym_SEMI, + STATE(437), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24613] = 2, + [24649] = 4, + ACTIONS(2907), 1, + anon_sym_GT, + ACTIONS(2909), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 2, + [24663] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - anon_sym_SEMI, - [24622] = 2, + ACTIONS(2912), 1, + anon_sym_RPAREN, + STATE(952), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [24631] = 3, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(114), 1, - sym_annotation_type_body, + [24677] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24642] = 3, - ACTIONS(2259), 1, + ACTIONS(2914), 3, anon_sym_LBRACE, - STATE(159), 1, - sym_interface_body, + anon_sym_implements, + anon_sym_permits, + [24687] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24653] = 3, - ACTIONS(2259), 1, + ACTIONS(2916), 2, + anon_sym_GT, + anon_sym_COMMA, + [24696] = 3, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(124), 1, + STATE(113), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24664] = 3, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(127), 1, - sym_class_body, + [24707] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24675] = 3, - ACTIONS(1431), 1, + ACTIONS(2918), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [24716] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(129), 1, + STATE(172), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24686] = 3, - ACTIONS(1431), 1, + [24727] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(130), 1, + STATE(174), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24697] = 3, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(108), 1, - sym_annotation_type_body, + [24738] = 3, + ACTIONS(1018), 1, + anon_sym_LPAREN, + STATE(1112), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24708] = 3, - ACTIONS(1431), 1, + [24749] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, STATE(131), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24719] = 2, + [24760] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 2, - anon_sym_LBRACE, - anon_sym_permits, - [24728] = 3, - ACTIONS(1004), 1, + ACTIONS(2920), 2, + anon_sym_GT, + anon_sym_COMMA, + [24769] = 3, + ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(1130), 1, + STATE(22), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24739] = 3, - ACTIONS(1004), 1, - anon_sym_LPAREN, - STATE(54), 1, - sym_parenthesized_expression, + [24780] = 3, + ACTIONS(2922), 1, + sym_identifier, + ACTIONS(2924), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24750] = 3, - ACTIONS(2259), 1, - anon_sym_LBRACE, - STATE(133), 1, - sym_interface_body, + [24791] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24761] = 3, - ACTIONS(2259), 1, - anon_sym_LBRACE, - STATE(136), 1, - sym_interface_body, + ACTIONS(2907), 2, + anon_sym_GT, + anon_sym_COMMA, + [24800] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24772] = 3, - ACTIONS(2917), 1, - sym_identifier, - ACTIONS(2919), 1, - anon_sym_SEMI, + ACTIONS(2689), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [24809] = 3, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(139), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24783] = 3, - ACTIONS(2921), 1, - sym_identifier, - ACTIONS(2923), 1, - anon_sym_SEMI, + [24820] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24794] = 2, + ACTIONS(2926), 2, + anon_sym_GT, + anon_sym_COMMA, + [24829] = 3, + ACTIONS(364), 1, + anon_sym_LBRACE, + STATE(455), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 2, - anon_sym_GT, - anon_sym_COMMA, - [24803] = 3, - ACTIONS(1431), 1, + [24840] = 3, + ACTIONS(364), 1, anon_sym_LBRACE, - STATE(157), 1, - sym_class_body, + STATE(460), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24814] = 3, - ACTIONS(2193), 1, - anon_sym_LPAREN, - STATE(1071), 1, - sym_formal_parameters, + [24851] = 3, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(104), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24825] = 3, - ACTIONS(2555), 1, + [24862] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(156), 1, - sym_enum_body, + STATE(119), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24836] = 3, - ACTIONS(2927), 1, - anon_sym_DOT, - ACTIONS(2929), 1, - anon_sym_SEMI, + [24873] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24847] = 3, - ACTIONS(1431), 1, + ACTIONS(2468), 2, + anon_sym_GT, + anon_sym_COMMA, + [24882] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(155), 1, + STATE(134), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24858] = 3, - ACTIONS(1371), 1, - anon_sym_DOT, - ACTIONS(2931), 1, + [24893] = 3, + ACTIONS(2928), 1, + sym_identifier, + ACTIONS(2930), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24869] = 3, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2933), 1, - anon_sym_SEMI, + [24904] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24880] = 2, + ACTIONS(2668), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [24913] = 3, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(158), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 2, - anon_sym_GT, - anon_sym_COMMA, - [24889] = 2, + [24924] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 2, + ACTIONS(2932), 2, anon_sym_RPAREN, anon_sym_COMMA, - [24898] = 2, + [24933] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 2, - anon_sym_GT, - anon_sym_COMMA, - [24907] = 2, + ACTIONS(2934), 2, + anon_sym_AMP, + anon_sym_RPAREN, + [24942] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2935), 2, - anon_sym_GT, + ACTIONS(2936), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [24916] = 3, - ACTIONS(1100), 1, + [24951] = 3, + ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(421), 1, - sym_argument_list, + STATE(17), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24927] = 2, + [24962] = 3, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(156), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2937), 2, - anon_sym_GT, - anon_sym_COMMA, - [24936] = 3, - ACTIONS(2547), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_constructor_body, + [24973] = 3, + ACTIONS(2165), 1, + anon_sym_LPAREN, + STATE(1145), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24947] = 3, - ACTIONS(2939), 1, + [24984] = 3, + ACTIONS(1656), 1, + anon_sym_COLON_COLON, + ACTIONS(2570), 1, anon_sym_DOT, - ACTIONS(2941), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24958] = 3, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2943), 1, - anon_sym_SEMI, + [24995] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24969] = 3, - ACTIONS(1371), 1, - anon_sym_DOT, - ACTIONS(2945), 1, - anon_sym_SEMI, + ACTIONS(2893), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25004] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24980] = 3, - ACTIONS(1397), 1, + ACTIONS(2938), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25013] = 3, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(2947), 1, - anon_sym_with, + ACTIONS(2940), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24991] = 3, - ACTIONS(1371), 1, + [25024] = 3, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_with, + ACTIONS(2942), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25002] = 2, + [25035] = 3, + ACTIONS(2562), 1, + anon_sym_LBRACE, + STATE(101), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2951), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25011] = 3, - ACTIONS(1100), 1, + [25046] = 3, + ACTIONS(1102), 1, anon_sym_LPAREN, - STATE(457), 1, + STATE(480), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25022] = 3, - ACTIONS(1100), 1, - anon_sym_LPAREN, - STATE(456), 1, - sym_argument_list, + [25057] = 3, + ACTIONS(2944), 1, + sym_identifier, + STATE(1148), 1, + sym_element_value_pair, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25033] = 3, - ACTIONS(1100), 1, + [25068] = 3, + ACTIONS(1102), 1, anon_sym_LPAREN, - STATE(1242), 1, + STATE(484), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25044] = 2, + [25079] = 3, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2946), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 2, + [25090] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - anon_sym_throws, - [25053] = 3, - ACTIONS(2624), 1, + STATE(129), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25101] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(90), 1, - sym_block, + STATE(116), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25064] = 3, - ACTIONS(1004), 1, - anon_sym_LPAREN, - STATE(23), 1, - sym_parenthesized_expression, + [25112] = 3, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2948), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25075] = 2, + [25123] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 2, + ACTIONS(2767), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [25084] = 3, - ACTIONS(27), 1, + anon_sym_SEMI, + [25132] = 3, + ACTIONS(2950), 1, anon_sym_LBRACE, - STATE(228), 1, - sym_block, + STATE(143), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25095] = 3, - ACTIONS(2259), 1, + [25143] = 3, + ACTIONS(2574), 1, anon_sym_LBRACE, - STATE(148), 1, - sym_interface_body, + STATE(103), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25106] = 2, + [25154] = 3, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(154), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2955), 2, - anon_sym_LBRACE, - anon_sym_throws, - [25115] = 3, - ACTIONS(354), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_array_initializer, + [25165] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25126] = 3, - ACTIONS(354), 1, + ACTIONS(2952), 2, anon_sym_LBRACE, - STATE(471), 1, - sym_array_initializer, + anon_sym_SEMI, + [25174] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25137] = 3, - ACTIONS(1100), 1, - anon_sym_LPAREN, - STATE(418), 1, - sym_argument_list, + ACTIONS(2954), 2, + anon_sym_new, + sym_identifier, + [25183] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25148] = 3, - ACTIONS(2193), 1, - anon_sym_LPAREN, - STATE(745), 1, - sym_formal_parameters, + ACTIONS(2956), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [25192] = 3, + ACTIONS(2958), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25159] = 3, - ACTIONS(2957), 1, - anon_sym_DASH_GT, - ACTIONS(2959), 1, - anon_sym_COLON, + [25203] = 3, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25170] = 2, + [25214] = 3, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(164), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2961), 2, + [25225] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [25179] = 3, - ACTIONS(2547), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_constructor_body, + STATE(118), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25190] = 3, - ACTIONS(2193), 1, - anon_sym_LPAREN, - STATE(746), 1, - sym_formal_parameters, + [25236] = 3, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(168), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25201] = 3, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2963), 1, - anon_sym_SEMI, + [25247] = 3, + ACTIONS(2165), 1, + anon_sym_LPAREN, + STATE(1082), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25212] = 2, + [25258] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 2, + ACTIONS(2960), 2, + anon_sym_GT, + anon_sym_COMMA, + [25267] = 3, + ACTIONS(2574), 1, anon_sym_LBRACE, - anon_sym_permits, - [25221] = 2, + STATE(169), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2967), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [25230] = 3, - ACTIONS(1431), 1, + [25278] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(172), 1, + STATE(128), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25241] = 3, - ACTIONS(1431), 1, + [25289] = 3, + ACTIONS(27), 1, anon_sym_LBRACE, - STATE(175), 1, - sym_class_body, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25252] = 3, - ACTIONS(1371), 1, + [25300] = 3, + ACTIONS(2962), 1, anon_sym_DOT, - ACTIONS(2969), 1, + ACTIONS(2964), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25263] = 2, + [25311] = 3, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2968), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2971), 2, - sym_this, - sym_super, - [25272] = 3, - ACTIONS(1431), 1, + [25322] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(118), 1, + STATE(171), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25283] = 3, - ACTIONS(354), 1, + [25333] = 3, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(1244), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25344] = 3, + ACTIONS(2562), 1, anon_sym_LBRACE, - STATE(482), 1, - sym_array_initializer, + STATE(89), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25294] = 2, + [25355] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [25303] = 3, - ACTIONS(1004), 1, + ACTIONS(2970), 2, + sym_this, + sym_super, + [25364] = 3, + ACTIONS(1102), 1, anon_sym_LPAREN, - STATE(1243), 1, - sym_parenthesized_expression, + STATE(1214), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25314] = 3, - ACTIONS(1431), 1, + [25375] = 3, + ACTIONS(27), 1, anon_sym_LBRACE, - STATE(141), 1, - sym_class_body, + STATE(182), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25325] = 3, - ACTIONS(2975), 1, - anon_sym_LBRACE, - STATE(82), 1, - sym_switch_block, + [25386] = 3, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2972), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25336] = 2, + [25397] = 3, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2974), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [25345] = 3, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(138), 1, - sym_class_body, + [25408] = 3, + ACTIONS(902), 1, + anon_sym_while, + ACTIONS(2976), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25356] = 3, - ACTIONS(354), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_array_initializer, + [25419] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25367] = 3, - ACTIONS(1431), 1, + ACTIONS(2978), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [25428] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(112), 1, + STATE(105), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25378] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(183), 1, - sym_block, + [25439] = 3, + ACTIONS(1018), 1, + anon_sym_LPAREN, + STATE(1239), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25389] = 3, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym_class_body, + [25450] = 3, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25400] = 3, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(173), 1, - sym_class_body, + [25461] = 3, + ACTIONS(2982), 1, + anon_sym_DOT, + ACTIONS(2984), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25472] = 3, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(2986), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25411] = 3, - ACTIONS(1431), 1, + [25483] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(165), 1, + STATE(117), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25422] = 3, - ACTIONS(876), 1, - anon_sym_while, - ACTIONS(2977), 1, - anon_sym_else, + [25494] = 3, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2988), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25433] = 3, - ACTIONS(1397), 1, + [25505] = 3, + ACTIONS(2990), 1, anon_sym_DOT, - ACTIONS(2979), 1, + ACTIONS(2992), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25444] = 3, - ACTIONS(1371), 1, + [25516] = 3, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(2981), 1, + ACTIONS(2994), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25455] = 3, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(102), 1, - sym_block, + [25527] = 3, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25466] = 3, - ACTIONS(2983), 1, - sym_identifier, - STATE(1157), 1, - sym_element_value_pair, + [25538] = 3, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(420), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25477] = 2, + [25549] = 3, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(120), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25486] = 3, - ACTIONS(1100), 1, + [25560] = 3, + ACTIONS(2165), 1, anon_sym_LPAREN, - STATE(1228), 1, - sym_argument_list, + STATE(747), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25497] = 2, + [25571] = 3, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(464), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2987), 2, - anon_sym_new, - sym_identifier, - [25506] = 2, + [25582] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 2, + ACTIONS(2848), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25591] = 3, + ACTIONS(2950), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [25515] = 2, + STATE(147), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 2, - anon_sym_GT, - anon_sym_COMMA, - [25524] = 2, + [25602] = 3, + ACTIONS(2165), 1, + anon_sym_LPAREN, + STATE(746), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2991), 2, - anon_sym_AMP, - anon_sym_RPAREN, - [25533] = 2, + [25613] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2683), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [25542] = 3, - ACTIONS(1004), 1, - anon_sym_LPAREN, - STATE(14), 1, - sym_parenthesized_expression, + ACTIONS(2998), 2, + anon_sym_LBRACE, + anon_sym_throws, + [25622] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25553] = 3, - ACTIONS(1004), 1, + ACTIONS(3000), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25631] = 3, + ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(72), 1, + STATE(28), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25564] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1971), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [25573] = 3, - ACTIONS(2259), 1, + [25642] = 3, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(170), 1, + STATE(109), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25584] = 2, + [25653] = 3, + ACTIONS(1018), 1, + anon_sym_LPAREN, + STATE(16), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25593] = 2, + [25664] = 3, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(462), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2995), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25602] = 2, + [25675] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2783), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25611] = 3, - ACTIONS(1602), 1, - anon_sym_COLON_COLON, - ACTIONS(2549), 1, - anon_sym_DOT, + ACTIONS(3002), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [25684] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25622] = 3, - ACTIONS(1431), 1, + ACTIONS(3004), 2, anon_sym_LBRACE, - STATE(121), 1, - sym_class_body, + anon_sym_throws, + [25693] = 3, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(421), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25633] = 3, - ACTIONS(2259), 1, + [25704] = 3, + ACTIONS(2620), 1, anon_sym_LBRACE, - STATE(164), 1, - sym_interface_body, + STATE(445), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25644] = 2, + [25715] = 3, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(141), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2997), 2, - anon_sym_GT, - anon_sym_COMMA, - [25653] = 3, - ACTIONS(1431), 1, + [25726] = 3, + ACTIONS(1436), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(161), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25664] = 3, - ACTIONS(2999), 1, - anon_sym_DOT, - ACTIONS(3001), 1, - anon_sym_SEMI, + [25737] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25675] = 3, - ACTIONS(1371), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_SEMI, + ACTIONS(3006), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25746] = 3, + ACTIONS(364), 1, + anon_sym_LBRACE, + STATE(474), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25686] = 3, - ACTIONS(1371), 1, - anon_sym_DOT, - ACTIONS(3005), 1, - anon_sym_SEMI, + [25757] = 3, + ACTIONS(3008), 1, + anon_sym_DASH_GT, + ACTIONS(3010), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25697] = 3, - ACTIONS(1431), 1, + [25768] = 3, + ACTIONS(364), 1, anon_sym_LBRACE, - STATE(160), 1, - sym_class_body, + STATE(479), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25708] = 3, - ACTIONS(1431), 1, + [25779] = 3, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(154), 1, - sym_class_body, + STATE(138), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25719] = 3, - ACTIONS(1100), 1, - anon_sym_LPAREN, - STATE(478), 1, - sym_argument_list, + [25790] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25730] = 3, - ACTIONS(1371), 1, - anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, + ACTIONS(3012), 2, + anon_sym_LBRACE, + anon_sym_permits, + [25799] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25741] = 3, - ACTIONS(1100), 1, - anon_sym_LPAREN, - STATE(477), 1, - sym_argument_list, + ACTIONS(2782), 2, + anon_sym_GT, + anon_sym_COMMA, + [25808] = 3, + ACTIONS(2264), 1, + anon_sym_LBRACE, + STATE(112), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25752] = 3, - ACTIONS(2555), 1, - anon_sym_LBRACE, - STATE(113), 1, - sym_enum_body, + [25819] = 3, + ACTIONS(1394), 1, + anon_sym_DOT, + ACTIONS(3014), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25763] = 3, - ACTIONS(1397), 1, + [25830] = 3, + ACTIONS(1388), 1, anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_SEMI, + ACTIONS(3016), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25774] = 3, - ACTIONS(1397), 1, + [25841] = 3, + ACTIONS(1394), 1, anon_sym_DOT, - ACTIONS(3011), 1, + ACTIONS(3018), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25785] = 3, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(122), 1, - sym_class_body, + [25852] = 3, + ACTIONS(1388), 1, + anon_sym_DOT, + ACTIONS(3020), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25796] = 3, - ACTIONS(2193), 1, - anon_sym_LPAREN, - STATE(1129), 1, - sym_formal_parameters, + [25863] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25807] = 2, - ACTIONS(1969), 1, - anon_sym_RBRACE, + ACTIONS(3022), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25872] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25815] = 2, - ACTIONS(3013), 1, - anon_sym_SEMI, + ACTIONS(1974), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25881] = 3, + ACTIONS(2620), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25823] = 2, - ACTIONS(3015), 1, - anon_sym_SEMI, + [25892] = 3, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(125), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25831] = 2, - ACTIONS(3017), 1, - anon_sym_RPAREN, + [25903] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25839] = 2, - ACTIONS(3019), 1, + ACTIONS(3024), 2, anon_sym_LBRACE, + anon_sym_permits, + [25912] = 2, + ACTIONS(2863), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25847] = 2, - ACTIONS(1602), 1, - anon_sym_COLON_COLON, + [25920] = 2, + ACTIONS(3026), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25855] = 2, - ACTIONS(3021), 1, - anon_sym_SEMI, + [25928] = 2, + ACTIONS(3028), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25863] = 2, - ACTIONS(2434), 1, - anon_sym_RBRACE, + [25936] = 2, + ACTIONS(2834), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25871] = 2, - ACTIONS(2717), 1, - anon_sym_RPAREN, + [25944] = 2, + ACTIONS(3030), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25879] = 2, - ACTIONS(3023), 1, + [25952] = 2, + ACTIONS(2859), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25887] = 2, - ACTIONS(1113), 1, - anon_sym_DASH_GT, + [25960] = 2, + ACTIONS(3032), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25895] = 2, - ACTIONS(3025), 1, - sym_this, + [25968] = 2, + ACTIONS(3034), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25903] = 2, - ACTIONS(3027), 1, - anon_sym_SEMI, + [25976] = 2, + ACTIONS(970), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25911] = 2, - ACTIONS(3029), 1, - ts_builtin_sym_end, + [25984] = 2, + ACTIONS(3036), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25919] = 2, - ACTIONS(3031), 1, - anon_sym_RPAREN, + [25992] = 2, + ACTIONS(3038), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25927] = 2, - ACTIONS(3033), 1, - anon_sym_SEMI, + [26000] = 2, + ACTIONS(962), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25935] = 2, - ACTIONS(3035), 1, - anon_sym_EQ, + [26008] = 2, + ACTIONS(3040), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25943] = 2, - ACTIONS(3037), 1, - anon_sym_EQ, + [26016] = 2, + ACTIONS(3042), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25951] = 2, - ACTIONS(3039), 1, + [26024] = 2, + ACTIONS(3044), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25959] = 2, - ACTIONS(3041), 1, + [26032] = 2, + ACTIONS(3046), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25967] = 2, - ACTIONS(996), 1, - anon_sym_RBRACK, + [26040] = 2, + ACTIONS(3048), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25975] = 2, - ACTIONS(2788), 1, - anon_sym_RPAREN, + [26048] = 2, + ACTIONS(3050), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25983] = 2, - ACTIONS(3043), 1, - anon_sym_SEMI, + [26056] = 2, + ACTIONS(3052), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25991] = 2, - ACTIONS(3045), 1, - anon_sym_DOT, + [26064] = 2, + ACTIONS(3054), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25999] = 2, - ACTIONS(3047), 1, + [26072] = 2, + ACTIONS(3056), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26007] = 2, - ACTIONS(3049), 1, + [26080] = 2, + ACTIONS(3058), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26015] = 2, - ACTIONS(2810), 1, - anon_sym_DOT, + [26088] = 2, + ACTIONS(2776), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26023] = 2, - ACTIONS(3051), 1, - anon_sym_LBRACE, + [26096] = 2, + ACTIONS(3060), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26031] = 2, - ACTIONS(3053), 1, + [26104] = 2, + ACTIONS(3062), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26039] = 2, - ACTIONS(2838), 1, - anon_sym_RBRACE, + [26112] = 2, + ACTIONS(3064), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26047] = 2, - ACTIONS(2957), 1, - anon_sym_DASH_GT, + [26120] = 2, + ACTIONS(3066), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26055] = 2, - ACTIONS(3055), 1, - sym_identifier, + [26128] = 2, + ACTIONS(3068), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26063] = 2, - ACTIONS(2959), 1, - anon_sym_COLON, + [26136] = 2, + ACTIONS(3070), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26071] = 2, - ACTIONS(3057), 1, - anon_sym_RPAREN, + [26144] = 2, + ACTIONS(2530), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26079] = 2, - ACTIONS(3059), 1, - anon_sym_SEMI, + [26152] = 2, + ACTIONS(3072), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26087] = 2, - ACTIONS(966), 1, - anon_sym_RBRACK, + [26160] = 2, + ACTIONS(3074), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26095] = 2, - ACTIONS(3061), 1, - anon_sym_LBRACE, + [26168] = 2, + ACTIONS(3076), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26103] = 2, - ACTIONS(3063), 1, - anon_sym_RPAREN, + [26176] = 2, + ACTIONS(984), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26111] = 2, - ACTIONS(2713), 1, - sym_identifier, + [26184] = 2, + ACTIONS(3078), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26119] = 2, - ACTIONS(3065), 1, - sym_identifier, + [26192] = 2, + ACTIONS(3008), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26127] = 2, - ACTIONS(3067), 1, - sym_identifier, + [26200] = 2, + ACTIONS(3080), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26135] = 2, - ACTIONS(2707), 1, - sym_identifier, + [26208] = 2, + ACTIONS(3082), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26143] = 2, - ACTIONS(3069), 1, + [26216] = 2, + ACTIONS(3084), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26151] = 2, - ACTIONS(3071), 1, - anon_sym_RBRACE, + [26224] = 2, + ACTIONS(3010), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26159] = 2, - ACTIONS(3073), 1, - anon_sym_RPAREN, + [26232] = 2, + ACTIONS(3086), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26167] = 2, - ACTIONS(3075), 1, - anon_sym_SEMI, + [26240] = 2, + ACTIONS(3088), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26175] = 2, - ACTIONS(3077), 1, + [26248] = 2, + ACTIONS(3090), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26183] = 2, - ACTIONS(3079), 1, + [26256] = 2, + ACTIONS(3092), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26264] = 2, + ACTIONS(3094), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26191] = 2, - ACTIONS(3081), 1, - anon_sym_LPAREN, + [26272] = 2, + ACTIONS(3096), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26199] = 2, - ACTIONS(3083), 1, - anon_sym_LPAREN, + [26280] = 2, + ACTIONS(3098), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26207] = 2, - ACTIONS(3085), 1, + [26288] = 2, + ACTIONS(3100), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26215] = 2, - ACTIONS(3087), 1, + [26296] = 2, + ACTIONS(1981), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26304] = 2, + ACTIONS(3102), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26223] = 2, - ACTIONS(3089), 1, + [26312] = 2, + ACTIONS(3104), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26231] = 2, - ACTIONS(3091), 1, - anon_sym_EQ, + [26320] = 2, + ACTIONS(3106), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26239] = 2, - ACTIONS(3093), 1, - sym_identifier, + [26328] = 2, + ACTIONS(2885), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26247] = 2, - ACTIONS(3095), 1, + [26336] = 2, + ACTIONS(3108), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26255] = 2, - ACTIONS(3097), 1, - sym_identifier, + [26344] = 2, + ACTIONS(2879), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26263] = 2, - ACTIONS(3099), 1, - anon_sym_SEMI, + [26352] = 2, + ACTIONS(3110), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26271] = 2, - ACTIONS(988), 1, - anon_sym_RBRACK, + [26360] = 2, + ACTIONS(3112), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26279] = 2, - ACTIONS(3101), 1, - anon_sym_DASH_GT, + [26368] = 2, + ACTIONS(1991), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26287] = 2, - ACTIONS(3103), 1, + [26376] = 2, + ACTIONS(3114), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26295] = 2, - ACTIONS(3105), 1, + [26384] = 2, + ACTIONS(3116), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26303] = 2, - ACTIONS(3107), 1, - anon_sym_class, + [26392] = 2, + ACTIONS(3118), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26311] = 2, - ACTIONS(3109), 1, - anon_sym_DASH_GT, + [26400] = 2, + ACTIONS(3120), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26319] = 2, - ACTIONS(1978), 1, - anon_sym_RBRACE, + [26408] = 2, + ACTIONS(3122), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26327] = 2, - ACTIONS(3111), 1, - anon_sym_LBRACE, + [26416] = 2, + ACTIONS(988), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26335] = 2, - ACTIONS(3113), 1, + [26424] = 2, + ACTIONS(3124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26343] = 2, - ACTIONS(3115), 1, - anon_sym_SEMI, + [26432] = 2, + ACTIONS(2723), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26351] = 2, - ACTIONS(3117), 1, - anon_sym_module, + [26440] = 2, + ACTIONS(1656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26359] = 2, - ACTIONS(2840), 1, - anon_sym_RPAREN, + [26448] = 2, + ACTIONS(1115), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26367] = 2, - ACTIONS(3119), 1, - anon_sym_SEMI, + [26456] = 2, + ACTIONS(3126), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26375] = 2, - ACTIONS(1909), 1, - anon_sym_RBRACE, + [26464] = 2, + ACTIONS(3128), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26383] = 2, - ACTIONS(3121), 1, + [26472] = 2, + ACTIONS(3130), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26391] = 2, - ACTIONS(3123), 1, - anon_sym_SEMI, + [26480] = 2, + ACTIONS(3132), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26399] = 2, - ACTIONS(3125), 1, - anon_sym_SEMI, + [26488] = 2, + ACTIONS(3134), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26407] = 2, - ACTIONS(3127), 1, + [26496] = 2, + ACTIONS(3136), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26415] = 2, - ACTIONS(3129), 1, - sym_identifier, + [26504] = 2, + ACTIONS(3138), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26423] = 2, - ACTIONS(3131), 1, - sym_identifier, + [26512] = 2, + ACTIONS(3140), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26431] = 2, - ACTIONS(3133), 1, - anon_sym_while, + [26520] = 2, + ACTIONS(3142), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26528] = 2, + ACTIONS(3144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26439] = 2, - ACTIONS(3135), 1, + [26536] = 2, + ACTIONS(3146), 1, sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26447] = 2, - ACTIONS(3137), 1, - sym_identifier, + [26544] = 2, + ACTIONS(3148), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26455] = 2, - ACTIONS(3139), 1, - anon_sym_SEMI, + [26552] = 2, + ACTIONS(3150), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26463] = 2, - ACTIONS(3141), 1, - anon_sym_LPAREN, + [26560] = 2, + ACTIONS(1912), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26471] = 2, - ACTIONS(3143), 1, + [26568] = 2, + ACTIONS(3152), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26479] = 2, - ACTIONS(3145), 1, - sym_identifier, + [26576] = 2, + ACTIONS(3154), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26487] = 2, - ACTIONS(980), 1, - anon_sym_RBRACK, + [26584] = 2, + ACTIONS(3156), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26592] = 2, + ACTIONS(3158), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26600] = 2, + ACTIONS(3160), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -61234,909 +61330,914 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(356)] = 674, [SMALL_STATE(357)] = 777, [SMALL_STATE(358)] = 880, - [SMALL_STATE(359)] = 971, + [SMALL_STATE(359)] = 983, [SMALL_STATE(360)] = 1074, [SMALL_STATE(361)] = 1156, [SMALL_STATE(362)] = 1238, [SMALL_STATE(363)] = 1329, [SMALL_STATE(364)] = 1420, [SMALL_STATE(365)] = 1511, - [SMALL_STATE(366)] = 1571, - [SMALL_STATE(367)] = 1631, - [SMALL_STATE(368)] = 1691, + [SMALL_STATE(366)] = 1577, + [SMALL_STATE(367)] = 1637, + [SMALL_STATE(368)] = 1697, [SMALL_STATE(369)] = 1757, - [SMALL_STATE(370)] = 1817, + [SMALL_STATE(370)] = 1829, [SMALL_STATE(371)] = 1889, [SMALL_STATE(372)] = 1943, - [SMALL_STATE(373)] = 2017, - [SMALL_STATE(374)] = 2071, + [SMALL_STATE(373)] = 1997, + [SMALL_STATE(374)] = 2051, [SMALL_STATE(375)] = 2125, - [SMALL_STATE(376)] = 2198, - [SMALL_STATE(377)] = 2255, - [SMALL_STATE(378)] = 2319, - [SMALL_STATE(379)] = 2381, - [SMALL_STATE(380)] = 2445, - [SMALL_STATE(381)] = 2505, - [SMALL_STATE(382)] = 2565, - [SMALL_STATE(383)] = 2628, - [SMALL_STATE(384)] = 2689, - [SMALL_STATE(385)] = 2752, - [SMALL_STATE(386)] = 2815, - [SMALL_STATE(387)] = 2876, - [SMALL_STATE(388)] = 2939, - [SMALL_STATE(389)] = 3021, - [SMALL_STATE(390)] = 3075, - [SMALL_STATE(391)] = 3125, - [SMALL_STATE(392)] = 3175, - [SMALL_STATE(393)] = 3232, - [SMALL_STATE(394)] = 3306, - [SMALL_STATE(395)] = 3353, - [SMALL_STATE(396)] = 3426, - [SMALL_STATE(397)] = 3497, - [SMALL_STATE(398)] = 3544, - [SMALL_STATE(399)] = 3597, - [SMALL_STATE(400)] = 3644, - [SMALL_STATE(401)] = 3691, - [SMALL_STATE(402)] = 3744, - [SMALL_STATE(403)] = 3796, - [SMALL_STATE(404)] = 3842, - [SMALL_STATE(405)] = 3888, - [SMALL_STATE(406)] = 3934, - [SMALL_STATE(407)] = 3980, - [SMALL_STATE(408)] = 4026, - [SMALL_STATE(409)] = 4078, - [SMALL_STATE(410)] = 4124, - [SMALL_STATE(411)] = 4170, - [SMALL_STATE(412)] = 4218, - [SMALL_STATE(413)] = 4264, - [SMALL_STATE(414)] = 4310, - [SMALL_STATE(415)] = 4355, - [SMALL_STATE(416)] = 4400, - [SMALL_STATE(417)] = 4445, - [SMALL_STATE(418)] = 4490, - [SMALL_STATE(419)] = 4538, - [SMALL_STATE(420)] = 4590, - [SMALL_STATE(421)] = 4638, - [SMALL_STATE(422)] = 4686, - [SMALL_STATE(423)] = 4734, - [SMALL_STATE(424)] = 4786, - [SMALL_STATE(425)] = 4829, - [SMALL_STATE(426)] = 4872, - [SMALL_STATE(427)] = 4915, - [SMALL_STATE(428)] = 4958, - [SMALL_STATE(429)] = 5001, - [SMALL_STATE(430)] = 5048, - [SMALL_STATE(431)] = 5091, - [SMALL_STATE(432)] = 5134, - [SMALL_STATE(433)] = 5177, - [SMALL_STATE(434)] = 5220, - [SMALL_STATE(435)] = 5263, - [SMALL_STATE(436)] = 5306, - [SMALL_STATE(437)] = 5349, - [SMALL_STATE(438)] = 5392, - [SMALL_STATE(439)] = 5435, - [SMALL_STATE(440)] = 5478, - [SMALL_STATE(441)] = 5521, - [SMALL_STATE(442)] = 5564, - [SMALL_STATE(443)] = 5607, - [SMALL_STATE(444)] = 5650, - [SMALL_STATE(445)] = 5693, - [SMALL_STATE(446)] = 5736, - [SMALL_STATE(447)] = 5779, - [SMALL_STATE(448)] = 5822, - [SMALL_STATE(449)] = 5865, - [SMALL_STATE(450)] = 5908, - [SMALL_STATE(451)] = 5950, - [SMALL_STATE(452)] = 5992, - [SMALL_STATE(453)] = 6034, - [SMALL_STATE(454)] = 6076, - [SMALL_STATE(455)] = 6118, - [SMALL_STATE(456)] = 6160, - [SMALL_STATE(457)] = 6202, - [SMALL_STATE(458)] = 6244, - [SMALL_STATE(459)] = 6292, - [SMALL_STATE(460)] = 6334, - [SMALL_STATE(461)] = 6380, - [SMALL_STATE(462)] = 6422, - [SMALL_STATE(463)] = 6468, - [SMALL_STATE(464)] = 6510, - [SMALL_STATE(465)] = 6552, - [SMALL_STATE(466)] = 6594, - [SMALL_STATE(467)] = 6636, - [SMALL_STATE(468)] = 6678, - [SMALL_STATE(469)] = 6720, - [SMALL_STATE(470)] = 6762, - [SMALL_STATE(471)] = 6804, - [SMALL_STATE(472)] = 6846, - [SMALL_STATE(473)] = 6888, - [SMALL_STATE(474)] = 6930, - [SMALL_STATE(475)] = 6972, - [SMALL_STATE(476)] = 7014, - [SMALL_STATE(477)] = 7056, - [SMALL_STATE(478)] = 7098, - [SMALL_STATE(479)] = 7140, - [SMALL_STATE(480)] = 7182, - [SMALL_STATE(481)] = 7224, - [SMALL_STATE(482)] = 7266, - [SMALL_STATE(483)] = 7308, - [SMALL_STATE(484)] = 7350, - [SMALL_STATE(485)] = 7392, - [SMALL_STATE(486)] = 7434, - [SMALL_STATE(487)] = 7479, - [SMALL_STATE(488)] = 7520, - [SMALL_STATE(489)] = 7561, - [SMALL_STATE(490)] = 7601, - [SMALL_STATE(491)] = 7641, - [SMALL_STATE(492)] = 7681, - [SMALL_STATE(493)] = 7720, - [SMALL_STATE(494)] = 7761, - [SMALL_STATE(495)] = 7800, - [SMALL_STATE(496)] = 7839, - [SMALL_STATE(497)] = 7878, - [SMALL_STATE(498)] = 7917, - [SMALL_STATE(499)] = 7956, - [SMALL_STATE(500)] = 7995, - [SMALL_STATE(501)] = 8034, - [SMALL_STATE(502)] = 8073, - [SMALL_STATE(503)] = 8112, - [SMALL_STATE(504)] = 8153, - [SMALL_STATE(505)] = 8192, - [SMALL_STATE(506)] = 8233, - [SMALL_STATE(507)] = 8272, - [SMALL_STATE(508)] = 8311, - [SMALL_STATE(509)] = 8350, - [SMALL_STATE(510)] = 8389, - [SMALL_STATE(511)] = 8428, - [SMALL_STATE(512)] = 8496, - [SMALL_STATE(513)] = 8546, - [SMALL_STATE(514)] = 8590, - [SMALL_STATE(515)] = 8658, - [SMALL_STATE(516)] = 8704, - [SMALL_STATE(517)] = 8748, - [SMALL_STATE(518)] = 8808, - [SMALL_STATE(519)] = 8850, - [SMALL_STATE(520)] = 8918, - [SMALL_STATE(521)] = 8980, - [SMALL_STATE(522)] = 9044, - [SMALL_STATE(523)] = 9106, - [SMALL_STATE(524)] = 9162, - [SMALL_STATE(525)] = 9206, - [SMALL_STATE(526)] = 9264, - [SMALL_STATE(527)] = 9308, - [SMALL_STATE(528)] = 9376, - [SMALL_STATE(529)] = 9444, - [SMALL_STATE(530)] = 9488, - [SMALL_STATE(531)] = 9533, - [SMALL_STATE(532)] = 9570, - [SMALL_STATE(533)] = 9615, - [SMALL_STATE(534)] = 9652, - [SMALL_STATE(535)] = 9694, - [SMALL_STATE(536)] = 9764, - [SMALL_STATE(537)] = 9830, - [SMALL_STATE(538)] = 9889, - [SMALL_STATE(539)] = 9942, - [SMALL_STATE(540)] = 10001, - [SMALL_STATE(541)] = 10036, - [SMALL_STATE(542)] = 10071, - [SMALL_STATE(543)] = 10108, - [SMALL_STATE(544)] = 10177, - [SMALL_STATE(545)] = 10246, - [SMALL_STATE(546)] = 10311, - [SMALL_STATE(547)] = 10380, - [SMALL_STATE(548)] = 10439, - [SMALL_STATE(549)] = 10496, - [SMALL_STATE(550)] = 10539, - [SMALL_STATE(551)] = 10608, - [SMALL_STATE(552)] = 10643, - [SMALL_STATE(553)] = 10696, - [SMALL_STATE(554)] = 10761, - [SMALL_STATE(555)] = 10830, - [SMALL_STATE(556)] = 10865, - [SMALL_STATE(557)] = 10934, - [SMALL_STATE(558)] = 11003, - [SMALL_STATE(559)] = 11072, - [SMALL_STATE(560)] = 11141, - [SMALL_STATE(561)] = 11210, - [SMALL_STATE(562)] = 11279, - [SMALL_STATE(563)] = 11348, - [SMALL_STATE(564)] = 11417, - [SMALL_STATE(565)] = 11452, - [SMALL_STATE(566)] = 11487, - [SMALL_STATE(567)] = 11556, - [SMALL_STATE(568)] = 11621, - [SMALL_STATE(569)] = 11656, - [SMALL_STATE(570)] = 11721, - [SMALL_STATE(571)] = 11768, - [SMALL_STATE(572)] = 11823, - [SMALL_STATE(573)] = 11888, - [SMALL_STATE(574)] = 11923, - [SMALL_STATE(575)] = 11958, - [SMALL_STATE(576)] = 12023, - [SMALL_STATE(577)] = 12092, - [SMALL_STATE(578)] = 12157, - [SMALL_STATE(579)] = 12226, - [SMALL_STATE(580)] = 12295, - [SMALL_STATE(581)] = 12364, - [SMALL_STATE(582)] = 12433, - [SMALL_STATE(583)] = 12492, - [SMALL_STATE(584)] = 12561, - [SMALL_STATE(585)] = 12626, - [SMALL_STATE(586)] = 12687, - [SMALL_STATE(587)] = 12756, - [SMALL_STATE(588)] = 12797, - [SMALL_STATE(589)] = 12847, - [SMALL_STATE(590)] = 12911, - [SMALL_STATE(591)] = 12949, - [SMALL_STATE(592)] = 13013, - [SMALL_STATE(593)] = 13063, - [SMALL_STATE(594)] = 13127, - [SMALL_STATE(595)] = 13191, - [SMALL_STATE(596)] = 13255, - [SMALL_STATE(597)] = 13321, - [SMALL_STATE(598)] = 13377, - [SMALL_STATE(599)] = 13441, - [SMALL_STATE(600)] = 13505, - [SMALL_STATE(601)] = 13568, - [SMALL_STATE(602)] = 13631, - [SMALL_STATE(603)] = 13694, - [SMALL_STATE(604)] = 13757, - [SMALL_STATE(605)] = 13812, - [SMALL_STATE(606)] = 13867, - [SMALL_STATE(607)] = 13930, - [SMALL_STATE(608)] = 13993, - [SMALL_STATE(609)] = 14056, - [SMALL_STATE(610)] = 14119, - [SMALL_STATE(611)] = 14182, - [SMALL_STATE(612)] = 14245, - [SMALL_STATE(613)] = 14308, - [SMALL_STATE(614)] = 14363, - [SMALL_STATE(615)] = 14426, - [SMALL_STATE(616)] = 14489, - [SMALL_STATE(617)] = 14552, - [SMALL_STATE(618)] = 14615, - [SMALL_STATE(619)] = 14670, - [SMALL_STATE(620)] = 14733, - [SMALL_STATE(621)] = 14796, - [SMALL_STATE(622)] = 14859, - [SMALL_STATE(623)] = 14922, - [SMALL_STATE(624)] = 14985, - [SMALL_STATE(625)] = 15048, - [SMALL_STATE(626)] = 15111, - [SMALL_STATE(627)] = 15174, - [SMALL_STATE(628)] = 15226, - [SMALL_STATE(629)] = 15258, - [SMALL_STATE(630)] = 15310, - [SMALL_STATE(631)] = 15362, - [SMALL_STATE(632)] = 15414, - [SMALL_STATE(633)] = 15466, - [SMALL_STATE(634)] = 15518, - [SMALL_STATE(635)] = 15550, - [SMALL_STATE(636)] = 15608, - [SMALL_STATE(637)] = 15660, - [SMALL_STATE(638)] = 15712, - [SMALL_STATE(639)] = 15749, - [SMALL_STATE(640)] = 15798, - [SMALL_STATE(641)] = 15839, - [SMALL_STATE(642)] = 15876, - [SMALL_STATE(643)] = 15912, - [SMALL_STATE(644)] = 15948, - [SMALL_STATE(645)] = 15994, - [SMALL_STATE(646)] = 16024, - [SMALL_STATE(647)] = 16072, - [SMALL_STATE(648)] = 16118, - [SMALL_STATE(649)] = 16148, - [SMALL_STATE(650)] = 16194, - [SMALL_STATE(651)] = 16240, - [SMALL_STATE(652)] = 16286, - [SMALL_STATE(653)] = 16332, - [SMALL_STATE(654)] = 16362, - [SMALL_STATE(655)] = 16408, - [SMALL_STATE(656)] = 16438, - [SMALL_STATE(657)] = 16486, - [SMALL_STATE(658)] = 16538, - [SMALL_STATE(659)] = 16568, - [SMALL_STATE(660)] = 16598, - [SMALL_STATE(661)] = 16627, - [SMALL_STATE(662)] = 16656, - [SMALL_STATE(663)] = 16685, - [SMALL_STATE(664)] = 16714, - [SMALL_STATE(665)] = 16763, - [SMALL_STATE(666)] = 16791, - [SMALL_STATE(667)] = 16819, - [SMALL_STATE(668)] = 16867, - [SMALL_STATE(669)] = 16895, - [SMALL_STATE(670)] = 16925, - [SMALL_STATE(671)] = 16967, - [SMALL_STATE(672)] = 17009, - [SMALL_STATE(673)] = 17041, - [SMALL_STATE(674)] = 17069, - [SMALL_STATE(675)] = 17097, - [SMALL_STATE(676)] = 17125, - [SMALL_STATE(677)] = 17153, - [SMALL_STATE(678)] = 17199, - [SMALL_STATE(679)] = 17239, - [SMALL_STATE(680)] = 17273, - [SMALL_STATE(681)] = 17319, - [SMALL_STATE(682)] = 17365, - [SMALL_STATE(683)] = 17402, - [SMALL_STATE(684)] = 17441, - [SMALL_STATE(685)] = 17478, - [SMALL_STATE(686)] = 17521, - [SMALL_STATE(687)] = 17546, - [SMALL_STATE(688)] = 17579, - [SMALL_STATE(689)] = 17622, - [SMALL_STATE(690)] = 17659, - [SMALL_STATE(691)] = 17702, - [SMALL_STATE(692)] = 17739, - [SMALL_STATE(693)] = 17776, - [SMALL_STATE(694)] = 17819, - [SMALL_STATE(695)] = 17844, - [SMALL_STATE(696)] = 17884, - [SMALL_STATE(697)] = 17910, - [SMALL_STATE(698)] = 17950, - [SMALL_STATE(699)] = 17990, - [SMALL_STATE(700)] = 18030, - [SMALL_STATE(701)] = 18070, - [SMALL_STATE(702)] = 18110, - [SMALL_STATE(703)] = 18150, - [SMALL_STATE(704)] = 18192, - [SMALL_STATE(705)] = 18234, - [SMALL_STATE(706)] = 18276, - [SMALL_STATE(707)] = 18318, - [SMALL_STATE(708)] = 18355, - [SMALL_STATE(709)] = 18392, - [SMALL_STATE(710)] = 18427, - [SMALL_STATE(711)] = 18464, - [SMALL_STATE(712)] = 18497, - [SMALL_STATE(713)] = 18526, - [SMALL_STATE(714)] = 18562, - [SMALL_STATE(715)] = 18596, - [SMALL_STATE(716)] = 18630, - [SMALL_STATE(717)] = 18664, - [SMALL_STATE(718)] = 18696, - [SMALL_STATE(719)] = 18730, - [SMALL_STATE(720)] = 18760, - [SMALL_STATE(721)] = 18794, - [SMALL_STATE(722)] = 18828, - [SMALL_STATE(723)] = 18862, - [SMALL_STATE(724)] = 18898, - [SMALL_STATE(725)] = 18932, - [SMALL_STATE(726)] = 18966, - [SMALL_STATE(727)] = 19002, - [SMALL_STATE(728)] = 19032, - [SMALL_STATE(729)] = 19068, - [SMALL_STATE(730)] = 19104, - [SMALL_STATE(731)] = 19140, - [SMALL_STATE(732)] = 19173, - [SMALL_STATE(733)] = 19204, - [SMALL_STATE(734)] = 19227, - [SMALL_STATE(735)] = 19258, - [SMALL_STATE(736)] = 19289, - [SMALL_STATE(737)] = 19320, - [SMALL_STATE(738)] = 19353, - [SMALL_STATE(739)] = 19384, - [SMALL_STATE(740)] = 19415, - [SMALL_STATE(741)] = 19445, - [SMALL_STATE(742)] = 19475, - [SMALL_STATE(743)] = 19507, - [SMALL_STATE(744)] = 19537, - [SMALL_STATE(745)] = 19567, - [SMALL_STATE(746)] = 19595, - [SMALL_STATE(747)] = 19623, - [SMALL_STATE(748)] = 19655, - [SMALL_STATE(749)] = 19685, - [SMALL_STATE(750)] = 19714, - [SMALL_STATE(751)] = 19741, - [SMALL_STATE(752)] = 19776, - [SMALL_STATE(753)] = 19803, - [SMALL_STATE(754)] = 19838, - [SMALL_STATE(755)] = 19869, - [SMALL_STATE(756)] = 19900, - [SMALL_STATE(757)] = 19929, - [SMALL_STATE(758)] = 19957, - [SMALL_STATE(759)] = 19973, - [SMALL_STATE(760)] = 19999, - [SMALL_STATE(761)] = 20029, - [SMALL_STATE(762)] = 20054, - [SMALL_STATE(763)] = 20083, - [SMALL_STATE(764)] = 20112, - [SMALL_STATE(765)] = 20141, - [SMALL_STATE(766)] = 20170, - [SMALL_STATE(767)] = 20191, - [SMALL_STATE(768)] = 20213, - [SMALL_STATE(769)] = 20233, - [SMALL_STATE(770)] = 20253, - [SMALL_STATE(771)] = 20277, - [SMALL_STATE(772)] = 20301, - [SMALL_STATE(773)] = 20323, - [SMALL_STATE(774)] = 20345, - [SMALL_STATE(775)] = 20366, - [SMALL_STATE(776)] = 20383, - [SMALL_STATE(777)] = 20402, - [SMALL_STATE(778)] = 20419, - [SMALL_STATE(779)] = 20432, - [SMALL_STATE(780)] = 20445, - [SMALL_STATE(781)] = 20458, - [SMALL_STATE(782)] = 20471, - [SMALL_STATE(783)] = 20494, - [SMALL_STATE(784)] = 20507, - [SMALL_STATE(785)] = 20520, - [SMALL_STATE(786)] = 20541, - [SMALL_STATE(787)] = 20554, - [SMALL_STATE(788)] = 20567, - [SMALL_STATE(789)] = 20580, - [SMALL_STATE(790)] = 20593, - [SMALL_STATE(791)] = 20606, - [SMALL_STATE(792)] = 20619, - [SMALL_STATE(793)] = 20632, - [SMALL_STATE(794)] = 20655, - [SMALL_STATE(795)] = 20668, - [SMALL_STATE(796)] = 20681, - [SMALL_STATE(797)] = 20694, - [SMALL_STATE(798)] = 20717, - [SMALL_STATE(799)] = 20730, - [SMALL_STATE(800)] = 20743, - [SMALL_STATE(801)] = 20756, - [SMALL_STATE(802)] = 20769, - [SMALL_STATE(803)] = 20782, - [SMALL_STATE(804)] = 20795, - [SMALL_STATE(805)] = 20808, - [SMALL_STATE(806)] = 20821, - [SMALL_STATE(807)] = 20834, - [SMALL_STATE(808)] = 20847, - [SMALL_STATE(809)] = 20860, - [SMALL_STATE(810)] = 20883, - [SMALL_STATE(811)] = 20902, - [SMALL_STATE(812)] = 20921, - [SMALL_STATE(813)] = 20938, - [SMALL_STATE(814)] = 20951, - [SMALL_STATE(815)] = 20968, - [SMALL_STATE(816)] = 20981, - [SMALL_STATE(817)] = 20994, - [SMALL_STATE(818)] = 21011, - [SMALL_STATE(819)] = 21028, - [SMALL_STATE(820)] = 21041, - [SMALL_STATE(821)] = 21054, - [SMALL_STATE(822)] = 21071, - [SMALL_STATE(823)] = 21084, - [SMALL_STATE(824)] = 21097, - [SMALL_STATE(825)] = 21114, - [SMALL_STATE(826)] = 21131, - [SMALL_STATE(827)] = 21144, - [SMALL_STATE(828)] = 21157, - [SMALL_STATE(829)] = 21174, - [SMALL_STATE(830)] = 21193, - [SMALL_STATE(831)] = 21210, - [SMALL_STATE(832)] = 21227, - [SMALL_STATE(833)] = 21240, - [SMALL_STATE(834)] = 21253, - [SMALL_STATE(835)] = 21266, - [SMALL_STATE(836)] = 21279, - [SMALL_STATE(837)] = 21296, - [SMALL_STATE(838)] = 21319, - [SMALL_STATE(839)] = 21332, - [SMALL_STATE(840)] = 21349, - [SMALL_STATE(841)] = 21366, - [SMALL_STATE(842)] = 21383, - [SMALL_STATE(843)] = 21396, - [SMALL_STATE(844)] = 21413, - [SMALL_STATE(845)] = 21426, - [SMALL_STATE(846)] = 21439, - [SMALL_STATE(847)] = 21462, - [SMALL_STATE(848)] = 21478, - [SMALL_STATE(849)] = 21494, - [SMALL_STATE(850)] = 21510, - [SMALL_STATE(851)] = 21526, - [SMALL_STATE(852)] = 21542, - [SMALL_STATE(853)] = 21562, - [SMALL_STATE(854)] = 21578, - [SMALL_STATE(855)] = 21594, - [SMALL_STATE(856)] = 21612, - [SMALL_STATE(857)] = 21632, - [SMALL_STATE(858)] = 21648, - [SMALL_STATE(859)] = 21668, - [SMALL_STATE(860)] = 21684, - [SMALL_STATE(861)] = 21700, - [SMALL_STATE(862)] = 21716, - [SMALL_STATE(863)] = 21732, - [SMALL_STATE(864)] = 21748, - [SMALL_STATE(865)] = 21760, - [SMALL_STATE(866)] = 21776, - [SMALL_STATE(867)] = 21792, - [SMALL_STATE(868)] = 21808, - [SMALL_STATE(869)] = 21824, - [SMALL_STATE(870)] = 21840, - [SMALL_STATE(871)] = 21856, - [SMALL_STATE(872)] = 21872, - [SMALL_STATE(873)] = 21888, - [SMALL_STATE(874)] = 21904, - [SMALL_STATE(875)] = 21920, - [SMALL_STATE(876)] = 21940, - [SMALL_STATE(877)] = 21956, - [SMALL_STATE(878)] = 21968, - [SMALL_STATE(879)] = 21984, - [SMALL_STATE(880)] = 22000, - [SMALL_STATE(881)] = 22016, - [SMALL_STATE(882)] = 22030, - [SMALL_STATE(883)] = 22050, - [SMALL_STATE(884)] = 22070, - [SMALL_STATE(885)] = 22086, - [SMALL_STATE(886)] = 22102, - [SMALL_STATE(887)] = 22119, - [SMALL_STATE(888)] = 22134, - [SMALL_STATE(889)] = 22149, - [SMALL_STATE(890)] = 22166, - [SMALL_STATE(891)] = 22183, - [SMALL_STATE(892)] = 22200, - [SMALL_STATE(893)] = 22215, - [SMALL_STATE(894)] = 22232, - [SMALL_STATE(895)] = 22249, - [SMALL_STATE(896)] = 22266, - [SMALL_STATE(897)] = 22283, - [SMALL_STATE(898)] = 22298, - [SMALL_STATE(899)] = 22309, - [SMALL_STATE(900)] = 22326, - [SMALL_STATE(901)] = 22343, - [SMALL_STATE(902)] = 22358, - [SMALL_STATE(903)] = 22373, - [SMALL_STATE(904)] = 22388, - [SMALL_STATE(905)] = 22399, - [SMALL_STATE(906)] = 22412, - [SMALL_STATE(907)] = 22429, - [SMALL_STATE(908)] = 22446, - [SMALL_STATE(909)] = 22463, - [SMALL_STATE(910)] = 22480, - [SMALL_STATE(911)] = 22497, - [SMALL_STATE(912)] = 22514, - [SMALL_STATE(913)] = 22531, - [SMALL_STATE(914)] = 22548, - [SMALL_STATE(915)] = 22565, - [SMALL_STATE(916)] = 22582, - [SMALL_STATE(917)] = 22599, - [SMALL_STATE(918)] = 22616, - [SMALL_STATE(919)] = 22627, - [SMALL_STATE(920)] = 22640, - [SMALL_STATE(921)] = 22657, - [SMALL_STATE(922)] = 22672, - [SMALL_STATE(923)] = 22687, - [SMALL_STATE(924)] = 22704, - [SMALL_STATE(925)] = 22719, - [SMALL_STATE(926)] = 22736, - [SMALL_STATE(927)] = 22751, - [SMALL_STATE(928)] = 22768, - [SMALL_STATE(929)] = 22783, - [SMALL_STATE(930)] = 22798, - [SMALL_STATE(931)] = 22815, - [SMALL_STATE(932)] = 22826, - [SMALL_STATE(933)] = 22843, - [SMALL_STATE(934)] = 22858, - [SMALL_STATE(935)] = 22873, - [SMALL_STATE(936)] = 22888, - [SMALL_STATE(937)] = 22903, - [SMALL_STATE(938)] = 22920, - [SMALL_STATE(939)] = 22935, - [SMALL_STATE(940)] = 22950, - [SMALL_STATE(941)] = 22967, - [SMALL_STATE(942)] = 22984, - [SMALL_STATE(943)] = 22997, - [SMALL_STATE(944)] = 23014, - [SMALL_STATE(945)] = 23031, - [SMALL_STATE(946)] = 23042, - [SMALL_STATE(947)] = 23057, - [SMALL_STATE(948)] = 23074, - [SMALL_STATE(949)] = 23089, - [SMALL_STATE(950)] = 23103, - [SMALL_STATE(951)] = 23117, - [SMALL_STATE(952)] = 23131, - [SMALL_STATE(953)] = 23145, - [SMALL_STATE(954)] = 23159, - [SMALL_STATE(955)] = 23173, - [SMALL_STATE(956)] = 23187, - [SMALL_STATE(957)] = 23201, - [SMALL_STATE(958)] = 23215, - [SMALL_STATE(959)] = 23229, - [SMALL_STATE(960)] = 23243, - [SMALL_STATE(961)] = 23257, - [SMALL_STATE(962)] = 23271, - [SMALL_STATE(963)] = 23285, - [SMALL_STATE(964)] = 23299, - [SMALL_STATE(965)] = 23313, - [SMALL_STATE(966)] = 23327, - [SMALL_STATE(967)] = 23341, - [SMALL_STATE(968)] = 23355, - [SMALL_STATE(969)] = 23369, - [SMALL_STATE(970)] = 23383, - [SMALL_STATE(971)] = 23397, - [SMALL_STATE(972)] = 23411, - [SMALL_STATE(973)] = 23425, - [SMALL_STATE(974)] = 23439, - [SMALL_STATE(975)] = 23453, - [SMALL_STATE(976)] = 23467, - [SMALL_STATE(977)] = 23481, - [SMALL_STATE(978)] = 23495, - [SMALL_STATE(979)] = 23509, - [SMALL_STATE(980)] = 23523, - [SMALL_STATE(981)] = 23533, - [SMALL_STATE(982)] = 23547, - [SMALL_STATE(983)] = 23561, - [SMALL_STATE(984)] = 23575, - [SMALL_STATE(985)] = 23589, - [SMALL_STATE(986)] = 23603, - [SMALL_STATE(987)] = 23617, - [SMALL_STATE(988)] = 23627, - [SMALL_STATE(989)] = 23641, - [SMALL_STATE(990)] = 23655, - [SMALL_STATE(991)] = 23669, - [SMALL_STATE(992)] = 23679, - [SMALL_STATE(993)] = 23693, - [SMALL_STATE(994)] = 23707, - [SMALL_STATE(995)] = 23721, - [SMALL_STATE(996)] = 23735, - [SMALL_STATE(997)] = 23749, - [SMALL_STATE(998)] = 23763, - [SMALL_STATE(999)] = 23773, - [SMALL_STATE(1000)] = 23785, - [SMALL_STATE(1001)] = 23797, - [SMALL_STATE(1002)] = 23811, - [SMALL_STATE(1003)] = 23825, - [SMALL_STATE(1004)] = 23835, - [SMALL_STATE(1005)] = 23845, - [SMALL_STATE(1006)] = 23859, - [SMALL_STATE(1007)] = 23873, - [SMALL_STATE(1008)] = 23887, - [SMALL_STATE(1009)] = 23901, - [SMALL_STATE(1010)] = 23915, - [SMALL_STATE(1011)] = 23927, - [SMALL_STATE(1012)] = 23939, - [SMALL_STATE(1013)] = 23953, - [SMALL_STATE(1014)] = 23967, - [SMALL_STATE(1015)] = 23981, - [SMALL_STATE(1016)] = 23995, - [SMALL_STATE(1017)] = 24009, - [SMALL_STATE(1018)] = 24023, - [SMALL_STATE(1019)] = 24037, - [SMALL_STATE(1020)] = 24051, - [SMALL_STATE(1021)] = 24061, - [SMALL_STATE(1022)] = 24075, - [SMALL_STATE(1023)] = 24089, - [SMALL_STATE(1024)] = 24103, - [SMALL_STATE(1025)] = 24117, - [SMALL_STATE(1026)] = 24131, - [SMALL_STATE(1027)] = 24145, - [SMALL_STATE(1028)] = 24159, - [SMALL_STATE(1029)] = 24173, - [SMALL_STATE(1030)] = 24183, - [SMALL_STATE(1031)] = 24197, - [SMALL_STATE(1032)] = 24211, - [SMALL_STATE(1033)] = 24225, - [SMALL_STATE(1034)] = 24235, - [SMALL_STATE(1035)] = 24249, - [SMALL_STATE(1036)] = 24263, - [SMALL_STATE(1037)] = 24277, - [SMALL_STATE(1038)] = 24291, - [SMALL_STATE(1039)] = 24305, - [SMALL_STATE(1040)] = 24319, - [SMALL_STATE(1041)] = 24329, - [SMALL_STATE(1042)] = 24339, - [SMALL_STATE(1043)] = 24353, - [SMALL_STATE(1044)] = 24367, - [SMALL_STATE(1045)] = 24381, - [SMALL_STATE(1046)] = 24395, - [SMALL_STATE(1047)] = 24409, - [SMALL_STATE(1048)] = 24423, - [SMALL_STATE(1049)] = 24437, - [SMALL_STATE(1050)] = 24451, - [SMALL_STATE(1051)] = 24465, - [SMALL_STATE(1052)] = 24479, - [SMALL_STATE(1053)] = 24493, - [SMALL_STATE(1054)] = 24507, - [SMALL_STATE(1055)] = 24521, - [SMALL_STATE(1056)] = 24535, - [SMALL_STATE(1057)] = 24549, - [SMALL_STATE(1058)] = 24563, - [SMALL_STATE(1059)] = 24577, - [SMALL_STATE(1060)] = 24591, - [SMALL_STATE(1061)] = 24602, - [SMALL_STATE(1062)] = 24613, - [SMALL_STATE(1063)] = 24622, - [SMALL_STATE(1064)] = 24631, - [SMALL_STATE(1065)] = 24642, - [SMALL_STATE(1066)] = 24653, - [SMALL_STATE(1067)] = 24664, - [SMALL_STATE(1068)] = 24675, - [SMALL_STATE(1069)] = 24686, - [SMALL_STATE(1070)] = 24697, - [SMALL_STATE(1071)] = 24708, - [SMALL_STATE(1072)] = 24719, - [SMALL_STATE(1073)] = 24728, - [SMALL_STATE(1074)] = 24739, - [SMALL_STATE(1075)] = 24750, - [SMALL_STATE(1076)] = 24761, - [SMALL_STATE(1077)] = 24772, - [SMALL_STATE(1078)] = 24783, - [SMALL_STATE(1079)] = 24794, - [SMALL_STATE(1080)] = 24803, - [SMALL_STATE(1081)] = 24814, - [SMALL_STATE(1082)] = 24825, - [SMALL_STATE(1083)] = 24836, - [SMALL_STATE(1084)] = 24847, - [SMALL_STATE(1085)] = 24858, - [SMALL_STATE(1086)] = 24869, - [SMALL_STATE(1087)] = 24880, - [SMALL_STATE(1088)] = 24889, - [SMALL_STATE(1089)] = 24898, - [SMALL_STATE(1090)] = 24907, - [SMALL_STATE(1091)] = 24916, - [SMALL_STATE(1092)] = 24927, - [SMALL_STATE(1093)] = 24936, - [SMALL_STATE(1094)] = 24947, - [SMALL_STATE(1095)] = 24958, - [SMALL_STATE(1096)] = 24969, - [SMALL_STATE(1097)] = 24980, - [SMALL_STATE(1098)] = 24991, - [SMALL_STATE(1099)] = 25002, - [SMALL_STATE(1100)] = 25011, - [SMALL_STATE(1101)] = 25022, - [SMALL_STATE(1102)] = 25033, - [SMALL_STATE(1103)] = 25044, - [SMALL_STATE(1104)] = 25053, - [SMALL_STATE(1105)] = 25064, - [SMALL_STATE(1106)] = 25075, - [SMALL_STATE(1107)] = 25084, - [SMALL_STATE(1108)] = 25095, - [SMALL_STATE(1109)] = 25106, - [SMALL_STATE(1110)] = 25115, - [SMALL_STATE(1111)] = 25126, - [SMALL_STATE(1112)] = 25137, - [SMALL_STATE(1113)] = 25148, - [SMALL_STATE(1114)] = 25159, - [SMALL_STATE(1115)] = 25170, - [SMALL_STATE(1116)] = 25179, - [SMALL_STATE(1117)] = 25190, - [SMALL_STATE(1118)] = 25201, - [SMALL_STATE(1119)] = 25212, - [SMALL_STATE(1120)] = 25221, - [SMALL_STATE(1121)] = 25230, - [SMALL_STATE(1122)] = 25241, - [SMALL_STATE(1123)] = 25252, - [SMALL_STATE(1124)] = 25263, - [SMALL_STATE(1125)] = 25272, - [SMALL_STATE(1126)] = 25283, - [SMALL_STATE(1127)] = 25294, - [SMALL_STATE(1128)] = 25303, - [SMALL_STATE(1129)] = 25314, - [SMALL_STATE(1130)] = 25325, - [SMALL_STATE(1131)] = 25336, - [SMALL_STATE(1132)] = 25345, - [SMALL_STATE(1133)] = 25356, - [SMALL_STATE(1134)] = 25367, - [SMALL_STATE(1135)] = 25378, - [SMALL_STATE(1136)] = 25389, - [SMALL_STATE(1137)] = 25400, - [SMALL_STATE(1138)] = 25411, - [SMALL_STATE(1139)] = 25422, - [SMALL_STATE(1140)] = 25433, - [SMALL_STATE(1141)] = 25444, - [SMALL_STATE(1142)] = 25455, - [SMALL_STATE(1143)] = 25466, - [SMALL_STATE(1144)] = 25477, - [SMALL_STATE(1145)] = 25486, - [SMALL_STATE(1146)] = 25497, - [SMALL_STATE(1147)] = 25506, - [SMALL_STATE(1148)] = 25515, - [SMALL_STATE(1149)] = 25524, - [SMALL_STATE(1150)] = 25533, - [SMALL_STATE(1151)] = 25542, - [SMALL_STATE(1152)] = 25553, - [SMALL_STATE(1153)] = 25564, - [SMALL_STATE(1154)] = 25573, - [SMALL_STATE(1155)] = 25584, - [SMALL_STATE(1156)] = 25593, - [SMALL_STATE(1157)] = 25602, - [SMALL_STATE(1158)] = 25611, - [SMALL_STATE(1159)] = 25622, - [SMALL_STATE(1160)] = 25633, - [SMALL_STATE(1161)] = 25644, - [SMALL_STATE(1162)] = 25653, - [SMALL_STATE(1163)] = 25664, - [SMALL_STATE(1164)] = 25675, - [SMALL_STATE(1165)] = 25686, - [SMALL_STATE(1166)] = 25697, - [SMALL_STATE(1167)] = 25708, - [SMALL_STATE(1168)] = 25719, - [SMALL_STATE(1169)] = 25730, - [SMALL_STATE(1170)] = 25741, - [SMALL_STATE(1171)] = 25752, - [SMALL_STATE(1172)] = 25763, - [SMALL_STATE(1173)] = 25774, - [SMALL_STATE(1174)] = 25785, - [SMALL_STATE(1175)] = 25796, - [SMALL_STATE(1176)] = 25807, - [SMALL_STATE(1177)] = 25815, - [SMALL_STATE(1178)] = 25823, - [SMALL_STATE(1179)] = 25831, - [SMALL_STATE(1180)] = 25839, - [SMALL_STATE(1181)] = 25847, - [SMALL_STATE(1182)] = 25855, - [SMALL_STATE(1183)] = 25863, - [SMALL_STATE(1184)] = 25871, - [SMALL_STATE(1185)] = 25879, - [SMALL_STATE(1186)] = 25887, - [SMALL_STATE(1187)] = 25895, - [SMALL_STATE(1188)] = 25903, - [SMALL_STATE(1189)] = 25911, - [SMALL_STATE(1190)] = 25919, - [SMALL_STATE(1191)] = 25927, - [SMALL_STATE(1192)] = 25935, - [SMALL_STATE(1193)] = 25943, - [SMALL_STATE(1194)] = 25951, - [SMALL_STATE(1195)] = 25959, - [SMALL_STATE(1196)] = 25967, - [SMALL_STATE(1197)] = 25975, - [SMALL_STATE(1198)] = 25983, - [SMALL_STATE(1199)] = 25991, - [SMALL_STATE(1200)] = 25999, - [SMALL_STATE(1201)] = 26007, - [SMALL_STATE(1202)] = 26015, - [SMALL_STATE(1203)] = 26023, - [SMALL_STATE(1204)] = 26031, - [SMALL_STATE(1205)] = 26039, - [SMALL_STATE(1206)] = 26047, - [SMALL_STATE(1207)] = 26055, - [SMALL_STATE(1208)] = 26063, - [SMALL_STATE(1209)] = 26071, - [SMALL_STATE(1210)] = 26079, - [SMALL_STATE(1211)] = 26087, - [SMALL_STATE(1212)] = 26095, - [SMALL_STATE(1213)] = 26103, - [SMALL_STATE(1214)] = 26111, - [SMALL_STATE(1215)] = 26119, - [SMALL_STATE(1216)] = 26127, - [SMALL_STATE(1217)] = 26135, - [SMALL_STATE(1218)] = 26143, - [SMALL_STATE(1219)] = 26151, - [SMALL_STATE(1220)] = 26159, - [SMALL_STATE(1221)] = 26167, - [SMALL_STATE(1222)] = 26175, - [SMALL_STATE(1223)] = 26183, - [SMALL_STATE(1224)] = 26191, - [SMALL_STATE(1225)] = 26199, - [SMALL_STATE(1226)] = 26207, - [SMALL_STATE(1227)] = 26215, - [SMALL_STATE(1228)] = 26223, - [SMALL_STATE(1229)] = 26231, - [SMALL_STATE(1230)] = 26239, - [SMALL_STATE(1231)] = 26247, - [SMALL_STATE(1232)] = 26255, - [SMALL_STATE(1233)] = 26263, - [SMALL_STATE(1234)] = 26271, - [SMALL_STATE(1235)] = 26279, - [SMALL_STATE(1236)] = 26287, - [SMALL_STATE(1237)] = 26295, - [SMALL_STATE(1238)] = 26303, - [SMALL_STATE(1239)] = 26311, - [SMALL_STATE(1240)] = 26319, - [SMALL_STATE(1241)] = 26327, - [SMALL_STATE(1242)] = 26335, - [SMALL_STATE(1243)] = 26343, - [SMALL_STATE(1244)] = 26351, - [SMALL_STATE(1245)] = 26359, - [SMALL_STATE(1246)] = 26367, - [SMALL_STATE(1247)] = 26375, - [SMALL_STATE(1248)] = 26383, - [SMALL_STATE(1249)] = 26391, - [SMALL_STATE(1250)] = 26399, - [SMALL_STATE(1251)] = 26407, - [SMALL_STATE(1252)] = 26415, - [SMALL_STATE(1253)] = 26423, - [SMALL_STATE(1254)] = 26431, - [SMALL_STATE(1255)] = 26439, - [SMALL_STATE(1256)] = 26447, - [SMALL_STATE(1257)] = 26455, - [SMALL_STATE(1258)] = 26463, - [SMALL_STATE(1259)] = 26471, - [SMALL_STATE(1260)] = 26479, - [SMALL_STATE(1261)] = 26487, + [SMALL_STATE(376)] = 2194, + [SMALL_STATE(377)] = 2251, + [SMALL_STATE(378)] = 2324, + [SMALL_STATE(379)] = 2384, + [SMALL_STATE(380)] = 2446, + [SMALL_STATE(381)] = 2506, + [SMALL_STATE(382)] = 2570, + [SMALL_STATE(383)] = 2634, + [SMALL_STATE(384)] = 2697, + [SMALL_STATE(385)] = 2758, + [SMALL_STATE(386)] = 2819, + [SMALL_STATE(387)] = 2882, + [SMALL_STATE(388)] = 2945, + [SMALL_STATE(389)] = 3008, + [SMALL_STATE(390)] = 3090, + [SMALL_STATE(391)] = 3144, + [SMALL_STATE(392)] = 3194, + [SMALL_STATE(393)] = 3244, + [SMALL_STATE(394)] = 3301, + [SMALL_STATE(395)] = 3375, + [SMALL_STATE(396)] = 3446, + [SMALL_STATE(397)] = 3519, + [SMALL_STATE(398)] = 3566, + [SMALL_STATE(399)] = 3619, + [SMALL_STATE(400)] = 3666, + [SMALL_STATE(401)] = 3713, + [SMALL_STATE(402)] = 3760, + [SMALL_STATE(403)] = 3813, + [SMALL_STATE(404)] = 3859, + [SMALL_STATE(405)] = 3905, + [SMALL_STATE(406)] = 3951, + [SMALL_STATE(407)] = 3999, + [SMALL_STATE(408)] = 4051, + [SMALL_STATE(409)] = 4103, + [SMALL_STATE(410)] = 4149, + [SMALL_STATE(411)] = 4195, + [SMALL_STATE(412)] = 4241, + [SMALL_STATE(413)] = 4287, + [SMALL_STATE(414)] = 4333, + [SMALL_STATE(415)] = 4379, + [SMALL_STATE(416)] = 4424, + [SMALL_STATE(417)] = 4469, + [SMALL_STATE(418)] = 4514, + [SMALL_STATE(419)] = 4559, + [SMALL_STATE(420)] = 4607, + [SMALL_STATE(421)] = 4655, + [SMALL_STATE(422)] = 4703, + [SMALL_STATE(423)] = 4751, + [SMALL_STATE(424)] = 4803, + [SMALL_STATE(425)] = 4855, + [SMALL_STATE(426)] = 4898, + [SMALL_STATE(427)] = 4941, + [SMALL_STATE(428)] = 4984, + [SMALL_STATE(429)] = 5027, + [SMALL_STATE(430)] = 5070, + [SMALL_STATE(431)] = 5113, + [SMALL_STATE(432)] = 5156, + [SMALL_STATE(433)] = 5199, + [SMALL_STATE(434)] = 5242, + [SMALL_STATE(435)] = 5285, + [SMALL_STATE(436)] = 5328, + [SMALL_STATE(437)] = 5371, + [SMALL_STATE(438)] = 5414, + [SMALL_STATE(439)] = 5457, + [SMALL_STATE(440)] = 5500, + [SMALL_STATE(441)] = 5543, + [SMALL_STATE(442)] = 5586, + [SMALL_STATE(443)] = 5633, + [SMALL_STATE(444)] = 5676, + [SMALL_STATE(445)] = 5719, + [SMALL_STATE(446)] = 5762, + [SMALL_STATE(447)] = 5805, + [SMALL_STATE(448)] = 5848, + [SMALL_STATE(449)] = 5891, + [SMALL_STATE(450)] = 5934, + [SMALL_STATE(451)] = 5977, + [SMALL_STATE(452)] = 6019, + [SMALL_STATE(453)] = 6061, + [SMALL_STATE(454)] = 6103, + [SMALL_STATE(455)] = 6145, + [SMALL_STATE(456)] = 6187, + [SMALL_STATE(457)] = 6229, + [SMALL_STATE(458)] = 6271, + [SMALL_STATE(459)] = 6313, + [SMALL_STATE(460)] = 6355, + [SMALL_STATE(461)] = 6397, + [SMALL_STATE(462)] = 6439, + [SMALL_STATE(463)] = 6481, + [SMALL_STATE(464)] = 6523, + [SMALL_STATE(465)] = 6565, + [SMALL_STATE(466)] = 6611, + [SMALL_STATE(467)] = 6653, + [SMALL_STATE(468)] = 6695, + [SMALL_STATE(469)] = 6737, + [SMALL_STATE(470)] = 6785, + [SMALL_STATE(471)] = 6831, + [SMALL_STATE(472)] = 6873, + [SMALL_STATE(473)] = 6915, + [SMALL_STATE(474)] = 6957, + [SMALL_STATE(475)] = 6999, + [SMALL_STATE(476)] = 7041, + [SMALL_STATE(477)] = 7083, + [SMALL_STATE(478)] = 7125, + [SMALL_STATE(479)] = 7167, + [SMALL_STATE(480)] = 7209, + [SMALL_STATE(481)] = 7251, + [SMALL_STATE(482)] = 7293, + [SMALL_STATE(483)] = 7335, + [SMALL_STATE(484)] = 7377, + [SMALL_STATE(485)] = 7419, + [SMALL_STATE(486)] = 7461, + [SMALL_STATE(487)] = 7503, + [SMALL_STATE(488)] = 7544, + [SMALL_STATE(489)] = 7585, + [SMALL_STATE(490)] = 7630, + [SMALL_STATE(491)] = 7670, + [SMALL_STATE(492)] = 7710, + [SMALL_STATE(493)] = 7750, + [SMALL_STATE(494)] = 7789, + [SMALL_STATE(495)] = 7828, + [SMALL_STATE(496)] = 7867, + [SMALL_STATE(497)] = 7908, + [SMALL_STATE(498)] = 7947, + [SMALL_STATE(499)] = 7986, + [SMALL_STATE(500)] = 8025, + [SMALL_STATE(501)] = 8064, + [SMALL_STATE(502)] = 8103, + [SMALL_STATE(503)] = 8142, + [SMALL_STATE(504)] = 8181, + [SMALL_STATE(505)] = 8220, + [SMALL_STATE(506)] = 8259, + [SMALL_STATE(507)] = 8300, + [SMALL_STATE(508)] = 8339, + [SMALL_STATE(509)] = 8380, + [SMALL_STATE(510)] = 8419, + [SMALL_STATE(511)] = 8458, + [SMALL_STATE(512)] = 8497, + [SMALL_STATE(513)] = 8559, + [SMALL_STATE(514)] = 8615, + [SMALL_STATE(515)] = 8665, + [SMALL_STATE(516)] = 8729, + [SMALL_STATE(517)] = 8773, + [SMALL_STATE(518)] = 8841, + [SMALL_STATE(519)] = 8903, + [SMALL_STATE(520)] = 8963, + [SMALL_STATE(521)] = 9031, + [SMALL_STATE(522)] = 9099, + [SMALL_STATE(523)] = 9145, + [SMALL_STATE(524)] = 9213, + [SMALL_STATE(525)] = 9271, + [SMALL_STATE(526)] = 9315, + [SMALL_STATE(527)] = 9383, + [SMALL_STATE(528)] = 9427, + [SMALL_STATE(529)] = 9471, + [SMALL_STATE(530)] = 9515, + [SMALL_STATE(531)] = 9557, + [SMALL_STATE(532)] = 9594, + [SMALL_STATE(533)] = 9631, + [SMALL_STATE(534)] = 9676, + [SMALL_STATE(535)] = 9721, + [SMALL_STATE(536)] = 9763, + [SMALL_STATE(537)] = 9833, + [SMALL_STATE(538)] = 9899, + [SMALL_STATE(539)] = 9954, + [SMALL_STATE(540)] = 10013, + [SMALL_STATE(541)] = 10082, + [SMALL_STATE(542)] = 10151, + [SMALL_STATE(543)] = 10186, + [SMALL_STATE(544)] = 10251, + [SMALL_STATE(545)] = 10320, + [SMALL_STATE(546)] = 10355, + [SMALL_STATE(547)] = 10424, + [SMALL_STATE(548)] = 10471, + [SMALL_STATE(549)] = 10540, + [SMALL_STATE(550)] = 10609, + [SMALL_STATE(551)] = 10644, + [SMALL_STATE(552)] = 10679, + [SMALL_STATE(553)] = 10714, + [SMALL_STATE(554)] = 10749, + [SMALL_STATE(555)] = 10814, + [SMALL_STATE(556)] = 10849, + [SMALL_STATE(557)] = 10914, + [SMALL_STATE(558)] = 10983, + [SMALL_STATE(559)] = 11048, + [SMALL_STATE(560)] = 11117, + [SMALL_STATE(561)] = 11170, + [SMALL_STATE(562)] = 11239, + [SMALL_STATE(563)] = 11304, + [SMALL_STATE(564)] = 11373, + [SMALL_STATE(565)] = 11442, + [SMALL_STATE(566)] = 11507, + [SMALL_STATE(567)] = 11576, + [SMALL_STATE(568)] = 11641, + [SMALL_STATE(569)] = 11676, + [SMALL_STATE(570)] = 11745, + [SMALL_STATE(571)] = 11814, + [SMALL_STATE(572)] = 11873, + [SMALL_STATE(573)] = 11926, + [SMALL_STATE(574)] = 11995, + [SMALL_STATE(575)] = 12064, + [SMALL_STATE(576)] = 12133, + [SMALL_STATE(577)] = 12202, + [SMALL_STATE(578)] = 12271, + [SMALL_STATE(579)] = 12336, + [SMALL_STATE(580)] = 12373, + [SMALL_STATE(581)] = 12432, + [SMALL_STATE(582)] = 12501, + [SMALL_STATE(583)] = 12562, + [SMALL_STATE(584)] = 12605, + [SMALL_STATE(585)] = 12646, + [SMALL_STATE(586)] = 12715, + [SMALL_STATE(587)] = 12774, + [SMALL_STATE(588)] = 12831, + [SMALL_STATE(589)] = 12866, + [SMALL_STATE(590)] = 12930, + [SMALL_STATE(591)] = 12968, + [SMALL_STATE(592)] = 13032, + [SMALL_STATE(593)] = 13082, + [SMALL_STATE(594)] = 13148, + [SMALL_STATE(595)] = 13212, + [SMALL_STATE(596)] = 13276, + [SMALL_STATE(597)] = 13340, + [SMALL_STATE(598)] = 13390, + [SMALL_STATE(599)] = 13446, + [SMALL_STATE(600)] = 13510, + [SMALL_STATE(601)] = 13574, + [SMALL_STATE(602)] = 13629, + [SMALL_STATE(603)] = 13692, + [SMALL_STATE(604)] = 13755, + [SMALL_STATE(605)] = 13810, + [SMALL_STATE(606)] = 13873, + [SMALL_STATE(607)] = 13936, + [SMALL_STATE(608)] = 13999, + [SMALL_STATE(609)] = 14054, + [SMALL_STATE(610)] = 14117, + [SMALL_STATE(611)] = 14180, + [SMALL_STATE(612)] = 14243, + [SMALL_STATE(613)] = 14306, + [SMALL_STATE(614)] = 14369, + [SMALL_STATE(615)] = 14432, + [SMALL_STATE(616)] = 14495, + [SMALL_STATE(617)] = 14558, + [SMALL_STATE(618)] = 14621, + [SMALL_STATE(619)] = 14684, + [SMALL_STATE(620)] = 14747, + [SMALL_STATE(621)] = 14810, + [SMALL_STATE(622)] = 14873, + [SMALL_STATE(623)] = 14936, + [SMALL_STATE(624)] = 14999, + [SMALL_STATE(625)] = 15062, + [SMALL_STATE(626)] = 15125, + [SMALL_STATE(627)] = 15180, + [SMALL_STATE(628)] = 15243, + [SMALL_STATE(629)] = 15295, + [SMALL_STATE(630)] = 15347, + [SMALL_STATE(631)] = 15399, + [SMALL_STATE(632)] = 15451, + [SMALL_STATE(633)] = 15503, + [SMALL_STATE(634)] = 15535, + [SMALL_STATE(635)] = 15567, + [SMALL_STATE(636)] = 15625, + [SMALL_STATE(637)] = 15677, + [SMALL_STATE(638)] = 15729, + [SMALL_STATE(639)] = 15781, + [SMALL_STATE(640)] = 15818, + [SMALL_STATE(641)] = 15855, + [SMALL_STATE(642)] = 15896, + [SMALL_STATE(643)] = 15945, + [SMALL_STATE(644)] = 15991, + [SMALL_STATE(645)] = 16039, + [SMALL_STATE(646)] = 16085, + [SMALL_STATE(647)] = 16115, + [SMALL_STATE(648)] = 16145, + [SMALL_STATE(649)] = 16181, + [SMALL_STATE(650)] = 16211, + [SMALL_STATE(651)] = 16259, + [SMALL_STATE(652)] = 16305, + [SMALL_STATE(653)] = 16351, + [SMALL_STATE(654)] = 16381, + [SMALL_STATE(655)] = 16427, + [SMALL_STATE(656)] = 16479, + [SMALL_STATE(657)] = 16509, + [SMALL_STATE(658)] = 16555, + [SMALL_STATE(659)] = 16591, + [SMALL_STATE(660)] = 16621, + [SMALL_STATE(661)] = 16667, + [SMALL_STATE(662)] = 16696, + [SMALL_STATE(663)] = 16725, + [SMALL_STATE(664)] = 16754, + [SMALL_STATE(665)] = 16803, + [SMALL_STATE(666)] = 16832, + [SMALL_STATE(667)] = 16864, + [SMALL_STATE(668)] = 16892, + [SMALL_STATE(669)] = 16920, + [SMALL_STATE(670)] = 16950, + [SMALL_STATE(671)] = 16998, + [SMALL_STATE(672)] = 17040, + [SMALL_STATE(673)] = 17068, + [SMALL_STATE(674)] = 17096, + [SMALL_STATE(675)] = 17124, + [SMALL_STATE(676)] = 17166, + [SMALL_STATE(677)] = 17194, + [SMALL_STATE(678)] = 17222, + [SMALL_STATE(679)] = 17256, + [SMALL_STATE(680)] = 17302, + [SMALL_STATE(681)] = 17342, + [SMALL_STATE(682)] = 17388, + [SMALL_STATE(683)] = 17434, + [SMALL_STATE(684)] = 17477, + [SMALL_STATE(685)] = 17520, + [SMALL_STATE(686)] = 17545, + [SMALL_STATE(687)] = 17578, + [SMALL_STATE(688)] = 17621, + [SMALL_STATE(689)] = 17664, + [SMALL_STATE(690)] = 17689, + [SMALL_STATE(691)] = 17728, + [SMALL_STATE(692)] = 17765, + [SMALL_STATE(693)] = 17802, + [SMALL_STATE(694)] = 17839, + [SMALL_STATE(695)] = 17876, + [SMALL_STATE(696)] = 17913, + [SMALL_STATE(697)] = 17955, + [SMALL_STATE(698)] = 17995, + [SMALL_STATE(699)] = 18035, + [SMALL_STATE(700)] = 18075, + [SMALL_STATE(701)] = 18115, + [SMALL_STATE(702)] = 18155, + [SMALL_STATE(703)] = 18197, + [SMALL_STATE(704)] = 18237, + [SMALL_STATE(705)] = 18279, + [SMALL_STATE(706)] = 18321, + [SMALL_STATE(707)] = 18361, + [SMALL_STATE(708)] = 18387, + [SMALL_STATE(709)] = 18424, + [SMALL_STATE(710)] = 18453, + [SMALL_STATE(711)] = 18486, + [SMALL_STATE(712)] = 18523, + [SMALL_STATE(713)] = 18558, + [SMALL_STATE(714)] = 18595, + [SMALL_STATE(715)] = 18629, + [SMALL_STATE(716)] = 18659, + [SMALL_STATE(717)] = 18693, + [SMALL_STATE(718)] = 18727, + [SMALL_STATE(719)] = 18761, + [SMALL_STATE(720)] = 18797, + [SMALL_STATE(721)] = 18833, + [SMALL_STATE(722)] = 18869, + [SMALL_STATE(723)] = 18905, + [SMALL_STATE(724)] = 18939, + [SMALL_STATE(725)] = 18975, + [SMALL_STATE(726)] = 19009, + [SMALL_STATE(727)] = 19041, + [SMALL_STATE(728)] = 19075, + [SMALL_STATE(729)] = 19111, + [SMALL_STATE(730)] = 19141, + [SMALL_STATE(731)] = 19175, + [SMALL_STATE(732)] = 19209, + [SMALL_STATE(733)] = 19240, + [SMALL_STATE(734)] = 19273, + [SMALL_STATE(735)] = 19304, + [SMALL_STATE(736)] = 19335, + [SMALL_STATE(737)] = 19358, + [SMALL_STATE(738)] = 19391, + [SMALL_STATE(739)] = 19422, + [SMALL_STATE(740)] = 19453, + [SMALL_STATE(741)] = 19484, + [SMALL_STATE(742)] = 19514, + [SMALL_STATE(743)] = 19546, + [SMALL_STATE(744)] = 19576, + [SMALL_STATE(745)] = 19606, + [SMALL_STATE(746)] = 19636, + [SMALL_STATE(747)] = 19664, + [SMALL_STATE(748)] = 19692, + [SMALL_STATE(749)] = 19724, + [SMALL_STATE(750)] = 19754, + [SMALL_STATE(751)] = 19789, + [SMALL_STATE(752)] = 19818, + [SMALL_STATE(753)] = 19849, + [SMALL_STATE(754)] = 19880, + [SMALL_STATE(755)] = 19907, + [SMALL_STATE(756)] = 19936, + [SMALL_STATE(757)] = 19963, + [SMALL_STATE(758)] = 19998, + [SMALL_STATE(759)] = 20028, + [SMALL_STATE(760)] = 20044, + [SMALL_STATE(761)] = 20072, + [SMALL_STATE(762)] = 20098, + [SMALL_STATE(763)] = 20123, + [SMALL_STATE(764)] = 20152, + [SMALL_STATE(765)] = 20173, + [SMALL_STATE(766)] = 20202, + [SMALL_STATE(767)] = 20231, + [SMALL_STATE(768)] = 20260, + [SMALL_STATE(769)] = 20284, + [SMALL_STATE(770)] = 20308, + [SMALL_STATE(771)] = 20330, + [SMALL_STATE(772)] = 20350, + [SMALL_STATE(773)] = 20372, + [SMALL_STATE(774)] = 20394, + [SMALL_STATE(775)] = 20414, + [SMALL_STATE(776)] = 20427, + [SMALL_STATE(777)] = 20446, + [SMALL_STATE(778)] = 20463, + [SMALL_STATE(779)] = 20476, + [SMALL_STATE(780)] = 20493, + [SMALL_STATE(781)] = 20510, + [SMALL_STATE(782)] = 20523, + [SMALL_STATE(783)] = 20542, + [SMALL_STATE(784)] = 20555, + [SMALL_STATE(785)] = 20568, + [SMALL_STATE(786)] = 20585, + [SMALL_STATE(787)] = 20602, + [SMALL_STATE(788)] = 20619, + [SMALL_STATE(789)] = 20632, + [SMALL_STATE(790)] = 20645, + [SMALL_STATE(791)] = 20662, + [SMALL_STATE(792)] = 20679, + [SMALL_STATE(793)] = 20696, + [SMALL_STATE(794)] = 20709, + [SMALL_STATE(795)] = 20722, + [SMALL_STATE(796)] = 20745, + [SMALL_STATE(797)] = 20766, + [SMALL_STATE(798)] = 20783, + [SMALL_STATE(799)] = 20796, + [SMALL_STATE(800)] = 20809, + [SMALL_STATE(801)] = 20822, + [SMALL_STATE(802)] = 20845, + [SMALL_STATE(803)] = 20858, + [SMALL_STATE(804)] = 20871, + [SMALL_STATE(805)] = 20884, + [SMALL_STATE(806)] = 20897, + [SMALL_STATE(807)] = 20910, + [SMALL_STATE(808)] = 20923, + [SMALL_STATE(809)] = 20936, + [SMALL_STATE(810)] = 20949, + [SMALL_STATE(811)] = 20962, + [SMALL_STATE(812)] = 20985, + [SMALL_STATE(813)] = 21002, + [SMALL_STATE(814)] = 21015, + [SMALL_STATE(815)] = 21032, + [SMALL_STATE(816)] = 21051, + [SMALL_STATE(817)] = 21068, + [SMALL_STATE(818)] = 21081, + [SMALL_STATE(819)] = 21094, + [SMALL_STATE(820)] = 21113, + [SMALL_STATE(821)] = 21126, + [SMALL_STATE(822)] = 21139, + [SMALL_STATE(823)] = 21162, + [SMALL_STATE(824)] = 21179, + [SMALL_STATE(825)] = 21202, + [SMALL_STATE(826)] = 21219, + [SMALL_STATE(827)] = 21240, + [SMALL_STATE(828)] = 21253, + [SMALL_STATE(829)] = 21266, + [SMALL_STATE(830)] = 21279, + [SMALL_STATE(831)] = 21292, + [SMALL_STATE(832)] = 21309, + [SMALL_STATE(833)] = 21332, + [SMALL_STATE(834)] = 21345, + [SMALL_STATE(835)] = 21358, + [SMALL_STATE(836)] = 21371, + [SMALL_STATE(837)] = 21384, + [SMALL_STATE(838)] = 21401, + [SMALL_STATE(839)] = 21414, + [SMALL_STATE(840)] = 21427, + [SMALL_STATE(841)] = 21440, + [SMALL_STATE(842)] = 21453, + [SMALL_STATE(843)] = 21466, + [SMALL_STATE(844)] = 21479, + [SMALL_STATE(845)] = 21492, + [SMALL_STATE(846)] = 21505, + [SMALL_STATE(847)] = 21518, + [SMALL_STATE(848)] = 21531, + [SMALL_STATE(849)] = 21547, + [SMALL_STATE(850)] = 21563, + [SMALL_STATE(851)] = 21579, + [SMALL_STATE(852)] = 21595, + [SMALL_STATE(853)] = 21615, + [SMALL_STATE(854)] = 21635, + [SMALL_STATE(855)] = 21655, + [SMALL_STATE(856)] = 21671, + [SMALL_STATE(857)] = 21689, + [SMALL_STATE(858)] = 21705, + [SMALL_STATE(859)] = 21721, + [SMALL_STATE(860)] = 21737, + [SMALL_STATE(861)] = 21753, + [SMALL_STATE(862)] = 21769, + [SMALL_STATE(863)] = 21785, + [SMALL_STATE(864)] = 21801, + [SMALL_STATE(865)] = 21817, + [SMALL_STATE(866)] = 21829, + [SMALL_STATE(867)] = 21845, + [SMALL_STATE(868)] = 21861, + [SMALL_STATE(869)] = 21877, + [SMALL_STATE(870)] = 21891, + [SMALL_STATE(871)] = 21907, + [SMALL_STATE(872)] = 21923, + [SMALL_STATE(873)] = 21939, + [SMALL_STATE(874)] = 21955, + [SMALL_STATE(875)] = 21971, + [SMALL_STATE(876)] = 21987, + [SMALL_STATE(877)] = 22003, + [SMALL_STATE(878)] = 22019, + [SMALL_STATE(879)] = 22031, + [SMALL_STATE(880)] = 22047, + [SMALL_STATE(881)] = 22063, + [SMALL_STATE(882)] = 22083, + [SMALL_STATE(883)] = 22103, + [SMALL_STATE(884)] = 22123, + [SMALL_STATE(885)] = 22139, + [SMALL_STATE(886)] = 22155, + [SMALL_STATE(887)] = 22171, + [SMALL_STATE(888)] = 22188, + [SMALL_STATE(889)] = 22203, + [SMALL_STATE(890)] = 22218, + [SMALL_STATE(891)] = 22229, + [SMALL_STATE(892)] = 22244, + [SMALL_STATE(893)] = 22261, + [SMALL_STATE(894)] = 22278, + [SMALL_STATE(895)] = 22289, + [SMALL_STATE(896)] = 22304, + [SMALL_STATE(897)] = 22321, + [SMALL_STATE(898)] = 22338, + [SMALL_STATE(899)] = 22353, + [SMALL_STATE(900)] = 22370, + [SMALL_STATE(901)] = 22387, + [SMALL_STATE(902)] = 22404, + [SMALL_STATE(903)] = 22421, + [SMALL_STATE(904)] = 22438, + [SMALL_STATE(905)] = 22455, + [SMALL_STATE(906)] = 22472, + [SMALL_STATE(907)] = 22489, + [SMALL_STATE(908)] = 22506, + [SMALL_STATE(909)] = 22523, + [SMALL_STATE(910)] = 22540, + [SMALL_STATE(911)] = 22557, + [SMALL_STATE(912)] = 22574, + [SMALL_STATE(913)] = 22591, + [SMALL_STATE(914)] = 22608, + [SMALL_STATE(915)] = 22623, + [SMALL_STATE(916)] = 22638, + [SMALL_STATE(917)] = 22651, + [SMALL_STATE(918)] = 22666, + [SMALL_STATE(919)] = 22679, + [SMALL_STATE(920)] = 22694, + [SMALL_STATE(921)] = 22705, + [SMALL_STATE(922)] = 22722, + [SMALL_STATE(923)] = 22739, + [SMALL_STATE(924)] = 22756, + [SMALL_STATE(925)] = 22771, + [SMALL_STATE(926)] = 22786, + [SMALL_STATE(927)] = 22801, + [SMALL_STATE(928)] = 22818, + [SMALL_STATE(929)] = 22835, + [SMALL_STATE(930)] = 22848, + [SMALL_STATE(931)] = 22863, + [SMALL_STATE(932)] = 22880, + [SMALL_STATE(933)] = 22897, + [SMALL_STATE(934)] = 22912, + [SMALL_STATE(935)] = 22929, + [SMALL_STATE(936)] = 22942, + [SMALL_STATE(937)] = 22957, + [SMALL_STATE(938)] = 22974, + [SMALL_STATE(939)] = 22989, + [SMALL_STATE(940)] = 23006, + [SMALL_STATE(941)] = 23023, + [SMALL_STATE(942)] = 23038, + [SMALL_STATE(943)] = 23055, + [SMALL_STATE(944)] = 23070, + [SMALL_STATE(945)] = 23081, + [SMALL_STATE(946)] = 23098, + [SMALL_STATE(947)] = 23109, + [SMALL_STATE(948)] = 23124, + [SMALL_STATE(949)] = 23139, + [SMALL_STATE(950)] = 23156, + [SMALL_STATE(951)] = 23171, + [SMALL_STATE(952)] = 23185, + [SMALL_STATE(953)] = 23199, + [SMALL_STATE(954)] = 23213, + [SMALL_STATE(955)] = 23227, + [SMALL_STATE(956)] = 23241, + [SMALL_STATE(957)] = 23255, + [SMALL_STATE(958)] = 23265, + [SMALL_STATE(959)] = 23279, + [SMALL_STATE(960)] = 23293, + [SMALL_STATE(961)] = 23307, + [SMALL_STATE(962)] = 23317, + [SMALL_STATE(963)] = 23331, + [SMALL_STATE(964)] = 23345, + [SMALL_STATE(965)] = 23359, + [SMALL_STATE(966)] = 23373, + [SMALL_STATE(967)] = 23387, + [SMALL_STATE(968)] = 23401, + [SMALL_STATE(969)] = 23415, + [SMALL_STATE(970)] = 23429, + [SMALL_STATE(971)] = 23443, + [SMALL_STATE(972)] = 23457, + [SMALL_STATE(973)] = 23471, + [SMALL_STATE(974)] = 23485, + [SMALL_STATE(975)] = 23499, + [SMALL_STATE(976)] = 23513, + [SMALL_STATE(977)] = 23527, + [SMALL_STATE(978)] = 23541, + [SMALL_STATE(979)] = 23555, + [SMALL_STATE(980)] = 23569, + [SMALL_STATE(981)] = 23583, + [SMALL_STATE(982)] = 23597, + [SMALL_STATE(983)] = 23611, + [SMALL_STATE(984)] = 23625, + [SMALL_STATE(985)] = 23635, + [SMALL_STATE(986)] = 23649, + [SMALL_STATE(987)] = 23659, + [SMALL_STATE(988)] = 23673, + [SMALL_STATE(989)] = 23687, + [SMALL_STATE(990)] = 23701, + [SMALL_STATE(991)] = 23715, + [SMALL_STATE(992)] = 23729, + [SMALL_STATE(993)] = 23743, + [SMALL_STATE(994)] = 23757, + [SMALL_STATE(995)] = 23771, + [SMALL_STATE(996)] = 23785, + [SMALL_STATE(997)] = 23799, + [SMALL_STATE(998)] = 23809, + [SMALL_STATE(999)] = 23823, + [SMALL_STATE(1000)] = 23837, + [SMALL_STATE(1001)] = 23851, + [SMALL_STATE(1002)] = 23865, + [SMALL_STATE(1003)] = 23879, + [SMALL_STATE(1004)] = 23893, + [SMALL_STATE(1005)] = 23907, + [SMALL_STATE(1006)] = 23919, + [SMALL_STATE(1007)] = 23931, + [SMALL_STATE(1008)] = 23945, + [SMALL_STATE(1009)] = 23959, + [SMALL_STATE(1010)] = 23973, + [SMALL_STATE(1011)] = 23987, + [SMALL_STATE(1012)] = 24001, + [SMALL_STATE(1013)] = 24015, + [SMALL_STATE(1014)] = 24029, + [SMALL_STATE(1015)] = 24043, + [SMALL_STATE(1016)] = 24055, + [SMALL_STATE(1017)] = 24067, + [SMALL_STATE(1018)] = 24081, + [SMALL_STATE(1019)] = 24095, + [SMALL_STATE(1020)] = 24109, + [SMALL_STATE(1021)] = 24123, + [SMALL_STATE(1022)] = 24137, + [SMALL_STATE(1023)] = 24151, + [SMALL_STATE(1024)] = 24165, + [SMALL_STATE(1025)] = 24179, + [SMALL_STATE(1026)] = 24193, + [SMALL_STATE(1027)] = 24207, + [SMALL_STATE(1028)] = 24221, + [SMALL_STATE(1029)] = 24235, + [SMALL_STATE(1030)] = 24249, + [SMALL_STATE(1031)] = 24263, + [SMALL_STATE(1032)] = 24277, + [SMALL_STATE(1033)] = 24291, + [SMALL_STATE(1034)] = 24305, + [SMALL_STATE(1035)] = 24319, + [SMALL_STATE(1036)] = 24333, + [SMALL_STATE(1037)] = 24347, + [SMALL_STATE(1038)] = 24361, + [SMALL_STATE(1039)] = 24375, + [SMALL_STATE(1040)] = 24389, + [SMALL_STATE(1041)] = 24399, + [SMALL_STATE(1042)] = 24413, + [SMALL_STATE(1043)] = 24423, + [SMALL_STATE(1044)] = 24433, + [SMALL_STATE(1045)] = 24447, + [SMALL_STATE(1046)] = 24461, + [SMALL_STATE(1047)] = 24475, + [SMALL_STATE(1048)] = 24489, + [SMALL_STATE(1049)] = 24503, + [SMALL_STATE(1050)] = 24517, + [SMALL_STATE(1051)] = 24531, + [SMALL_STATE(1052)] = 24545, + [SMALL_STATE(1053)] = 24555, + [SMALL_STATE(1054)] = 24569, + [SMALL_STATE(1055)] = 24579, + [SMALL_STATE(1056)] = 24593, + [SMALL_STATE(1057)] = 24607, + [SMALL_STATE(1058)] = 24621, + [SMALL_STATE(1059)] = 24635, + [SMALL_STATE(1060)] = 24649, + [SMALL_STATE(1061)] = 24663, + [SMALL_STATE(1062)] = 24677, + [SMALL_STATE(1063)] = 24687, + [SMALL_STATE(1064)] = 24696, + [SMALL_STATE(1065)] = 24707, + [SMALL_STATE(1066)] = 24716, + [SMALL_STATE(1067)] = 24727, + [SMALL_STATE(1068)] = 24738, + [SMALL_STATE(1069)] = 24749, + [SMALL_STATE(1070)] = 24760, + [SMALL_STATE(1071)] = 24769, + [SMALL_STATE(1072)] = 24780, + [SMALL_STATE(1073)] = 24791, + [SMALL_STATE(1074)] = 24800, + [SMALL_STATE(1075)] = 24809, + [SMALL_STATE(1076)] = 24820, + [SMALL_STATE(1077)] = 24829, + [SMALL_STATE(1078)] = 24840, + [SMALL_STATE(1079)] = 24851, + [SMALL_STATE(1080)] = 24862, + [SMALL_STATE(1081)] = 24873, + [SMALL_STATE(1082)] = 24882, + [SMALL_STATE(1083)] = 24893, + [SMALL_STATE(1084)] = 24904, + [SMALL_STATE(1085)] = 24913, + [SMALL_STATE(1086)] = 24924, + [SMALL_STATE(1087)] = 24933, + [SMALL_STATE(1088)] = 24942, + [SMALL_STATE(1089)] = 24951, + [SMALL_STATE(1090)] = 24962, + [SMALL_STATE(1091)] = 24973, + [SMALL_STATE(1092)] = 24984, + [SMALL_STATE(1093)] = 24995, + [SMALL_STATE(1094)] = 25004, + [SMALL_STATE(1095)] = 25013, + [SMALL_STATE(1096)] = 25024, + [SMALL_STATE(1097)] = 25035, + [SMALL_STATE(1098)] = 25046, + [SMALL_STATE(1099)] = 25057, + [SMALL_STATE(1100)] = 25068, + [SMALL_STATE(1101)] = 25079, + [SMALL_STATE(1102)] = 25090, + [SMALL_STATE(1103)] = 25101, + [SMALL_STATE(1104)] = 25112, + [SMALL_STATE(1105)] = 25123, + [SMALL_STATE(1106)] = 25132, + [SMALL_STATE(1107)] = 25143, + [SMALL_STATE(1108)] = 25154, + [SMALL_STATE(1109)] = 25165, + [SMALL_STATE(1110)] = 25174, + [SMALL_STATE(1111)] = 25183, + [SMALL_STATE(1112)] = 25192, + [SMALL_STATE(1113)] = 25203, + [SMALL_STATE(1114)] = 25214, + [SMALL_STATE(1115)] = 25225, + [SMALL_STATE(1116)] = 25236, + [SMALL_STATE(1117)] = 25247, + [SMALL_STATE(1118)] = 25258, + [SMALL_STATE(1119)] = 25267, + [SMALL_STATE(1120)] = 25278, + [SMALL_STATE(1121)] = 25289, + [SMALL_STATE(1122)] = 25300, + [SMALL_STATE(1123)] = 25311, + [SMALL_STATE(1124)] = 25322, + [SMALL_STATE(1125)] = 25333, + [SMALL_STATE(1126)] = 25344, + [SMALL_STATE(1127)] = 25355, + [SMALL_STATE(1128)] = 25364, + [SMALL_STATE(1129)] = 25375, + [SMALL_STATE(1130)] = 25386, + [SMALL_STATE(1131)] = 25397, + [SMALL_STATE(1132)] = 25408, + [SMALL_STATE(1133)] = 25419, + [SMALL_STATE(1134)] = 25428, + [SMALL_STATE(1135)] = 25439, + [SMALL_STATE(1136)] = 25450, + [SMALL_STATE(1137)] = 25461, + [SMALL_STATE(1138)] = 25472, + [SMALL_STATE(1139)] = 25483, + [SMALL_STATE(1140)] = 25494, + [SMALL_STATE(1141)] = 25505, + [SMALL_STATE(1142)] = 25516, + [SMALL_STATE(1143)] = 25527, + [SMALL_STATE(1144)] = 25538, + [SMALL_STATE(1145)] = 25549, + [SMALL_STATE(1146)] = 25560, + [SMALL_STATE(1147)] = 25571, + [SMALL_STATE(1148)] = 25582, + [SMALL_STATE(1149)] = 25591, + [SMALL_STATE(1150)] = 25602, + [SMALL_STATE(1151)] = 25613, + [SMALL_STATE(1152)] = 25622, + [SMALL_STATE(1153)] = 25631, + [SMALL_STATE(1154)] = 25642, + [SMALL_STATE(1155)] = 25653, + [SMALL_STATE(1156)] = 25664, + [SMALL_STATE(1157)] = 25675, + [SMALL_STATE(1158)] = 25684, + [SMALL_STATE(1159)] = 25693, + [SMALL_STATE(1160)] = 25704, + [SMALL_STATE(1161)] = 25715, + [SMALL_STATE(1162)] = 25726, + [SMALL_STATE(1163)] = 25737, + [SMALL_STATE(1164)] = 25746, + [SMALL_STATE(1165)] = 25757, + [SMALL_STATE(1166)] = 25768, + [SMALL_STATE(1167)] = 25779, + [SMALL_STATE(1168)] = 25790, + [SMALL_STATE(1169)] = 25799, + [SMALL_STATE(1170)] = 25808, + [SMALL_STATE(1171)] = 25819, + [SMALL_STATE(1172)] = 25830, + [SMALL_STATE(1173)] = 25841, + [SMALL_STATE(1174)] = 25852, + [SMALL_STATE(1175)] = 25863, + [SMALL_STATE(1176)] = 25872, + [SMALL_STATE(1177)] = 25881, + [SMALL_STATE(1178)] = 25892, + [SMALL_STATE(1179)] = 25903, + [SMALL_STATE(1180)] = 25912, + [SMALL_STATE(1181)] = 25920, + [SMALL_STATE(1182)] = 25928, + [SMALL_STATE(1183)] = 25936, + [SMALL_STATE(1184)] = 25944, + [SMALL_STATE(1185)] = 25952, + [SMALL_STATE(1186)] = 25960, + [SMALL_STATE(1187)] = 25968, + [SMALL_STATE(1188)] = 25976, + [SMALL_STATE(1189)] = 25984, + [SMALL_STATE(1190)] = 25992, + [SMALL_STATE(1191)] = 26000, + [SMALL_STATE(1192)] = 26008, + [SMALL_STATE(1193)] = 26016, + [SMALL_STATE(1194)] = 26024, + [SMALL_STATE(1195)] = 26032, + [SMALL_STATE(1196)] = 26040, + [SMALL_STATE(1197)] = 26048, + [SMALL_STATE(1198)] = 26056, + [SMALL_STATE(1199)] = 26064, + [SMALL_STATE(1200)] = 26072, + [SMALL_STATE(1201)] = 26080, + [SMALL_STATE(1202)] = 26088, + [SMALL_STATE(1203)] = 26096, + [SMALL_STATE(1204)] = 26104, + [SMALL_STATE(1205)] = 26112, + [SMALL_STATE(1206)] = 26120, + [SMALL_STATE(1207)] = 26128, + [SMALL_STATE(1208)] = 26136, + [SMALL_STATE(1209)] = 26144, + [SMALL_STATE(1210)] = 26152, + [SMALL_STATE(1211)] = 26160, + [SMALL_STATE(1212)] = 26168, + [SMALL_STATE(1213)] = 26176, + [SMALL_STATE(1214)] = 26184, + [SMALL_STATE(1215)] = 26192, + [SMALL_STATE(1216)] = 26200, + [SMALL_STATE(1217)] = 26208, + [SMALL_STATE(1218)] = 26216, + [SMALL_STATE(1219)] = 26224, + [SMALL_STATE(1220)] = 26232, + [SMALL_STATE(1221)] = 26240, + [SMALL_STATE(1222)] = 26248, + [SMALL_STATE(1223)] = 26256, + [SMALL_STATE(1224)] = 26264, + [SMALL_STATE(1225)] = 26272, + [SMALL_STATE(1226)] = 26280, + [SMALL_STATE(1227)] = 26288, + [SMALL_STATE(1228)] = 26296, + [SMALL_STATE(1229)] = 26304, + [SMALL_STATE(1230)] = 26312, + [SMALL_STATE(1231)] = 26320, + [SMALL_STATE(1232)] = 26328, + [SMALL_STATE(1233)] = 26336, + [SMALL_STATE(1234)] = 26344, + [SMALL_STATE(1235)] = 26352, + [SMALL_STATE(1236)] = 26360, + [SMALL_STATE(1237)] = 26368, + [SMALL_STATE(1238)] = 26376, + [SMALL_STATE(1239)] = 26384, + [SMALL_STATE(1240)] = 26392, + [SMALL_STATE(1241)] = 26400, + [SMALL_STATE(1242)] = 26408, + [SMALL_STATE(1243)] = 26416, + [SMALL_STATE(1244)] = 26424, + [SMALL_STATE(1245)] = 26432, + [SMALL_STATE(1246)] = 26440, + [SMALL_STATE(1247)] = 26448, + [SMALL_STATE(1248)] = 26456, + [SMALL_STATE(1249)] = 26464, + [SMALL_STATE(1250)] = 26472, + [SMALL_STATE(1251)] = 26480, + [SMALL_STATE(1252)] = 26488, + [SMALL_STATE(1253)] = 26496, + [SMALL_STATE(1254)] = 26504, + [SMALL_STATE(1255)] = 26512, + [SMALL_STATE(1256)] = 26520, + [SMALL_STATE(1257)] = 26528, + [SMALL_STATE(1258)] = 26536, + [SMALL_STATE(1259)] = 26544, + [SMALL_STATE(1260)] = 26552, + [SMALL_STATE(1261)] = 26560, + [SMALL_STATE(1262)] = 26568, + [SMALL_STATE(1263)] = 26576, + [SMALL_STATE(1264)] = 26584, + [SMALL_STATE(1265)] = 26592, + [SMALL_STATE(1266)] = 26600, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -62144,1504 +62245,1511 @@ 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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(361), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(469), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(469), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(84), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(331), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(331), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(656), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1252), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1073), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(360), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(459), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(459), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(85), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(310), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(310), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(341), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(650), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1198), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1068), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(423), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(244), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(306), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(67), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1074), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1077), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1078), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(262), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(311), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(486), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(312), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(932), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1105), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1225), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(865), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(377), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(370), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(873), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(811), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1216), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(423), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(379), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1215), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1207), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(663), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(662), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(668), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(455), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1158), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(424), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(179), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(291), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1071), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1072), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1083), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(255), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(301), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(489), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(308), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(892), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1089), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1256), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(863), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(382), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(369), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(866), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(776), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1252), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(424), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(381), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1251), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1250), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(661), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(663), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(672), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(473), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1092), [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1224), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 157), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 157), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), - [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), - [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), - [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 64), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 64), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 142), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 142), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 144), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 144), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 148), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 148), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 150), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 150), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 155), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 155), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 100), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 100), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 109), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 109), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 171), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 171), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 172), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 172), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 111), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 111), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 112), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 112), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 111), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 111), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 113), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 113), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 175), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 175), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 126), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 126), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 124), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 124), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 123), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 123), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 125), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 125), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 194), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 194), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 114), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 114), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 115), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 115), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 202), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 202), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 201), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 201), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 200), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 200), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 199), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 199), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 198), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 198), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 197), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 197), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 196), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 196), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 130), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 130), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 183), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 183), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 182), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 182), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 72), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 72), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 181), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 181), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 180), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 180), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 179), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 179), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(285), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1120), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 178), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 178), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 177), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 177), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 129), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 129), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 223), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 223), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 224), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 224), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 229), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 229), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 222), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 222), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 164), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 164), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 94), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 94), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 163), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 163), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 162), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 162), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 159), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 159), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 30), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 30), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 29), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 29), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 30), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 30), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 30), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 30), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 95), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 95), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 228), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 228), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 176), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 176), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 195), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 195), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 221), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 221), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(740), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(769), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1252), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(9), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(423), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(353), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(865), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(462), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1216), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(423), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1253), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1215), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1207), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(663), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(662), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(668), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(582), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1118] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(818), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(643), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(769), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1252), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(423), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(356), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(865), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1216), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(423), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1215), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1207), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(663), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(662), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(668), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1174] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1239), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1180] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(818), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(643), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1252), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 23), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 23), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1221), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 157), + [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 157), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 125), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 125), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 172), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 172), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 123), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 123), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 175), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 175), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 150), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 150), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 124), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 124), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 155), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 155), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 173), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 173), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 126), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 126), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 148), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 148), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 171), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 171), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 88), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 88), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 146), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 146), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 174), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 174), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 144), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 144), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 142), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 142), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 100), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 100), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 108), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 108), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 109), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 109), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 111), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 111), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 112), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 112), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 111), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 111), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 113), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 113), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 194), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 194), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 129), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 129), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 162), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 162), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 94), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 94), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(320), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1065), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 95), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 95), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 229), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 229), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 164), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 164), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 224), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 224), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 163), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 163), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 223), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 223), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 222), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 222), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 202), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 202), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 201), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 201), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 200), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 200), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 130), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 130), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 115), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 115), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 114), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 114), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 199), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 199), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 198), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 198), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 197), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 197), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 196), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 196), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 183), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 183), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 182), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 182), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 72), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 72), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 181), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 181), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 180), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 180), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 179), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 179), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 177), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 177), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 178), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 178), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 221), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 221), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 176), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 176), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 195), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 195), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 228), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 228), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(741), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(774), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1198), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(424), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(354), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(863), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(470), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1252), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(424), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1262), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1251), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1250), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(661), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(663), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(672), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(571), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1120] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(777), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(658), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(774), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1198), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(424), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(358), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(863), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1252), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(424), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1251), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1250), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(661), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(663), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(672), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1180] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1181), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1186] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(777), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(658), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1198), [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(423), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(865), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1216), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(423), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1215), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1207), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(663), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(662), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(668), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 104), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 104), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 103), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 103), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 32), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 32), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(216), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 71), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 71), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(177), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1211), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(878), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(299), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(878), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(537), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(537), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 76), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 76), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(419), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(865), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(419), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 117), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 117), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 118), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 118), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 84), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 84), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 86), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 86), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 121), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 121), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 87), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 87), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 151), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 151), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 72), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 72), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 140), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 140), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 141), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 141), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 105), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 105), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 106), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 106), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 169), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 169), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 170), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 170), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 67), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 67), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 72), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 72), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 219), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 219), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 193), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 193), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 217), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 217), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 225), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 225), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 227), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 227), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 77), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 77), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 226), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 226), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 28), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 28), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 220), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 220), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 230), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 230), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 107), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(526), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(878), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(526), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1234), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 75), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), - [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 156), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 160), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 127), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 96), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(885), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(814), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(759), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(874), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(847), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(867), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(861), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 122), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 83), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 134), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 134), SHIFT_REPEAT(819), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(285), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1120), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(289), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1120), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 216), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 215), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 214), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 212), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 209), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 208), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 207), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 205), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 209), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 132), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 133), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 208), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 135), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 136), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 167), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 135), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 136), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 137), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 166), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 207), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 205), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(689), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 98), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 192), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 191), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 190), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 189), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(878), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 188), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 187), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 186), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 185), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 188), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 187), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 186), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 185), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(637), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 152), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 120), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(315), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 85), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(636), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(296), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(640), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(424), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(863), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1252), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(424), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1251), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1250), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(661), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(663), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(672), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 32), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 32), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 104), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 104), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 103), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 103), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 71), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 71), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(178), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1182), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(180), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1213), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(880), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(339), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(880), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(539), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(539), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 76), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 76), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(423), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(863), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(423), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 84), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 84), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 117), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 117), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 87), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 87), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 118), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 118), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 86), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 86), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 151), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 151), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 72), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 72), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 121), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 121), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 141), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 141), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 140), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 140), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 105), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 105), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 106), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 106), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 169), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 169), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 170), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 170), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 72), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 72), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 227), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 227), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 220), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 220), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 217), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 217), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 230), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 230), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 226), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 226), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 77), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 77), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 193), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 193), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 225), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 225), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 219), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 219), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 107), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(527), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(880), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(527), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1191), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 75), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 160), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 156), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 96), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 127), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(886), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(780), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(761), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(860), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(859), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(857), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(850), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 122), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 83), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 134), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 134), SHIFT_REPEAT(820), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(320), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1065), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 167), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 166), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(880), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 132), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 133), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(302), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1065), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 135), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 136), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 135), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 185), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 136), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 186), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 137), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 187), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 188), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 185), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 186), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(692), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 187), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 188), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 189), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 190), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 191), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 192), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 98), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 205), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 207), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 208), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 216), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 215), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 214), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 212), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 209), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 208), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 207), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 205), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 209), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 27), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(636), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 152), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 120), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 85), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 82), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(300), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(628), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(641), [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 82), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(768), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(208), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(349), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1248), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 99), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 154), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(396), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 203), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 204), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 206), SHIFT_REPEAT(880), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 206), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 138), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 153), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1143), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 210), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 211), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 213), SHIFT_REPEAT(851), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 213), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 97), SHIFT_REPEAT(310), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 97), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(597), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(631), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 168), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(167), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), SHIFT_REPEAT(776), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 161), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 161), SHIFT_REPEAT(293), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 73), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 82), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 119), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 83), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 152), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 85), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 120), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 131), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3029] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 128), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 158), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 218), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(334), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(395), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), SHIFT_REPEAT(815), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(144), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 97), SHIFT_REPEAT(338), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 97), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 161), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 161), SHIFT_REPEAT(335), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 154), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 153), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(349), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 168), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(771), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 203), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 204), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 206), SHIFT_REPEAT(874), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 206), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(248), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 210), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 211), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 213), SHIFT_REPEAT(864), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 213), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1099), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 99), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 138), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 20), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(918), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(638), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(598), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 82), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, .production_id = 14), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 85), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 152), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 73), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 119), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 131), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 120), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 83), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 15), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, .production_id = 14), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 218), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 128), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 158), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3126] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, .production_id = 14), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index b92167ce1..322819de0 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -476,7 +476,7 @@ lambda expression class LambdaTest { void singleton() { version -> create; - (a, b) -> a + b; + (record, b) -> record + b; } } From 81148c0902125150d616ea30190a630c86974a7a Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Sat, 3 Sep 2022 00:17:22 +0200 Subject: [PATCH 07/23] Add an action to publish the grammar automatically (#98) Co-authored-by: Yoann Padioleau Co-authored-by: Max Brunsfeld --- .github/workflows/publish_crate.yml | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/publish_crate.yml diff --git a/.github/workflows/publish_crate.yml b/.github/workflows/publish_crate.yml new file mode 100644 index 000000000..b25fb57f6 --- /dev/null +++ b/.github/workflows/publish_crate.yml @@ -0,0 +1,36 @@ +name: Publish on crates.io + +on: + push: + tags: + - v* + +env: + CARGO_TERM_COLOR: always + CARGO_INCREMENTAL: 0 + +jobs: + publish: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Install rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + override: true + + - name: Verify publish crate + uses: katyo/publish-crates@v1 + with: + dry-run: true + + - name: Publish crate + uses: katyo/publish-crates@v1 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} From 871e121b2eb0a2fec99595b9745589f91c154e4c Mon Sep 17 00:00:00 2001 From: Dany Zatuchna Date: Tue, 13 Sep 2022 00:00:53 +0300 Subject: [PATCH 08/23] Make class_literal take precedence over field_access --- grammar.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/grammar.js b/grammar.js index f28fe9f19..06cff78d1 100644 --- a/grammar.js +++ b/grammar.js @@ -24,6 +24,7 @@ const PREC = { ARRAY: 16, // [Index] OBJ_ACCESS: 16, // . PARENS: 16, // (Expression) + CLASS_LITERAL: 17, // . }; module.exports = grammar({ @@ -69,6 +70,7 @@ module.exports = grammar({ // Only conflicts in switch expressions [$.lambda_expression, $.primary_expression], [$.inferred_parameters, $.primary_expression], + [$.class_literal, $.field_access], ], word: $ => $.identifier, @@ -309,7 +311,7 @@ module.exports = grammar({ parenthesized_expression: $ => seq('(', $.expression, ')'), - class_literal: $ => seq($._unannotated_type, '.', 'class'), + class_literal: $ => prec.dynamic(PREC.CLASS_LITERAL, seq($._unannotated_type, '.', 'class')), object_creation_expression: $ => choice( $._unqualified_object_creation_expression, @@ -324,7 +326,7 @@ module.exports = grammar({ optional($.class_body) )), - field_access: $ => seq( + field_access: $ => prec.dynamic(PREC.OBJ_ACCESS, seq( field('object', choice($.primary_expression, $.super)), optional(seq( '.', @@ -332,7 +334,7 @@ module.exports = grammar({ )), '.', field('field', choice($.identifier, $._reserved_identifier, $.this)) - ), + )), array_access: $ => seq( field('array', $.primary_expression), From d1f49db92fbcd4ffacc68a6f6be5588ed8e579bb Mon Sep 17 00:00:00 2001 From: Dany Marom Date: Tue, 13 Sep 2022 16:02:57 +0300 Subject: [PATCH 09/23] Temporarily configure self-hosted runner --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6620d2f1d..48f08ab0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: jobs: test: - runs-on: ${{ matrix.os }} + runs-on: self-hosted strategy: fail-fast: true matrix: From 5e30c65116b37c7cd28056da87c05b7c52ad16bd Mon Sep 17 00:00:00 2001 From: Dany Zatuchna Date: Tue, 13 Sep 2022 16:43:30 +0300 Subject: [PATCH 10/23] Add a test for class literals --- test/corpus/literals.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index 3e82a20a9..ef9a48130 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -307,3 +307,15 @@ ascii escapes (expression_statement (character_literal)) (expression_statement (character_literal)) (expression_statement (character_literal))) + +======================== +class literals +======================== + +String.class; + +--- + +(program + (expression_statement + (class_literal (type_identifier)))) From b042baa283d4e840361fd90d69f751606d42166c Mon Sep 17 00:00:00 2001 From: Dany Zatuchna Date: Tue, 13 Sep 2022 16:47:09 +0300 Subject: [PATCH 11/23] Regenerate the parser --- src/grammar.json | 140 ++--- src/parser.c | 1293 +++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 1358 insertions(+), 75 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 11242f8f0..6813d9036 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2537,21 +2537,25 @@ ] }, "class_literal": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_unannotated_type" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "class" - } - ] + "type": "PREC_DYNAMIC", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_unannotated_type" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "class" + } + ] + } }, "object_creation_expression": { "type": "CHOICE", @@ -2637,72 +2641,76 @@ } }, "field_access": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "object", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "primary_expression" - }, - { - "type": "SYMBOL", - "name": "super" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "PREC_DYNAMIC", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "." + "type": "SYMBOL", + "name": "primary_expression" }, { "type": "SYMBOL", "name": "super" } ] - }, - { - "type": "BLANK" } - ] - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "field", - "content": { + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "super" + } + ] }, { - "type": "SYMBOL", - "name": "this" + "type": "BLANK" } ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + { + "type": "SYMBOL", + "name": "this" + } + ] + } } - } - ] + ] + } }, "array_access": { "type": "SEQ", @@ -7099,6 +7107,10 @@ [ "inferred_parameters", "primary_expression" + ], + [ + "class_literal", + "field_access" ] ], "precedences": [], diff --git a/src/parser.c b/src/parser.c index 6675c231a..53c0d928c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,7 +5,7 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 +#define LANGUAGE_VERSION 14 #define STATE_COUNT 1267 #define LARGE_STATE_COUNT 350 #define SYMBOL_COUNT 291 @@ -3266,6 +3266,1276 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 6, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 9, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 16, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 17, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 30, + [36] = 27, + [37] = 15, + [38] = 14, + [39] = 39, + [40] = 29, + [41] = 41, + [42] = 42, + [43] = 33, + [44] = 44, + [45] = 45, + [46] = 34, + [47] = 20, + [48] = 42, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 41, + [53] = 53, + [54] = 50, + [55] = 23, + [56] = 56, + [57] = 51, + [58] = 49, + [59] = 45, + [60] = 44, + [61] = 32, + [62] = 62, + [63] = 31, + [64] = 24, + [65] = 21, + [66] = 19, + [67] = 62, + [68] = 25, + [69] = 56, + [70] = 70, + [71] = 26, + [72] = 53, + [73] = 39, + [74] = 70, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 84, + [86] = 86, + [87] = 86, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 92, + [94] = 94, + [95] = 92, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 81, + [100] = 80, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 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, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 178, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 180, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 259, + [270] = 270, + [271] = 264, + [272] = 256, + [273] = 273, + [274] = 257, + [275] = 260, + [276] = 262, + [277] = 266, + [278] = 261, + [279] = 270, + [280] = 265, + [281] = 258, + [282] = 273, + [283] = 267, + [284] = 263, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 293, + [298] = 289, + [299] = 287, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 285, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 304, + [312] = 312, + [313] = 309, + [314] = 303, + [315] = 315, + [316] = 316, + [317] = 315, + [318] = 318, + [319] = 319, + [320] = 302, + [321] = 321, + [322] = 310, + [323] = 323, + [324] = 324, + [325] = 307, + [326] = 326, + [327] = 295, + [328] = 312, + [329] = 316, + [330] = 294, + [331] = 318, + [332] = 296, + [333] = 326, + [334] = 300, + [335] = 335, + [336] = 288, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 323, + [341] = 319, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 360, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 355, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 365, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 376, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 198, + [400] = 237, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 405, + [491] = 413, + [492] = 412, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 424, + [526] = 526, + [527] = 423, + [528] = 407, + [529] = 408, + [530] = 530, + [531] = 391, + [532] = 392, + [533] = 380, + [534] = 378, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 524, + [539] = 539, + [540] = 536, + [541] = 541, + [542] = 438, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 514, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 428, + [552] = 436, + [553] = 553, + [554] = 554, + [555] = 435, + [556] = 526, + [557] = 557, + [558] = 517, + [559] = 541, + [560] = 513, + [561] = 561, + [562] = 520, + [563] = 563, + [564] = 564, + [565] = 521, + [566] = 564, + [567] = 554, + [568] = 568, + [569] = 569, + [570] = 561, + [571] = 539, + [572] = 572, + [573] = 563, + [574] = 574, + [575] = 549, + [576] = 548, + [577] = 544, + [578] = 523, + [579] = 83, + [580] = 512, + [581] = 574, + [582] = 515, + [583] = 522, + [584] = 516, + [585] = 557, + [586] = 518, + [587] = 519, + [588] = 426, + [589] = 589, + [590] = 465, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 603, + [615] = 609, + [616] = 616, + [617] = 610, + [618] = 618, + [619] = 619, + [620] = 607, + [621] = 621, + [622] = 618, + [623] = 623, + [624] = 606, + [625] = 625, + [626] = 626, + [627] = 619, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 397, + [634] = 401, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 407, + [640] = 408, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 409, + [647] = 410, + [648] = 402, + [649] = 392, + [650] = 644, + [651] = 651, + [652] = 652, + [653] = 391, + [654] = 645, + [655] = 655, + [656] = 404, + [657] = 657, + [658] = 398, + [659] = 414, + [660] = 660, + [661] = 417, + [662] = 411, + [663] = 418, + [664] = 664, + [665] = 403, + [666] = 666, + [667] = 436, + [668] = 428, + [669] = 406, + [670] = 670, + [671] = 671, + [672] = 415, + [673] = 435, + [674] = 426, + [675] = 671, + [676] = 416, + [677] = 438, + [678] = 384, + [679] = 679, + [680] = 680, + [681] = 679, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 385, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 693, + [696] = 696, + [697] = 697, + [698] = 697, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 696, + [705] = 702, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 402, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 719, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 721, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 722, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 386, + [735] = 383, + [736] = 406, + [737] = 733, + [738] = 388, + [739] = 387, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 743, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 754, + [757] = 757, + [758] = 758, + [759] = 432, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 666, + [791] = 780, + [792] = 777, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 801, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 787, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 786, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 785, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 779, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 863, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 863, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 887, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 891, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 889, + [949] = 949, + [950] = 926, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 956, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 953, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 965, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 991, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 976, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 964, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 989, + [1014] = 1014, + [1015] = 1015, + [1016] = 1016, + [1017] = 976, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 999, + [1022] = 1022, + [1023] = 1023, + [1024] = 951, + [1025] = 1025, + [1026] = 1026, + [1027] = 1022, + [1028] = 1007, + [1029] = 1029, + [1030] = 979, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 925, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 999, + [1048] = 982, + [1049] = 959, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 245, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1089, + [1154] = 1154, + [1155] = 1071, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1180, + [1200] = 1185, + [1201] = 1185, + [1202] = 1183, + [1203] = 1180, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1189, + [1212] = 1212, + [1213] = 1191, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1183, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1197, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1188, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 1218, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1253, + [1254] = 1254, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1256, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, +}; + static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 6656 ? (c < 2979 @@ -62816,16 +64086,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 32), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 32), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 104), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 104), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 104), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 104), [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 103), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 103), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 103), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 103), [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 71), [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 71), [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), @@ -63000,8 +64270,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 105), [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 105), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 106), [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 106), [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), @@ -63787,6 +65057,7 @@ extern const TSLanguage *tree_sitter_java(void) { .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, + .primary_state_ids = ts_primary_state_ids, }; return &language; } From 0a8713357a5e26cf78eee73fc026596211730e14 Mon Sep 17 00:00:00 2001 From: Dany Zatuchna Date: Tue, 13 Sep 2022 17:04:07 +0300 Subject: [PATCH 12/23] Restore original CI configuration --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48f08ab0f..6620d2f1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: jobs: test: - runs-on: self-hosted + runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: From ee2d345ff772ef40259e51f0ecebbd222b67acda Mon Sep 17 00:00:00 2001 From: Brian Kramer Date: Mon, 12 Sep 2022 20:53:03 -0700 Subject: [PATCH 13/23] Java parser: fix issues with records, support instanceof final --- grammar.js | 10 + src/grammar.json | 69 + src/node-types.json | 58 + src/parser.c | 64689 ++++++++++++++++----------------- src/tree_sitter/parser.h | 1 - test/corpus/declarations.txt | 75 + test/corpus/expressions.txt | 5 + 7 files changed, 32299 insertions(+), 32608 deletions(-) diff --git a/grammar.js b/grammar.js index 06cff78d1..666eea37f 100644 --- a/grammar.js +++ b/grammar.js @@ -230,6 +230,7 @@ module.exports = grammar({ instanceof_expression: $ => prec(PREC.REL, seq( field('left', $.expression), 'instanceof', + optional('final'), field('right', $._type), field('name', optional(choice($.identifier, $._reserved_identifier))) )), @@ -833,6 +834,7 @@ module.exports = grammar({ $.field_declaration, $.record_declaration, $.method_declaration, + $.compact_constructor_declaration, // For records. $.class_declaration, $.interface_declaration, $.annotation_type_declaration, @@ -910,6 +912,7 @@ module.exports = grammar({ field('name', $.identifier), optional(field('type_parameters', $.type_parameters)), field('parameters', $.formal_parameters), + optional(field('interfaces', $.super_interfaces)), field('body', $.class_body) ), @@ -970,6 +973,7 @@ module.exports = grammar({ $.method_declaration, $.class_declaration, $.interface_declaration, + $.record_declaration, $.annotation_type_declaration, ';' )), @@ -1137,6 +1141,12 @@ module.exports = grammar({ choice(field('body', $.block), ';') ), + compact_constructor_declaration: $ => seq( + optional($.modifiers), + field('name', $.identifier), + field('body', $.block) + ), + _reserved_identifier: $ => alias(choice( 'open', 'module', diff --git a/src/grammar.json b/src/grammar.json index 6813d9036..806b27afe 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2006,6 +2006,18 @@ "type": "STRING", "value": "instanceof" }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "final" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "right", @@ -5421,6 +5433,10 @@ "type": "SYMBOL", "name": "method_declaration" }, + { + "type": "SYMBOL", + "name": "compact_constructor_declaration" + }, { "type": "SYMBOL", "name": "class_declaration" @@ -5810,6 +5826,22 @@ "name": "formal_parameters" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "interfaces", + "content": { + "type": "SYMBOL", + "name": "super_interfaces" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "body", @@ -6118,6 +6150,10 @@ "type": "SYMBOL", "name": "interface_declaration" }, + { + "type": "SYMBOL", + "name": "record_declaration" + }, { "type": "SYMBOL", "name": "annotation_type_declaration" @@ -6952,6 +6988,39 @@ } ] }, + "compact_constructor_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, "_reserved_identifier": { "type": "ALIAS", "content": { diff --git a/src/node-types.json b/src/node-types.json index 58ef7ff55..f643a30cb 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1115,6 +1115,10 @@ "type": "class_declaration", "named": true }, + { + "type": "compact_constructor_declaration", + "named": true + }, { "type": "constructor_declaration", "named": true @@ -1237,6 +1241,42 @@ ] } }, + { + "type": "compact_constructor_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "modifiers", + "named": true + } + ] + } + }, { "type": "constant_declaration", "named": true, @@ -1605,6 +1645,10 @@ "type": "class_declaration", "named": true }, + { + "type": "compact_constructor_declaration", + "named": true + }, { "type": "constructor_declaration", "named": true @@ -2230,6 +2274,10 @@ { "type": "method_declaration", "named": true + }, + { + "type": "record_declaration", + "named": true } ] } @@ -2909,6 +2957,16 @@ } ] }, + "interfaces": { + "multiple": false, + "required": false, + "types": [ + { + "type": "super_interfaces", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, diff --git a/src/parser.c b/src/parser.c index 53c0d928c..a2bd6a9c9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,16 +5,16 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 1267 -#define LARGE_STATE_COUNT 350 -#define SYMBOL_COUNT 291 +#define LANGUAGE_VERSION 13 +#define STATE_COUNT 1282 +#define LARGE_STATE_COUNT 354 +#define SYMBOL_COUNT 292 #define ALIAS_COUNT 1 #define TOKEN_COUNT 130 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 231 +#define PRODUCTION_ID_COUNT 238 enum { sym_identifier = 1, @@ -64,62 +64,62 @@ enum { anon_sym_GT_GT = 45, anon_sym_GT_GT_GT = 46, anon_sym_instanceof = 47, - anon_sym_DASH_GT = 48, - anon_sym_COMMA = 49, - anon_sym_QMARK = 50, - anon_sym_COLON = 51, - anon_sym_BANG = 52, - anon_sym_TILDE = 53, - anon_sym_PLUS_PLUS = 54, - anon_sym_DASH_DASH = 55, - anon_sym_new = 56, - anon_sym_LBRACK = 57, - anon_sym_RBRACK = 58, - anon_sym_DOT = 59, - anon_sym_class = 60, - anon_sym_COLON_COLON = 61, - anon_sym_extends = 62, - anon_sym_switch = 63, - anon_sym_LBRACE = 64, - anon_sym_RBRACE = 65, - anon_sym_case = 66, - anon_sym_default = 67, - anon_sym_SEMI = 68, - anon_sym_assert = 69, - anon_sym_do = 70, - anon_sym_while = 71, - anon_sym_break = 72, - anon_sym_continue = 73, - anon_sym_return = 74, - anon_sym_yield = 75, - anon_sym_synchronized = 76, - anon_sym_throw = 77, - anon_sym_try = 78, - anon_sym_catch = 79, - anon_sym_finally = 80, - anon_sym_if = 81, - anon_sym_else = 82, - anon_sym_for = 83, - anon_sym_AT = 84, - anon_sym_open = 85, - anon_sym_module = 86, - anon_sym_requires = 87, - anon_sym_transitive = 88, - anon_sym_static = 89, - anon_sym_exports = 90, - anon_sym_to = 91, - anon_sym_opens = 92, - anon_sym_uses = 93, - anon_sym_provides = 94, - anon_sym_with = 95, - anon_sym_package = 96, - anon_sym_import = 97, - anon_sym_enum = 98, - anon_sym_public = 99, - anon_sym_protected = 100, - anon_sym_private = 101, - anon_sym_abstract = 102, - anon_sym_final = 103, + anon_sym_final = 48, + anon_sym_DASH_GT = 49, + anon_sym_COMMA = 50, + anon_sym_QMARK = 51, + anon_sym_COLON = 52, + anon_sym_BANG = 53, + anon_sym_TILDE = 54, + anon_sym_PLUS_PLUS = 55, + anon_sym_DASH_DASH = 56, + anon_sym_new = 57, + anon_sym_LBRACK = 58, + anon_sym_RBRACK = 59, + anon_sym_DOT = 60, + anon_sym_class = 61, + anon_sym_COLON_COLON = 62, + anon_sym_extends = 63, + anon_sym_switch = 64, + anon_sym_LBRACE = 65, + anon_sym_RBRACE = 66, + anon_sym_case = 67, + anon_sym_default = 68, + anon_sym_SEMI = 69, + anon_sym_assert = 70, + anon_sym_do = 71, + anon_sym_while = 72, + anon_sym_break = 73, + anon_sym_continue = 74, + anon_sym_return = 75, + anon_sym_yield = 76, + anon_sym_synchronized = 77, + anon_sym_throw = 78, + anon_sym_try = 79, + anon_sym_catch = 80, + anon_sym_finally = 81, + anon_sym_if = 82, + anon_sym_else = 83, + anon_sym_for = 84, + anon_sym_AT = 85, + anon_sym_open = 86, + anon_sym_module = 87, + anon_sym_requires = 88, + anon_sym_transitive = 89, + anon_sym_static = 90, + anon_sym_exports = 91, + anon_sym_to = 92, + anon_sym_opens = 93, + anon_sym_uses = 94, + anon_sym_provides = 95, + anon_sym_with = 96, + anon_sym_package = 97, + anon_sym_import = 98, + anon_sym_enum = 99, + anon_sym_public = 100, + anon_sym_protected = 101, + anon_sym_private = 102, + anon_sym_abstract = 103, anon_sym_strictfp = 104, anon_sym_native = 105, anon_sym_transient = 106, @@ -274,40 +274,41 @@ enum { sym_throws = 255, sym_local_variable_declaration = 256, sym_method_declaration = 257, - aux_sym_program_repeat1 = 258, - aux_sym_cast_expression_repeat1 = 259, - aux_sym_inferred_parameters_repeat1 = 260, - aux_sym_array_creation_expression_repeat1 = 261, - aux_sym_array_creation_expression_repeat2 = 262, - aux_sym_argument_list_repeat1 = 263, - aux_sym_type_arguments_repeat1 = 264, - aux_sym_dimensions_repeat1 = 265, - aux_sym_switch_block_repeat1 = 266, - aux_sym_switch_block_repeat2 = 267, - aux_sym_switch_block_statement_group_repeat1 = 268, - aux_sym_try_statement_repeat1 = 269, - aux_sym_catch_type_repeat1 = 270, - aux_sym_resource_specification_repeat1 = 271, - aux_sym_for_statement_repeat1 = 272, - aux_sym_for_statement_repeat2 = 273, - aux_sym_annotation_argument_list_repeat1 = 274, - aux_sym_element_value_array_initializer_repeat1 = 275, - aux_sym_module_body_repeat1 = 276, - aux_sym_requires_module_directive_repeat1 = 277, - aux_sym_exports_module_directive_repeat1 = 278, - aux_sym_provides_module_directive_repeat1 = 279, - aux_sym_enum_body_repeat1 = 280, - aux_sym_enum_body_declarations_repeat1 = 281, - aux_sym_modifiers_repeat1 = 282, - aux_sym_type_parameters_repeat1 = 283, - aux_sym_type_bound_repeat1 = 284, - aux_sym_type_list_repeat1 = 285, - aux_sym_annotation_type_body_repeat1 = 286, - aux_sym_interface_body_repeat1 = 287, - aux_sym__variable_declarator_list_repeat1 = 288, - aux_sym_array_initializer_repeat1 = 289, - aux_sym_formal_parameters_repeat1 = 290, - alias_sym_type_identifier = 291, + sym_compact_constructor_declaration = 258, + aux_sym_program_repeat1 = 259, + aux_sym_cast_expression_repeat1 = 260, + aux_sym_inferred_parameters_repeat1 = 261, + aux_sym_array_creation_expression_repeat1 = 262, + aux_sym_array_creation_expression_repeat2 = 263, + aux_sym_argument_list_repeat1 = 264, + aux_sym_type_arguments_repeat1 = 265, + aux_sym_dimensions_repeat1 = 266, + aux_sym_switch_block_repeat1 = 267, + aux_sym_switch_block_repeat2 = 268, + aux_sym_switch_block_statement_group_repeat1 = 269, + aux_sym_try_statement_repeat1 = 270, + aux_sym_catch_type_repeat1 = 271, + aux_sym_resource_specification_repeat1 = 272, + aux_sym_for_statement_repeat1 = 273, + aux_sym_for_statement_repeat2 = 274, + aux_sym_annotation_argument_list_repeat1 = 275, + aux_sym_element_value_array_initializer_repeat1 = 276, + aux_sym_module_body_repeat1 = 277, + aux_sym_requires_module_directive_repeat1 = 278, + aux_sym_exports_module_directive_repeat1 = 279, + aux_sym_provides_module_directive_repeat1 = 280, + aux_sym_enum_body_repeat1 = 281, + aux_sym_enum_body_declarations_repeat1 = 282, + aux_sym_modifiers_repeat1 = 283, + aux_sym_type_parameters_repeat1 = 284, + aux_sym_type_bound_repeat1 = 285, + aux_sym_type_list_repeat1 = 286, + aux_sym_annotation_type_body_repeat1 = 287, + aux_sym_interface_body_repeat1 = 288, + aux_sym__variable_declarator_list_repeat1 = 289, + aux_sym_array_initializer_repeat1 = 290, + aux_sym_formal_parameters_repeat1 = 291, + alias_sym_type_identifier = 292, }; static const char * const ts_symbol_names[] = { @@ -359,6 +360,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_GT_GT] = ">>", [anon_sym_GT_GT_GT] = ">>>", [anon_sym_instanceof] = "instanceof", + [anon_sym_final] = "final", [anon_sym_DASH_GT] = "->", [anon_sym_COMMA] = ",", [anon_sym_QMARK] = "\?", @@ -414,7 +416,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_protected] = "protected", [anon_sym_private] = "private", [anon_sym_abstract] = "abstract", - [anon_sym_final] = "final", [anon_sym_strictfp] = "strictfp", [anon_sym_native] = "native", [anon_sym_transient] = "transient", @@ -569,6 +570,7 @@ static const char * const ts_symbol_names[] = { [sym_throws] = "throws", [sym_local_variable_declaration] = "local_variable_declaration", [sym_method_declaration] = "method_declaration", + [sym_compact_constructor_declaration] = "compact_constructor_declaration", [aux_sym_program_repeat1] = "program_repeat1", [aux_sym_cast_expression_repeat1] = "cast_expression_repeat1", [aux_sym_inferred_parameters_repeat1] = "inferred_parameters_repeat1", @@ -654,6 +656,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, [anon_sym_instanceof] = anon_sym_instanceof, + [anon_sym_final] = anon_sym_final, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_QMARK] = anon_sym_QMARK, @@ -709,7 +712,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_protected] = anon_sym_protected, [anon_sym_private] = anon_sym_private, [anon_sym_abstract] = anon_sym_abstract, - [anon_sym_final] = anon_sym_final, [anon_sym_strictfp] = anon_sym_strictfp, [anon_sym_native] = anon_sym_native, [anon_sym_transient] = anon_sym_transient, @@ -864,6 +866,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_throws] = sym_throws, [sym_local_variable_declaration] = sym_local_variable_declaration, [sym_method_declaration] = sym_method_declaration, + [sym_compact_constructor_declaration] = sym_compact_constructor_declaration, [aux_sym_program_repeat1] = aux_sym_program_repeat1, [aux_sym_cast_expression_repeat1] = aux_sym_cast_expression_repeat1, [aux_sym_inferred_parameters_repeat1] = aux_sym_inferred_parameters_repeat1, @@ -1093,6 +1096,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_final] = { + .visible = true, + .named = false, + }, [anon_sym_DASH_GT] = { .visible = true, .named = false, @@ -1313,10 +1320,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_final] = { - .visible = true, - .named = false, - }, [anon_sym_strictfp] = { .visible = true, .named = false, @@ -1941,6 +1944,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_compact_constructor_declaration] = { + .visible = true, + .named = true, + }, [aux_sym_program_repeat1] = { .visible = false, .named = false, @@ -2222,166 +2229,173 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [65] = {.index = 89, .length = 2}, [66] = {.index = 91, .length = 3}, [67] = {.index = 91, .length = 3}, - [69] = {.index = 94, .length = 3}, - [70] = {.index = 94, .length = 3}, - [71] = {.index = 97, .length = 2}, + [69] = {.index = 94, .length = 2}, + [70] = {.index = 96, .length = 3}, + [71] = {.index = 96, .length = 3}, [72] = {.index = 99, .length = 2}, - [73] = {.index = 101, .length = 1}, - [74] = {.index = 102, .length = 2}, - [75] = {.index = 104, .length = 3}, - [77] = {.index = 107, .length = 3}, - [78] = {.index = 110, .length = 3}, - [79] = {.index = 113, .length = 3}, - [80] = {.index = 110, .length = 3}, - [81] = {.index = 113, .length = 3}, - [83] = {.index = 116, .length = 2}, - [84] = {.index = 118, .length = 4}, - [85] = {.index = 122, .length = 4}, - [86] = {.index = 126, .length = 5}, - [87] = {.index = 131, .length = 6}, - [88] = {.index = 137, .length = 4}, - [89] = {.index = 141, .length = 4}, - [90] = {.index = 145, .length = 4}, - [91] = {.index = 149, .length = 4}, - [92] = {.index = 153, .length = 4}, - [93] = {.index = 157, .length = 4}, - [94] = {.index = 161, .length = 2}, - [95] = {.index = 163, .length = 3}, - [96] = {.index = 166, .length = 1}, - [97] = {.index = 167, .length = 2}, - [98] = {.index = 169, .length = 1}, - [99] = {.index = 170, .length = 2}, - [100] = {.index = 172, .length = 4}, - [101] = {.index = 176, .length = 3}, - [102] = {.index = 179, .length = 3}, - [103] = {.index = 182, .length = 2}, - [104] = {.index = 182, .length = 2}, - [105] = {.index = 184, .length = 4}, - [106] = {.index = 184, .length = 4}, - [107] = {.index = 188, .length = 3}, - [108] = {.index = 191, .length = 3}, + [73] = {.index = 101, .length = 2}, + [74] = {.index = 103, .length = 1}, + [75] = {.index = 104, .length = 2}, + [76] = {.index = 106, .length = 3}, + [78] = {.index = 109, .length = 3}, + [79] = {.index = 112, .length = 3}, + [80] = {.index = 115, .length = 3}, + [81] = {.index = 112, .length = 3}, + [82] = {.index = 115, .length = 3}, + [84] = {.index = 118, .length = 2}, + [85] = {.index = 120, .length = 2}, + [86] = {.index = 122, .length = 4}, + [87] = {.index = 126, .length = 4}, + [88] = {.index = 130, .length = 5}, + [89] = {.index = 135, .length = 6}, + [90] = {.index = 141, .length = 4}, + [91] = {.index = 145, .length = 4}, + [92] = {.index = 149, .length = 4}, + [93] = {.index = 153, .length = 4}, + [94] = {.index = 157, .length = 4}, + [95] = {.index = 161, .length = 4}, + [96] = {.index = 165, .length = 2}, + [97] = {.index = 167, .length = 3}, + [98] = {.index = 170, .length = 1}, + [99] = {.index = 171, .length = 2}, + [100] = {.index = 173, .length = 1}, + [101] = {.index = 174, .length = 4}, + [102] = {.index = 178, .length = 4}, + [103] = {.index = 182, .length = 3}, + [104] = {.index = 185, .length = 3}, + [105] = {.index = 188, .length = 2}, + [106] = {.index = 188, .length = 2}, + [107] = {.index = 190, .length = 4}, + [108] = {.index = 190, .length = 4}, [109] = {.index = 194, .length = 3}, - [110] = {.index = 197, .length = 3}, - [111] = {.index = 200, .length = 3}, - [112] = {.index = 203, .length = 3}, - [113] = {.index = 206, .length = 2}, - [114] = {.index = 208, .length = 2}, - [115] = {.index = 208, .length = 2}, - [116] = {.index = 210, .length = 4}, - [117] = {.index = 214, .length = 5}, - [118] = {.index = 219, .length = 6}, - [119] = {.index = 225, .length = 3}, - [120] = {.index = 228, .length = 5}, - [121] = {.index = 233, .length = 4}, - [122] = {.index = 116, .length = 2}, - [123] = {.index = 237, .length = 5}, - [124] = {.index = 242, .length = 5}, - [125] = {.index = 247, .length = 5}, - [126] = {.index = 252, .length = 5}, - [127] = {.index = 257, .length = 4}, - [128] = {.index = 261, .length = 2}, - [129] = {.index = 263, .length = 1}, - [130] = {.index = 264, .length = 2}, - [131] = {.index = 266, .length = 2}, - [132] = {.index = 268, .length = 1}, - [133] = {.index = 268, .length = 1}, - [134] = {.index = 269, .length = 2}, - [135] = {.index = 271, .length = 1}, - [136] = {.index = 271, .length = 1}, - [137] = {.index = 54, .length = 1}, - [138] = {.index = 272, .length = 3}, - [139] = {.index = 275, .length = 4}, - [140] = {.index = 279, .length = 3}, - [141] = {.index = 279, .length = 3}, - [142] = {.index = 282, .length = 4}, - [143] = {.index = 286, .length = 4}, - [144] = {.index = 290, .length = 4}, - [145] = {.index = 294, .length = 4}, - [146] = {.index = 298, .length = 4}, - [147] = {.index = 302, .length = 4}, - [148] = {.index = 306, .length = 4}, - [149] = {.index = 310, .length = 3}, - [150] = {.index = 313, .length = 3}, - [151] = {.index = 316, .length = 4}, - [152] = {.index = 320, .length = 5}, - [153] = {.index = 325, .length = 3}, - [154] = {.index = 325, .length = 3}, - [155] = {.index = 328, .length = 6}, - [156] = {.index = 334, .length = 4}, - [157] = {.index = 338, .length = 1}, - [158] = {.index = 339, .length = 2}, - [159] = {.index = 341, .length = 2}, - [160] = {.index = 343, .length = 1}, - [161] = {.index = 344, .length = 2}, - [162] = {.index = 346, .length = 2}, - [163] = {.index = 348, .length = 2}, - [164] = {.index = 350, .length = 3}, - [165] = {.index = 353, .length = 3}, - [166] = {.index = 356, .length = 2}, - [167] = {.index = 356, .length = 2}, - [168] = {.index = 358, .length = 3}, - [169] = {.index = 361, .length = 4}, - [170] = {.index = 361, .length = 4}, - [171] = {.index = 365, .length = 5}, - [172] = {.index = 370, .length = 5}, - [173] = {.index = 375, .length = 5}, - [174] = {.index = 380, .length = 5}, - [175] = {.index = 385, .length = 4}, - [176] = {.index = 389, .length = 2}, - [177] = {.index = 391, .length = 3}, - [178] = {.index = 394, .length = 3}, - [179] = {.index = 397, .length = 3}, - [180] = {.index = 400, .length = 3}, - [181] = {.index = 403, .length = 3}, - [182] = {.index = 406, .length = 5}, - [183] = {.index = 411, .length = 4}, - [184] = {.index = 415, .length = 4}, - [185] = {.index = 419, .length = 2}, - [186] = {.index = 419, .length = 2}, - [187] = {.index = 419, .length = 2}, - [188] = {.index = 419, .length = 2}, - [189] = {.index = 421, .length = 1}, - [190] = {.index = 421, .length = 1}, - [191] = {.index = 421, .length = 1}, - [192] = {.index = 421, .length = 1}, - [193] = {.index = 422, .length = 2}, - [194] = {.index = 424, .length = 6}, - [195] = {.index = 430, .length = 3}, - [196] = {.index = 433, .length = 4}, - [197] = {.index = 437, .length = 4}, - [198] = {.index = 441, .length = 4}, - [199] = {.index = 445, .length = 4}, - [200] = {.index = 449, .length = 4}, - [201] = {.index = 453, .length = 5}, - [202] = {.index = 458, .length = 5}, - [203] = {.index = 463, .length = 1}, - [204] = {.index = 463, .length = 1}, - [205] = {.index = 464, .length = 3}, - [206] = {.index = 467, .length = 2}, - [207] = {.index = 464, .length = 3}, - [208] = {.index = 464, .length = 3}, - [209] = {.index = 464, .length = 3}, - [210] = {.index = 469, .length = 1}, - [211] = {.index = 469, .length = 1}, - [212] = {.index = 470, .length = 2}, - [213] = {.index = 472, .length = 2}, - [214] = {.index = 470, .length = 2}, - [215] = {.index = 470, .length = 2}, - [216] = {.index = 470, .length = 2}, - [217] = {.index = 474, .length = 2}, - [218] = {.index = 476, .length = 1}, - [219] = {.index = 477, .length = 3}, - [220] = {.index = 480, .length = 3}, - [221] = {.index = 483, .length = 3}, - [222] = {.index = 486, .length = 5}, - [223] = {.index = 491, .length = 5}, - [224] = {.index = 496, .length = 5}, - [225] = {.index = 501, .length = 3}, - [226] = {.index = 504, .length = 3}, - [227] = {.index = 507, .length = 4}, - [228] = {.index = 511, .length = 4}, - [229] = {.index = 515, .length = 6}, - [230] = {.index = 521, .length = 4}, + [110] = {.index = 194, .length = 3}, + [111] = {.index = 197, .length = 3}, + [112] = {.index = 200, .length = 3}, + [113] = {.index = 203, .length = 3}, + [114] = {.index = 206, .length = 3}, + [115] = {.index = 209, .length = 3}, + [116] = {.index = 212, .length = 3}, + [117] = {.index = 215, .length = 2}, + [118] = {.index = 217, .length = 2}, + [119] = {.index = 217, .length = 2}, + [120] = {.index = 219, .length = 4}, + [121] = {.index = 223, .length = 5}, + [122] = {.index = 228, .length = 6}, + [123] = {.index = 234, .length = 3}, + [124] = {.index = 237, .length = 5}, + [125] = {.index = 242, .length = 4}, + [126] = {.index = 120, .length = 2}, + [127] = {.index = 246, .length = 5}, + [128] = {.index = 251, .length = 5}, + [129] = {.index = 256, .length = 5}, + [130] = {.index = 261, .length = 5}, + [131] = {.index = 266, .length = 4}, + [132] = {.index = 270, .length = 2}, + [133] = {.index = 272, .length = 1}, + [134] = {.index = 273, .length = 2}, + [135] = {.index = 275, .length = 2}, + [136] = {.index = 277, .length = 1}, + [137] = {.index = 277, .length = 1}, + [138] = {.index = 278, .length = 2}, + [139] = {.index = 280, .length = 1}, + [140] = {.index = 280, .length = 1}, + [141] = {.index = 54, .length = 1}, + [142] = {.index = 281, .length = 3}, + [143] = {.index = 284, .length = 5}, + [144] = {.index = 289, .length = 4}, + [145] = {.index = 293, .length = 3}, + [146] = {.index = 293, .length = 3}, + [147] = {.index = 296, .length = 4}, + [148] = {.index = 300, .length = 4}, + [149] = {.index = 304, .length = 4}, + [150] = {.index = 308, .length = 4}, + [151] = {.index = 312, .length = 4}, + [152] = {.index = 316, .length = 4}, + [153] = {.index = 320, .length = 4}, + [154] = {.index = 324, .length = 4}, + [155] = {.index = 328, .length = 3}, + [156] = {.index = 331, .length = 3}, + [157] = {.index = 334, .length = 4}, + [158] = {.index = 338, .length = 5}, + [159] = {.index = 343, .length = 3}, + [160] = {.index = 343, .length = 3}, + [161] = {.index = 346, .length = 6}, + [162] = {.index = 352, .length = 4}, + [163] = {.index = 356, .length = 1}, + [164] = {.index = 357, .length = 2}, + [165] = {.index = 359, .length = 2}, + [166] = {.index = 361, .length = 1}, + [167] = {.index = 362, .length = 2}, + [168] = {.index = 364, .length = 2}, + [169] = {.index = 366, .length = 2}, + [170] = {.index = 368, .length = 3}, + [171] = {.index = 371, .length = 3}, + [172] = {.index = 374, .length = 2}, + [173] = {.index = 374, .length = 2}, + [174] = {.index = 376, .length = 3}, + [175] = {.index = 379, .length = 4}, + [176] = {.index = 379, .length = 4}, + [177] = {.index = 383, .length = 5}, + [178] = {.index = 388, .length = 5}, + [179] = {.index = 393, .length = 5}, + [180] = {.index = 398, .length = 5}, + [181] = {.index = 403, .length = 5}, + [182] = {.index = 408, .length = 4}, + [183] = {.index = 412, .length = 2}, + [184] = {.index = 414, .length = 3}, + [185] = {.index = 417, .length = 3}, + [186] = {.index = 420, .length = 3}, + [187] = {.index = 423, .length = 3}, + [188] = {.index = 426, .length = 3}, + [189] = {.index = 429, .length = 5}, + [190] = {.index = 434, .length = 4}, + [191] = {.index = 438, .length = 4}, + [192] = {.index = 442, .length = 2}, + [193] = {.index = 442, .length = 2}, + [194] = {.index = 442, .length = 2}, + [195] = {.index = 442, .length = 2}, + [196] = {.index = 444, .length = 1}, + [197] = {.index = 444, .length = 1}, + [198] = {.index = 444, .length = 1}, + [199] = {.index = 444, .length = 1}, + [200] = {.index = 445, .length = 2}, + [201] = {.index = 447, .length = 6}, + [202] = {.index = 453, .length = 3}, + [203] = {.index = 456, .length = 4}, + [204] = {.index = 460, .length = 4}, + [205] = {.index = 464, .length = 4}, + [206] = {.index = 468, .length = 4}, + [207] = {.index = 472, .length = 4}, + [208] = {.index = 476, .length = 5}, + [209] = {.index = 481, .length = 5}, + [210] = {.index = 486, .length = 1}, + [211] = {.index = 486, .length = 1}, + [212] = {.index = 487, .length = 3}, + [213] = {.index = 490, .length = 2}, + [214] = {.index = 487, .length = 3}, + [215] = {.index = 487, .length = 3}, + [216] = {.index = 487, .length = 3}, + [217] = {.index = 492, .length = 1}, + [218] = {.index = 492, .length = 1}, + [219] = {.index = 493, .length = 2}, + [220] = {.index = 495, .length = 2}, + [221] = {.index = 493, .length = 2}, + [222] = {.index = 493, .length = 2}, + [223] = {.index = 493, .length = 2}, + [224] = {.index = 497, .length = 2}, + [225] = {.index = 499, .length = 1}, + [226] = {.index = 500, .length = 3}, + [227] = {.index = 503, .length = 3}, + [228] = {.index = 506, .length = 3}, + [229] = {.index = 509, .length = 5}, + [230] = {.index = 514, .length = 5}, + [231] = {.index = 519, .length = 5}, + [232] = {.index = 524, .length = 3}, + [233] = {.index = 527, .length = 3}, + [234] = {.index = 530, .length = 4}, + [235] = {.index = 534, .length = 4}, + [236] = {.index = 538, .length = 6}, + [237] = {.index = 544, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2523,564 +2537,593 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_object, 0}, [94] = + {field_left, 0}, + {field_right, 3}, + [96] = {field_left, 0}, {field_name, 3}, {field_right, 2}, - [97] = + [99] = {field_array, 0}, {field_index, 2}, - [99] = + [101] = {field_declarator, 2, .inherited = true}, {field_type, 1}, - [101] = + [103] = {field_declarator, 1}, - [102] = + [104] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [104] = + [106] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_value, 2}, - [107] = + [109] = {field_type, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [110] = + [112] = {field_dimensions, 3}, {field_type, 2}, {field_value, 4}, - [113] = + [115] = {field_dimensions, 3}, {field_dimensions, 4}, {field_type, 2}, - [116] = + [118] = + {field_body, 1}, + {field_name, 0}, + [120] = {field_name, 0}, {field_parameters, 1}, - [118] = + [122] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [122] = + [126] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0}, - [126] = + [130] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [131] = + [135] = {field_body, 1}, {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [137] = + [141] = {field_body, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [141] = + [145] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_type_parameters, 2}, - [145] = + [149] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_type_parameters, 2}, - [149] = + [153] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_superclass, 2}, - [153] = + [157] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_superclass, 2}, - [157] = + [161] = {field_body, 4}, {field_interfaces, 2}, {field_name, 1}, {field_permits, 3}, - [161] = + [165] = {field_body, 1}, {field_condition, 3}, - [163] = + [167] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [166] = + [170] = {field_init, 1}, - [167] = + [171] = {field_init, 0, .inherited = true}, {field_init, 1, .inherited = true}, - [169] = + [173] = {field_modifiers, 0}, - [170] = - {field_body, 1}, - {field_name, 0}, - [172] = + [174] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [176] = + [178] = + {field_body, 4}, + {field_interfaces, 3}, + {field_name, 1}, + {field_parameters, 2}, + [182] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [179] = + [185] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, - [182] = + [188] = {field_field, 4}, {field_object, 0}, - [184] = + [190] = {field_arguments, 4}, {field_name, 3}, {field_object, 0}, {field_type_arguments, 2}, - [188] = + [194] = + {field_left, 0}, + {field_name, 4}, + {field_right, 3}, + [197] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [191] = + [200] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [194] = + [203] = {field_body, 4}, {field_name, 2}, {field_superclass, 3}, - [197] = + [206] = {field_body, 4}, {field_interfaces, 3}, {field_name, 2}, - [200] = + [209] = {field_body, 4}, {field_name, 2}, {field_permits, 3}, - [203] = + [212] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [206] = + [215] = {field_body, 4}, {field_name, 2}, - [208] = + [217] = {field_body, 4}, {field_name, 3}, - [210] = + [219] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [214] = + [223] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [219] = + [228] = {field_body, 2}, {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [225] = + [234] = {field_name, 1}, {field_parameters, 2}, {field_type_parameters, 0}, - [228] = + [237] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1}, {field_type_parameters, 0}, - [233] = + [242] = {field_body, 2}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [237] = + [246] = {field_body, 5}, {field_interfaces, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [242] = + [251] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_superclass, 3}, {field_type_parameters, 2}, - [247] = + [256] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [252] = + [261] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_superclass, 2}, - [257] = + [266] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 0}, {field_value, 3}, - [261] = + [270] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [263] = + [272] = {field_body, 5}, - [264] = + [273] = {field_body, 5}, {field_init, 2}, - [266] = + [275] = {field_key, 0}, {field_value, 2}, - [268] = + [277] = {field_module, 1}, - [269] = + [278] = {field_modifiers, 0, .inherited = true}, {field_modifiers, 1, .inherited = true}, - [271] = + [280] = {field_package, 1}, - [272] = + [281] = {field_arguments, 1}, {field_body, 2}, {field_name, 0}, - [275] = + [284] = + {field_body, 5}, + {field_interfaces, 4}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [289] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [279] = + [293] = {field_arguments, 5}, {field_name, 4}, {field_object, 0}, - [282] = + [296] = {field_body, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [286] = + [300] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_type_parameters, 3}, - [290] = + [304] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_type_parameters, 3}, - [294] = + [308] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_superclass, 3}, - [298] = + [312] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_superclass, 3}, - [302] = + [316] = {field_body, 5}, {field_interfaces, 3}, {field_name, 2}, {field_permits, 4}, - [306] = + [320] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [310] = + [324] = + {field_body, 5}, + {field_interfaces, 4}, + {field_name, 2}, + {field_parameters, 3}, + [328] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [313] = + [331] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, - [316] = + [334] = {field_body, 3}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [320] = + [338] = {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_parameters, 3, .inherited = true}, {field_type, 2}, {field_type_parameters, 0}, - [325] = + [343] = {field_dimensions, 2}, {field_name, 0}, {field_parameters, 1}, - [328] = + [346] = {field_body, 6}, {field_interfaces, 4}, {field_name, 1}, {field_permits, 5}, {field_superclass, 3}, {field_type_parameters, 2}, - [334] = + [352] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 1}, {field_value, 4}, - [338] = + [356] = {field_body, 4}, - [339] = + [357] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, - [341] = + [359] = {field_body, 6}, {field_update, 4}, - [343] = + [361] = {field_update, 1}, - [344] = + [362] = {field_update, 0, .inherited = true}, {field_update, 1, .inherited = true}, - [346] = + [364] = {field_body, 6}, {field_condition, 3}, - [348] = + [366] = {field_body, 6}, {field_init, 2}, - [350] = + [368] = {field_body, 6}, {field_init, 2}, {field_update, 4}, - [353] = + [371] = {field_body, 6}, {field_condition, 3}, {field_init, 2}, - [356] = + [374] = {field_modifiers, 1, .inherited = true}, {field_module, 2}, - [358] = + [376] = {field_arguments, 2}, {field_body, 3}, {field_name, 1}, - [361] = + [379] = {field_arguments, 6}, {field_name, 5}, {field_object, 0}, {field_type_arguments, 4}, - [365] = + [383] = {field_body, 6}, {field_interfaces, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [370] = + [388] = {field_body, 6}, {field_name, 2}, {field_permits, 5}, {field_superclass, 4}, {field_type_parameters, 3}, - [375] = + [393] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_type_parameters, 3}, - [380] = + [398] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_superclass, 3}, - [385] = + [403] = + {field_body, 6}, + {field_interfaces, 5}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [408] = {field_body, 6}, {field_name, 2}, {field_permits, 5}, {field_type_parameters, 3}, - [389] = + [412] = {field_arguments, 1}, {field_constructor, 0}, - [391] = + [414] = {field_body, 7}, {field_update, 4}, {field_update, 5, .inherited = true}, - [394] = + [417] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [397] = + [420] = {field_body, 7}, {field_init, 2}, {field_update, 5}, - [400] = + [423] = {field_body, 7}, {field_condition, 4}, {field_init, 2}, - [403] = + [426] = {field_body, 7}, {field_init, 2}, {field_init, 3, .inherited = true}, - [406] = + [429] = {field_body, 7}, {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_type, 2}, {field_value, 5}, - [411] = + [434] = {field_body, 7}, {field_init, 2}, {field_update, 4}, {field_update, 5, .inherited = true}, - [415] = + [438] = {field_body, 7}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, - [419] = + [442] = {field_modules, 3}, {field_package, 1}, - [421] = + [444] = {field_provided, 1}, - [422] = + [445] = {field_name, 1}, {field_type, 0}, - [424] = + [447] = {field_body, 7}, {field_interfaces, 5}, {field_name, 2}, {field_permits, 6}, {field_superclass, 4}, {field_type_parameters, 3}, - [430] = + [453] = {field_arguments, 2}, {field_constructor, 1}, {field_type_arguments, 0}, - [433] = + [456] = {field_body, 8}, {field_condition, 3}, {field_update, 5}, {field_update, 6, .inherited = true}, - [437] = + [460] = {field_body, 8}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [441] = + [464] = {field_body, 8}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, - [445] = + [468] = {field_body, 8}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, - [449] = + [472] = {field_body, 8}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, - [453] = + [476] = {field_body, 8}, {field_dimensions, 4, .inherited = true}, {field_name, 4, .inherited = true}, {field_type, 3}, {field_value, 6}, - [458] = + [481] = {field_body, 8}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [463] = + [486] = {field_modules, 1}, - [464] = + [487] = {field_modules, 3}, {field_modules, 4, .inherited = true}, {field_package, 1}, - [467] = + [490] = {field_modules, 0, .inherited = true}, {field_modules, 1, .inherited = true}, - [469] = + [492] = {field_provider, 1}, - [470] = + [493] = {field_provided, 1}, {field_provider, 4, .inherited = true}, - [472] = + [495] = {field_provider, 0, .inherited = true}, {field_provider, 1, .inherited = true}, - [474] = + [497] = {field_name, 2}, {field_type, 1}, - [476] = + [499] = {field_value, 1}, - [477] = + [500] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, - [480] = + [503] = {field_name, 1}, {field_type, 0}, {field_value, 4, .inherited = true}, - [483] = + [506] = {field_arguments, 3}, {field_constructor, 2}, {field_object, 0}, - [486] = + [509] = {field_body, 9}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, {field_update, 7, .inherited = true}, - [491] = + [514] = {field_body, 9}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, {field_update, 7, .inherited = true}, - [496] = + [519] = {field_body, 9}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, - [501] = + [524] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, - [504] = + [527] = {field_name, 2}, {field_type, 1}, {field_value, 5, .inherited = true}, - [507] = + [530] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, {field_value, 5, .inherited = true}, - [511] = + [534] = {field_arguments, 4}, {field_constructor, 3}, {field_object, 0}, {field_type_arguments, 2}, - [515] = + [538] = {field_body, 10}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, {field_update, 8, .inherited = true}, - [521] = + [544] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, @@ -3166,98 +3209,101 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = alias_sym_type_identifier, [3] = alias_sym_type_identifier, }, - [69] = { + [70] = { [3] = sym_identifier, }, - [76] = { + [77] = { [3] = alias_sym_type_identifier, }, - [80] = { - [2] = alias_sym_type_identifier, - }, [81] = { [2] = alias_sym_type_identifier, }, [82] = { + [2] = alias_sym_type_identifier, + }, + [83] = { [1] = alias_sym_type_identifier, }, - [103] = { + [105] = { [4] = sym_identifier, }, - [105] = { + [107] = { [3] = sym_identifier, }, - [114] = { + [109] = { + [4] = sym_identifier, + }, + [118] = { [3] = sym_identifier, }, - [122] = { + [126] = { [0] = sym_identifier, }, - [132] = { + [136] = { [1] = sym_identifier, }, - [135] = { + [139] = { [1] = sym_identifier, }, - [137] = { + [141] = { [1] = sym_identifier, }, - [140] = { + [145] = { [4] = sym_identifier, }, - [153] = { + [159] = { [0] = sym_identifier, }, - [166] = { + [172] = { [2] = sym_identifier, }, - [169] = { + [175] = { [5] = sym_identifier, }, - [185] = { + [192] = { [1] = sym_identifier, [3] = sym_identifier, }, - [186] = { + [193] = { [1] = sym_identifier, }, - [187] = { + [194] = { [3] = sym_identifier, }, - [189] = { + [196] = { [1] = sym_identifier, [3] = sym_identifier, }, - [190] = { + [197] = { [1] = sym_identifier, }, - [191] = { + [198] = { [3] = sym_identifier, }, - [203] = { + [210] = { [1] = sym_identifier, }, - [205] = { + [212] = { [1] = sym_identifier, [3] = sym_identifier, }, - [207] = { + [214] = { [1] = sym_identifier, }, - [208] = { + [215] = { [3] = sym_identifier, }, - [210] = { + [217] = { [1] = sym_identifier, }, - [212] = { + [219] = { [1] = sym_identifier, [3] = sym_identifier, }, - [214] = { + [221] = { [1] = sym_identifier, }, - [215] = { + [222] = { [3] = sym_identifier, }, }; @@ -3266,1276 +3312,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 6, - [8] = 8, - [9] = 9, - [10] = 10, - [11] = 9, - [12] = 12, - [13] = 13, - [14] = 14, - [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 16, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 17, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 30, - [36] = 27, - [37] = 15, - [38] = 14, - [39] = 39, - [40] = 29, - [41] = 41, - [42] = 42, - [43] = 33, - [44] = 44, - [45] = 45, - [46] = 34, - [47] = 20, - [48] = 42, - [49] = 49, - [50] = 50, - [51] = 51, - [52] = 41, - [53] = 53, - [54] = 50, - [55] = 23, - [56] = 56, - [57] = 51, - [58] = 49, - [59] = 45, - [60] = 44, - [61] = 32, - [62] = 62, - [63] = 31, - [64] = 24, - [65] = 21, - [66] = 19, - [67] = 62, - [68] = 25, - [69] = 56, - [70] = 70, - [71] = 26, - [72] = 53, - [73] = 39, - [74] = 70, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, - [84] = 84, - [85] = 84, - [86] = 86, - [87] = 86, - [88] = 88, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 92, - [94] = 94, - [95] = 92, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 81, - [100] = 80, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 104, - [105] = 105, - [106] = 106, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 122, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 130, - [131] = 131, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 139, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 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, - [194] = 194, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 201, - [202] = 202, - [203] = 203, - [204] = 204, - [205] = 205, - [206] = 206, - [207] = 207, - [208] = 208, - [209] = 209, - [210] = 210, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 178, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 230, - [231] = 231, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 180, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 259, - [270] = 270, - [271] = 264, - [272] = 256, - [273] = 273, - [274] = 257, - [275] = 260, - [276] = 262, - [277] = 266, - [278] = 261, - [279] = 270, - [280] = 265, - [281] = 258, - [282] = 273, - [283] = 267, - [284] = 263, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 293, - [298] = 289, - [299] = 287, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 285, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 304, - [312] = 312, - [313] = 309, - [314] = 303, - [315] = 315, - [316] = 316, - [317] = 315, - [318] = 318, - [319] = 319, - [320] = 302, - [321] = 321, - [322] = 310, - [323] = 323, - [324] = 324, - [325] = 307, - [326] = 326, - [327] = 295, - [328] = 312, - [329] = 316, - [330] = 294, - [331] = 318, - [332] = 296, - [333] = 326, - [334] = 300, - [335] = 335, - [336] = 288, - [337] = 337, - [338] = 338, - [339] = 339, - [340] = 323, - [341] = 319, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 360, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 355, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 365, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 376, - [391] = 391, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 198, - [400] = 237, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 405, - [491] = 413, - [492] = 412, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 424, - [526] = 526, - [527] = 423, - [528] = 407, - [529] = 408, - [530] = 530, - [531] = 391, - [532] = 392, - [533] = 380, - [534] = 378, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 524, - [539] = 539, - [540] = 536, - [541] = 541, - [542] = 438, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 514, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 428, - [552] = 436, - [553] = 553, - [554] = 554, - [555] = 435, - [556] = 526, - [557] = 557, - [558] = 517, - [559] = 541, - [560] = 513, - [561] = 561, - [562] = 520, - [563] = 563, - [564] = 564, - [565] = 521, - [566] = 564, - [567] = 554, - [568] = 568, - [569] = 569, - [570] = 561, - [571] = 539, - [572] = 572, - [573] = 563, - [574] = 574, - [575] = 549, - [576] = 548, - [577] = 544, - [578] = 523, - [579] = 83, - [580] = 512, - [581] = 574, - [582] = 515, - [583] = 522, - [584] = 516, - [585] = 557, - [586] = 518, - [587] = 519, - [588] = 426, - [589] = 589, - [590] = 465, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 603, - [615] = 609, - [616] = 616, - [617] = 610, - [618] = 618, - [619] = 619, - [620] = 607, - [621] = 621, - [622] = 618, - [623] = 623, - [624] = 606, - [625] = 625, - [626] = 626, - [627] = 619, - [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 397, - [634] = 401, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 407, - [640] = 408, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 409, - [647] = 410, - [648] = 402, - [649] = 392, - [650] = 644, - [651] = 651, - [652] = 652, - [653] = 391, - [654] = 645, - [655] = 655, - [656] = 404, - [657] = 657, - [658] = 398, - [659] = 414, - [660] = 660, - [661] = 417, - [662] = 411, - [663] = 418, - [664] = 664, - [665] = 403, - [666] = 666, - [667] = 436, - [668] = 428, - [669] = 406, - [670] = 670, - [671] = 671, - [672] = 415, - [673] = 435, - [674] = 426, - [675] = 671, - [676] = 416, - [677] = 438, - [678] = 384, - [679] = 679, - [680] = 680, - [681] = 679, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 385, - [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 693, - [696] = 696, - [697] = 697, - [698] = 697, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 696, - [705] = 702, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 402, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 719, - [721] = 721, - [722] = 722, - [723] = 723, - [724] = 721, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 722, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 386, - [735] = 383, - [736] = 406, - [737] = 733, - [738] = 388, - [739] = 387, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 743, - [750] = 750, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 754, - [757] = 757, - [758] = 758, - [759] = 432, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 666, - [791] = 780, - [792] = 777, - [793] = 793, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 787, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 786, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 785, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 779, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 863, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 885, - [886] = 863, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 887, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 891, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 889, - [949] = 949, - [950] = 926, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 956, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 973, - [974] = 953, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 965, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 993, - [994] = 991, - [995] = 995, - [996] = 996, - [997] = 997, - [998] = 976, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 964, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 989, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 976, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 999, - [1022] = 1022, - [1023] = 1023, - [1024] = 951, - [1025] = 1025, - [1026] = 1026, - [1027] = 1022, - [1028] = 1007, - [1029] = 1029, - [1030] = 979, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 925, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 999, - [1048] = 982, - [1049] = 959, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 245, - [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 1147, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1089, - [1154] = 1154, - [1155] = 1071, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1180, - [1200] = 1185, - [1201] = 1185, - [1202] = 1183, - [1203] = 1180, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1189, - [1212] = 1212, - [1213] = 1191, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1183, - [1235] = 1235, - [1236] = 1236, - [1237] = 1237, - [1238] = 1197, - [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 1242, - [1243] = 1188, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1218, - [1248] = 1248, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1256, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, -}; - static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 6656 ? (c < 2979 @@ -8146,9 +6922,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [74] = {.lex_state = 60}, [75] = {.lex_state = 59}, [76] = {.lex_state = 59}, - [77] = {.lex_state = 60}, + [77] = {.lex_state = 59}, [78] = {.lex_state = 60}, - [79] = {.lex_state = 59}, + [79] = {.lex_state = 60}, [80] = {.lex_state = 60}, [81] = {.lex_state = 60}, [82] = {.lex_state = 60}, @@ -8167,10 +6943,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [95] = {.lex_state = 3}, [96] = {.lex_state = 3}, [97] = {.lex_state = 3}, - [98] = {.lex_state = 3}, + [98] = {.lex_state = 60}, [99] = {.lex_state = 60}, [100] = {.lex_state = 60}, - [101] = {.lex_state = 60}, + [101] = {.lex_state = 3}, [102] = {.lex_state = 3}, [103] = {.lex_state = 60}, [104] = {.lex_state = 60}, @@ -8183,8 +6959,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [111] = {.lex_state = 60}, [112] = {.lex_state = 60}, [113] = {.lex_state = 60}, - [114] = {.lex_state = 3}, - [115] = {.lex_state = 3}, + [114] = {.lex_state = 60}, + [115] = {.lex_state = 60}, [116] = {.lex_state = 60}, [117] = {.lex_state = 60}, [118] = {.lex_state = 60}, @@ -8195,8 +6971,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [123] = {.lex_state = 60}, [124] = {.lex_state = 60}, [125] = {.lex_state = 60}, - [126] = {.lex_state = 3}, - [127] = {.lex_state = 60}, + [126] = {.lex_state = 60}, + [127] = {.lex_state = 3}, [128] = {.lex_state = 60}, [129] = {.lex_state = 60}, [130] = {.lex_state = 60}, @@ -8221,7 +6997,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [149] = {.lex_state = 60}, [150] = {.lex_state = 60}, [151] = {.lex_state = 60}, - [152] = {.lex_state = 3}, + [152] = {.lex_state = 60}, [153] = {.lex_state = 60}, [154] = {.lex_state = 60}, [155] = {.lex_state = 60}, @@ -8232,24 +7008,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [160] = {.lex_state = 60}, [161] = {.lex_state = 60}, [162] = {.lex_state = 60}, - [163] = {.lex_state = 3}, + [163] = {.lex_state = 60}, [164] = {.lex_state = 60}, [165] = {.lex_state = 60}, - [166] = {.lex_state = 60}, + [166] = {.lex_state = 3}, [167] = {.lex_state = 60}, [168] = {.lex_state = 60}, [169] = {.lex_state = 60}, [170] = {.lex_state = 60}, [171] = {.lex_state = 60}, - [172] = {.lex_state = 60}, + [172] = {.lex_state = 3}, [173] = {.lex_state = 60}, - [174] = {.lex_state = 60}, + [174] = {.lex_state = 3}, [175] = {.lex_state = 60}, [176] = {.lex_state = 60}, [177] = {.lex_state = 60}, [178] = {.lex_state = 3}, [179] = {.lex_state = 60}, - [180] = {.lex_state = 3}, + [180] = {.lex_state = 60}, [181] = {.lex_state = 60}, [182] = {.lex_state = 60}, [183] = {.lex_state = 60}, @@ -8265,14 +7041,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [193] = {.lex_state = 60}, [194] = {.lex_state = 60}, [195] = {.lex_state = 60}, - [196] = {.lex_state = 3}, + [196] = {.lex_state = 60}, [197] = {.lex_state = 60}, [198] = {.lex_state = 60}, [199] = {.lex_state = 60}, [200] = {.lex_state = 60}, [201] = {.lex_state = 60}, - [202] = {.lex_state = 60}, - [203] = {.lex_state = 60}, + [202] = {.lex_state = 3}, + [203] = {.lex_state = 3}, [204] = {.lex_state = 60}, [205] = {.lex_state = 60}, [206] = {.lex_state = 60}, @@ -8283,18 +7059,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 60}, [212] = {.lex_state = 60}, [213] = {.lex_state = 60}, - [214] = {.lex_state = 3}, + [214] = {.lex_state = 60}, [215] = {.lex_state = 60}, [216] = {.lex_state = 60}, [217] = {.lex_state = 60}, - [218] = {.lex_state = 60}, + [218] = {.lex_state = 3}, [219] = {.lex_state = 60}, [220] = {.lex_state = 60}, - [221] = {.lex_state = 60}, + [221] = {.lex_state = 3}, [222] = {.lex_state = 60}, [223] = {.lex_state = 60}, [224] = {.lex_state = 60}, - [225] = {.lex_state = 60}, + [225] = {.lex_state = 3}, [226] = {.lex_state = 60}, [227] = {.lex_state = 60}, [228] = {.lex_state = 60}, @@ -8304,7 +7080,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [232] = {.lex_state = 60}, [233] = {.lex_state = 60}, [234] = {.lex_state = 60}, - [235] = {.lex_state = 3}, + [235] = {.lex_state = 60}, [236] = {.lex_state = 60}, [237] = {.lex_state = 60}, [238] = {.lex_state = 60}, @@ -8317,17 +7093,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [245] = {.lex_state = 60}, [246] = {.lex_state = 60}, [247] = {.lex_state = 60}, - [248] = {.lex_state = 3}, + [248] = {.lex_state = 60}, [249] = {.lex_state = 60}, [250] = {.lex_state = 60}, [251] = {.lex_state = 60}, [252] = {.lex_state = 60}, [253] = {.lex_state = 60}, [254] = {.lex_state = 60}, - [255] = {.lex_state = 3}, - [256] = {.lex_state = 3}, + [255] = {.lex_state = 60}, + [256] = {.lex_state = 60}, [257] = {.lex_state = 3}, - [258] = {.lex_state = 3}, + [258] = {.lex_state = 60}, [259] = {.lex_state = 3}, [260] = {.lex_state = 3}, [261] = {.lex_state = 3}, @@ -8391,9 +7167,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [319] = {.lex_state = 3}, [320] = {.lex_state = 3}, [321] = {.lex_state = 3}, - [322] = {.lex_state = 3}, + [322] = {.lex_state = 60}, [323] = {.lex_state = 3}, - [324] = {.lex_state = 60}, + [324] = {.lex_state = 3}, [325] = {.lex_state = 3}, [326] = {.lex_state = 3}, [327] = {.lex_state = 3}, @@ -8411,33 +7187,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [339] = {.lex_state = 3}, [340] = {.lex_state = 3}, [341] = {.lex_state = 3}, - [342] = {.lex_state = 60}, - [343] = {.lex_state = 60}, - [344] = {.lex_state = 60}, - [345] = {.lex_state = 60}, + [342] = {.lex_state = 3}, + [343] = {.lex_state = 3}, + [344] = {.lex_state = 3}, + [345] = {.lex_state = 3}, [346] = {.lex_state = 4}, - [347] = {.lex_state = 4}, + [347] = {.lex_state = 60}, [348] = {.lex_state = 4}, - [349] = {.lex_state = 4}, - [350] = {.lex_state = 0}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 0}, - [353] = {.lex_state = 0}, + [349] = {.lex_state = 60}, + [350] = {.lex_state = 60}, + [351] = {.lex_state = 60}, + [352] = {.lex_state = 4}, + [353] = {.lex_state = 4}, [354] = {.lex_state = 0}, - [355] = {.lex_state = 5}, + [355] = {.lex_state = 0}, [356] = {.lex_state = 0}, [357] = {.lex_state = 0}, [358] = {.lex_state = 0}, - [359] = {.lex_state = 5}, - [360] = {.lex_state = 5}, - [361] = {.lex_state = 5}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 0}, - [364] = {.lex_state = 0}, + [359] = {.lex_state = 0}, + [360] = {.lex_state = 0}, + [361] = {.lex_state = 0}, + [362] = {.lex_state = 5}, + [363] = {.lex_state = 5}, + [364] = {.lex_state = 5}, [365] = {.lex_state = 5}, - [366] = {.lex_state = 5}, - [367] = {.lex_state = 5}, - [368] = {.lex_state = 5}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 0}, [369] = {.lex_state = 5}, [370] = {.lex_state = 5}, [371] = {.lex_state = 5}, @@ -8447,86 +7223,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [375] = {.lex_state = 5}, [376] = {.lex_state = 5}, [377] = {.lex_state = 5}, - [378] = {.lex_state = 6}, + [378] = {.lex_state = 5}, [379] = {.lex_state = 5}, - [380] = {.lex_state = 6}, + [380] = {.lex_state = 5}, [381] = {.lex_state = 5}, - [382] = {.lex_state = 5}, - [383] = {.lex_state = 6}, - [384] = {.lex_state = 3}, - [385] = {.lex_state = 3}, + [382] = {.lex_state = 6}, + [383] = {.lex_state = 5}, + [384] = {.lex_state = 5}, + [385] = {.lex_state = 5}, [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 6}, - [389] = {.lex_state = 4}, - [390] = {.lex_state = 5}, - [391] = {.lex_state = 14}, - [392] = {.lex_state = 14}, - [393] = {.lex_state = 6}, + [387] = {.lex_state = 3}, + [388] = {.lex_state = 3}, + [389] = {.lex_state = 6}, + [390] = {.lex_state = 6}, + [391] = {.lex_state = 6}, + [392] = {.lex_state = 6}, + [393] = {.lex_state = 5}, [394] = {.lex_state = 4}, - [395] = {.lex_state = 4}, - [396] = {.lex_state = 4}, + [395] = {.lex_state = 14}, + [396] = {.lex_state = 14}, [397] = {.lex_state = 6}, - [398] = {.lex_state = 6}, + [398] = {.lex_state = 4}, [399] = {.lex_state = 3}, - [400] = {.lex_state = 3}, - [401] = {.lex_state = 6}, + [400] = {.lex_state = 6}, + [401] = {.lex_state = 3}, [402] = {.lex_state = 6}, [403] = {.lex_state = 6}, - [404] = {.lex_state = 6}, - [405] = {.lex_state = 6}, + [404] = {.lex_state = 4}, + [405] = {.lex_state = 4}, [406] = {.lex_state = 6}, - [407] = {.lex_state = 14}, - [408] = {.lex_state = 14}, + [407] = {.lex_state = 6}, + [408] = {.lex_state = 6}, [409] = {.lex_state = 6}, - [410] = {.lex_state = 6}, + [410] = {.lex_state = 14}, [411] = {.lex_state = 6}, [412] = {.lex_state = 6}, [413] = {.lex_state = 6}, [414] = {.lex_state = 6}, - [415] = {.lex_state = 3}, - [416] = {.lex_state = 3}, - [417] = {.lex_state = 3}, - [418] = {.lex_state = 3}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 6}, - [421] = {.lex_state = 6}, - [422] = {.lex_state = 6}, + [415] = {.lex_state = 6}, + [416] = {.lex_state = 6}, + [417] = {.lex_state = 6}, + [418] = {.lex_state = 14}, + [419] = {.lex_state = 3}, + [420] = {.lex_state = 3}, + [421] = {.lex_state = 3}, + [422] = {.lex_state = 3}, [423] = {.lex_state = 0}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 0}, - [426] = {.lex_state = 0}, - [427] = {.lex_state = 6}, - [428] = {.lex_state = 0}, + [424] = {.lex_state = 6}, + [425] = {.lex_state = 6}, + [426] = {.lex_state = 6}, + [427] = {.lex_state = 0}, + [428] = {.lex_state = 6}, [429] = {.lex_state = 0}, - [430] = {.lex_state = 0}, - [431] = {.lex_state = 6}, - [432] = {.lex_state = 3}, - [433] = {.lex_state = 0}, + [430] = {.lex_state = 6}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 0}, + [433] = {.lex_state = 3}, [434] = {.lex_state = 0}, [435] = {.lex_state = 0}, [436] = {.lex_state = 0}, - [437] = {.lex_state = 0}, + [437] = {.lex_state = 6}, [438] = {.lex_state = 0}, - [439] = {.lex_state = 0}, - [440] = {.lex_state = 0}, + [439] = {.lex_state = 6}, + [440] = {.lex_state = 3}, [441] = {.lex_state = 0}, - [442] = {.lex_state = 3}, - [443] = {.lex_state = 6}, - [444] = {.lex_state = 6}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 0}, + [444] = {.lex_state = 0}, [445] = {.lex_state = 0}, - [446] = {.lex_state = 0}, + [446] = {.lex_state = 6}, [447] = {.lex_state = 0}, [448] = {.lex_state = 0}, - [449] = {.lex_state = 0}, - [450] = {.lex_state = 6}, - [451] = {.lex_state = 6}, - [452] = {.lex_state = 6}, - [453] = {.lex_state = 6}, - [454] = {.lex_state = 6}, + [449] = {.lex_state = 3}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 0}, + [452] = {.lex_state = 0}, + [453] = {.lex_state = 0}, + [454] = {.lex_state = 0}, [455] = {.lex_state = 6}, - [456] = {.lex_state = 6}, - [457] = {.lex_state = 6}, + [456] = {.lex_state = 0}, + [457] = {.lex_state = 0}, [458] = {.lex_state = 6}, [459] = {.lex_state = 6}, [460] = {.lex_state = 6}, @@ -8534,18 +7310,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [462] = {.lex_state = 6}, [463] = {.lex_state = 6}, [464] = {.lex_state = 6}, - [465] = {.lex_state = 0}, + [465] = {.lex_state = 6}, [466] = {.lex_state = 6}, - [467] = {.lex_state = 6}, - [468] = {.lex_state = 6}, + [467] = {.lex_state = 0}, + [468] = {.lex_state = 0}, [469] = {.lex_state = 6}, - [470] = {.lex_state = 0}, + [470] = {.lex_state = 6}, [471] = {.lex_state = 6}, [472] = {.lex_state = 6}, [473] = {.lex_state = 6}, [474] = {.lex_state = 6}, [475] = {.lex_state = 6}, - [476] = {.lex_state = 6}, + [476] = {.lex_state = 0}, [477] = {.lex_state = 6}, [478] = {.lex_state = 6}, [479] = {.lex_state = 6}, @@ -8556,80 +7332,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 6}, [485] = {.lex_state = 6}, [486] = {.lex_state = 6}, - [487] = {.lex_state = 0}, - [488] = {.lex_state = 0}, - [489] = {.lex_state = 0}, - [490] = {.lex_state = 12}, - [491] = {.lex_state = 12}, - [492] = {.lex_state = 12}, - [493] = {.lex_state = 0}, - [494] = {.lex_state = 3}, - [495] = {.lex_state = 3}, - [496] = {.lex_state = 3}, - [497] = {.lex_state = 3}, - [498] = {.lex_state = 0}, - [499] = {.lex_state = 3}, - [500] = {.lex_state = 3}, + [487] = {.lex_state = 6}, + [488] = {.lex_state = 6}, + [489] = {.lex_state = 6}, + [490] = {.lex_state = 6}, + [491] = {.lex_state = 0}, + [492] = {.lex_state = 6}, + [493] = {.lex_state = 6}, + [494] = {.lex_state = 6}, + [495] = {.lex_state = 6}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 12}, + [498] = {.lex_state = 12}, + [499] = {.lex_state = 12}, + [500] = {.lex_state = 0}, [501] = {.lex_state = 3}, [502] = {.lex_state = 3}, - [503] = {.lex_state = 0}, - [504] = {.lex_state = 0}, - [505] = {.lex_state = 0}, + [503] = {.lex_state = 3}, + [504] = {.lex_state = 3}, + [505] = {.lex_state = 3}, [506] = {.lex_state = 3}, - [507] = {.lex_state = 0}, + [507] = {.lex_state = 3}, [508] = {.lex_state = 3}, - [509] = {.lex_state = 3}, - [510] = {.lex_state = 0}, + [509] = {.lex_state = 0}, + [510] = {.lex_state = 3}, [511] = {.lex_state = 0}, - [512] = {.lex_state = 3}, - [513] = {.lex_state = 3}, - [514] = {.lex_state = 3}, + [512] = {.lex_state = 0}, + [513] = {.lex_state = 0}, + [514] = {.lex_state = 0}, [515] = {.lex_state = 3}, [516] = {.lex_state = 3}, - [517] = {.lex_state = 3}, - [518] = {.lex_state = 3}, + [517] = {.lex_state = 0}, + [518] = {.lex_state = 0}, [519] = {.lex_state = 3}, [520] = {.lex_state = 3}, [521] = {.lex_state = 3}, - [522] = {.lex_state = 3}, + [522] = {.lex_state = 15}, [523] = {.lex_state = 3}, [524] = {.lex_state = 3}, - [525] = {.lex_state = 4}, - [526] = {.lex_state = 3}, - [527] = {.lex_state = 4}, - [528] = {.lex_state = 15}, - [529] = {.lex_state = 15}, - [530] = {.lex_state = 6}, - [531] = {.lex_state = 15}, - [532] = {.lex_state = 15}, - [533] = {.lex_state = 12}, - [534] = {.lex_state = 12}, - [535] = {.lex_state = 6}, + [525] = {.lex_state = 3}, + [526] = {.lex_state = 6}, + [527] = {.lex_state = 3}, + [528] = {.lex_state = 4}, + [529] = {.lex_state = 3}, + [530] = {.lex_state = 3}, + [531] = {.lex_state = 3}, + [532] = {.lex_state = 3}, + [533] = {.lex_state = 3}, + [534] = {.lex_state = 3}, + [535] = {.lex_state = 3}, [536] = {.lex_state = 3}, [537] = {.lex_state = 3}, - [538] = {.lex_state = 3}, - [539] = {.lex_state = 12}, - [540] = {.lex_state = 3}, - [541] = {.lex_state = 3}, - [542] = {.lex_state = 4}, - [543] = {.lex_state = 3}, + [538] = {.lex_state = 4}, + [539] = {.lex_state = 15}, + [540] = {.lex_state = 12}, + [541] = {.lex_state = 12}, + [542] = {.lex_state = 15}, + [543] = {.lex_state = 15}, [544] = {.lex_state = 3}, - [545] = {.lex_state = 4}, - [546] = {.lex_state = 3}, + [545] = {.lex_state = 3}, + [546] = {.lex_state = 6}, [547] = {.lex_state = 3}, [548] = {.lex_state = 3}, - [549] = {.lex_state = 3}, - [550] = {.lex_state = 4}, - [551] = {.lex_state = 4}, - [552] = {.lex_state = 4}, - [553] = {.lex_state = 4}, + [549] = {.lex_state = 4}, + [550] = {.lex_state = 3}, + [551] = {.lex_state = 3}, + [552] = {.lex_state = 3}, + [553] = {.lex_state = 3}, [554] = {.lex_state = 3}, - [555] = {.lex_state = 4}, + [555] = {.lex_state = 3}, [556] = {.lex_state = 3}, - [557] = {.lex_state = 3}, - [558] = {.lex_state = 3}, + [557] = {.lex_state = 12}, + [558] = {.lex_state = 4}, [559] = {.lex_state = 3}, - [560] = {.lex_state = 3}, + [560] = {.lex_state = 4}, [561] = {.lex_state = 3}, [562] = {.lex_state = 3}, [563] = {.lex_state = 3}, @@ -8637,45 +7413,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [565] = {.lex_state = 3}, [566] = {.lex_state = 3}, [567] = {.lex_state = 3}, - [568] = {.lex_state = 4}, + [568] = {.lex_state = 3}, [569] = {.lex_state = 3}, [570] = {.lex_state = 3}, - [571] = {.lex_state = 12}, - [572] = {.lex_state = 4}, + [571] = {.lex_state = 3}, + [572] = {.lex_state = 3}, [573] = {.lex_state = 3}, [574] = {.lex_state = 3}, [575] = {.lex_state = 3}, [576] = {.lex_state = 3}, - [577] = {.lex_state = 3}, + [577] = {.lex_state = 4}, [578] = {.lex_state = 3}, - [579] = {.lex_state = 3}, - [580] = {.lex_state = 3}, + [579] = {.lex_state = 4}, + [580] = {.lex_state = 4}, [581] = {.lex_state = 3}, [582] = {.lex_state = 3}, [583] = {.lex_state = 3}, [584] = {.lex_state = 3}, [585] = {.lex_state = 3}, - [586] = {.lex_state = 3}, + [586] = {.lex_state = 4}, [587] = {.lex_state = 3}, [588] = {.lex_state = 4}, [589] = {.lex_state = 3}, - [590] = {.lex_state = 4}, - [591] = {.lex_state = 3}, + [590] = {.lex_state = 3}, + [591] = {.lex_state = 4}, [592] = {.lex_state = 4}, [593] = {.lex_state = 3}, [594] = {.lex_state = 3}, - [595] = {.lex_state = 3}, + [595] = {.lex_state = 12}, [596] = {.lex_state = 3}, - [597] = {.lex_state = 4}, - [598] = {.lex_state = 3}, - [599] = {.lex_state = 22}, + [597] = {.lex_state = 3}, + [598] = {.lex_state = 4}, + [599] = {.lex_state = 4}, [600] = {.lex_state = 3}, [601] = {.lex_state = 3}, [602] = {.lex_state = 3}, [603] = {.lex_state = 3}, - [604] = {.lex_state = 3}, + [604] = {.lex_state = 22}, [605] = {.lex_state = 3}, - [606] = {.lex_state = 3}, + [606] = {.lex_state = 4}, [607] = {.lex_state = 3}, [608] = {.lex_state = 3}, [609] = {.lex_state = 3}, @@ -8695,178 +7471,178 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [623] = {.lex_state = 3}, [624] = {.lex_state = 3}, [625] = {.lex_state = 3}, - [626] = {.lex_state = 3}, + [626] = {.lex_state = 22}, [627] = {.lex_state = 3}, [628] = {.lex_state = 3}, [629] = {.lex_state = 3}, [630] = {.lex_state = 3}, [631] = {.lex_state = 3}, [632] = {.lex_state = 3}, - [633] = {.lex_state = 12}, - [634] = {.lex_state = 12}, - [635] = {.lex_state = 22}, + [633] = {.lex_state = 3}, + [634] = {.lex_state = 3}, + [635] = {.lex_state = 3}, [636] = {.lex_state = 3}, [637] = {.lex_state = 3}, [638] = {.lex_state = 3}, - [639] = {.lex_state = 5}, - [640] = {.lex_state = 5}, - [641] = {.lex_state = 4}, + [639] = {.lex_state = 3}, + [640] = {.lex_state = 3}, + [641] = {.lex_state = 12}, [642] = {.lex_state = 3}, [643] = {.lex_state = 3}, [644] = {.lex_state = 3}, [645] = {.lex_state = 3}, [646] = {.lex_state = 12}, - [647] = {.lex_state = 12}, - [648] = {.lex_state = 12}, - [649] = {.lex_state = 5}, + [647] = {.lex_state = 3}, + [648] = {.lex_state = 3}, + [649] = {.lex_state = 4}, [650] = {.lex_state = 3}, - [651] = {.lex_state = 3}, - [652] = {.lex_state = 3}, - [653] = {.lex_state = 5}, - [654] = {.lex_state = 3}, + [651] = {.lex_state = 5}, + [652] = {.lex_state = 5}, + [653] = {.lex_state = 3}, + [654] = {.lex_state = 12}, [655] = {.lex_state = 22}, [656] = {.lex_state = 12}, - [657] = {.lex_state = 3}, + [657] = {.lex_state = 12}, [658] = {.lex_state = 12}, - [659] = {.lex_state = 12}, - [660] = {.lex_state = 3}, - [661] = {.lex_state = 12}, - [662] = {.lex_state = 12}, - [663] = {.lex_state = 12}, - [664] = {.lex_state = 22}, - [665] = {.lex_state = 12}, - [666] = {.lex_state = 3}, + [659] = {.lex_state = 3}, + [660] = {.lex_state = 12}, + [661] = {.lex_state = 3}, + [662] = {.lex_state = 3}, + [663] = {.lex_state = 3}, + [664] = {.lex_state = 3}, + [665] = {.lex_state = 3}, + [666] = {.lex_state = 12}, [667] = {.lex_state = 3}, - [668] = {.lex_state = 3}, - [669] = {.lex_state = 12}, - [670] = {.lex_state = 5}, - [671] = {.lex_state = 3}, + [668] = {.lex_state = 5}, + [669] = {.lex_state = 5}, + [670] = {.lex_state = 3}, + [671] = {.lex_state = 12}, [672] = {.lex_state = 12}, - [673] = {.lex_state = 3}, - [674] = {.lex_state = 3}, - [675] = {.lex_state = 3}, - [676] = {.lex_state = 12}, - [677] = {.lex_state = 3}, - [678] = {.lex_state = 12}, - [679] = {.lex_state = 5}, + [673] = {.lex_state = 22}, + [674] = {.lex_state = 12}, + [675] = {.lex_state = 12}, + [676] = {.lex_state = 3}, + [677] = {.lex_state = 12}, + [678] = {.lex_state = 3}, + [679] = {.lex_state = 3}, [680] = {.lex_state = 3}, - [681] = {.lex_state = 5}, - [682] = {.lex_state = 5}, - [683] = {.lex_state = 3}, - [684] = {.lex_state = 3}, - [685] = {.lex_state = 3}, - [686] = {.lex_state = 12}, + [681] = {.lex_state = 3}, + [682] = {.lex_state = 3}, + [683] = {.lex_state = 5}, + [684] = {.lex_state = 12}, + [685] = {.lex_state = 12}, + [686] = {.lex_state = 3}, [687] = {.lex_state = 3}, - [688] = {.lex_state = 3}, + [688] = {.lex_state = 5}, [689] = {.lex_state = 3}, - [690] = {.lex_state = 3}, - [691] = {.lex_state = 3}, - [692] = {.lex_state = 3}, - [693] = {.lex_state = 3}, + [690] = {.lex_state = 5}, + [691] = {.lex_state = 12}, + [692] = {.lex_state = 5}, + [693] = {.lex_state = 12}, [694] = {.lex_state = 3}, [695] = {.lex_state = 3}, - [696] = {.lex_state = 5}, + [696] = {.lex_state = 3}, [697] = {.lex_state = 3}, [698] = {.lex_state = 3}, [699] = {.lex_state = 3}, [700] = {.lex_state = 3}, - [701] = {.lex_state = 5}, - [702] = {.lex_state = 5}, + [701] = {.lex_state = 3}, + [702] = {.lex_state = 3}, [703] = {.lex_state = 3}, - [704] = {.lex_state = 5}, - [705] = {.lex_state = 5}, - [706] = {.lex_state = 3}, - [707] = {.lex_state = 3}, + [704] = {.lex_state = 3}, + [705] = {.lex_state = 3}, + [706] = {.lex_state = 5}, + [707] = {.lex_state = 5}, [708] = {.lex_state = 5}, - [709] = {.lex_state = 5}, + [709] = {.lex_state = 3}, [710] = {.lex_state = 3}, [711] = {.lex_state = 3}, [712] = {.lex_state = 3}, [713] = {.lex_state = 3}, - [714] = {.lex_state = 3}, - [715] = {.lex_state = 4}, - [716] = {.lex_state = 3}, - [717] = {.lex_state = 4}, - [718] = {.lex_state = 3}, - [719] = {.lex_state = 5}, - [720] = {.lex_state = 5}, - [721] = {.lex_state = 5}, + [714] = {.lex_state = 5}, + [715] = {.lex_state = 3}, + [716] = {.lex_state = 5}, + [717] = {.lex_state = 3}, + [718] = {.lex_state = 5}, + [719] = {.lex_state = 3}, + [720] = {.lex_state = 3}, + [721] = {.lex_state = 3}, [722] = {.lex_state = 5}, [723] = {.lex_state = 3}, [724] = {.lex_state = 5}, - [725] = {.lex_state = 3}, - [726] = {.lex_state = 3}, + [725] = {.lex_state = 4}, + [726] = {.lex_state = 5}, [727] = {.lex_state = 3}, [728] = {.lex_state = 5}, - [729] = {.lex_state = 4}, - [730] = {.lex_state = 3}, - [731] = {.lex_state = 4}, - [732] = {.lex_state = 4}, - [733] = {.lex_state = 4}, + [729] = {.lex_state = 3}, + [730] = {.lex_state = 4}, + [731] = {.lex_state = 3}, + [732] = {.lex_state = 5}, + [733] = {.lex_state = 3}, [734] = {.lex_state = 5}, [735] = {.lex_state = 5}, - [736] = {.lex_state = 5}, - [737] = {.lex_state = 4}, - [738] = {.lex_state = 5}, - [739] = {.lex_state = 5}, + [736] = {.lex_state = 3}, + [737] = {.lex_state = 5}, + [738] = {.lex_state = 3}, + [739] = {.lex_state = 4}, [740] = {.lex_state = 4}, - [741] = {.lex_state = 5}, - [742] = {.lex_state = 3}, - [743] = {.lex_state = 5}, + [741] = {.lex_state = 3}, + [742] = {.lex_state = 5}, + [743] = {.lex_state = 3}, [744] = {.lex_state = 5}, [745] = {.lex_state = 5}, - [746] = {.lex_state = 3}, - [747] = {.lex_state = 3}, - [748] = {.lex_state = 3}, + [746] = {.lex_state = 4}, + [747] = {.lex_state = 5}, + [748] = {.lex_state = 4}, [749] = {.lex_state = 5}, - [750] = {.lex_state = 3}, - [751] = {.lex_state = 3}, - [752] = {.lex_state = 3}, - [753] = {.lex_state = 3}, - [754] = {.lex_state = 4}, + [750] = {.lex_state = 4}, + [751] = {.lex_state = 5}, + [752] = {.lex_state = 4}, + [753] = {.lex_state = 5}, + [754] = {.lex_state = 3}, [755] = {.lex_state = 5}, - [756] = {.lex_state = 4}, + [756] = {.lex_state = 5}, [757] = {.lex_state = 3}, [758] = {.lex_state = 3}, - [759] = {.lex_state = 12}, - [760] = {.lex_state = 3}, - [761] = {.lex_state = 3}, - [762] = {.lex_state = 3}, + [759] = {.lex_state = 3}, + [760] = {.lex_state = 5}, + [761] = {.lex_state = 5}, + [762] = {.lex_state = 4}, [763] = {.lex_state = 3}, [764] = {.lex_state = 3}, - [765] = {.lex_state = 3}, + [765] = {.lex_state = 4}, [766] = {.lex_state = 3}, [767] = {.lex_state = 3}, [768] = {.lex_state = 3}, [769] = {.lex_state = 3}, - [770] = {.lex_state = 0}, + [770] = {.lex_state = 12}, [771] = {.lex_state = 3}, - [772] = {.lex_state = 0}, + [772] = {.lex_state = 3}, [773] = {.lex_state = 3}, [774] = {.lex_state = 3}, [775] = {.lex_state = 3}, [776] = {.lex_state = 3}, [777] = {.lex_state = 3}, [778] = {.lex_state = 3}, - [779] = {.lex_state = 4}, + [779] = {.lex_state = 3}, [780] = {.lex_state = 3}, [781] = {.lex_state = 3}, - [782] = {.lex_state = 3}, + [782] = {.lex_state = 0}, [783] = {.lex_state = 3}, - [784] = {.lex_state = 3}, - [785] = {.lex_state = 4}, + [784] = {.lex_state = 0}, + [785] = {.lex_state = 3}, [786] = {.lex_state = 3}, [787] = {.lex_state = 3}, [788] = {.lex_state = 3}, [789] = {.lex_state = 3}, [790] = {.lex_state = 4}, - [791] = {.lex_state = 3}, + [791] = {.lex_state = 4}, [792] = {.lex_state = 3}, [793] = {.lex_state = 3}, [794] = {.lex_state = 3}, - [795] = {.lex_state = 3}, + [795] = {.lex_state = 4}, [796] = {.lex_state = 3}, - [797] = {.lex_state = 4}, + [797] = {.lex_state = 3}, [798] = {.lex_state = 3}, [799] = {.lex_state = 3}, [800] = {.lex_state = 3}, @@ -8887,20 +7663,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [815] = {.lex_state = 3}, [816] = {.lex_state = 3}, [817] = {.lex_state = 3}, - [818] = {.lex_state = 3}, + [818] = {.lex_state = 4}, [819] = {.lex_state = 3}, [820] = {.lex_state = 3}, [821] = {.lex_state = 3}, [822] = {.lex_state = 3}, [823] = {.lex_state = 3}, - [824] = {.lex_state = 3}, - [825] = {.lex_state = 4}, + [824] = {.lex_state = 4}, + [825] = {.lex_state = 3}, [826] = {.lex_state = 3}, [827] = {.lex_state = 3}, [828] = {.lex_state = 3}, [829] = {.lex_state = 3}, [830] = {.lex_state = 3}, - [831] = {.lex_state = 4}, + [831] = {.lex_state = 3}, [832] = {.lex_state = 3}, [833] = {.lex_state = 3}, [834] = {.lex_state = 3}, @@ -8917,135 +7693,135 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [845] = {.lex_state = 3}, [846] = {.lex_state = 3}, [847] = {.lex_state = 3}, - [848] = {.lex_state = 0}, + [848] = {.lex_state = 3}, [849] = {.lex_state = 3}, - [850] = {.lex_state = 3}, + [850] = {.lex_state = 4}, [851] = {.lex_state = 3}, - [852] = {.lex_state = 5}, - [853] = {.lex_state = 5}, - [854] = {.lex_state = 0}, + [852] = {.lex_state = 3}, + [853] = {.lex_state = 3}, + [854] = {.lex_state = 3}, [855] = {.lex_state = 3}, [856] = {.lex_state = 3}, [857] = {.lex_state = 3}, [858] = {.lex_state = 3}, [859] = {.lex_state = 3}, - [860] = {.lex_state = 3}, + [860] = {.lex_state = 12}, [861] = {.lex_state = 3}, - [862] = {.lex_state = 12}, + [862] = {.lex_state = 3}, [863] = {.lex_state = 3}, [864] = {.lex_state = 3}, - [865] = {.lex_state = 0}, + [865] = {.lex_state = 5}, [866] = {.lex_state = 3}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 3}, - [869] = {.lex_state = 5}, + [867] = {.lex_state = 3}, + [868] = {.lex_state = 5}, + [869] = {.lex_state = 3}, [870] = {.lex_state = 3}, - [871] = {.lex_state = 3}, - [872] = {.lex_state = 3}, + [871] = {.lex_state = 5}, + [872] = {.lex_state = 5}, [873] = {.lex_state = 3}, [874] = {.lex_state = 3}, - [875] = {.lex_state = 3}, + [875] = {.lex_state = 5}, [876] = {.lex_state = 3}, - [877] = {.lex_state = 3}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 5}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 12}, + [879] = {.lex_state = 3}, [880] = {.lex_state = 3}, [881] = {.lex_state = 0}, - [882] = {.lex_state = 5}, - [883] = {.lex_state = 5}, - [884] = {.lex_state = 12}, - [885] = {.lex_state = 3}, - [886] = {.lex_state = 3}, - [887] = {.lex_state = 0}, + [882] = {.lex_state = 3}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 3}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 3}, [888] = {.lex_state = 3}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 0}, + [889] = {.lex_state = 3}, + [890] = {.lex_state = 3}, + [891] = {.lex_state = 5}, + [892] = {.lex_state = 3}, + [893] = {.lex_state = 3}, [894] = {.lex_state = 3}, - [895] = {.lex_state = 0}, + [895] = {.lex_state = 3}, [896] = {.lex_state = 3}, - [897] = {.lex_state = 5}, - [898] = {.lex_state = 3}, - [899] = {.lex_state = 3}, - [900] = {.lex_state = 5}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 5}, + [899] = {.lex_state = 0}, + [900] = {.lex_state = 4}, [901] = {.lex_state = 5}, - [902] = {.lex_state = 5}, - [903] = {.lex_state = 5}, - [904] = {.lex_state = 5}, - [905] = {.lex_state = 5}, - [906] = {.lex_state = 5}, - [907] = {.lex_state = 5}, - [908] = {.lex_state = 5}, - [909] = {.lex_state = 5}, - [910] = {.lex_state = 5}, - [911] = {.lex_state = 5}, - [912] = {.lex_state = 3}, - [913] = {.lex_state = 0}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 3}, + [907] = {.lex_state = 3}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 3}, + [911] = {.lex_state = 3}, + [912] = {.lex_state = 0}, + [913] = {.lex_state = 12}, [914] = {.lex_state = 3}, - [915] = {.lex_state = 3}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 3}, - [918] = {.lex_state = 3}, - [919] = {.lex_state = 4}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 3}, - [922] = {.lex_state = 3}, - [923] = {.lex_state = 3}, - [924] = {.lex_state = 12}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, + [915] = {.lex_state = 5}, + [916] = {.lex_state = 5}, + [917] = {.lex_state = 5}, + [918] = {.lex_state = 5}, + [919] = {.lex_state = 5}, + [920] = {.lex_state = 5}, + [921] = {.lex_state = 5}, + [922] = {.lex_state = 5}, + [923] = {.lex_state = 5}, + [924] = {.lex_state = 5}, + [925] = {.lex_state = 5}, + [926] = {.lex_state = 12}, [927] = {.lex_state = 3}, - [928] = {.lex_state = 3}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 3}, - [930] = {.lex_state = 4}, - [931] = {.lex_state = 3}, - [932] = {.lex_state = 0}, + [930] = {.lex_state = 3}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 3}, [933] = {.lex_state = 0}, [934] = {.lex_state = 3}, [935] = {.lex_state = 3}, - [936] = {.lex_state = 12}, + [936] = {.lex_state = 3}, [937] = {.lex_state = 3}, [938] = {.lex_state = 3}, [939] = {.lex_state = 3}, - [940] = {.lex_state = 3}, - [941] = {.lex_state = 0}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 3}, [942] = {.lex_state = 3}, [943] = {.lex_state = 4}, - [944] = {.lex_state = 0}, - [945] = {.lex_state = 3}, - [946] = {.lex_state = 0}, + [944] = {.lex_state = 3}, + [945] = {.lex_state = 4}, + [946] = {.lex_state = 3}, [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, [949] = {.lex_state = 3}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 4}, + [950] = {.lex_state = 3}, + [951] = {.lex_state = 3}, [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 5}, - [955] = {.lex_state = 5}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0}, + [954] = {.lex_state = 3}, + [955] = {.lex_state = 3}, + [956] = {.lex_state = 3}, + [957] = {.lex_state = 3}, + [958] = {.lex_state = 3}, [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, - [961] = {.lex_state = 3}, + [961] = {.lex_state = 0}, [962] = {.lex_state = 0}, - [963] = {.lex_state = 5}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, + [963] = {.lex_state = 3}, + [964] = {.lex_state = 3}, + [965] = {.lex_state = 3}, [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, + [968] = {.lex_state = 5}, + [969] = {.lex_state = 4}, + [970] = {.lex_state = 3}, + [971] = {.lex_state = 4}, [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, + [976] = {.lex_state = 3}, [977] = {.lex_state = 0}, [978] = {.lex_state = 0}, [979] = {.lex_state = 0}, @@ -9053,65 +7829,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, - [984] = {.lex_state = 3}, + [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, - [986] = {.lex_state = 3}, + [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 3}, + [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, [992] = {.lex_state = 5}, - [993] = {.lex_state = 5}, + [993] = {.lex_state = 0}, [994] = {.lex_state = 0}, - [995] = {.lex_state = 5}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, + [999] = {.lex_state = 5}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 4}, - [1002] = {.lex_state = 0}, + [1001] = {.lex_state = 3}, + [1002] = {.lex_state = 3}, [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, [1005] = {.lex_state = 5}, - [1006] = {.lex_state = 5}, + [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 5}, + [1010] = {.lex_state = 0}, [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 0}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 5}, [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 5}, - [1016] = {.lex_state = 5}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 0}, + [1015] = {.lex_state = 0}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 5}, + [1018] = {.lex_state = 4}, + [1019] = {.lex_state = 5}, + [1020] = {.lex_state = 5}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 4}, + [1022] = {.lex_state = 0}, [1023] = {.lex_state = 3}, - [1024] = {.lex_state = 4}, - [1025] = {.lex_state = 0}, + [1024] = {.lex_state = 5}, + [1025] = {.lex_state = 5}, [1026] = {.lex_state = 5}, - [1027] = {.lex_state = 4}, + [1027] = {.lex_state = 5}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, + [1029] = {.lex_state = 3}, + [1030] = {.lex_state = 5}, [1031] = {.lex_state = 5}, [1032] = {.lex_state = 0}, [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 3}, - [1035] = {.lex_state = 3}, - [1036] = {.lex_state = 5}, - [1037] = {.lex_state = 5}, + [1034] = {.lex_state = 4}, + [1035] = {.lex_state = 4}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 0}, [1038] = {.lex_state = 3}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, [1041] = {.lex_state = 5}, - [1042] = {.lex_state = 4}, + [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, [1044] = {.lex_state = 4}, [1045] = {.lex_state = 0}, @@ -9119,162 +7895,162 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 5}, + [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 4}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 3}, + [1055] = {.lex_state = 3}, + [1056] = {.lex_state = 3}, + [1057] = {.lex_state = 3}, + [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 4}, + [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 3}, - [1063] = {.lex_state = 4}, + [1062] = {.lex_state = 4}, + [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 4}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 3}, + [1070] = {.lex_state = 0}, + [1071] = {.lex_state = 5}, + [1072] = {.lex_state = 5}, [1073] = {.lex_state = 4}, [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, + [1075] = {.lex_state = 5}, [1076] = {.lex_state = 4}, [1077] = {.lex_state = 0}, [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 4}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 3}, + [1079] = {.lex_state = 5}, + [1080] = {.lex_state = 4}, + [1081] = {.lex_state = 3}, + [1082] = {.lex_state = 4}, + [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, [1086] = {.lex_state = 0}, [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, + [1088] = {.lex_state = 4}, [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 5}, - [1093] = {.lex_state = 0}, + [1091] = {.lex_state = 3}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 3}, [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 5}, - [1096] = {.lex_state = 5}, + [1095] = {.lex_state = 3}, + [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 3}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 5}, + [1098] = {.lex_state = 3}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 3}, + [1101] = {.lex_state = 0}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 5}, + [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 3}, - [1111] = {.lex_state = 0}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 3}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, + [1117] = {.lex_state = 4}, [1118] = {.lex_state = 4}, - [1119] = {.lex_state = 0}, + [1119] = {.lex_state = 5}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 5}, - [1123] = {.lex_state = 5}, + [1122] = {.lex_state = 0}, + [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 3}, + [1125] = {.lex_state = 5}, + [1126] = {.lex_state = 5}, + [1127] = {.lex_state = 5}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 5}, - [1131] = {.lex_state = 5}, - [1132] = {.lex_state = 3}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 0}, [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 5}, - [1137] = {.lex_state = 5}, - [1138] = {.lex_state = 5}, + [1136] = {.lex_state = 0}, + [1137] = {.lex_state = 0}, + [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 5}, - [1141] = {.lex_state = 5}, - [1142] = {.lex_state = 5}, - [1143] = {.lex_state = 5}, + [1140] = {.lex_state = 0}, + [1141] = {.lex_state = 0}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 0}, + [1146] = {.lex_state = 5}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, + [1148] = {.lex_state = 5}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 3}, - [1152] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 3}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 0}, + [1155] = {.lex_state = 4}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 3}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 5}, + [1160] = {.lex_state = 5}, + [1161] = {.lex_state = 5}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, + [1163] = {.lex_state = 5}, + [1164] = {.lex_state = 5}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 3}, - [1169] = {.lex_state = 4}, + [1166] = {.lex_state = 4}, + [1167] = {.lex_state = 5}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 5}, - [1172] = {.lex_state = 5}, + [1171] = {.lex_state = 0}, + [1172] = {.lex_state = 0}, [1173] = {.lex_state = 5}, [1174] = {.lex_state = 5}, - [1175] = {.lex_state = 0}, + [1175] = {.lex_state = 5}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 3}, - [1180] = {.lex_state = 3}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 3}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 5}, + [1181] = {.lex_state = 3}, + [1182] = {.lex_state = 5}, + [1183] = {.lex_state = 5}, + [1184] = {.lex_state = 0}, [1185] = {.lex_state = 3}, - [1186] = {.lex_state = 0}, + [1186] = {.lex_state = 5}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 3}, + [1190] = {.lex_state = 0}, [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 3}, - [1193] = {.lex_state = 3}, - [1194] = {.lex_state = 3}, - [1195] = {.lex_state = 3}, - [1196] = {.lex_state = 3}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 3}, + [1198] = {.lex_state = 0}, [1199] = {.lex_state = 3}, - [1200] = {.lex_state = 3}, - [1201] = {.lex_state = 3}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 3}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 3}, + [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, @@ -9283,36 +8059,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, + [1214] = {.lex_state = 3}, + [1215] = {.lex_state = 3}, [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, + [1219] = {.lex_state = 3}, + [1220] = {.lex_state = 3}, [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, + [1223] = {.lex_state = 5}, + [1224] = {.lex_state = 3}, [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, + [1227] = {.lex_state = 3}, [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 3}, - [1232] = {.lex_state = 5}, - [1233] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 5}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, + [1235] = {.lex_state = 3}, + [1236] = {.lex_state = 3}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, + [1243] = {.lex_state = 3}, [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, @@ -9322,20 +8098,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1250] = {.lex_state = 3}, [1251] = {.lex_state = 3}, [1252] = {.lex_state = 3}, - [1253] = {.lex_state = 0}, + [1253] = {.lex_state = 3}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, + [1256] = {.lex_state = 3}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 3}, [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 5}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 3}, - [1263] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 3}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 3}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 3}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 3}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 3}, + [1272] = {.lex_state = 3}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 3}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9388,6 +8179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_GT_GT_GT] = ACTIONS(1), [anon_sym_instanceof] = ACTIONS(1), + [anon_sym_final] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), @@ -9443,7 +8235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1), [anon_sym_private] = ACTIONS(1), [anon_sym_abstract] = ACTIONS(1), - [anon_sym_final] = ACTIONS(1), [anon_sym_strictfp] = ACTIONS(1), [anon_sym_native] = ACTIONS(1), [anon_sym_transient] = ACTIONS(1), @@ -9472,73 +8263,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1248), - [sym__literal] = STATE(473), + [sym_program] = STATE(1209), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(12), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(11), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -9556,15 +8347,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -9581,20 +8373,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -9614,74 +8405,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(535), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_type_arguments] = STATE(1127), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(13), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_switch_label] = STATE(1228), + [sym_statement] = STATE(5), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_explicit_constructor_invocation] = STATE(10), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(5), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_switch_block_statement_group_repeat1] = STATE(235), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9696,19 +8487,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_default] = ACTIONS(89), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -9725,20 +8517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -9752,80 +8543,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_double] = ACTIONS(79), [sym_boolean_type] = ACTIONS(81), [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(93), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(546), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_type_arguments] = STATE(1098), [sym_switch_expression] = STATE(83), - [sym_switch_label] = STATE(1219), - [sym_statement] = STATE(5), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(6), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(5), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_switch_block_statement_group_repeat1] = STATE(191), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_explicit_constructor_invocation] = STATE(13), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9840,19 +8631,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(91), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(95), - [anon_sym_case] = ACTIONS(97), - [anon_sym_default] = ACTIONS(97), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -9869,20 +8661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -9896,78 +8687,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_double] = ACTIONS(79), [sym_boolean_type] = ACTIONS(81), [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(97), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [ts_builtin_sym_end] = ACTIONS(99), [sym_identifier] = ACTIONS(101), [sym_decimal_integer_literal] = ACTIONS(104), @@ -9985,17 +8776,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(110), [anon_sym_PLUS] = ACTIONS(113), [anon_sym_DASH] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(116), - [anon_sym_TILDE] = ACTIONS(116), - [anon_sym_PLUS_PLUS] = ACTIONS(119), - [anon_sym_DASH_DASH] = ACTIONS(119), - [anon_sym_new] = ACTIONS(122), - [anon_sym_class] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_final] = ACTIONS(116), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(122), + [anon_sym_DASH_DASH] = ACTIONS(122), + [anon_sym_new] = ACTIONS(125), + [anon_sym_class] = ACTIONS(128), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(134), [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_case] = ACTIONS(134), - [anon_sym_default] = ACTIONS(136), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(116), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_assert] = ACTIONS(142), [anon_sym_do] = ACTIONS(145), @@ -10012,20 +8804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(178), [anon_sym_open] = ACTIONS(181), [anon_sym_module] = ACTIONS(184), - [anon_sym_static] = ACTIONS(136), + [anon_sym_static] = ACTIONS(116), [anon_sym_package] = ACTIONS(187), [anon_sym_import] = ACTIONS(190), [anon_sym_enum] = ACTIONS(193), - [anon_sym_public] = ACTIONS(136), - [anon_sym_protected] = ACTIONS(136), - [anon_sym_private] = ACTIONS(136), - [anon_sym_abstract] = ACTIONS(136), - [anon_sym_final] = ACTIONS(136), - [anon_sym_strictfp] = ACTIONS(136), - [anon_sym_native] = ACTIONS(136), - [anon_sym_transient] = ACTIONS(136), - [anon_sym_volatile] = ACTIONS(136), - [anon_sym_sealed] = ACTIONS(136), + [anon_sym_public] = ACTIONS(116), + [anon_sym_protected] = ACTIONS(116), + [anon_sym_private] = ACTIONS(116), + [anon_sym_abstract] = ACTIONS(116), + [anon_sym_strictfp] = ACTIONS(116), + [anon_sym_native] = ACTIONS(116), + [anon_sym_transient] = ACTIONS(116), + [anon_sym_volatile] = ACTIONS(116), + [anon_sym_sealed] = ACTIONS(116), [anon_sym_non_DASHsealed] = ACTIONS(196), [anon_sym_record] = ACTIONS(199), [anon_sym_ATinterface] = ACTIONS(202), @@ -10045,72 +8836,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10127,14 +8918,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_RBRACE] = ACTIONS(223), [anon_sym_case] = ACTIONS(225), [anon_sym_default] = ACTIONS(225), @@ -10154,20 +8946,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -10187,72 +8978,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10269,16 +9060,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_default] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -10295,20 +9087,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -10328,72 +9119,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10410,16 +9201,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_default] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -10436,20 +9228,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -10469,72 +9260,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(4), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(9), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10551,16 +9342,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_default] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -10577,20 +9369,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -10610,72 +9401,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(7), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(4), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10692,16 +9483,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_default] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -10718,20 +9510,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -10751,72 +9542,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(8), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(7), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10833,16 +9624,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_default] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -10859,20 +9651,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -10892,72 +9683,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(6), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(4), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(237), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10974,16 +9766,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -11000,20 +9792,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -11033,73 +9824,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), [sym_statement] = STATE(4), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(239), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11116,15 +9906,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -11141,20 +9933,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -11174,72 +9965,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(4), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(12), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11256,16 +10047,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -11282,20 +10074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -11315,71 +10106,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(197), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(199), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11396,15 +10187,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -11421,20 +10213,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -11454,72 +10245,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(181), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(216), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11535,19 +10326,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -11555,25 +10347,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -11593,72 +10384,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(226), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(182), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11674,19 +10465,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -11694,25 +10486,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -11732,72 +10523,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(245), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(1250), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11813,19 +10604,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -11833,25 +10625,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -11871,72 +10662,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(1231), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(240), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11952,19 +10743,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -11972,25 +10764,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12010,71 +10801,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(216), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(249), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12091,15 +10882,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -12116,20 +10908,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12149,71 +10940,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(215), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(248), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12230,15 +11021,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -12255,20 +11047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12288,71 +11079,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(218), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(247), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12369,15 +11160,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -12394,20 +11186,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12427,71 +11218,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(226), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(246), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12508,15 +11299,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -12533,20 +11325,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12566,71 +11357,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(252), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(185), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12647,15 +11438,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -12672,20 +11464,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12705,71 +11496,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(223), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(209), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12786,15 +11577,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -12811,20 +11603,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12844,71 +11635,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(213), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(245), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12925,15 +11716,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -12950,20 +11742,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -12983,71 +11774,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(212), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(242), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13064,15 +11855,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -13089,20 +11881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -13122,71 +11913,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(192), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(236), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13203,15 +11994,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -13228,20 +12020,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -13261,72 +12052,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(1132), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(234), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13342,19 +12133,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -13362,25 +12154,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -13400,71 +12191,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(217), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(233), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13481,15 +12272,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -13506,20 +12298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -13539,71 +12330,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(194), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(183), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13620,15 +12411,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -13645,20 +12437,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -13678,71 +12469,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(225), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(184), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13759,15 +12550,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -13784,20 +12576,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -13817,71 +12608,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(234), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(186), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13898,15 +12689,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -13923,20 +12715,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -13956,71 +12747,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(187), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(189), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14037,15 +12828,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -14062,20 +12854,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -14095,72 +12886,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(201), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(249), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14176,19 +12967,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -14196,25 +12988,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -14234,71 +13025,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(194), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(248), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14315,15 +13106,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -14340,20 +13132,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -14373,71 +13164,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(192), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(247), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14454,15 +13245,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -14479,20 +13271,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -14512,72 +13303,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(181), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(192), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14593,19 +13384,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -14613,25 +13405,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -14651,72 +13442,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(197), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(246), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14732,19 +13523,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -14752,25 +13544,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -14790,71 +13581,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(209), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(183), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14871,15 +13662,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -14896,20 +13688,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -14929,71 +13720,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(217), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(184), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15010,15 +13801,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -15035,20 +13827,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -15068,72 +13859,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(202), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(186), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15149,19 +13940,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15169,25 +13961,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -15207,72 +13998,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(195), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(189), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15288,19 +14079,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -15308,25 +14100,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -15346,71 +14137,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(187), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(192), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15427,15 +14218,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -15452,20 +14244,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -15485,71 +14276,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(246), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(216), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15566,15 +14357,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -15591,20 +14383,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -15624,71 +14415,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(203), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(226), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15705,15 +14496,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -15730,20 +14522,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -15763,71 +14554,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(201), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(193), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15844,15 +14635,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -15869,20 +14661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -15902,72 +14693,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [47] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), [sym_statement] = STATE(215), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15983,19 +14774,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16003,25 +14795,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -16041,71 +14832,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(195), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(194), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16122,15 +14913,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -16147,20 +14939,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -16180,72 +14971,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(250), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(198), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16261,19 +15052,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16281,25 +15073,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -16319,71 +15110,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [50] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(207), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(244), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16400,15 +15191,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -16425,20 +15217,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -16458,72 +15249,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(251), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(200), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16539,19 +15330,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16559,25 +15351,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -16597,71 +15388,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(202), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(206), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16678,15 +15469,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -16703,20 +15495,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -16736,72 +15527,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(206), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(211), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16817,19 +15608,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16837,25 +15629,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -16875,72 +15666,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(207), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(193), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16956,19 +15747,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -16976,25 +15768,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17014,71 +15805,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(252), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(213), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17095,15 +15886,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -17120,20 +15912,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17153,72 +15944,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(253), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(194), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17234,19 +16025,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -17254,25 +16046,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17292,71 +16083,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(251), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(215), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17373,15 +16164,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -17398,20 +16190,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17431,71 +16222,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(250), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(226), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17512,15 +16303,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -17537,20 +16329,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17570,72 +16361,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(203), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(213), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17651,19 +16442,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -17671,25 +16463,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17709,71 +16500,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [60] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(246), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(1152), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17790,15 +16581,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -17815,20 +16607,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17848,71 +16639,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(234), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(233), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17929,15 +16720,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -17954,20 +16746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -17987,71 +16778,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [62] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(204), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(234), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18068,15 +16859,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -18093,20 +16885,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -18126,71 +16917,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(225), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(236), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18207,15 +16998,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -18232,20 +17024,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -18265,71 +17056,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(223), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(242), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18346,15 +17137,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -18371,20 +17163,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -18404,72 +17195,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(218), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(211), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -18485,19 +17276,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -18505,25 +17297,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -18543,71 +17334,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [66] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(216), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(245), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18624,15 +17415,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -18649,20 +17441,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -18682,71 +17473,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [67] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(204), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_statement] = STATE(206), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18763,15 +17554,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -18788,20 +17580,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -18821,72 +17612,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [68] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(213), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(200), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -18902,19 +17693,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -18922,25 +17714,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -18960,72 +17751,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [69] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(253), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(209), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19041,19 +17832,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -19061,25 +17853,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -19099,72 +17890,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [70] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(205), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(185), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19180,19 +17971,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -19200,25 +17992,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -19238,71 +18029,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [71] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(212), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(244), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19319,15 +18110,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), @@ -19344,20 +18136,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -19377,72 +18168,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [72] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(206), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(199), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19458,19 +18249,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -19478,25 +18270,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -19516,72 +18307,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(209), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(594), + [sym_statement] = STATE(182), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(7), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(241), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19597,19 +18388,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(243), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -19617,25 +18409,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(245), + [anon_sym_for] = ACTIONS(247), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -19655,72 +18446,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [74] = { - [sym__literal] = STATE(473), + [sym__literal] = STATE(461), [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(579), - [sym_statement] = STATE(205), - [sym_block] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_assert_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_yield_statement] = STATE(179), - [sym_synchronized_statement] = STATE(179), - [sym_throw_statement] = STATE(179), - [sym_try_statement] = STATE(179), - [sym_try_with_resources_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_enhanced_for_statement] = STATE(179), - [sym__annotation] = STATE(465), - [sym_marker_annotation] = STATE(465), - [sym_annotation] = STATE(465), - [sym_declaration] = STATE(179), - [sym_module_declaration] = STATE(219), - [sym_package_declaration] = STATE(219), - [sym_import_declaration] = STATE(219), - [sym_enum_declaration] = STATE(219), - [sym_class_declaration] = STATE(219), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(83), + [sym_statement] = STATE(198), + [sym_block] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_assert_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_yield_statement] = STATE(204), + [sym_synchronized_statement] = STATE(204), + [sym_throw_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_try_with_resources_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_enhanced_for_statement] = STATE(204), + [sym__annotation] = STATE(491), + [sym_marker_annotation] = STATE(491), + [sym_annotation] = STATE(491), + [sym_declaration] = STATE(204), + [sym_module_declaration] = STATE(243), + [sym_package_declaration] = STATE(243), + [sym_import_declaration] = STATE(243), + [sym_enum_declaration] = STATE(243), + [sym_class_declaration] = STATE(243), [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(219), - [sym_annotation_type_declaration] = STATE(219), - [sym_interface_declaration] = STATE(219), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(682), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(179), - [aux_sym_array_creation_expression_repeat1] = STATE(604), - [aux_sym_modifiers_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(241), + [sym_record_declaration] = STATE(243), + [sym_annotation_type_declaration] = STATE(243), + [sym_interface_declaration] = STATE(243), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(688), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(204), + [aux_sym_array_creation_expression_repeat1] = STATE(629), + [aux_sym_modifiers_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19736,19 +18527,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), + [anon_sym_final] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_class] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_default] = ACTIONS(17), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_assert] = ACTIONS(33), [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), + [anon_sym_while] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_return] = ACTIONS(43), @@ -19756,25 +18548,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(47), [anon_sym_throw] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), + [anon_sym_if] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_open] = ACTIONS(59), [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), + [anon_sym_static] = ACTIONS(17), [anon_sym_package] = ACTIONS(63), [anon_sym_import] = ACTIONS(65), [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), + [anon_sym_public] = ACTIONS(17), + [anon_sym_protected] = ACTIONS(17), + [anon_sym_private] = ACTIONS(17), + [anon_sym_abstract] = ACTIONS(17), + [anon_sym_strictfp] = ACTIONS(17), + [anon_sym_native] = ACTIONS(17), + [anon_sym_transient] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(17), + [anon_sym_sealed] = ACTIONS(17), [anon_sym_non_DASHsealed] = ACTIONS(69), [anon_sym_record] = ACTIONS(71), [anon_sym_ATinterface] = ACTIONS(73), @@ -19830,6 +18621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(251), [anon_sym_GT_GT_GT] = ACTIONS(249), [anon_sym_instanceof] = ACTIONS(251), + [anon_sym_final] = ACTIONS(251), [anon_sym_DASH_GT] = ACTIONS(249), [anon_sym_COMMA] = ACTIONS(249), [anon_sym_QMARK] = ACTIONS(249), @@ -19874,7 +18666,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(251), [anon_sym_private] = ACTIONS(251), [anon_sym_abstract] = ACTIONS(251), - [anon_sym_final] = ACTIONS(251), [anon_sym_strictfp] = ACTIONS(251), [anon_sym_native] = ACTIONS(251), [anon_sym_transient] = ACTIONS(251), @@ -19935,6 +18726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(255), [anon_sym_GT_GT_GT] = ACTIONS(253), [anon_sym_instanceof] = ACTIONS(255), + [anon_sym_final] = ACTIONS(255), [anon_sym_DASH_GT] = ACTIONS(253), [anon_sym_COMMA] = ACTIONS(253), [anon_sym_QMARK] = ACTIONS(253), @@ -19979,7 +18771,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(255), [anon_sym_private] = ACTIONS(255), [anon_sym_abstract] = ACTIONS(255), - [anon_sym_final] = ACTIONS(255), [anon_sym_strictfp] = ACTIONS(255), [anon_sym_native] = ACTIONS(255), [anon_sym_transient] = ACTIONS(255), @@ -20004,104 +18795,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(257), - [sym_identifier] = ACTIONS(259), - [sym_decimal_integer_literal] = ACTIONS(259), - [sym_hex_integer_literal] = ACTIONS(259), - [sym_octal_integer_literal] = ACTIONS(257), - [sym_binary_integer_literal] = ACTIONS(257), - [sym_decimal_floating_point_literal] = ACTIONS(257), - [sym_hex_floating_point_literal] = ACTIONS(259), - [sym_true] = ACTIONS(259), - [sym_false] = ACTIONS(259), - [sym_character_literal] = ACTIONS(257), - [sym_string_literal] = ACTIONS(259), - [sym_text_block] = ACTIONS(257), - [sym_null_literal] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_AMP_AMP] = ACTIONS(257), - [anon_sym_PIPE_PIPE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_GT_GT_GT] = ACTIONS(257), - [anon_sym_instanceof] = ACTIONS(259), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_QMARK] = ACTIONS(257), + [sym_identifier] = ACTIONS(257), + [sym_decimal_integer_literal] = ACTIONS(257), + [sym_hex_integer_literal] = ACTIONS(257), + [sym_octal_integer_literal] = ACTIONS(259), + [sym_binary_integer_literal] = ACTIONS(259), + [sym_decimal_floating_point_literal] = ACTIONS(259), + [sym_hex_floating_point_literal] = ACTIONS(257), + [sym_true] = ACTIONS(257), + [sym_false] = ACTIONS(257), + [sym_character_literal] = ACTIONS(259), + [sym_string_literal] = ACTIONS(257), + [sym_text_block] = ACTIONS(259), + [sym_null_literal] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_RPAREN] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_GT_GT_GT] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(257), + [anon_sym_final] = ACTIONS(257), + [anon_sym_DASH_GT] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), [anon_sym_COLON] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(257), - [anon_sym_DASH_DASH] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_class] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_case] = ACTIONS(259), - [anon_sym_default] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_do] = ACTIONS(259), - [anon_sym_while] = ACTIONS(259), - [anon_sym_break] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(259), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(259), - [anon_sym_synchronized] = ACTIONS(259), - [anon_sym_throw] = ACTIONS(259), - [anon_sym_try] = ACTIONS(259), - [anon_sym_if] = ACTIONS(259), - [anon_sym_else] = ACTIONS(259), - [anon_sym_for] = ACTIONS(259), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_open] = ACTIONS(259), - [anon_sym_module] = ACTIONS(259), - [anon_sym_static] = ACTIONS(259), - [anon_sym_package] = ACTIONS(259), - [anon_sym_import] = ACTIONS(259), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_public] = ACTIONS(259), - [anon_sym_protected] = ACTIONS(259), - [anon_sym_private] = ACTIONS(259), - [anon_sym_abstract] = ACTIONS(259), - [anon_sym_final] = ACTIONS(259), - [anon_sym_strictfp] = ACTIONS(259), - [anon_sym_native] = ACTIONS(259), - [anon_sym_transient] = ACTIONS(259), - [anon_sym_volatile] = ACTIONS(259), - [anon_sym_sealed] = ACTIONS(259), - [anon_sym_non_DASHsealed] = ACTIONS(257), - [anon_sym_record] = ACTIONS(259), - [anon_sym_ATinterface] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(259), - [anon_sym_byte] = ACTIONS(259), - [anon_sym_short] = ACTIONS(259), - [anon_sym_int] = ACTIONS(259), - [anon_sym_long] = ACTIONS(259), - [anon_sym_char] = ACTIONS(259), - [anon_sym_float] = ACTIONS(259), - [anon_sym_double] = ACTIONS(259), - [sym_boolean_type] = ACTIONS(259), - [sym_void_type] = ACTIONS(259), - [sym_this] = ACTIONS(259), - [sym_super] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_new] = ACTIONS(257), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_RBRACK] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(257), + [anon_sym_class] = ACTIONS(257), + [anon_sym_COLON_COLON] = ACTIONS(259), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(259), + [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_default] = ACTIONS(257), + [anon_sym_SEMI] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_do] = ACTIONS(257), + [anon_sym_while] = ACTIONS(257), + [anon_sym_break] = ACTIONS(257), + [anon_sym_continue] = ACTIONS(257), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(257), + [anon_sym_synchronized] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_try] = ACTIONS(257), + [anon_sym_if] = ACTIONS(257), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_open] = ACTIONS(257), + [anon_sym_module] = ACTIONS(257), + [anon_sym_static] = ACTIONS(257), + [anon_sym_package] = ACTIONS(257), + [anon_sym_import] = ACTIONS(257), + [anon_sym_enum] = ACTIONS(257), + [anon_sym_public] = ACTIONS(257), + [anon_sym_protected] = ACTIONS(257), + [anon_sym_private] = ACTIONS(257), + [anon_sym_abstract] = ACTIONS(257), + [anon_sym_strictfp] = ACTIONS(257), + [anon_sym_native] = ACTIONS(257), + [anon_sym_transient] = ACTIONS(257), + [anon_sym_volatile] = ACTIONS(257), + [anon_sym_sealed] = ACTIONS(257), + [anon_sym_non_DASHsealed] = ACTIONS(259), + [anon_sym_record] = ACTIONS(257), + [anon_sym_ATinterface] = ACTIONS(259), + [anon_sym_interface] = ACTIONS(257), + [anon_sym_byte] = ACTIONS(257), + [anon_sym_short] = ACTIONS(257), + [anon_sym_int] = ACTIONS(257), + [anon_sym_long] = ACTIONS(257), + [anon_sym_char] = ACTIONS(257), + [anon_sym_float] = ACTIONS(257), + [anon_sym_double] = ACTIONS(257), + [sym_boolean_type] = ACTIONS(257), + [sym_void_type] = ACTIONS(257), + [sym_this] = ACTIONS(257), + [sym_super] = ACTIONS(257), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -20142,6 +18933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(263), [anon_sym_GT_GT_GT] = ACTIONS(261), [anon_sym_instanceof] = ACTIONS(263), + [anon_sym_final] = ACTIONS(263), [anon_sym_DASH_GT] = ACTIONS(261), [anon_sym_COMMA] = ACTIONS(261), [anon_sym_QMARK] = ACTIONS(261), @@ -20183,7 +18975,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(263), [anon_sym_private] = ACTIONS(263), [anon_sym_abstract] = ACTIONS(263), - [anon_sym_final] = ACTIONS(263), [anon_sym_strictfp] = ACTIONS(263), [anon_sym_native] = ACTIONS(263), [anon_sym_transient] = ACTIONS(263), @@ -20208,104 +18999,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [79] = { - [sym_identifier] = ACTIONS(265), - [sym_decimal_integer_literal] = ACTIONS(265), - [sym_hex_integer_literal] = ACTIONS(265), - [sym_octal_integer_literal] = ACTIONS(267), - [sym_binary_integer_literal] = ACTIONS(267), - [sym_decimal_floating_point_literal] = ACTIONS(267), - [sym_hex_floating_point_literal] = ACTIONS(265), - [sym_true] = ACTIONS(265), - [sym_false] = ACTIONS(265), - [sym_character_literal] = ACTIONS(267), - [sym_string_literal] = ACTIONS(265), - [sym_text_block] = ACTIONS(267), - [sym_null_literal] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_RPAREN] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(265), - [anon_sym_LT] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_PIPE_PIPE] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(265), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_GT_GT_GT] = ACTIONS(267), - [anon_sym_instanceof] = ACTIONS(265), - [anon_sym_DASH_GT] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(267), + [ts_builtin_sym_end] = ACTIONS(265), + [sym_identifier] = ACTIONS(267), + [sym_decimal_integer_literal] = ACTIONS(267), + [sym_hex_integer_literal] = ACTIONS(267), + [sym_octal_integer_literal] = ACTIONS(265), + [sym_binary_integer_literal] = ACTIONS(265), + [sym_decimal_floating_point_literal] = ACTIONS(265), + [sym_hex_floating_point_literal] = ACTIONS(267), + [sym_true] = ACTIONS(267), + [sym_false] = ACTIONS(267), + [sym_character_literal] = ACTIONS(265), + [sym_string_literal] = ACTIONS(267), + [sym_text_block] = ACTIONS(265), + [sym_null_literal] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(265), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_GT_GT_GT] = ACTIONS(265), + [anon_sym_instanceof] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_DASH_GT] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_QMARK] = ACTIONS(265), [anon_sym_COLON] = ACTIONS(265), - [anon_sym_BANG] = ACTIONS(265), - [anon_sym_TILDE] = ACTIONS(267), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [anon_sym_new] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(267), - [anon_sym_RBRACK] = ACTIONS(267), - [anon_sym_DOT] = ACTIONS(265), - [anon_sym_class] = ACTIONS(265), - [anon_sym_COLON_COLON] = ACTIONS(267), - [anon_sym_switch] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_default] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_assert] = ACTIONS(265), - [anon_sym_do] = ACTIONS(265), - [anon_sym_while] = ACTIONS(265), - [anon_sym_break] = ACTIONS(265), - [anon_sym_continue] = ACTIONS(265), - [anon_sym_return] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(265), - [anon_sym_synchronized] = ACTIONS(265), - [anon_sym_throw] = ACTIONS(265), - [anon_sym_try] = ACTIONS(265), - [anon_sym_if] = ACTIONS(265), - [anon_sym_for] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_open] = ACTIONS(265), - [anon_sym_module] = ACTIONS(265), - [anon_sym_static] = ACTIONS(265), - [anon_sym_package] = ACTIONS(265), - [anon_sym_import] = ACTIONS(265), - [anon_sym_enum] = ACTIONS(265), - [anon_sym_public] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_abstract] = ACTIONS(265), - [anon_sym_final] = ACTIONS(265), - [anon_sym_strictfp] = ACTIONS(265), - [anon_sym_native] = ACTIONS(265), - [anon_sym_transient] = ACTIONS(265), - [anon_sym_volatile] = ACTIONS(265), - [anon_sym_sealed] = ACTIONS(265), - [anon_sym_non_DASHsealed] = ACTIONS(267), - [anon_sym_record] = ACTIONS(265), - [anon_sym_ATinterface] = ACTIONS(267), - [anon_sym_interface] = ACTIONS(265), - [anon_sym_byte] = ACTIONS(265), - [anon_sym_short] = ACTIONS(265), - [anon_sym_int] = ACTIONS(265), - [anon_sym_long] = ACTIONS(265), - [anon_sym_char] = ACTIONS(265), - [anon_sym_float] = ACTIONS(265), - [anon_sym_double] = ACTIONS(265), - [sym_boolean_type] = ACTIONS(265), - [sym_void_type] = ACTIONS(265), - [sym_this] = ACTIONS(265), - [sym_super] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(265), + [anon_sym_new] = ACTIONS(267), + [anon_sym_RBRACK] = ACTIONS(265), + [anon_sym_class] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_case] = ACTIONS(267), + [anon_sym_default] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_return] = ACTIONS(267), + [anon_sym_yield] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + [anon_sym_throw] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_open] = ACTIONS(267), + [anon_sym_module] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_import] = ACTIONS(267), + [anon_sym_enum] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_abstract] = ACTIONS(267), + [anon_sym_strictfp] = ACTIONS(267), + [anon_sym_native] = ACTIONS(267), + [anon_sym_transient] = ACTIONS(267), + [anon_sym_volatile] = ACTIONS(267), + [anon_sym_sealed] = ACTIONS(267), + [anon_sym_non_DASHsealed] = ACTIONS(265), + [anon_sym_record] = ACTIONS(267), + [anon_sym_ATinterface] = ACTIONS(265), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_byte] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [sym_boolean_type] = ACTIONS(267), + [sym_void_type] = ACTIONS(267), + [sym_this] = ACTIONS(267), + [sym_super] = ACTIONS(267), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -20346,6 +19137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(271), [anon_sym_GT_GT_GT] = ACTIONS(269), [anon_sym_instanceof] = ACTIONS(271), + [anon_sym_final] = ACTIONS(271), [anon_sym_DASH_GT] = ACTIONS(269), [anon_sym_COMMA] = ACTIONS(269), [anon_sym_QMARK] = ACTIONS(269), @@ -20387,7 +19179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(271), [anon_sym_private] = ACTIONS(271), [anon_sym_abstract] = ACTIONS(271), - [anon_sym_final] = ACTIONS(271), [anon_sym_strictfp] = ACTIONS(271), [anon_sym_native] = ACTIONS(271), [anon_sym_transient] = ACTIONS(271), @@ -20448,6 +19239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(275), [anon_sym_GT_GT_GT] = ACTIONS(273), [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), [anon_sym_DASH_GT] = ACTIONS(273), [anon_sym_COMMA] = ACTIONS(273), [anon_sym_QMARK] = ACTIONS(273), @@ -20489,7 +19281,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(275), [anon_sym_private] = ACTIONS(275), [anon_sym_abstract] = ACTIONS(275), - [anon_sym_final] = ACTIONS(275), [anon_sym_strictfp] = ACTIONS(275), [anon_sym_native] = ACTIONS(275), [anon_sym_transient] = ACTIONS(275), @@ -20550,6 +19341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_GT_GT_GT] = ACTIONS(277), [anon_sym_instanceof] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), [anon_sym_DASH_GT] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_QMARK] = ACTIONS(277), @@ -20591,7 +19383,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(279), [anon_sym_private] = ACTIONS(279), [anon_sym_abstract] = ACTIONS(279), - [anon_sym_final] = ACTIONS(279), [anon_sym_strictfp] = ACTIONS(279), [anon_sym_native] = ACTIONS(279), [anon_sym_transient] = ACTIONS(279), @@ -20651,6 +19442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(285), [anon_sym_GT_GT_GT] = ACTIONS(287), [anon_sym_instanceof] = ACTIONS(285), + [anon_sym_final] = ACTIONS(283), [anon_sym_QMARK] = ACTIONS(287), [anon_sym_BANG] = ACTIONS(283), [anon_sym_TILDE] = ACTIONS(281), @@ -20688,7 +19480,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(283), [anon_sym_private] = ACTIONS(283), [anon_sym_abstract] = ACTIONS(283), - [anon_sym_final] = ACTIONS(283), [anon_sym_strictfp] = ACTIONS(283), [anon_sym_native] = ACTIONS(283), [anon_sym_transient] = ACTIONS(283), @@ -20713,46 +19504,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [84] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(605), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(691), - [sym__type] = STATE(887), - [sym__unannotated_type] = STATE(670), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_formal_parameter] = STATE(980), - [sym_receiver_parameter] = STATE(394), - [sym_spread_parameter] = STATE(980), - [aux_sym_array_creation_expression_repeat1] = STATE(651), - [aux_sym_modifiers_repeat1] = STATE(525), + [sym__literal] = STATE(461), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(703), + [sym__type] = STATE(961), + [sym__unannotated_type] = STATE(683), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_formal_parameter] = STATE(1003), + [sym_receiver_parameter] = STATE(398), + [sym_spread_parameter] = STATE(1003), + [aux_sym_array_creation_expression_repeat1] = STATE(653), + [aux_sym_modifiers_repeat1] = STATE(538), [sym_identifier] = ACTIONS(295), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20770,12 +19561,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(297), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_final] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_default] = ACTIONS(299), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), @@ -20786,7 +19578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(299), [anon_sym_private] = ACTIONS(299), [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), [anon_sym_strictfp] = ACTIONS(299), [anon_sym_native] = ACTIONS(299), [anon_sym_transient] = ACTIONS(299), @@ -20809,46 +19600,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [85] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(605), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(691), - [sym__type] = STATE(893), - [sym__unannotated_type] = STATE(670), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_formal_parameter] = STATE(980), - [sym_receiver_parameter] = STATE(394), - [sym_spread_parameter] = STATE(980), - [aux_sym_array_creation_expression_repeat1] = STATE(651), - [aux_sym_modifiers_repeat1] = STATE(525), + [sym__literal] = STATE(461), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(703), + [sym__type] = STATE(948), + [sym__unannotated_type] = STATE(683), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_formal_parameter] = STATE(1003), + [sym_receiver_parameter] = STATE(398), + [sym_spread_parameter] = STATE(1003), + [aux_sym_array_creation_expression_repeat1] = STATE(653), + [aux_sym_modifiers_repeat1] = STATE(538), [sym_identifier] = ACTIONS(295), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20866,12 +19657,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(297), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_final] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_default] = ACTIONS(299), [anon_sym_synchronized] = ACTIONS(299), [anon_sym_AT] = ACTIONS(301), @@ -20882,7 +19674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(299), [anon_sym_private] = ACTIONS(299), [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), [anon_sym_strictfp] = ACTIONS(299), [anon_sym_native] = ACTIONS(299), [anon_sym_transient] = ACTIONS(299), @@ -20905,44 +19696,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [86] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(557), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(693), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(679), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(257), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [aux_sym_modifiers_repeat1] = STATE(525), + [sym__literal] = STATE(461), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(696), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(690), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(277), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [aux_sym_modifiers_repeat1] = STATE(538), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20959,12 +19750,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_final] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_default] = ACTIONS(299), [anon_sym_SEMI] = ACTIONS(309), [anon_sym_synchronized] = ACTIONS(299), @@ -20976,7 +19768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(299), [anon_sym_private] = ACTIONS(299), [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), [anon_sym_strictfp] = ACTIONS(299), [anon_sym_native] = ACTIONS(299), [anon_sym_transient] = ACTIONS(299), @@ -20999,44 +19790,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [87] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(585), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(695), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(681), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [sym_local_variable_declaration] = STATE(274), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [aux_sym_modifiers_repeat1] = STATE(525), + [sym__literal] = STATE(461), + [sym_expression] = STATE(553), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(697), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(692), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [sym_local_variable_declaration] = STATE(264), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [aux_sym_modifiers_repeat1] = STATE(538), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21053,12 +19844,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_final] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_default] = ACTIONS(299), [anon_sym_SEMI] = ACTIONS(313), [anon_sym_synchronized] = ACTIONS(299), @@ -21070,7 +19862,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(299), [anon_sym_private] = ACTIONS(299), [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), [anon_sym_strictfp] = ACTIONS(299), [anon_sym_native] = ACTIONS(299), [anon_sym_transient] = ACTIONS(299), @@ -21093,9 +19884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [88] = { - [sym_catch_clause] = STATE(91), - [sym_finally_clause] = STATE(193), - [aux_sym_try_statement_repeat1] = STATE(91), + [sym_catch_clause] = STATE(89), + [sym_finally_clause] = STATE(187), + [aux_sym_try_statement_repeat1] = STATE(89), [ts_builtin_sym_end] = ACTIONS(315), [sym_identifier] = ACTIONS(317), [sym_decimal_integer_literal] = ACTIONS(317), @@ -21113,6 +19904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), [anon_sym_DASH] = ACTIONS(317), + [anon_sym_final] = ACTIONS(317), [anon_sym_BANG] = ACTIONS(315), [anon_sym_TILDE] = ACTIONS(315), [anon_sym_PLUS_PLUS] = ACTIONS(315), @@ -21151,7 +19943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(317), [anon_sym_private] = ACTIONS(317), [anon_sym_abstract] = ACTIONS(317), - [anon_sym_final] = ACTIONS(317), [anon_sym_strictfp] = ACTIONS(317), [anon_sym_native] = ACTIONS(317), [anon_sym_transient] = ACTIONS(317), @@ -21176,9 +19967,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym_catch_clause] = STATE(88), - [sym_finally_clause] = STATE(184), - [aux_sym_try_statement_repeat1] = STATE(88), + [sym_catch_clause] = STATE(91), + [sym_finally_clause] = STATE(241), + [aux_sym_try_statement_repeat1] = STATE(91), [ts_builtin_sym_end] = ACTIONS(323), [sym_identifier] = ACTIONS(325), [sym_decimal_integer_literal] = ACTIONS(325), @@ -21196,6 +19987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(323), [anon_sym_PLUS] = ACTIONS(325), [anon_sym_DASH] = ACTIONS(325), + [anon_sym_final] = ACTIONS(325), [anon_sym_BANG] = ACTIONS(323), [anon_sym_TILDE] = ACTIONS(323), [anon_sym_PLUS_PLUS] = ACTIONS(323), @@ -21234,7 +20026,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(325), [anon_sym_private] = ACTIONS(325), [anon_sym_abstract] = ACTIONS(325), - [anon_sym_final] = ACTIONS(325), [anon_sym_strictfp] = ACTIONS(325), [anon_sym_native] = ACTIONS(325), [anon_sym_transient] = ACTIONS(325), @@ -21260,7 +20051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [90] = { [sym_catch_clause] = STATE(91), - [sym_finally_clause] = STATE(183), + [sym_finally_clause] = STATE(188), [aux_sym_try_statement_repeat1] = STATE(91), [ts_builtin_sym_end] = ACTIONS(327), [sym_identifier] = ACTIONS(329), @@ -21279,6 +20070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(327), [anon_sym_PLUS] = ACTIONS(329), [anon_sym_DASH] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), [anon_sym_BANG] = ACTIONS(327), [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PLUS_PLUS] = ACTIONS(327), @@ -21317,7 +20109,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(329), [anon_sym_private] = ACTIONS(329), [anon_sym_abstract] = ACTIONS(329), - [anon_sym_final] = ACTIONS(329), [anon_sym_strictfp] = ACTIONS(329), [anon_sym_native] = ACTIONS(329), [anon_sym_transient] = ACTIONS(329), @@ -21361,6 +20152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(331), [anon_sym_PLUS] = ACTIONS(333), [anon_sym_DASH] = ACTIONS(333), + [anon_sym_final] = ACTIONS(333), [anon_sym_BANG] = ACTIONS(331), [anon_sym_TILDE] = ACTIONS(331), [anon_sym_PLUS_PLUS] = ACTIONS(331), @@ -21399,7 +20191,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(333), [anon_sym_private] = ACTIONS(333), [anon_sym_abstract] = ACTIONS(333), - [anon_sym_final] = ACTIONS(333), [anon_sym_strictfp] = ACTIONS(333), [anon_sym_native] = ACTIONS(333), [anon_sym_transient] = ACTIONS(333), @@ -21424,44 +20215,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [92] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym_element_value_pair] = STATE(999), - [sym__element_value] = STATE(1202), - [sym_element_value_array_initializer] = STATE(1202), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym_element_value_pair] = STATE(973), + [sym__element_value] = STATE(1247), + [sym_element_value_array_initializer] = STATE(1247), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(338), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21479,12 +20270,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(340), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), @@ -21505,44 +20296,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [93] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym_element_value_pair] = STATE(1047), - [sym__element_value] = STATE(1234), - [sym_element_value_array_initializer] = STATE(1234), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym_element_value_pair] = STATE(975), + [sym__element_value] = STATE(1217), + [sym_element_value_array_initializer] = STATE(1217), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(338), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21560,12 +20351,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(346), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), @@ -21586,44 +20377,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [94] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym_block] = STATE(961), - [sym_expression_statement] = STATE(961), - [sym_throw_statement] = STATE(961), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym__element_value] = STATE(1008), + [sym_element_value_array_initializer] = STATE(1008), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21640,14 +20430,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_throw] = ACTIONS(49), + [anon_sym_COMMA] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_RBRACE] = ACTIONS(350), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -21667,44 +20458,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [95] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym_element_value_pair] = STATE(1021), - [sym__element_value] = STATE(1183), - [sym_element_value_array_initializer] = STATE(1183), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym_element_value_pair] = STATE(1010), + [sym__element_value] = STATE(1207), + [sym_element_value_array_initializer] = STATE(1207), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(338), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21719,15 +20510,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(348), + [anon_sym_RPAREN] = ACTIONS(352), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), @@ -21748,43 +20539,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [96] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym__element_value] = STATE(972), - [sym_element_value_array_initializer] = STATE(972), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym_block] = STATE(1057), + [sym_expression_statement] = STATE(1057), + [sym_throw_statement] = STATE(1057), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21801,15 +20593,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_RBRACE] = ACTIONS(352), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_throw] = ACTIONS(49), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -21829,43 +20620,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [97] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym__element_value] = STATE(1074), - [sym_element_value_array_initializer] = STATE(1074), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym__element_value] = STATE(1083), + [sym_element_value_array_initializer] = STATE(1083), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21882,12 +20673,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_RBRACE] = ACTIONS(354), [anon_sym_AT] = ACTIONS(344), @@ -21909,43 +20700,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym__element_value] = STATE(1074), - [sym_element_value_array_initializer] = STATE(1074), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(265), + [sym_identifier] = ACTIONS(267), + [sym_decimal_integer_literal] = ACTIONS(267), + [sym_hex_integer_literal] = ACTIONS(267), + [sym_octal_integer_literal] = ACTIONS(265), + [sym_binary_integer_literal] = ACTIONS(265), + [sym_decimal_floating_point_literal] = ACTIONS(265), + [sym_hex_floating_point_literal] = ACTIONS(267), + [sym_true] = ACTIONS(267), + [sym_false] = ACTIONS(267), + [sym_character_literal] = ACTIONS(265), + [sym_string_literal] = ACTIONS(267), + [sym_text_block] = ACTIONS(265), + [sym_null_literal] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_final] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(265), + [anon_sym_new] = ACTIONS(267), + [anon_sym_class] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_case] = ACTIONS(267), + [anon_sym_default] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_assert] = ACTIONS(267), + [anon_sym_do] = ACTIONS(267), + [anon_sym_while] = ACTIONS(267), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(267), + [anon_sym_return] = ACTIONS(267), + [anon_sym_yield] = ACTIONS(267), + [anon_sym_synchronized] = ACTIONS(267), + [anon_sym_throw] = ACTIONS(267), + [anon_sym_try] = ACTIONS(267), + [anon_sym_catch] = ACTIONS(267), + [anon_sym_finally] = ACTIONS(267), + [anon_sym_if] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_for] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_open] = ACTIONS(267), + [anon_sym_module] = ACTIONS(267), + [anon_sym_static] = ACTIONS(267), + [anon_sym_package] = ACTIONS(267), + [anon_sym_import] = ACTIONS(267), + [anon_sym_enum] = ACTIONS(267), + [anon_sym_public] = ACTIONS(267), + [anon_sym_protected] = ACTIONS(267), + [anon_sym_private] = ACTIONS(267), + [anon_sym_abstract] = ACTIONS(267), + [anon_sym_strictfp] = ACTIONS(267), + [anon_sym_native] = ACTIONS(267), + [anon_sym_transient] = ACTIONS(267), + [anon_sym_volatile] = ACTIONS(267), + [anon_sym_sealed] = ACTIONS(267), + [anon_sym_non_DASHsealed] = ACTIONS(265), + [anon_sym_record] = ACTIONS(267), + [anon_sym_ATinterface] = ACTIONS(265), + [anon_sym_interface] = ACTIONS(267), + [anon_sym_byte] = ACTIONS(267), + [anon_sym_short] = ACTIONS(267), + [anon_sym_int] = ACTIONS(267), + [anon_sym_long] = ACTIONS(267), + [anon_sym_char] = ACTIONS(267), + [anon_sym_float] = ACTIONS(267), + [anon_sym_double] = ACTIONS(267), + [sym_boolean_type] = ACTIONS(267), + [sym_void_type] = ACTIONS(267), + [sym_this] = ACTIONS(267), + [sym_super] = ACTIONS(267), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [99] = { + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(279), + [sym_decimal_integer_literal] = ACTIONS(279), + [sym_hex_integer_literal] = ACTIONS(279), + [sym_octal_integer_literal] = ACTIONS(277), + [sym_binary_integer_literal] = ACTIONS(277), + [sym_decimal_floating_point_literal] = ACTIONS(277), + [sym_hex_floating_point_literal] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [sym_character_literal] = ACTIONS(277), + [sym_string_literal] = ACTIONS(279), + [sym_text_block] = ACTIONS(277), + [sym_null_literal] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_final] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_new] = ACTIONS(279), + [anon_sym_class] = ACTIONS(279), + [anon_sym_switch] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_case] = ACTIONS(279), + [anon_sym_default] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_synchronized] = ACTIONS(279), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_finally] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_open] = ACTIONS(279), + [anon_sym_module] = ACTIONS(279), + [anon_sym_static] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_enum] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_protected] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_abstract] = ACTIONS(279), + [anon_sym_strictfp] = ACTIONS(279), + [anon_sym_native] = ACTIONS(279), + [anon_sym_transient] = ACTIONS(279), + [anon_sym_volatile] = ACTIONS(279), + [anon_sym_sealed] = ACTIONS(279), + [anon_sym_non_DASHsealed] = ACTIONS(277), + [anon_sym_record] = ACTIONS(279), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(279), + [anon_sym_byte] = ACTIONS(279), + [anon_sym_short] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_long] = ACTIONS(279), + [anon_sym_char] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_double] = ACTIONS(279), + [sym_boolean_type] = ACTIONS(279), + [sym_void_type] = ACTIONS(279), + [sym_this] = ACTIONS(279), + [sym_super] = ACTIONS(279), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [100] = { + [ts_builtin_sym_end] = ACTIONS(356), + [sym_identifier] = ACTIONS(358), + [sym_decimal_integer_literal] = ACTIONS(358), + [sym_hex_integer_literal] = ACTIONS(358), + [sym_octal_integer_literal] = ACTIONS(356), + [sym_binary_integer_literal] = ACTIONS(356), + [sym_decimal_floating_point_literal] = ACTIONS(356), + [sym_hex_floating_point_literal] = ACTIONS(358), + [sym_true] = ACTIONS(358), + [sym_false] = ACTIONS(358), + [sym_character_literal] = ACTIONS(356), + [sym_string_literal] = ACTIONS(358), + [sym_text_block] = ACTIONS(356), + [sym_null_literal] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(358), + [anon_sym_DASH] = ACTIONS(358), + [anon_sym_final] = ACTIONS(358), + [anon_sym_BANG] = ACTIONS(356), + [anon_sym_TILDE] = ACTIONS(356), + [anon_sym_PLUS_PLUS] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(356), + [anon_sym_new] = ACTIONS(358), + [anon_sym_class] = ACTIONS(358), + [anon_sym_switch] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_RBRACE] = ACTIONS(356), + [anon_sym_case] = ACTIONS(358), + [anon_sym_default] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(356), + [anon_sym_assert] = ACTIONS(358), + [anon_sym_do] = ACTIONS(358), + [anon_sym_while] = ACTIONS(358), + [anon_sym_break] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(358), + [anon_sym_return] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_synchronized] = ACTIONS(358), + [anon_sym_throw] = ACTIONS(358), + [anon_sym_try] = ACTIONS(358), + [anon_sym_catch] = ACTIONS(358), + [anon_sym_finally] = ACTIONS(358), + [anon_sym_if] = ACTIONS(358), + [anon_sym_else] = ACTIONS(358), + [anon_sym_for] = ACTIONS(358), + [anon_sym_AT] = ACTIONS(358), + [anon_sym_open] = ACTIONS(358), + [anon_sym_module] = ACTIONS(358), + [anon_sym_static] = ACTIONS(358), + [anon_sym_package] = ACTIONS(358), + [anon_sym_import] = ACTIONS(358), + [anon_sym_enum] = ACTIONS(358), + [anon_sym_public] = ACTIONS(358), + [anon_sym_protected] = ACTIONS(358), + [anon_sym_private] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(358), + [anon_sym_strictfp] = ACTIONS(358), + [anon_sym_native] = ACTIONS(358), + [anon_sym_transient] = ACTIONS(358), + [anon_sym_volatile] = ACTIONS(358), + [anon_sym_sealed] = ACTIONS(358), + [anon_sym_non_DASHsealed] = ACTIONS(356), + [anon_sym_record] = ACTIONS(358), + [anon_sym_ATinterface] = ACTIONS(356), + [anon_sym_interface] = ACTIONS(358), + [anon_sym_byte] = ACTIONS(358), + [anon_sym_short] = ACTIONS(358), + [anon_sym_int] = ACTIONS(358), + [anon_sym_long] = ACTIONS(358), + [anon_sym_char] = ACTIONS(358), + [anon_sym_float] = ACTIONS(358), + [anon_sym_double] = ACTIONS(358), + [sym_boolean_type] = ACTIONS(358), + [sym_void_type] = ACTIONS(358), + [sym_this] = ACTIONS(358), + [sym_super] = ACTIONS(358), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [101] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym_array_initializer] = STATE(1063), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21962,14 +20992,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_RBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(360), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_RBRACE] = ACTIONS(364), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -21988,283 +21019,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(273), - [sym_identifier] = ACTIONS(275), - [sym_decimal_integer_literal] = ACTIONS(275), - [sym_hex_integer_literal] = ACTIONS(275), - [sym_octal_integer_literal] = ACTIONS(273), - [sym_binary_integer_literal] = ACTIONS(273), - [sym_decimal_floating_point_literal] = ACTIONS(273), - [sym_hex_floating_point_literal] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [sym_character_literal] = ACTIONS(273), - [sym_string_literal] = ACTIONS(275), - [sym_text_block] = ACTIONS(273), - [sym_null_literal] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_PLUS] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(273), - [anon_sym_DASH_DASH] = ACTIONS(273), - [anon_sym_new] = ACTIONS(275), - [anon_sym_class] = ACTIONS(275), - [anon_sym_switch] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_return] = ACTIONS(275), - [anon_sym_yield] = ACTIONS(275), - [anon_sym_synchronized] = ACTIONS(275), - [anon_sym_throw] = ACTIONS(275), - [anon_sym_try] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_if] = ACTIONS(275), - [anon_sym_else] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_AT] = ACTIONS(275), - [anon_sym_open] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_static] = ACTIONS(275), - [anon_sym_package] = ACTIONS(275), - [anon_sym_import] = ACTIONS(275), - [anon_sym_enum] = ACTIONS(275), - [anon_sym_public] = ACTIONS(275), - [anon_sym_protected] = ACTIONS(275), - [anon_sym_private] = ACTIONS(275), - [anon_sym_abstract] = ACTIONS(275), - [anon_sym_final] = ACTIONS(275), - [anon_sym_strictfp] = ACTIONS(275), - [anon_sym_native] = ACTIONS(275), - [anon_sym_transient] = ACTIONS(275), - [anon_sym_volatile] = ACTIONS(275), - [anon_sym_sealed] = ACTIONS(275), - [anon_sym_non_DASHsealed] = ACTIONS(273), - [anon_sym_record] = ACTIONS(275), - [anon_sym_ATinterface] = ACTIONS(273), - [anon_sym_interface] = ACTIONS(275), - [anon_sym_byte] = ACTIONS(275), - [anon_sym_short] = ACTIONS(275), - [anon_sym_int] = ACTIONS(275), - [anon_sym_long] = ACTIONS(275), - [anon_sym_char] = ACTIONS(275), - [anon_sym_float] = ACTIONS(275), - [anon_sym_double] = ACTIONS(275), - [sym_boolean_type] = ACTIONS(275), - [sym_void_type] = ACTIONS(275), - [sym_this] = ACTIONS(275), - [sym_super] = ACTIONS(275), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [ts_builtin_sym_end] = ACTIONS(269), - [sym_identifier] = ACTIONS(271), - [sym_decimal_integer_literal] = ACTIONS(271), - [sym_hex_integer_literal] = ACTIONS(271), - [sym_octal_integer_literal] = ACTIONS(269), - [sym_binary_integer_literal] = ACTIONS(269), - [sym_decimal_floating_point_literal] = ACTIONS(269), - [sym_hex_floating_point_literal] = ACTIONS(271), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_character_literal] = ACTIONS(269), - [sym_string_literal] = ACTIONS(271), - [sym_text_block] = ACTIONS(269), - [sym_null_literal] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(269), - [anon_sym_PLUS_PLUS] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(269), - [anon_sym_new] = ACTIONS(271), - [anon_sym_class] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_default] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_assert] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_yield] = ACTIONS(271), - [anon_sym_synchronized] = ACTIONS(271), - [anon_sym_throw] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_open] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_static] = ACTIONS(271), - [anon_sym_package] = ACTIONS(271), - [anon_sym_import] = ACTIONS(271), - [anon_sym_enum] = ACTIONS(271), - [anon_sym_public] = ACTIONS(271), - [anon_sym_protected] = ACTIONS(271), - [anon_sym_private] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(271), - [anon_sym_final] = ACTIONS(271), - [anon_sym_strictfp] = ACTIONS(271), - [anon_sym_native] = ACTIONS(271), - [anon_sym_transient] = ACTIONS(271), - [anon_sym_volatile] = ACTIONS(271), - [anon_sym_sealed] = ACTIONS(271), - [anon_sym_non_DASHsealed] = ACTIONS(269), - [anon_sym_record] = ACTIONS(271), - [anon_sym_ATinterface] = ACTIONS(269), - [anon_sym_interface] = ACTIONS(271), - [anon_sym_byte] = ACTIONS(271), - [anon_sym_short] = ACTIONS(271), - [anon_sym_int] = ACTIONS(271), - [anon_sym_long] = ACTIONS(271), - [anon_sym_char] = ACTIONS(271), - [anon_sym_float] = ACTIONS(271), - [anon_sym_double] = ACTIONS(271), - [sym_boolean_type] = ACTIONS(271), - [sym_void_type] = ACTIONS(271), - [sym_this] = ACTIONS(271), - [sym_super] = ACTIONS(271), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [101] = { - [ts_builtin_sym_end] = ACTIONS(358), - [sym_identifier] = ACTIONS(360), - [sym_decimal_integer_literal] = ACTIONS(360), - [sym_hex_integer_literal] = ACTIONS(360), - [sym_octal_integer_literal] = ACTIONS(358), - [sym_binary_integer_literal] = ACTIONS(358), - [sym_decimal_floating_point_literal] = ACTIONS(358), - [sym_hex_floating_point_literal] = ACTIONS(360), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [sym_character_literal] = ACTIONS(358), - [sym_string_literal] = ACTIONS(360), - [sym_text_block] = ACTIONS(358), - [sym_null_literal] = ACTIONS(360), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_TILDE] = ACTIONS(358), - [anon_sym_PLUS_PLUS] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_class] = ACTIONS(360), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(358), - [anon_sym_RBRACE] = ACTIONS(358), - [anon_sym_case] = ACTIONS(360), - [anon_sym_default] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(358), - [anon_sym_assert] = ACTIONS(360), - [anon_sym_do] = ACTIONS(360), - [anon_sym_while] = ACTIONS(360), - [anon_sym_break] = ACTIONS(360), - [anon_sym_continue] = ACTIONS(360), - [anon_sym_return] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(360), - [anon_sym_synchronized] = ACTIONS(360), - [anon_sym_throw] = ACTIONS(360), - [anon_sym_try] = ACTIONS(360), - [anon_sym_catch] = ACTIONS(360), - [anon_sym_finally] = ACTIONS(360), - [anon_sym_if] = ACTIONS(360), - [anon_sym_else] = ACTIONS(360), - [anon_sym_for] = ACTIONS(360), - [anon_sym_AT] = ACTIONS(360), - [anon_sym_open] = ACTIONS(360), - [anon_sym_module] = ACTIONS(360), - [anon_sym_static] = ACTIONS(360), - [anon_sym_package] = ACTIONS(360), - [anon_sym_import] = ACTIONS(360), - [anon_sym_enum] = ACTIONS(360), - [anon_sym_public] = ACTIONS(360), - [anon_sym_protected] = ACTIONS(360), - [anon_sym_private] = ACTIONS(360), - [anon_sym_abstract] = ACTIONS(360), - [anon_sym_final] = ACTIONS(360), - [anon_sym_strictfp] = ACTIONS(360), - [anon_sym_native] = ACTIONS(360), - [anon_sym_transient] = ACTIONS(360), - [anon_sym_volatile] = ACTIONS(360), - [anon_sym_sealed] = ACTIONS(360), - [anon_sym_non_DASHsealed] = ACTIONS(358), - [anon_sym_record] = ACTIONS(360), - [anon_sym_ATinterface] = ACTIONS(358), - [anon_sym_interface] = ACTIONS(360), - [anon_sym_byte] = ACTIONS(360), - [anon_sym_short] = ACTIONS(360), - [anon_sym_int] = ACTIONS(360), - [anon_sym_long] = ACTIONS(360), - [anon_sym_char] = ACTIONS(360), - [anon_sym_float] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [sym_boolean_type] = ACTIONS(360), - [sym_void_type] = ACTIONS(360), - [sym_this] = ACTIONS(360), - [sym_super] = ACTIONS(360), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [102] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(546), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym_array_initializer] = STATE(1046), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym__element_value] = STATE(1083), + [sym_element_value_array_initializer] = STATE(1083), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22281,14 +21073,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_RBRACE] = ACTIONS(366), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), @@ -22327,6 +21118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(368), [anon_sym_PLUS] = ACTIONS(370), [anon_sym_DASH] = ACTIONS(370), + [anon_sym_final] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(368), [anon_sym_TILDE] = ACTIONS(368), [anon_sym_PLUS_PLUS] = ACTIONS(368), @@ -22363,7 +21155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(370), [anon_sym_private] = ACTIONS(370), [anon_sym_abstract] = ACTIONS(370), - [anon_sym_final] = ACTIONS(370), [anon_sym_strictfp] = ACTIONS(370), [anon_sym_native] = ACTIONS(370), [anon_sym_transient] = ACTIONS(370), @@ -22406,6 +21197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(372), [anon_sym_PLUS] = ACTIONS(374), [anon_sym_DASH] = ACTIONS(374), + [anon_sym_final] = ACTIONS(374), [anon_sym_BANG] = ACTIONS(372), [anon_sym_TILDE] = ACTIONS(372), [anon_sym_PLUS_PLUS] = ACTIONS(372), @@ -22442,7 +21234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(374), [anon_sym_private] = ACTIONS(374), [anon_sym_abstract] = ACTIONS(374), - [anon_sym_final] = ACTIONS(374), [anon_sym_strictfp] = ACTIONS(374), [anon_sym_native] = ACTIONS(374), [anon_sym_transient] = ACTIONS(374), @@ -22485,6 +21276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(376), [anon_sym_PLUS] = ACTIONS(378), [anon_sym_DASH] = ACTIONS(378), + [anon_sym_final] = ACTIONS(378), [anon_sym_BANG] = ACTIONS(376), [anon_sym_TILDE] = ACTIONS(376), [anon_sym_PLUS_PLUS] = ACTIONS(376), @@ -22521,7 +21313,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(378), [anon_sym_private] = ACTIONS(378), [anon_sym_abstract] = ACTIONS(378), - [anon_sym_final] = ACTIONS(378), [anon_sym_strictfp] = ACTIONS(378), [anon_sym_native] = ACTIONS(378), [anon_sym_transient] = ACTIONS(378), @@ -22564,6 +21355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(380), [anon_sym_PLUS] = ACTIONS(382), [anon_sym_DASH] = ACTIONS(382), + [anon_sym_final] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(380), [anon_sym_TILDE] = ACTIONS(380), [anon_sym_PLUS_PLUS] = ACTIONS(380), @@ -22600,7 +21392,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(382), [anon_sym_private] = ACTIONS(382), [anon_sym_abstract] = ACTIONS(382), - [anon_sym_final] = ACTIONS(382), [anon_sym_strictfp] = ACTIONS(382), [anon_sym_native] = ACTIONS(382), [anon_sym_transient] = ACTIONS(382), @@ -22643,6 +21434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(384), [anon_sym_PLUS] = ACTIONS(386), [anon_sym_DASH] = ACTIONS(386), + [anon_sym_final] = ACTIONS(386), [anon_sym_BANG] = ACTIONS(384), [anon_sym_TILDE] = ACTIONS(384), [anon_sym_PLUS_PLUS] = ACTIONS(384), @@ -22679,7 +21471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(386), [anon_sym_private] = ACTIONS(386), [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), [anon_sym_strictfp] = ACTIONS(386), [anon_sym_native] = ACTIONS(386), [anon_sym_transient] = ACTIONS(386), @@ -22722,6 +21513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(388), [anon_sym_PLUS] = ACTIONS(390), [anon_sym_DASH] = ACTIONS(390), + [anon_sym_final] = ACTIONS(390), [anon_sym_BANG] = ACTIONS(388), [anon_sym_TILDE] = ACTIONS(388), [anon_sym_PLUS_PLUS] = ACTIONS(388), @@ -22758,7 +21550,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(390), [anon_sym_private] = ACTIONS(390), [anon_sym_abstract] = ACTIONS(390), - [anon_sym_final] = ACTIONS(390), [anon_sym_strictfp] = ACTIONS(390), [anon_sym_native] = ACTIONS(390), [anon_sym_transient] = ACTIONS(390), @@ -22801,6 +21592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(392), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), + [anon_sym_final] = ACTIONS(394), [anon_sym_BANG] = ACTIONS(392), [anon_sym_TILDE] = ACTIONS(392), [anon_sym_PLUS_PLUS] = ACTIONS(392), @@ -22837,7 +21629,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(394), [anon_sym_private] = ACTIONS(394), [anon_sym_abstract] = ACTIONS(394), - [anon_sym_final] = ACTIONS(394), [anon_sym_strictfp] = ACTIONS(394), [anon_sym_native] = ACTIONS(394), [anon_sym_transient] = ACTIONS(394), @@ -22880,6 +21671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(396), [anon_sym_PLUS] = ACTIONS(398), [anon_sym_DASH] = ACTIONS(398), + [anon_sym_final] = ACTIONS(398), [anon_sym_BANG] = ACTIONS(396), [anon_sym_TILDE] = ACTIONS(396), [anon_sym_PLUS_PLUS] = ACTIONS(396), @@ -22916,7 +21708,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(398), [anon_sym_private] = ACTIONS(398), [anon_sym_abstract] = ACTIONS(398), - [anon_sym_final] = ACTIONS(398), [anon_sym_strictfp] = ACTIONS(398), [anon_sym_native] = ACTIONS(398), [anon_sym_transient] = ACTIONS(398), @@ -22959,6 +21750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(400), [anon_sym_PLUS] = ACTIONS(402), [anon_sym_DASH] = ACTIONS(402), + [anon_sym_final] = ACTIONS(402), [anon_sym_BANG] = ACTIONS(400), [anon_sym_TILDE] = ACTIONS(400), [anon_sym_PLUS_PLUS] = ACTIONS(400), @@ -22995,7 +21787,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(402), [anon_sym_private] = ACTIONS(402), [anon_sym_abstract] = ACTIONS(402), - [anon_sym_final] = ACTIONS(402), [anon_sym_strictfp] = ACTIONS(402), [anon_sym_native] = ACTIONS(402), [anon_sym_transient] = ACTIONS(402), @@ -23038,6 +21829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(404), [anon_sym_PLUS] = ACTIONS(406), [anon_sym_DASH] = ACTIONS(406), + [anon_sym_final] = ACTIONS(406), [anon_sym_BANG] = ACTIONS(404), [anon_sym_TILDE] = ACTIONS(404), [anon_sym_PLUS_PLUS] = ACTIONS(404), @@ -23074,7 +21866,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(406), [anon_sym_private] = ACTIONS(406), [anon_sym_abstract] = ACTIONS(406), - [anon_sym_final] = ACTIONS(406), [anon_sym_strictfp] = ACTIONS(406), [anon_sym_native] = ACTIONS(406), [anon_sym_transient] = ACTIONS(406), @@ -23117,6 +21908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(408), [anon_sym_PLUS] = ACTIONS(410), [anon_sym_DASH] = ACTIONS(410), + [anon_sym_final] = ACTIONS(410), [anon_sym_BANG] = ACTIONS(408), [anon_sym_TILDE] = ACTIONS(408), [anon_sym_PLUS_PLUS] = ACTIONS(408), @@ -23153,7 +21945,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(410), [anon_sym_private] = ACTIONS(410), [anon_sym_abstract] = ACTIONS(410), - [anon_sym_final] = ACTIONS(410), [anon_sym_strictfp] = ACTIONS(410), [anon_sym_native] = ACTIONS(410), [anon_sym_transient] = ACTIONS(410), @@ -23178,991 +21969,1070 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [114] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(589), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym_array_initializer] = STATE(1176), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(364), + [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(412), + [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), + [sym_string_literal] = ACTIONS(414), + [sym_text_block] = ACTIONS(412), + [sym_null_literal] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_final] = ACTIONS(414), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_new] = ACTIONS(414), + [anon_sym_class] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_case] = ACTIONS(414), + [anon_sym_default] = 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), }, [115] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym__element_value] = STATE(1152), - [sym_element_value_array_initializer] = STATE(1152), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [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(416), + [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), + [sym_string_literal] = ACTIONS(418), + [sym_text_block] = ACTIONS(416), + [sym_null_literal] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_final] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(416), + [anon_sym_TILDE] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), + [anon_sym_new] = ACTIONS(418), + [anon_sym_class] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_default] = 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), }, [116] = { - [ts_builtin_sym_end] = ACTIONS(414), - [sym_identifier] = ACTIONS(416), - [sym_decimal_integer_literal] = ACTIONS(416), - [sym_hex_integer_literal] = ACTIONS(416), - [sym_octal_integer_literal] = ACTIONS(414), - [sym_binary_integer_literal] = ACTIONS(414), - [sym_decimal_floating_point_literal] = ACTIONS(414), - [sym_hex_floating_point_literal] = ACTIONS(416), - [sym_true] = ACTIONS(416), - [sym_false] = ACTIONS(416), - [sym_character_literal] = ACTIONS(414), - [sym_string_literal] = ACTIONS(416), - [sym_text_block] = ACTIONS(414), - [sym_null_literal] = ACTIONS(416), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(414), - [anon_sym_new] = ACTIONS(416), - [anon_sym_class] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(416), - [anon_sym_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_case] = ACTIONS(416), - [anon_sym_default] = ACTIONS(416), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_assert] = ACTIONS(416), - [anon_sym_do] = ACTIONS(416), - [anon_sym_while] = ACTIONS(416), - [anon_sym_break] = ACTIONS(416), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_return] = ACTIONS(416), - [anon_sym_yield] = ACTIONS(416), - [anon_sym_synchronized] = ACTIONS(416), - [anon_sym_throw] = ACTIONS(416), - [anon_sym_try] = ACTIONS(416), - [anon_sym_if] = ACTIONS(416), - [anon_sym_else] = ACTIONS(416), - [anon_sym_for] = ACTIONS(416), - [anon_sym_AT] = ACTIONS(416), - [anon_sym_open] = ACTIONS(416), - [anon_sym_module] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_import] = ACTIONS(416), - [anon_sym_enum] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_protected] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_strictfp] = ACTIONS(416), - [anon_sym_native] = ACTIONS(416), - [anon_sym_transient] = ACTIONS(416), - [anon_sym_volatile] = ACTIONS(416), - [anon_sym_sealed] = ACTIONS(416), - [anon_sym_non_DASHsealed] = ACTIONS(414), - [anon_sym_record] = ACTIONS(416), - [anon_sym_ATinterface] = ACTIONS(414), - [anon_sym_interface] = ACTIONS(416), - [anon_sym_byte] = ACTIONS(416), - [anon_sym_short] = ACTIONS(416), - [anon_sym_int] = ACTIONS(416), - [anon_sym_long] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_float] = ACTIONS(416), - [anon_sym_double] = ACTIONS(416), - [sym_boolean_type] = ACTIONS(416), - [sym_void_type] = ACTIONS(416), - [sym_this] = ACTIONS(416), - [sym_super] = ACTIONS(416), + [ts_builtin_sym_end] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), + [sym_decimal_integer_literal] = ACTIONS(422), + [sym_hex_integer_literal] = ACTIONS(422), + [sym_octal_integer_literal] = ACTIONS(420), + [sym_binary_integer_literal] = ACTIONS(420), + [sym_decimal_floating_point_literal] = ACTIONS(420), + [sym_hex_floating_point_literal] = ACTIONS(422), + [sym_true] = ACTIONS(422), + [sym_false] = ACTIONS(422), + [sym_character_literal] = ACTIONS(420), + [sym_string_literal] = ACTIONS(422), + [sym_text_block] = ACTIONS(420), + [sym_null_literal] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_final] = ACTIONS(422), + [anon_sym_BANG] = ACTIONS(420), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_PLUS_PLUS] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(420), + [anon_sym_new] = ACTIONS(422), + [anon_sym_class] = ACTIONS(422), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_LBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_case] = ACTIONS(422), + [anon_sym_default] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_assert] = ACTIONS(422), + [anon_sym_do] = ACTIONS(422), + [anon_sym_while] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_return] = ACTIONS(422), + [anon_sym_yield] = ACTIONS(422), + [anon_sym_synchronized] = ACTIONS(422), + [anon_sym_throw] = ACTIONS(422), + [anon_sym_try] = ACTIONS(422), + [anon_sym_if] = ACTIONS(422), + [anon_sym_else] = ACTIONS(422), + [anon_sym_for] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(422), + [anon_sym_open] = ACTIONS(422), + [anon_sym_module] = ACTIONS(422), + [anon_sym_static] = ACTIONS(422), + [anon_sym_package] = ACTIONS(422), + [anon_sym_import] = ACTIONS(422), + [anon_sym_enum] = ACTIONS(422), + [anon_sym_public] = ACTIONS(422), + [anon_sym_protected] = ACTIONS(422), + [anon_sym_private] = ACTIONS(422), + [anon_sym_abstract] = ACTIONS(422), + [anon_sym_strictfp] = ACTIONS(422), + [anon_sym_native] = ACTIONS(422), + [anon_sym_transient] = ACTIONS(422), + [anon_sym_volatile] = ACTIONS(422), + [anon_sym_sealed] = ACTIONS(422), + [anon_sym_non_DASHsealed] = ACTIONS(420), + [anon_sym_record] = ACTIONS(422), + [anon_sym_ATinterface] = ACTIONS(420), + [anon_sym_interface] = ACTIONS(422), + [anon_sym_byte] = ACTIONS(422), + [anon_sym_short] = ACTIONS(422), + [anon_sym_int] = ACTIONS(422), + [anon_sym_long] = ACTIONS(422), + [anon_sym_char] = ACTIONS(422), + [anon_sym_float] = ACTIONS(422), + [anon_sym_double] = ACTIONS(422), + [sym_boolean_type] = ACTIONS(422), + [sym_void_type] = ACTIONS(422), + [sym_this] = ACTIONS(422), + [sym_super] = ACTIONS(422), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_decimal_integer_literal] = ACTIONS(420), - [sym_hex_integer_literal] = ACTIONS(420), - [sym_octal_integer_literal] = ACTIONS(418), - [sym_binary_integer_literal] = ACTIONS(418), - [sym_decimal_floating_point_literal] = ACTIONS(418), - [sym_hex_floating_point_literal] = ACTIONS(420), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_character_literal] = ACTIONS(418), - [sym_string_literal] = ACTIONS(420), - [sym_text_block] = ACTIONS(418), - [sym_null_literal] = ACTIONS(420), - [anon_sym_LPAREN] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_TILDE] = ACTIONS(418), - [anon_sym_PLUS_PLUS] = ACTIONS(418), - [anon_sym_DASH_DASH] = ACTIONS(418), - [anon_sym_new] = ACTIONS(420), - [anon_sym_class] = ACTIONS(420), - [anon_sym_switch] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_case] = ACTIONS(420), - [anon_sym_default] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(418), - [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_else] = 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_final] = 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(418), - [anon_sym_record] = ACTIONS(420), - [anon_sym_ATinterface] = ACTIONS(418), - [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), + [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(424), + [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), + [sym_string_literal] = ACTIONS(426), + [sym_text_block] = ACTIONS(424), + [sym_null_literal] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_final] = ACTIONS(426), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(424), + [anon_sym_DASH_DASH] = ACTIONS(424), + [anon_sym_new] = ACTIONS(426), + [anon_sym_class] = ACTIONS(426), + [anon_sym_switch] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_case] = ACTIONS(426), + [anon_sym_default] = 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), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(422), - [sym_identifier] = ACTIONS(424), - [sym_decimal_integer_literal] = ACTIONS(424), - [sym_hex_integer_literal] = ACTIONS(424), - [sym_octal_integer_literal] = ACTIONS(422), - [sym_binary_integer_literal] = ACTIONS(422), - [sym_decimal_floating_point_literal] = ACTIONS(422), - [sym_hex_floating_point_literal] = ACTIONS(424), - [sym_true] = ACTIONS(424), - [sym_false] = ACTIONS(424), - [sym_character_literal] = ACTIONS(422), - [sym_string_literal] = ACTIONS(424), - [sym_text_block] = ACTIONS(422), - [sym_null_literal] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_new] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(424), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_case] = ACTIONS(424), - [anon_sym_default] = ACTIONS(424), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_assert] = ACTIONS(424), - [anon_sym_do] = ACTIONS(424), - [anon_sym_while] = ACTIONS(424), - [anon_sym_break] = ACTIONS(424), - [anon_sym_continue] = ACTIONS(424), - [anon_sym_return] = ACTIONS(424), - [anon_sym_yield] = ACTIONS(424), - [anon_sym_synchronized] = ACTIONS(424), - [anon_sym_throw] = ACTIONS(424), - [anon_sym_try] = ACTIONS(424), - [anon_sym_if] = ACTIONS(424), - [anon_sym_else] = ACTIONS(424), - [anon_sym_for] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(424), - [anon_sym_module] = ACTIONS(424), - [anon_sym_static] = ACTIONS(424), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_enum] = ACTIONS(424), - [anon_sym_public] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_strictfp] = ACTIONS(424), - [anon_sym_native] = ACTIONS(424), - [anon_sym_transient] = ACTIONS(424), - [anon_sym_volatile] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_non_DASHsealed] = ACTIONS(422), - [anon_sym_record] = ACTIONS(424), - [anon_sym_ATinterface] = ACTIONS(422), - [anon_sym_interface] = ACTIONS(424), - [anon_sym_byte] = ACTIONS(424), - [anon_sym_short] = ACTIONS(424), - [anon_sym_int] = ACTIONS(424), - [anon_sym_long] = ACTIONS(424), - [anon_sym_char] = ACTIONS(424), - [anon_sym_float] = ACTIONS(424), - [anon_sym_double] = ACTIONS(424), - [sym_boolean_type] = ACTIONS(424), - [sym_void_type] = ACTIONS(424), - [sym_this] = ACTIONS(424), - [sym_super] = ACTIONS(424), + [ts_builtin_sym_end] = ACTIONS(428), + [sym_identifier] = ACTIONS(430), + [sym_decimal_integer_literal] = ACTIONS(430), + [sym_hex_integer_literal] = ACTIONS(430), + [sym_octal_integer_literal] = ACTIONS(428), + [sym_binary_integer_literal] = ACTIONS(428), + [sym_decimal_floating_point_literal] = ACTIONS(428), + [sym_hex_floating_point_literal] = ACTIONS(430), + [sym_true] = ACTIONS(430), + [sym_false] = ACTIONS(430), + [sym_character_literal] = ACTIONS(428), + [sym_string_literal] = ACTIONS(430), + [sym_text_block] = ACTIONS(428), + [sym_null_literal] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_final] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_PLUS_PLUS] = ACTIONS(428), + [anon_sym_DASH_DASH] = ACTIONS(428), + [anon_sym_new] = ACTIONS(430), + [anon_sym_class] = ACTIONS(430), + [anon_sym_switch] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_case] = ACTIONS(430), + [anon_sym_default] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_do] = ACTIONS(430), + [anon_sym_while] = ACTIONS(430), + [anon_sym_break] = ACTIONS(430), + [anon_sym_continue] = ACTIONS(430), + [anon_sym_return] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(430), + [anon_sym_synchronized] = ACTIONS(430), + [anon_sym_throw] = ACTIONS(430), + [anon_sym_try] = ACTIONS(430), + [anon_sym_if] = ACTIONS(430), + [anon_sym_else] = ACTIONS(430), + [anon_sym_for] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_open] = ACTIONS(430), + [anon_sym_module] = ACTIONS(430), + [anon_sym_static] = ACTIONS(430), + [anon_sym_package] = ACTIONS(430), + [anon_sym_import] = ACTIONS(430), + [anon_sym_enum] = ACTIONS(430), + [anon_sym_public] = ACTIONS(430), + [anon_sym_protected] = ACTIONS(430), + [anon_sym_private] = ACTIONS(430), + [anon_sym_abstract] = ACTIONS(430), + [anon_sym_strictfp] = ACTIONS(430), + [anon_sym_native] = ACTIONS(430), + [anon_sym_transient] = ACTIONS(430), + [anon_sym_volatile] = ACTIONS(430), + [anon_sym_sealed] = ACTIONS(430), + [anon_sym_non_DASHsealed] = ACTIONS(428), + [anon_sym_record] = ACTIONS(430), + [anon_sym_ATinterface] = ACTIONS(428), + [anon_sym_interface] = ACTIONS(430), + [anon_sym_byte] = ACTIONS(430), + [anon_sym_short] = ACTIONS(430), + [anon_sym_int] = ACTIONS(430), + [anon_sym_long] = ACTIONS(430), + [anon_sym_char] = ACTIONS(430), + [anon_sym_float] = ACTIONS(430), + [anon_sym_double] = ACTIONS(430), + [sym_boolean_type] = ACTIONS(430), + [sym_void_type] = ACTIONS(430), + [sym_this] = ACTIONS(430), + [sym_super] = ACTIONS(430), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [119] = { - [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(426), - [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), - [sym_string_literal] = ACTIONS(428), - [sym_text_block] = ACTIONS(426), - [sym_null_literal] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_new] = ACTIONS(428), - [anon_sym_class] = ACTIONS(428), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(426), - [anon_sym_RBRACE] = ACTIONS(426), - [anon_sym_case] = ACTIONS(428), - [anon_sym_default] = 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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_decimal_integer_literal] = ACTIONS(434), + [sym_hex_integer_literal] = ACTIONS(434), + [sym_octal_integer_literal] = ACTIONS(432), + [sym_binary_integer_literal] = ACTIONS(432), + [sym_decimal_floating_point_literal] = ACTIONS(432), + [sym_hex_floating_point_literal] = ACTIONS(434), + [sym_true] = ACTIONS(434), + [sym_false] = ACTIONS(434), + [sym_character_literal] = ACTIONS(432), + [sym_string_literal] = ACTIONS(434), + [sym_text_block] = ACTIONS(432), + [sym_null_literal] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_final] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(432), + [anon_sym_DASH_DASH] = ACTIONS(432), + [anon_sym_new] = ACTIONS(434), + [anon_sym_class] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_case] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_assert] = ACTIONS(434), + [anon_sym_do] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [anon_sym_break] = ACTIONS(434), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_return] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(434), + [anon_sym_synchronized] = ACTIONS(434), + [anon_sym_throw] = ACTIONS(434), + [anon_sym_try] = ACTIONS(434), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(434), + [anon_sym_for] = ACTIONS(434), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_open] = ACTIONS(434), + [anon_sym_module] = ACTIONS(434), + [anon_sym_static] = ACTIONS(434), + [anon_sym_package] = ACTIONS(434), + [anon_sym_import] = ACTIONS(434), + [anon_sym_enum] = ACTIONS(434), + [anon_sym_public] = ACTIONS(434), + [anon_sym_protected] = ACTIONS(434), + [anon_sym_private] = ACTIONS(434), + [anon_sym_abstract] = ACTIONS(434), + [anon_sym_strictfp] = ACTIONS(434), + [anon_sym_native] = ACTIONS(434), + [anon_sym_transient] = ACTIONS(434), + [anon_sym_volatile] = ACTIONS(434), + [anon_sym_sealed] = ACTIONS(434), + [anon_sym_non_DASHsealed] = ACTIONS(432), + [anon_sym_record] = ACTIONS(434), + [anon_sym_ATinterface] = ACTIONS(432), + [anon_sym_interface] = ACTIONS(434), + [anon_sym_byte] = ACTIONS(434), + [anon_sym_short] = ACTIONS(434), + [anon_sym_int] = ACTIONS(434), + [anon_sym_long] = ACTIONS(434), + [anon_sym_char] = ACTIONS(434), + [anon_sym_float] = ACTIONS(434), + [anon_sym_double] = ACTIONS(434), + [sym_boolean_type] = ACTIONS(434), + [sym_void_type] = ACTIONS(434), + [sym_this] = ACTIONS(434), + [sym_super] = ACTIONS(434), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [120] = { - [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(430), - [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), - [sym_string_literal] = ACTIONS(432), - [sym_text_block] = ACTIONS(430), - [sym_null_literal] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_PLUS_PLUS] = ACTIONS(430), - [anon_sym_DASH_DASH] = ACTIONS(430), - [anon_sym_new] = ACTIONS(432), - [anon_sym_class] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_case] = ACTIONS(432), - [anon_sym_default] = 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_static] = 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), - [anon_sym_abstract] = ACTIONS(432), - [anon_sym_final] = 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(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), + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [sym_decimal_integer_literal] = ACTIONS(438), + [sym_hex_integer_literal] = ACTIONS(438), + [sym_octal_integer_literal] = ACTIONS(436), + [sym_binary_integer_literal] = ACTIONS(436), + [sym_decimal_floating_point_literal] = ACTIONS(436), + [sym_hex_floating_point_literal] = ACTIONS(438), + [sym_true] = ACTIONS(438), + [sym_false] = ACTIONS(438), + [sym_character_literal] = ACTIONS(436), + [sym_string_literal] = ACTIONS(438), + [sym_text_block] = ACTIONS(436), + [sym_null_literal] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_final] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_new] = ACTIONS(438), + [anon_sym_class] = ACTIONS(438), + [anon_sym_switch] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_assert] = ACTIONS(438), + [anon_sym_do] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_synchronized] = ACTIONS(438), + [anon_sym_throw] = ACTIONS(438), + [anon_sym_try] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_open] = ACTIONS(438), + [anon_sym_module] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_package] = ACTIONS(438), + [anon_sym_import] = ACTIONS(438), + [anon_sym_enum] = ACTIONS(438), + [anon_sym_public] = ACTIONS(438), + [anon_sym_protected] = ACTIONS(438), + [anon_sym_private] = ACTIONS(438), + [anon_sym_abstract] = ACTIONS(438), + [anon_sym_strictfp] = ACTIONS(438), + [anon_sym_native] = ACTIONS(438), + [anon_sym_transient] = ACTIONS(438), + [anon_sym_volatile] = ACTIONS(438), + [anon_sym_sealed] = ACTIONS(438), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_record] = ACTIONS(438), + [anon_sym_ATinterface] = ACTIONS(436), + [anon_sym_interface] = ACTIONS(438), + [anon_sym_byte] = ACTIONS(438), + [anon_sym_short] = ACTIONS(438), + [anon_sym_int] = ACTIONS(438), + [anon_sym_long] = ACTIONS(438), + [anon_sym_char] = ACTIONS(438), + [anon_sym_float] = ACTIONS(438), + [anon_sym_double] = ACTIONS(438), + [sym_boolean_type] = ACTIONS(438), + [sym_void_type] = ACTIONS(438), + [sym_this] = ACTIONS(438), + [sym_super] = ACTIONS(438), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [121] = { - [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(434), - [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), - [sym_string_literal] = ACTIONS(436), - [sym_text_block] = 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_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_RBRACE] = 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_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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_identifier] = ACTIONS(442), + [sym_decimal_integer_literal] = ACTIONS(442), + [sym_hex_integer_literal] = ACTIONS(442), + [sym_octal_integer_literal] = ACTIONS(440), + [sym_binary_integer_literal] = ACTIONS(440), + [sym_decimal_floating_point_literal] = ACTIONS(440), + [sym_hex_floating_point_literal] = ACTIONS(442), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_character_literal] = ACTIONS(440), + [sym_string_literal] = ACTIONS(442), + [sym_text_block] = ACTIONS(440), + [sym_null_literal] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_final] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_TILDE] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_new] = ACTIONS(442), + [anon_sym_class] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_case] = ACTIONS(442), + [anon_sym_default] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_assert] = ACTIONS(442), + [anon_sym_do] = ACTIONS(442), + [anon_sym_while] = ACTIONS(442), + [anon_sym_break] = ACTIONS(442), + [anon_sym_continue] = ACTIONS(442), + [anon_sym_return] = ACTIONS(442), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_synchronized] = ACTIONS(442), + [anon_sym_throw] = ACTIONS(442), + [anon_sym_try] = ACTIONS(442), + [anon_sym_if] = ACTIONS(442), + [anon_sym_else] = ACTIONS(442), + [anon_sym_for] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(442), + [anon_sym_open] = ACTIONS(442), + [anon_sym_module] = ACTIONS(442), + [anon_sym_static] = ACTIONS(442), + [anon_sym_package] = ACTIONS(442), + [anon_sym_import] = ACTIONS(442), + [anon_sym_enum] = ACTIONS(442), + [anon_sym_public] = ACTIONS(442), + [anon_sym_protected] = ACTIONS(442), + [anon_sym_private] = ACTIONS(442), + [anon_sym_abstract] = ACTIONS(442), + [anon_sym_strictfp] = ACTIONS(442), + [anon_sym_native] = ACTIONS(442), + [anon_sym_transient] = ACTIONS(442), + [anon_sym_volatile] = ACTIONS(442), + [anon_sym_sealed] = ACTIONS(442), + [anon_sym_non_DASHsealed] = ACTIONS(440), + [anon_sym_record] = ACTIONS(442), + [anon_sym_ATinterface] = ACTIONS(440), + [anon_sym_interface] = ACTIONS(442), + [anon_sym_byte] = ACTIONS(442), + [anon_sym_short] = ACTIONS(442), + [anon_sym_int] = ACTIONS(442), + [anon_sym_long] = ACTIONS(442), + [anon_sym_char] = ACTIONS(442), + [anon_sym_float] = ACTIONS(442), + [anon_sym_double] = ACTIONS(442), + [sym_boolean_type] = ACTIONS(442), + [sym_void_type] = ACTIONS(442), + [sym_this] = ACTIONS(442), + [sym_super] = ACTIONS(442), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [122] = { - [ts_builtin_sym_end] = ACTIONS(438), - [sym_identifier] = ACTIONS(440), - [sym_decimal_integer_literal] = ACTIONS(440), - [sym_hex_integer_literal] = ACTIONS(440), - [sym_octal_integer_literal] = ACTIONS(438), - [sym_binary_integer_literal] = ACTIONS(438), - [sym_decimal_floating_point_literal] = ACTIONS(438), - [sym_hex_floating_point_literal] = ACTIONS(440), - [sym_true] = ACTIONS(440), - [sym_false] = ACTIONS(440), - [sym_character_literal] = ACTIONS(438), - [sym_string_literal] = ACTIONS(440), - [sym_text_block] = ACTIONS(438), - [sym_null_literal] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_TILDE] = ACTIONS(438), - [anon_sym_PLUS_PLUS] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(438), - [anon_sym_new] = ACTIONS(440), - [anon_sym_class] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(438), - [anon_sym_case] = ACTIONS(440), - [anon_sym_default] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(438), - [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_final] = 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(438), - [anon_sym_record] = ACTIONS(440), - [anon_sym_ATinterface] = ACTIONS(438), - [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), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_decimal_integer_literal] = ACTIONS(446), + [sym_hex_integer_literal] = ACTIONS(446), + [sym_octal_integer_literal] = ACTIONS(444), + [sym_binary_integer_literal] = ACTIONS(444), + [sym_decimal_floating_point_literal] = ACTIONS(444), + [sym_hex_floating_point_literal] = ACTIONS(446), + [sym_true] = ACTIONS(446), + [sym_false] = ACTIONS(446), + [sym_character_literal] = ACTIONS(444), + [sym_string_literal] = ACTIONS(446), + [sym_text_block] = ACTIONS(444), + [sym_null_literal] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_final] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(444), + [anon_sym_new] = ACTIONS(446), + [anon_sym_class] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_assert] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_break] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_yield] = ACTIONS(446), + [anon_sym_synchronized] = ACTIONS(446), + [anon_sym_throw] = ACTIONS(446), + [anon_sym_try] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_AT] = ACTIONS(446), + [anon_sym_open] = ACTIONS(446), + [anon_sym_module] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_package] = ACTIONS(446), + [anon_sym_import] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_public] = ACTIONS(446), + [anon_sym_protected] = ACTIONS(446), + [anon_sym_private] = ACTIONS(446), + [anon_sym_abstract] = ACTIONS(446), + [anon_sym_strictfp] = ACTIONS(446), + [anon_sym_native] = ACTIONS(446), + [anon_sym_transient] = ACTIONS(446), + [anon_sym_volatile] = ACTIONS(446), + [anon_sym_sealed] = ACTIONS(446), + [anon_sym_non_DASHsealed] = ACTIONS(444), + [anon_sym_record] = ACTIONS(446), + [anon_sym_ATinterface] = ACTIONS(444), + [anon_sym_interface] = ACTIONS(446), + [anon_sym_byte] = ACTIONS(446), + [anon_sym_short] = ACTIONS(446), + [anon_sym_int] = ACTIONS(446), + [anon_sym_long] = ACTIONS(446), + [anon_sym_char] = ACTIONS(446), + [anon_sym_float] = ACTIONS(446), + [anon_sym_double] = ACTIONS(446), + [sym_boolean_type] = ACTIONS(446), + [sym_void_type] = ACTIONS(446), + [sym_this] = ACTIONS(446), + [sym_super] = ACTIONS(446), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [123] = { - [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(442), - [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), - [sym_string_literal] = ACTIONS(444), - [sym_text_block] = ACTIONS(442), - [sym_null_literal] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [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(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_switch] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [anon_sym_case] = ACTIONS(444), - [anon_sym_default] = 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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(450), + [sym_decimal_integer_literal] = ACTIONS(450), + [sym_hex_integer_literal] = ACTIONS(450), + [sym_octal_integer_literal] = ACTIONS(448), + [sym_binary_integer_literal] = ACTIONS(448), + [sym_decimal_floating_point_literal] = ACTIONS(448), + [sym_hex_floating_point_literal] = ACTIONS(450), + [sym_true] = ACTIONS(450), + [sym_false] = ACTIONS(450), + [sym_character_literal] = ACTIONS(448), + [sym_string_literal] = ACTIONS(450), + [sym_text_block] = ACTIONS(448), + [sym_null_literal] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_final] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(448), + [anon_sym_TILDE] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_new] = ACTIONS(450), + [anon_sym_class] = ACTIONS(450), + [anon_sym_switch] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(448), + [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_else] = 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_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(448), + [anon_sym_record] = ACTIONS(450), + [anon_sym_ATinterface] = ACTIONS(448), + [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), }, [124] = { - [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(446), - [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), - [sym_string_literal] = ACTIONS(448), - [sym_text_block] = ACTIONS(446), - [sym_null_literal] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [anon_sym_new] = ACTIONS(448), - [anon_sym_class] = ACTIONS(448), - [anon_sym_switch] = ACTIONS(448), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_case] = ACTIONS(448), - [anon_sym_default] = 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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(454), + [sym_hex_integer_literal] = ACTIONS(454), + [sym_octal_integer_literal] = ACTIONS(452), + [sym_binary_integer_literal] = ACTIONS(452), + [sym_decimal_floating_point_literal] = ACTIONS(452), + [sym_hex_floating_point_literal] = ACTIONS(454), + [sym_true] = ACTIONS(454), + [sym_false] = ACTIONS(454), + [sym_character_literal] = ACTIONS(452), + [sym_string_literal] = ACTIONS(454), + [sym_text_block] = ACTIONS(452), + [sym_null_literal] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_final] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(452), + [anon_sym_DASH_DASH] = ACTIONS(452), + [anon_sym_new] = ACTIONS(454), + [anon_sym_class] = ACTIONS(454), + [anon_sym_switch] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_case] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_assert] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [anon_sym_break] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_synchronized] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_if] = ACTIONS(454), + [anon_sym_else] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_open] = ACTIONS(454), + [anon_sym_module] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_package] = ACTIONS(454), + [anon_sym_import] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_public] = ACTIONS(454), + [anon_sym_protected] = ACTIONS(454), + [anon_sym_private] = ACTIONS(454), + [anon_sym_abstract] = ACTIONS(454), + [anon_sym_strictfp] = ACTIONS(454), + [anon_sym_native] = ACTIONS(454), + [anon_sym_transient] = ACTIONS(454), + [anon_sym_volatile] = ACTIONS(454), + [anon_sym_sealed] = ACTIONS(454), + [anon_sym_non_DASHsealed] = ACTIONS(452), + [anon_sym_record] = ACTIONS(454), + [anon_sym_ATinterface] = ACTIONS(452), + [anon_sym_interface] = ACTIONS(454), + [anon_sym_byte] = ACTIONS(454), + [anon_sym_short] = ACTIONS(454), + [anon_sym_int] = ACTIONS(454), + [anon_sym_long] = ACTIONS(454), + [anon_sym_char] = ACTIONS(454), + [anon_sym_float] = ACTIONS(454), + [anon_sym_double] = ACTIONS(454), + [sym_boolean_type] = ACTIONS(454), + [sym_void_type] = ACTIONS(454), + [sym_this] = ACTIONS(454), + [sym_super] = ACTIONS(454), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(450), - [sym_identifier] = ACTIONS(452), - [sym_decimal_integer_literal] = ACTIONS(452), - [sym_hex_integer_literal] = ACTIONS(452), - [sym_octal_integer_literal] = ACTIONS(450), - [sym_binary_integer_literal] = ACTIONS(450), - [sym_decimal_floating_point_literal] = ACTIONS(450), - [sym_hex_floating_point_literal] = ACTIONS(452), - [sym_true] = ACTIONS(452), - [sym_false] = ACTIONS(452), - [sym_character_literal] = ACTIONS(450), - [sym_string_literal] = ACTIONS(452), - [sym_text_block] = ACTIONS(450), - [sym_null_literal] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_TILDE] = ACTIONS(450), - [anon_sym_PLUS_PLUS] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(450), - [anon_sym_new] = ACTIONS(452), - [anon_sym_class] = ACTIONS(452), - [anon_sym_switch] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_case] = ACTIONS(452), - [anon_sym_default] = ACTIONS(452), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_assert] = ACTIONS(452), - [anon_sym_do] = ACTIONS(452), - [anon_sym_while] = ACTIONS(452), - [anon_sym_break] = ACTIONS(452), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_return] = ACTIONS(452), - [anon_sym_yield] = ACTIONS(452), - [anon_sym_synchronized] = ACTIONS(452), - [anon_sym_throw] = ACTIONS(452), - [anon_sym_try] = ACTIONS(452), - [anon_sym_if] = ACTIONS(452), - [anon_sym_else] = ACTIONS(452), - [anon_sym_for] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_open] = ACTIONS(452), - [anon_sym_module] = ACTIONS(452), - [anon_sym_static] = ACTIONS(452), - [anon_sym_package] = ACTIONS(452), - [anon_sym_import] = ACTIONS(452), - [anon_sym_enum] = ACTIONS(452), - [anon_sym_public] = ACTIONS(452), - [anon_sym_protected] = ACTIONS(452), - [anon_sym_private] = ACTIONS(452), - [anon_sym_abstract] = ACTIONS(452), - [anon_sym_final] = ACTIONS(452), - [anon_sym_strictfp] = ACTIONS(452), - [anon_sym_native] = ACTIONS(452), - [anon_sym_transient] = ACTIONS(452), - [anon_sym_volatile] = ACTIONS(452), - [anon_sym_sealed] = ACTIONS(452), - [anon_sym_non_DASHsealed] = ACTIONS(450), - [anon_sym_record] = ACTIONS(452), - [anon_sym_ATinterface] = ACTIONS(450), - [anon_sym_interface] = ACTIONS(452), - [anon_sym_byte] = ACTIONS(452), - [anon_sym_short] = ACTIONS(452), - [anon_sym_int] = ACTIONS(452), - [anon_sym_long] = ACTIONS(452), - [anon_sym_char] = ACTIONS(452), - [anon_sym_float] = ACTIONS(452), - [anon_sym_double] = ACTIONS(452), - [sym_boolean_type] = ACTIONS(452), - [sym_void_type] = ACTIONS(452), - [sym_this] = ACTIONS(452), - [sym_super] = ACTIONS(452), + [ts_builtin_sym_end] = ACTIONS(456), + [sym_identifier] = ACTIONS(458), + [sym_decimal_integer_literal] = ACTIONS(458), + [sym_hex_integer_literal] = ACTIONS(458), + [sym_octal_integer_literal] = ACTIONS(456), + [sym_binary_integer_literal] = ACTIONS(456), + [sym_decimal_floating_point_literal] = ACTIONS(456), + [sym_hex_floating_point_literal] = ACTIONS(458), + [sym_true] = ACTIONS(458), + [sym_false] = ACTIONS(458), + [sym_character_literal] = ACTIONS(456), + [sym_string_literal] = ACTIONS(458), + [sym_text_block] = ACTIONS(456), + [sym_null_literal] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_PLUS] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [anon_sym_final] = ACTIONS(458), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), + [anon_sym_new] = ACTIONS(458), + [anon_sym_class] = ACTIONS(458), + [anon_sym_switch] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(458), + [anon_sym_default] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_assert] = ACTIONS(458), + [anon_sym_do] = ACTIONS(458), + [anon_sym_while] = ACTIONS(458), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(458), + [anon_sym_return] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(458), + [anon_sym_synchronized] = ACTIONS(458), + [anon_sym_throw] = ACTIONS(458), + [anon_sym_try] = ACTIONS(458), + [anon_sym_if] = ACTIONS(458), + [anon_sym_else] = ACTIONS(458), + [anon_sym_for] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(458), + [anon_sym_open] = ACTIONS(458), + [anon_sym_module] = ACTIONS(458), + [anon_sym_static] = ACTIONS(458), + [anon_sym_package] = ACTIONS(458), + [anon_sym_import] = ACTIONS(458), + [anon_sym_enum] = ACTIONS(458), + [anon_sym_public] = ACTIONS(458), + [anon_sym_protected] = ACTIONS(458), + [anon_sym_private] = ACTIONS(458), + [anon_sym_abstract] = ACTIONS(458), + [anon_sym_strictfp] = ACTIONS(458), + [anon_sym_native] = ACTIONS(458), + [anon_sym_transient] = ACTIONS(458), + [anon_sym_volatile] = ACTIONS(458), + [anon_sym_sealed] = ACTIONS(458), + [anon_sym_non_DASHsealed] = ACTIONS(456), + [anon_sym_record] = ACTIONS(458), + [anon_sym_ATinterface] = ACTIONS(456), + [anon_sym_interface] = ACTIONS(458), + [anon_sym_byte] = ACTIONS(458), + [anon_sym_short] = ACTIONS(458), + [anon_sym_int] = ACTIONS(458), + [anon_sym_long] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_float] = ACTIONS(458), + [anon_sym_double] = ACTIONS(458), + [sym_boolean_type] = ACTIONS(458), + [sym_void_type] = ACTIONS(458), + [sym_this] = ACTIONS(458), + [sym_super] = ACTIONS(458), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [126] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(594), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym__element_value] = STATE(1152), - [sym_element_value_array_initializer] = STATE(1152), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(460), + [sym_identifier] = ACTIONS(462), + [sym_decimal_integer_literal] = ACTIONS(462), + [sym_hex_integer_literal] = ACTIONS(462), + [sym_octal_integer_literal] = ACTIONS(460), + [sym_binary_integer_literal] = ACTIONS(460), + [sym_decimal_floating_point_literal] = ACTIONS(460), + [sym_hex_floating_point_literal] = ACTIONS(462), + [sym_true] = ACTIONS(462), + [sym_false] = ACTIONS(462), + [sym_character_literal] = ACTIONS(460), + [sym_string_literal] = ACTIONS(462), + [sym_text_block] = ACTIONS(460), + [sym_null_literal] = ACTIONS(462), + [anon_sym_LPAREN] = ACTIONS(460), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(462), + [anon_sym_final] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_TILDE] = ACTIONS(460), + [anon_sym_PLUS_PLUS] = ACTIONS(460), + [anon_sym_DASH_DASH] = ACTIONS(460), + [anon_sym_new] = ACTIONS(462), + [anon_sym_class] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(460), + [anon_sym_case] = ACTIONS(462), + [anon_sym_default] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(460), + [anon_sym_assert] = ACTIONS(462), + [anon_sym_do] = ACTIONS(462), + [anon_sym_while] = ACTIONS(462), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(462), + [anon_sym_return] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_synchronized] = ACTIONS(462), + [anon_sym_throw] = ACTIONS(462), + [anon_sym_try] = ACTIONS(462), + [anon_sym_if] = ACTIONS(462), + [anon_sym_else] = ACTIONS(462), + [anon_sym_for] = ACTIONS(462), + [anon_sym_AT] = ACTIONS(462), + [anon_sym_open] = ACTIONS(462), + [anon_sym_module] = ACTIONS(462), + [anon_sym_static] = ACTIONS(462), + [anon_sym_package] = ACTIONS(462), + [anon_sym_import] = ACTIONS(462), + [anon_sym_enum] = ACTIONS(462), + [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(462), + [anon_sym_non_DASHsealed] = ACTIONS(460), + [anon_sym_record] = ACTIONS(462), + [anon_sym_ATinterface] = ACTIONS(460), + [anon_sym_interface] = ACTIONS(462), + [anon_sym_byte] = ACTIONS(462), + [anon_sym_short] = ACTIONS(462), + [anon_sym_int] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_char] = ACTIONS(462), + [anon_sym_float] = ACTIONS(462), + [anon_sym_double] = ACTIONS(462), + [sym_boolean_type] = ACTIONS(462), + [sym_void_type] = ACTIONS(462), + [sym_this] = ACTIONS(462), + [sym_super] = ACTIONS(462), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [127] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(608), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym__element_value] = STATE(1170), + [sym_element_value_array_initializer] = STATE(1170), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -24179,12 +23049,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), @@ -24204,1387 +23074,1307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [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(454), - [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), - [sym_string_literal] = ACTIONS(456), - [sym_text_block] = 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_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_RBRACE] = 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_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_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_final] = 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), - }, [128] = { - [ts_builtin_sym_end] = ACTIONS(458), - [sym_identifier] = ACTIONS(460), - [sym_decimal_integer_literal] = ACTIONS(460), - [sym_hex_integer_literal] = ACTIONS(460), - [sym_octal_integer_literal] = ACTIONS(458), - [sym_binary_integer_literal] = ACTIONS(458), - [sym_decimal_floating_point_literal] = ACTIONS(458), - [sym_hex_floating_point_literal] = ACTIONS(460), - [sym_true] = ACTIONS(460), - [sym_false] = ACTIONS(460), - [sym_character_literal] = ACTIONS(458), - [sym_string_literal] = ACTIONS(460), - [sym_text_block] = ACTIONS(458), - [sym_null_literal] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(458), - [anon_sym_DASH_DASH] = ACTIONS(458), - [anon_sym_new] = ACTIONS(460), - [anon_sym_class] = ACTIONS(460), - [anon_sym_switch] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_case] = ACTIONS(460), - [anon_sym_default] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_assert] = ACTIONS(460), - [anon_sym_do] = ACTIONS(460), - [anon_sym_while] = ACTIONS(460), - [anon_sym_break] = ACTIONS(460), - [anon_sym_continue] = ACTIONS(460), - [anon_sym_return] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(460), - [anon_sym_synchronized] = ACTIONS(460), - [anon_sym_throw] = ACTIONS(460), - [anon_sym_try] = ACTIONS(460), - [anon_sym_if] = ACTIONS(460), - [anon_sym_else] = ACTIONS(460), - [anon_sym_for] = ACTIONS(460), - [anon_sym_AT] = ACTIONS(460), - [anon_sym_open] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_static] = ACTIONS(460), - [anon_sym_package] = ACTIONS(460), - [anon_sym_import] = ACTIONS(460), - [anon_sym_enum] = ACTIONS(460), - [anon_sym_public] = ACTIONS(460), - [anon_sym_protected] = ACTIONS(460), - [anon_sym_private] = ACTIONS(460), - [anon_sym_abstract] = ACTIONS(460), - [anon_sym_final] = ACTIONS(460), - [anon_sym_strictfp] = ACTIONS(460), - [anon_sym_native] = ACTIONS(460), - [anon_sym_transient] = ACTIONS(460), - [anon_sym_volatile] = ACTIONS(460), - [anon_sym_sealed] = ACTIONS(460), - [anon_sym_non_DASHsealed] = ACTIONS(458), - [anon_sym_record] = ACTIONS(460), - [anon_sym_ATinterface] = ACTIONS(458), - [anon_sym_interface] = ACTIONS(460), - [anon_sym_byte] = ACTIONS(460), - [anon_sym_short] = ACTIONS(460), - [anon_sym_int] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_char] = ACTIONS(460), - [anon_sym_float] = ACTIONS(460), - [anon_sym_double] = ACTIONS(460), - [sym_boolean_type] = ACTIONS(460), - [sym_void_type] = ACTIONS(460), - [sym_this] = ACTIONS(460), - [sym_super] = ACTIONS(460), + [ts_builtin_sym_end] = ACTIONS(464), + [sym_identifier] = ACTIONS(466), + [sym_decimal_integer_literal] = ACTIONS(466), + [sym_hex_integer_literal] = ACTIONS(466), + [sym_octal_integer_literal] = ACTIONS(464), + [sym_binary_integer_literal] = ACTIONS(464), + [sym_decimal_floating_point_literal] = ACTIONS(464), + [sym_hex_floating_point_literal] = ACTIONS(466), + [sym_true] = ACTIONS(466), + [sym_false] = ACTIONS(466), + [sym_character_literal] = ACTIONS(464), + [sym_string_literal] = ACTIONS(466), + [sym_text_block] = ACTIONS(464), + [sym_null_literal] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_final] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_PLUS_PLUS] = ACTIONS(464), + [anon_sym_DASH_DASH] = ACTIONS(464), + [anon_sym_new] = ACTIONS(466), + [anon_sym_class] = ACTIONS(466), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_assert] = ACTIONS(466), + [anon_sym_do] = ACTIONS(466), + [anon_sym_while] = ACTIONS(466), + [anon_sym_break] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(466), + [anon_sym_return] = ACTIONS(466), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_synchronized] = ACTIONS(466), + [anon_sym_throw] = ACTIONS(466), + [anon_sym_try] = ACTIONS(466), + [anon_sym_if] = ACTIONS(466), + [anon_sym_else] = ACTIONS(466), + [anon_sym_for] = ACTIONS(466), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_open] = ACTIONS(466), + [anon_sym_module] = ACTIONS(466), + [anon_sym_static] = ACTIONS(466), + [anon_sym_package] = ACTIONS(466), + [anon_sym_import] = ACTIONS(466), + [anon_sym_enum] = ACTIONS(466), + [anon_sym_public] = ACTIONS(466), + [anon_sym_protected] = ACTIONS(466), + [anon_sym_private] = ACTIONS(466), + [anon_sym_abstract] = ACTIONS(466), + [anon_sym_strictfp] = ACTIONS(466), + [anon_sym_native] = ACTIONS(466), + [anon_sym_transient] = ACTIONS(466), + [anon_sym_volatile] = ACTIONS(466), + [anon_sym_sealed] = ACTIONS(466), + [anon_sym_non_DASHsealed] = ACTIONS(464), + [anon_sym_record] = ACTIONS(466), + [anon_sym_ATinterface] = ACTIONS(464), + [anon_sym_interface] = ACTIONS(466), + [anon_sym_byte] = ACTIONS(466), + [anon_sym_short] = ACTIONS(466), + [anon_sym_int] = ACTIONS(466), + [anon_sym_long] = ACTIONS(466), + [anon_sym_char] = ACTIONS(466), + [anon_sym_float] = ACTIONS(466), + [anon_sym_double] = ACTIONS(466), + [sym_boolean_type] = ACTIONS(466), + [sym_void_type] = ACTIONS(466), + [sym_this] = ACTIONS(466), + [sym_super] = ACTIONS(466), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [129] = { - [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(462), - [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), - [sym_string_literal] = ACTIONS(464), - [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [sym_decimal_integer_literal] = ACTIONS(470), + [sym_hex_integer_literal] = ACTIONS(470), + [sym_octal_integer_literal] = ACTIONS(468), + [sym_binary_integer_literal] = ACTIONS(468), + [sym_decimal_floating_point_literal] = ACTIONS(468), + [sym_hex_floating_point_literal] = ACTIONS(470), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_character_literal] = ACTIONS(468), + [sym_string_literal] = ACTIONS(470), + [sym_text_block] = ACTIONS(468), + [sym_null_literal] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_final] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_PLUS_PLUS] = ACTIONS(468), + [anon_sym_DASH_DASH] = ACTIONS(468), + [anon_sym_new] = ACTIONS(470), + [anon_sym_class] = ACTIONS(470), + [anon_sym_switch] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_case] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_assert] = ACTIONS(470), + [anon_sym_do] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_synchronized] = ACTIONS(470), + [anon_sym_throw] = ACTIONS(470), + [anon_sym_try] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_open] = ACTIONS(470), + [anon_sym_module] = ACTIONS(470), + [anon_sym_static] = ACTIONS(470), + [anon_sym_package] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_enum] = ACTIONS(470), + [anon_sym_public] = ACTIONS(470), + [anon_sym_protected] = ACTIONS(470), + [anon_sym_private] = ACTIONS(470), + [anon_sym_abstract] = ACTIONS(470), + [anon_sym_strictfp] = ACTIONS(470), + [anon_sym_native] = ACTIONS(470), + [anon_sym_transient] = ACTIONS(470), + [anon_sym_volatile] = ACTIONS(470), + [anon_sym_sealed] = ACTIONS(470), + [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_record] = ACTIONS(470), + [anon_sym_ATinterface] = ACTIONS(468), + [anon_sym_interface] = ACTIONS(470), + [anon_sym_byte] = ACTIONS(470), + [anon_sym_short] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_long] = ACTIONS(470), + [anon_sym_char] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_double] = ACTIONS(470), + [sym_boolean_type] = ACTIONS(470), + [sym_void_type] = ACTIONS(470), + [sym_this] = ACTIONS(470), + [sym_super] = ACTIONS(470), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(466), - [sym_identifier] = ACTIONS(468), - [sym_decimal_integer_literal] = ACTIONS(468), - [sym_hex_integer_literal] = ACTIONS(468), - [sym_octal_integer_literal] = ACTIONS(466), - [sym_binary_integer_literal] = ACTIONS(466), - [sym_decimal_floating_point_literal] = ACTIONS(466), - [sym_hex_floating_point_literal] = ACTIONS(468), - [sym_true] = ACTIONS(468), - [sym_false] = ACTIONS(468), - [sym_character_literal] = ACTIONS(466), - [sym_string_literal] = ACTIONS(468), - [sym_text_block] = ACTIONS(466), - [sym_null_literal] = ACTIONS(468), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(466), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_new] = ACTIONS(468), - [anon_sym_class] = ACTIONS(468), - [anon_sym_switch] = ACTIONS(468), - [anon_sym_LBRACE] = ACTIONS(466), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_assert] = ACTIONS(468), - [anon_sym_do] = ACTIONS(468), - [anon_sym_while] = ACTIONS(468), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), - [anon_sym_return] = ACTIONS(468), - [anon_sym_yield] = ACTIONS(468), - [anon_sym_synchronized] = ACTIONS(468), - [anon_sym_throw] = ACTIONS(468), - [anon_sym_try] = ACTIONS(468), - [anon_sym_if] = ACTIONS(468), - [anon_sym_else] = ACTIONS(468), - [anon_sym_for] = ACTIONS(468), - [anon_sym_AT] = ACTIONS(468), - [anon_sym_open] = ACTIONS(468), - [anon_sym_module] = ACTIONS(468), - [anon_sym_static] = ACTIONS(468), - [anon_sym_package] = ACTIONS(468), - [anon_sym_import] = ACTIONS(468), - [anon_sym_enum] = ACTIONS(468), - [anon_sym_public] = ACTIONS(468), - [anon_sym_protected] = ACTIONS(468), - [anon_sym_private] = ACTIONS(468), - [anon_sym_abstract] = ACTIONS(468), - [anon_sym_final] = ACTIONS(468), - [anon_sym_strictfp] = ACTIONS(468), - [anon_sym_native] = ACTIONS(468), - [anon_sym_transient] = ACTIONS(468), - [anon_sym_volatile] = ACTIONS(468), - [anon_sym_sealed] = ACTIONS(468), - [anon_sym_non_DASHsealed] = ACTIONS(466), - [anon_sym_record] = ACTIONS(468), - [anon_sym_ATinterface] = ACTIONS(466), - [anon_sym_interface] = ACTIONS(468), - [anon_sym_byte] = ACTIONS(468), - [anon_sym_short] = ACTIONS(468), - [anon_sym_int] = ACTIONS(468), - [anon_sym_long] = ACTIONS(468), - [anon_sym_char] = ACTIONS(468), - [anon_sym_float] = ACTIONS(468), - [anon_sym_double] = ACTIONS(468), - [sym_boolean_type] = ACTIONS(468), - [sym_void_type] = ACTIONS(468), - [sym_this] = ACTIONS(468), - [sym_super] = ACTIONS(468), + [ts_builtin_sym_end] = ACTIONS(472), + [sym_identifier] = ACTIONS(474), + [sym_decimal_integer_literal] = ACTIONS(474), + [sym_hex_integer_literal] = ACTIONS(474), + [sym_octal_integer_literal] = ACTIONS(472), + [sym_binary_integer_literal] = ACTIONS(472), + [sym_decimal_floating_point_literal] = ACTIONS(472), + [sym_hex_floating_point_literal] = ACTIONS(474), + [sym_true] = ACTIONS(474), + [sym_false] = ACTIONS(474), + [sym_character_literal] = ACTIONS(472), + [sym_string_literal] = ACTIONS(474), + [sym_text_block] = ACTIONS(472), + [sym_null_literal] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_final] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(472), + [anon_sym_DASH_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(474), + [anon_sym_class] = ACTIONS(474), + [anon_sym_switch] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_case] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_assert] = ACTIONS(474), + [anon_sym_do] = ACTIONS(474), + [anon_sym_while] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_return] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(474), + [anon_sym_synchronized] = ACTIONS(474), + [anon_sym_throw] = ACTIONS(474), + [anon_sym_try] = ACTIONS(474), + [anon_sym_if] = ACTIONS(474), + [anon_sym_else] = ACTIONS(474), + [anon_sym_for] = ACTIONS(474), + [anon_sym_AT] = ACTIONS(474), + [anon_sym_open] = ACTIONS(474), + [anon_sym_module] = ACTIONS(474), + [anon_sym_static] = ACTIONS(474), + [anon_sym_package] = ACTIONS(474), + [anon_sym_import] = ACTIONS(474), + [anon_sym_enum] = ACTIONS(474), + [anon_sym_public] = ACTIONS(474), + [anon_sym_protected] = ACTIONS(474), + [anon_sym_private] = ACTIONS(474), + [anon_sym_abstract] = ACTIONS(474), + [anon_sym_strictfp] = ACTIONS(474), + [anon_sym_native] = ACTIONS(474), + [anon_sym_transient] = ACTIONS(474), + [anon_sym_volatile] = ACTIONS(474), + [anon_sym_sealed] = ACTIONS(474), + [anon_sym_non_DASHsealed] = ACTIONS(472), + [anon_sym_record] = ACTIONS(474), + [anon_sym_ATinterface] = ACTIONS(472), + [anon_sym_interface] = ACTIONS(474), + [anon_sym_byte] = ACTIONS(474), + [anon_sym_short] = ACTIONS(474), + [anon_sym_int] = ACTIONS(474), + [anon_sym_long] = ACTIONS(474), + [anon_sym_char] = ACTIONS(474), + [anon_sym_float] = ACTIONS(474), + [anon_sym_double] = ACTIONS(474), + [sym_boolean_type] = ACTIONS(474), + [sym_void_type] = ACTIONS(474), + [sym_this] = ACTIONS(474), + [sym_super] = ACTIONS(474), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [131] = { - [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(470), - [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), - [sym_string_literal] = ACTIONS(472), - [sym_text_block] = 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_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_RBRACE] = 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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_decimal_integer_literal] = ACTIONS(478), + [sym_hex_integer_literal] = ACTIONS(478), + [sym_octal_integer_literal] = ACTIONS(476), + [sym_binary_integer_literal] = ACTIONS(476), + [sym_decimal_floating_point_literal] = ACTIONS(476), + [sym_hex_floating_point_literal] = ACTIONS(478), + [sym_true] = ACTIONS(478), + [sym_false] = ACTIONS(478), + [sym_character_literal] = ACTIONS(476), + [sym_string_literal] = ACTIONS(478), + [sym_text_block] = ACTIONS(476), + [sym_null_literal] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_final] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(476), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(478), + [anon_sym_class] = ACTIONS(478), + [anon_sym_switch] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(478), + [anon_sym_default] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(476), + [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_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(476), + [anon_sym_record] = ACTIONS(478), + [anon_sym_ATinterface] = ACTIONS(476), + [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), }, [132] = { - [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(474), - [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), - [sym_string_literal] = ACTIONS(476), - [sym_text_block] = 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_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_RBRACE] = 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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(480), + [sym_identifier] = ACTIONS(482), + [sym_decimal_integer_literal] = ACTIONS(482), + [sym_hex_integer_literal] = ACTIONS(482), + [sym_octal_integer_literal] = ACTIONS(480), + [sym_binary_integer_literal] = ACTIONS(480), + [sym_decimal_floating_point_literal] = ACTIONS(480), + [sym_hex_floating_point_literal] = ACTIONS(482), + [sym_true] = ACTIONS(482), + [sym_false] = ACTIONS(482), + [sym_character_literal] = ACTIONS(480), + [sym_string_literal] = ACTIONS(482), + [sym_text_block] = ACTIONS(480), + [sym_null_literal] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_final] = ACTIONS(482), + [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(482), + [anon_sym_class] = ACTIONS(482), + [anon_sym_switch] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_case] = ACTIONS(482), + [anon_sym_default] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_assert] = ACTIONS(482), + [anon_sym_do] = ACTIONS(482), + [anon_sym_while] = ACTIONS(482), + [anon_sym_break] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_return] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_synchronized] = ACTIONS(482), + [anon_sym_throw] = ACTIONS(482), + [anon_sym_try] = ACTIONS(482), + [anon_sym_if] = ACTIONS(482), + [anon_sym_else] = ACTIONS(482), + [anon_sym_for] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_open] = ACTIONS(482), + [anon_sym_module] = ACTIONS(482), + [anon_sym_static] = ACTIONS(482), + [anon_sym_package] = ACTIONS(482), + [anon_sym_import] = ACTIONS(482), + [anon_sym_enum] = ACTIONS(482), + [anon_sym_public] = ACTIONS(482), + [anon_sym_protected] = ACTIONS(482), + [anon_sym_private] = ACTIONS(482), + [anon_sym_abstract] = ACTIONS(482), + [anon_sym_strictfp] = ACTIONS(482), + [anon_sym_native] = ACTIONS(482), + [anon_sym_transient] = ACTIONS(482), + [anon_sym_volatile] = ACTIONS(482), + [anon_sym_sealed] = ACTIONS(482), + [anon_sym_non_DASHsealed] = ACTIONS(480), + [anon_sym_record] = ACTIONS(482), + [anon_sym_ATinterface] = ACTIONS(480), + [anon_sym_interface] = ACTIONS(482), + [anon_sym_byte] = ACTIONS(482), + [anon_sym_short] = ACTIONS(482), + [anon_sym_int] = ACTIONS(482), + [anon_sym_long] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_float] = ACTIONS(482), + [anon_sym_double] = ACTIONS(482), + [sym_boolean_type] = ACTIONS(482), + [sym_void_type] = ACTIONS(482), + [sym_this] = ACTIONS(482), + [sym_super] = ACTIONS(482), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [133] = { - [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(478), - [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), - [sym_string_literal] = ACTIONS(480), - [sym_text_block] = 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_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_RBRACE] = 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_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_final] = 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), + [ts_builtin_sym_end] = ACTIONS(484), + [sym_identifier] = ACTIONS(486), + [sym_decimal_integer_literal] = ACTIONS(486), + [sym_hex_integer_literal] = ACTIONS(486), + [sym_octal_integer_literal] = ACTIONS(484), + [sym_binary_integer_literal] = ACTIONS(484), + [sym_decimal_floating_point_literal] = ACTIONS(484), + [sym_hex_floating_point_literal] = ACTIONS(486), + [sym_true] = ACTIONS(486), + [sym_false] = ACTIONS(486), + [sym_character_literal] = ACTIONS(484), + [sym_string_literal] = ACTIONS(486), + [sym_text_block] = ACTIONS(484), + [sym_null_literal] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_final] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(484), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), + [anon_sym_new] = ACTIONS(486), + [anon_sym_class] = ACTIONS(486), + [anon_sym_switch] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_case] = ACTIONS(486), + [anon_sym_default] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_assert] = ACTIONS(486), + [anon_sym_do] = ACTIONS(486), + [anon_sym_while] = ACTIONS(486), + [anon_sym_break] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(486), + [anon_sym_return] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(486), + [anon_sym_synchronized] = ACTIONS(486), + [anon_sym_throw] = ACTIONS(486), + [anon_sym_try] = ACTIONS(486), + [anon_sym_if] = ACTIONS(486), + [anon_sym_else] = ACTIONS(486), + [anon_sym_for] = ACTIONS(486), + [anon_sym_AT] = ACTIONS(486), + [anon_sym_open] = ACTIONS(486), + [anon_sym_module] = ACTIONS(486), + [anon_sym_static] = ACTIONS(486), + [anon_sym_package] = ACTIONS(486), + [anon_sym_import] = ACTIONS(486), + [anon_sym_enum] = ACTIONS(486), + [anon_sym_public] = ACTIONS(486), + [anon_sym_protected] = ACTIONS(486), + [anon_sym_private] = ACTIONS(486), + [anon_sym_abstract] = ACTIONS(486), + [anon_sym_strictfp] = ACTIONS(486), + [anon_sym_native] = ACTIONS(486), + [anon_sym_transient] = ACTIONS(486), + [anon_sym_volatile] = ACTIONS(486), + [anon_sym_sealed] = ACTIONS(486), + [anon_sym_non_DASHsealed] = ACTIONS(484), + [anon_sym_record] = ACTIONS(486), + [anon_sym_ATinterface] = ACTIONS(484), + [anon_sym_interface] = ACTIONS(486), + [anon_sym_byte] = ACTIONS(486), + [anon_sym_short] = ACTIONS(486), + [anon_sym_int] = ACTIONS(486), + [anon_sym_long] = ACTIONS(486), + [anon_sym_char] = ACTIONS(486), + [anon_sym_float] = ACTIONS(486), + [anon_sym_double] = ACTIONS(486), + [sym_boolean_type] = ACTIONS(486), + [sym_void_type] = ACTIONS(486), + [sym_this] = ACTIONS(486), + [sym_super] = ACTIONS(486), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [134] = { - [ts_builtin_sym_end] = ACTIONS(482), - [sym_identifier] = ACTIONS(484), - [sym_decimal_integer_literal] = ACTIONS(484), - [sym_hex_integer_literal] = ACTIONS(484), - [sym_octal_integer_literal] = ACTIONS(482), - [sym_binary_integer_literal] = ACTIONS(482), - [sym_decimal_floating_point_literal] = ACTIONS(482), - [sym_hex_floating_point_literal] = ACTIONS(484), - [sym_true] = ACTIONS(484), - [sym_false] = ACTIONS(484), - [sym_character_literal] = ACTIONS(482), - [sym_string_literal] = ACTIONS(484), - [sym_text_block] = ACTIONS(482), - [sym_null_literal] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(482), - [anon_sym_TILDE] = ACTIONS(482), - [anon_sym_PLUS_PLUS] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(482), - [anon_sym_new] = ACTIONS(484), - [anon_sym_class] = ACTIONS(484), - [anon_sym_switch] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_case] = ACTIONS(484), - [anon_sym_default] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_do] = ACTIONS(484), - [anon_sym_while] = ACTIONS(484), - [anon_sym_break] = ACTIONS(484), - [anon_sym_continue] = ACTIONS(484), - [anon_sym_return] = ACTIONS(484), - [anon_sym_yield] = ACTIONS(484), - [anon_sym_synchronized] = ACTIONS(484), - [anon_sym_throw] = ACTIONS(484), - [anon_sym_try] = ACTIONS(484), - [anon_sym_if] = ACTIONS(484), - [anon_sym_else] = ACTIONS(484), - [anon_sym_for] = ACTIONS(484), - [anon_sym_AT] = ACTIONS(484), - [anon_sym_open] = ACTIONS(484), - [anon_sym_module] = ACTIONS(484), - [anon_sym_static] = ACTIONS(484), - [anon_sym_package] = ACTIONS(484), - [anon_sym_import] = ACTIONS(484), - [anon_sym_enum] = ACTIONS(484), - [anon_sym_public] = ACTIONS(484), - [anon_sym_protected] = ACTIONS(484), - [anon_sym_private] = ACTIONS(484), - [anon_sym_abstract] = ACTIONS(484), - [anon_sym_final] = ACTIONS(484), - [anon_sym_strictfp] = ACTIONS(484), - [anon_sym_native] = ACTIONS(484), - [anon_sym_transient] = ACTIONS(484), - [anon_sym_volatile] = ACTIONS(484), - [anon_sym_sealed] = ACTIONS(484), - [anon_sym_non_DASHsealed] = ACTIONS(482), - [anon_sym_record] = ACTIONS(484), - [anon_sym_ATinterface] = ACTIONS(482), - [anon_sym_interface] = ACTIONS(484), - [anon_sym_byte] = ACTIONS(484), - [anon_sym_short] = ACTIONS(484), - [anon_sym_int] = ACTIONS(484), - [anon_sym_long] = ACTIONS(484), - [anon_sym_char] = ACTIONS(484), - [anon_sym_float] = ACTIONS(484), - [anon_sym_double] = ACTIONS(484), - [sym_boolean_type] = ACTIONS(484), - [sym_void_type] = ACTIONS(484), - [sym_this] = ACTIONS(484), - [sym_super] = ACTIONS(484), + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [sym_decimal_integer_literal] = ACTIONS(490), + [sym_hex_integer_literal] = ACTIONS(490), + [sym_octal_integer_literal] = ACTIONS(488), + [sym_binary_integer_literal] = ACTIONS(488), + [sym_decimal_floating_point_literal] = ACTIONS(488), + [sym_hex_floating_point_literal] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_character_literal] = ACTIONS(488), + [sym_string_literal] = ACTIONS(490), + [sym_text_block] = ACTIONS(488), + [sym_null_literal] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_final] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_PLUS_PLUS] = ACTIONS(488), + [anon_sym_DASH_DASH] = ACTIONS(488), + [anon_sym_new] = ACTIONS(490), + [anon_sym_class] = ACTIONS(490), + [anon_sym_switch] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_case] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(488), + [anon_sym_assert] = ACTIONS(490), + [anon_sym_do] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_return] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_synchronized] = ACTIONS(490), + [anon_sym_throw] = ACTIONS(490), + [anon_sym_try] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_AT] = ACTIONS(490), + [anon_sym_open] = ACTIONS(490), + [anon_sym_module] = ACTIONS(490), + [anon_sym_static] = ACTIONS(490), + [anon_sym_package] = ACTIONS(490), + [anon_sym_import] = ACTIONS(490), + [anon_sym_enum] = ACTIONS(490), + [anon_sym_public] = ACTIONS(490), + [anon_sym_protected] = ACTIONS(490), + [anon_sym_private] = ACTIONS(490), + [anon_sym_abstract] = ACTIONS(490), + [anon_sym_strictfp] = ACTIONS(490), + [anon_sym_native] = ACTIONS(490), + [anon_sym_transient] = ACTIONS(490), + [anon_sym_volatile] = ACTIONS(490), + [anon_sym_sealed] = ACTIONS(490), + [anon_sym_non_DASHsealed] = ACTIONS(488), + [anon_sym_record] = ACTIONS(490), + [anon_sym_ATinterface] = ACTIONS(488), + [anon_sym_interface] = ACTIONS(490), + [anon_sym_byte] = ACTIONS(490), + [anon_sym_short] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_long] = ACTIONS(490), + [anon_sym_char] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_double] = ACTIONS(490), + [sym_boolean_type] = ACTIONS(490), + [sym_void_type] = ACTIONS(490), + [sym_this] = ACTIONS(490), + [sym_super] = ACTIONS(490), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(488), - [sym_decimal_integer_literal] = ACTIONS(488), - [sym_hex_integer_literal] = ACTIONS(488), - [sym_octal_integer_literal] = ACTIONS(486), - [sym_binary_integer_literal] = ACTIONS(486), - [sym_decimal_floating_point_literal] = ACTIONS(486), - [sym_hex_floating_point_literal] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_character_literal] = ACTIONS(486), - [sym_string_literal] = ACTIONS(488), - [sym_text_block] = ACTIONS(486), - [sym_null_literal] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_BANG] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_DASH_DASH] = ACTIONS(486), - [anon_sym_new] = ACTIONS(488), - [anon_sym_class] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(488), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_case] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_assert] = ACTIONS(488), - [anon_sym_do] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_break] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(488), - [anon_sym_synchronized] = ACTIONS(488), - [anon_sym_throw] = ACTIONS(488), - [anon_sym_try] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_else] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_AT] = ACTIONS(488), - [anon_sym_open] = ACTIONS(488), - [anon_sym_module] = ACTIONS(488), - [anon_sym_static] = ACTIONS(488), - [anon_sym_package] = ACTIONS(488), - [anon_sym_import] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_public] = ACTIONS(488), - [anon_sym_protected] = ACTIONS(488), - [anon_sym_private] = ACTIONS(488), - [anon_sym_abstract] = ACTIONS(488), - [anon_sym_final] = ACTIONS(488), - [anon_sym_strictfp] = ACTIONS(488), - [anon_sym_native] = ACTIONS(488), - [anon_sym_transient] = ACTIONS(488), - [anon_sym_volatile] = ACTIONS(488), - [anon_sym_sealed] = ACTIONS(488), - [anon_sym_non_DASHsealed] = ACTIONS(486), - [anon_sym_record] = ACTIONS(488), - [anon_sym_ATinterface] = ACTIONS(486), - [anon_sym_interface] = ACTIONS(488), - [anon_sym_byte] = ACTIONS(488), - [anon_sym_short] = ACTIONS(488), - [anon_sym_int] = ACTIONS(488), - [anon_sym_long] = ACTIONS(488), - [anon_sym_char] = ACTIONS(488), - [anon_sym_float] = ACTIONS(488), - [anon_sym_double] = ACTIONS(488), - [sym_boolean_type] = ACTIONS(488), - [sym_void_type] = ACTIONS(488), - [sym_this] = ACTIONS(488), - [sym_super] = ACTIONS(488), + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [sym_decimal_integer_literal] = ACTIONS(494), + [sym_hex_integer_literal] = ACTIONS(494), + [sym_octal_integer_literal] = ACTIONS(492), + [sym_binary_integer_literal] = ACTIONS(492), + [sym_decimal_floating_point_literal] = ACTIONS(492), + [sym_hex_floating_point_literal] = ACTIONS(494), + [sym_true] = ACTIONS(494), + [sym_false] = ACTIONS(494), + [sym_character_literal] = ACTIONS(492), + [sym_string_literal] = ACTIONS(494), + [sym_text_block] = ACTIONS(492), + [sym_null_literal] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_final] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_PLUS_PLUS] = ACTIONS(492), + [anon_sym_DASH_DASH] = ACTIONS(492), + [anon_sym_new] = ACTIONS(494), + [anon_sym_class] = ACTIONS(494), + [anon_sym_switch] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_case] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_assert] = ACTIONS(494), + [anon_sym_do] = ACTIONS(494), + [anon_sym_while] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_return] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_synchronized] = ACTIONS(494), + [anon_sym_throw] = ACTIONS(494), + [anon_sym_try] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_else] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_open] = ACTIONS(494), + [anon_sym_module] = ACTIONS(494), + [anon_sym_static] = ACTIONS(494), + [anon_sym_package] = ACTIONS(494), + [anon_sym_import] = ACTIONS(494), + [anon_sym_enum] = ACTIONS(494), + [anon_sym_public] = ACTIONS(494), + [anon_sym_protected] = ACTIONS(494), + [anon_sym_private] = ACTIONS(494), + [anon_sym_abstract] = ACTIONS(494), + [anon_sym_strictfp] = ACTIONS(494), + [anon_sym_native] = ACTIONS(494), + [anon_sym_transient] = ACTIONS(494), + [anon_sym_volatile] = ACTIONS(494), + [anon_sym_sealed] = ACTIONS(494), + [anon_sym_non_DASHsealed] = ACTIONS(492), + [anon_sym_record] = ACTIONS(494), + [anon_sym_ATinterface] = ACTIONS(492), + [anon_sym_interface] = ACTIONS(494), + [anon_sym_byte] = ACTIONS(494), + [anon_sym_short] = ACTIONS(494), + [anon_sym_int] = ACTIONS(494), + [anon_sym_long] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_float] = ACTIONS(494), + [anon_sym_double] = ACTIONS(494), + [sym_boolean_type] = ACTIONS(494), + [sym_void_type] = ACTIONS(494), + [sym_this] = ACTIONS(494), + [sym_super] = ACTIONS(494), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [136] = { - [ts_builtin_sym_end] = ACTIONS(490), - [sym_identifier] = ACTIONS(492), - [sym_decimal_integer_literal] = ACTIONS(492), - [sym_hex_integer_literal] = ACTIONS(492), - [sym_octal_integer_literal] = ACTIONS(490), - [sym_binary_integer_literal] = ACTIONS(490), - [sym_decimal_floating_point_literal] = ACTIONS(490), - [sym_hex_floating_point_literal] = ACTIONS(492), - [sym_true] = ACTIONS(492), - [sym_false] = ACTIONS(492), - [sym_character_literal] = ACTIONS(490), - [sym_string_literal] = ACTIONS(492), - [sym_text_block] = ACTIONS(490), - [sym_null_literal] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(490), - [anon_sym_PLUS_PLUS] = ACTIONS(490), - [anon_sym_DASH_DASH] = ACTIONS(490), - [anon_sym_new] = ACTIONS(492), - [anon_sym_class] = ACTIONS(492), - [anon_sym_switch] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_case] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_assert] = ACTIONS(492), - [anon_sym_do] = ACTIONS(492), - [anon_sym_while] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_continue] = ACTIONS(492), - [anon_sym_return] = ACTIONS(492), - [anon_sym_yield] = ACTIONS(492), - [anon_sym_synchronized] = ACTIONS(492), - [anon_sym_throw] = ACTIONS(492), - [anon_sym_try] = ACTIONS(492), - [anon_sym_if] = ACTIONS(492), - [anon_sym_else] = ACTIONS(492), - [anon_sym_for] = ACTIONS(492), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_open] = ACTIONS(492), - [anon_sym_module] = ACTIONS(492), - [anon_sym_static] = ACTIONS(492), - [anon_sym_package] = ACTIONS(492), - [anon_sym_import] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(492), - [anon_sym_public] = ACTIONS(492), - [anon_sym_protected] = ACTIONS(492), - [anon_sym_private] = ACTIONS(492), - [anon_sym_abstract] = ACTIONS(492), - [anon_sym_final] = ACTIONS(492), - [anon_sym_strictfp] = ACTIONS(492), - [anon_sym_native] = ACTIONS(492), - [anon_sym_transient] = ACTIONS(492), - [anon_sym_volatile] = ACTIONS(492), - [anon_sym_sealed] = ACTIONS(492), - [anon_sym_non_DASHsealed] = ACTIONS(490), - [anon_sym_record] = ACTIONS(492), - [anon_sym_ATinterface] = ACTIONS(490), - [anon_sym_interface] = ACTIONS(492), - [anon_sym_byte] = ACTIONS(492), - [anon_sym_short] = ACTIONS(492), - [anon_sym_int] = ACTIONS(492), - [anon_sym_long] = ACTIONS(492), - [anon_sym_char] = ACTIONS(492), - [anon_sym_float] = ACTIONS(492), - [anon_sym_double] = ACTIONS(492), - [sym_boolean_type] = ACTIONS(492), - [sym_void_type] = ACTIONS(492), - [sym_this] = ACTIONS(492), - [sym_super] = ACTIONS(492), + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [sym_decimal_integer_literal] = ACTIONS(498), + [sym_hex_integer_literal] = ACTIONS(498), + [sym_octal_integer_literal] = ACTIONS(496), + [sym_binary_integer_literal] = ACTIONS(496), + [sym_decimal_floating_point_literal] = ACTIONS(496), + [sym_hex_floating_point_literal] = ACTIONS(498), + [sym_true] = ACTIONS(498), + [sym_false] = ACTIONS(498), + [sym_character_literal] = ACTIONS(496), + [sym_string_literal] = ACTIONS(498), + [sym_text_block] = ACTIONS(496), + [sym_null_literal] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_final] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(496), + [anon_sym_DASH_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(498), + [anon_sym_class] = ACTIONS(498), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_case] = ACTIONS(498), + [anon_sym_default] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_assert] = ACTIONS(498), + [anon_sym_do] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_synchronized] = ACTIONS(498), + [anon_sym_throw] = ACTIONS(498), + [anon_sym_try] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_else] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(498), + [anon_sym_open] = ACTIONS(498), + [anon_sym_module] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_package] = ACTIONS(498), + [anon_sym_import] = ACTIONS(498), + [anon_sym_enum] = ACTIONS(498), + [anon_sym_public] = ACTIONS(498), + [anon_sym_protected] = ACTIONS(498), + [anon_sym_private] = ACTIONS(498), + [anon_sym_abstract] = ACTIONS(498), + [anon_sym_strictfp] = ACTIONS(498), + [anon_sym_native] = ACTIONS(498), + [anon_sym_transient] = ACTIONS(498), + [anon_sym_volatile] = ACTIONS(498), + [anon_sym_sealed] = ACTIONS(498), + [anon_sym_non_DASHsealed] = ACTIONS(496), + [anon_sym_record] = ACTIONS(498), + [anon_sym_ATinterface] = ACTIONS(496), + [anon_sym_interface] = ACTIONS(498), + [anon_sym_byte] = ACTIONS(498), + [anon_sym_short] = ACTIONS(498), + [anon_sym_int] = ACTIONS(498), + [anon_sym_long] = ACTIONS(498), + [anon_sym_char] = ACTIONS(498), + [anon_sym_float] = ACTIONS(498), + [anon_sym_double] = ACTIONS(498), + [sym_boolean_type] = ACTIONS(498), + [sym_void_type] = ACTIONS(498), + [sym_this] = ACTIONS(498), + [sym_super] = ACTIONS(498), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [137] = { - [ts_builtin_sym_end] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), - [sym_decimal_integer_literal] = ACTIONS(496), - [sym_hex_integer_literal] = ACTIONS(496), - [sym_octal_integer_literal] = ACTIONS(494), - [sym_binary_integer_literal] = ACTIONS(494), - [sym_decimal_floating_point_literal] = ACTIONS(494), - [sym_hex_floating_point_literal] = ACTIONS(496), - [sym_true] = ACTIONS(496), - [sym_false] = ACTIONS(496), - [sym_character_literal] = ACTIONS(494), - [sym_string_literal] = ACTIONS(496), - [sym_text_block] = ACTIONS(494), - [sym_null_literal] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(494), - [anon_sym_PLUS_PLUS] = ACTIONS(494), - [anon_sym_DASH_DASH] = ACTIONS(494), - [anon_sym_new] = ACTIONS(496), - [anon_sym_class] = ACTIONS(496), - [anon_sym_switch] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_case] = ACTIONS(496), - [anon_sym_default] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_assert] = ACTIONS(496), - [anon_sym_do] = ACTIONS(496), - [anon_sym_while] = ACTIONS(496), - [anon_sym_break] = ACTIONS(496), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_return] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(496), - [anon_sym_synchronized] = ACTIONS(496), - [anon_sym_throw] = ACTIONS(496), - [anon_sym_try] = ACTIONS(496), - [anon_sym_if] = ACTIONS(496), - [anon_sym_else] = ACTIONS(496), - [anon_sym_for] = ACTIONS(496), - [anon_sym_AT] = ACTIONS(496), - [anon_sym_open] = ACTIONS(496), - [anon_sym_module] = ACTIONS(496), - [anon_sym_static] = ACTIONS(496), - [anon_sym_package] = ACTIONS(496), - [anon_sym_import] = ACTIONS(496), - [anon_sym_enum] = ACTIONS(496), - [anon_sym_public] = ACTIONS(496), - [anon_sym_protected] = ACTIONS(496), - [anon_sym_private] = ACTIONS(496), - [anon_sym_abstract] = ACTIONS(496), - [anon_sym_final] = ACTIONS(496), - [anon_sym_strictfp] = ACTIONS(496), - [anon_sym_native] = ACTIONS(496), - [anon_sym_transient] = ACTIONS(496), - [anon_sym_volatile] = ACTIONS(496), - [anon_sym_sealed] = ACTIONS(496), - [anon_sym_non_DASHsealed] = ACTIONS(494), - [anon_sym_record] = ACTIONS(496), - [anon_sym_ATinterface] = ACTIONS(494), - [anon_sym_interface] = ACTIONS(496), - [anon_sym_byte] = ACTIONS(496), - [anon_sym_short] = ACTIONS(496), - [anon_sym_int] = ACTIONS(496), - [anon_sym_long] = ACTIONS(496), - [anon_sym_char] = ACTIONS(496), - [anon_sym_float] = ACTIONS(496), - [anon_sym_double] = ACTIONS(496), - [sym_boolean_type] = ACTIONS(496), - [sym_void_type] = ACTIONS(496), - [sym_this] = ACTIONS(496), - [sym_super] = ACTIONS(496), + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [sym_decimal_integer_literal] = ACTIONS(502), + [sym_hex_integer_literal] = ACTIONS(502), + [sym_octal_integer_literal] = ACTIONS(500), + [sym_binary_integer_literal] = ACTIONS(500), + [sym_decimal_floating_point_literal] = ACTIONS(500), + [sym_hex_floating_point_literal] = ACTIONS(502), + [sym_true] = ACTIONS(502), + [sym_false] = ACTIONS(502), + [sym_character_literal] = ACTIONS(500), + [sym_string_literal] = ACTIONS(502), + [sym_text_block] = ACTIONS(500), + [sym_null_literal] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_final] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_new] = ACTIONS(502), + [anon_sym_class] = ACTIONS(502), + [anon_sym_switch] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_case] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_assert] = ACTIONS(502), + [anon_sym_do] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_synchronized] = ACTIONS(502), + [anon_sym_throw] = ACTIONS(502), + [anon_sym_try] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_else] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(502), + [anon_sym_open] = ACTIONS(502), + [anon_sym_module] = ACTIONS(502), + [anon_sym_static] = ACTIONS(502), + [anon_sym_package] = ACTIONS(502), + [anon_sym_import] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(502), + [anon_sym_public] = ACTIONS(502), + [anon_sym_protected] = ACTIONS(502), + [anon_sym_private] = ACTIONS(502), + [anon_sym_abstract] = ACTIONS(502), + [anon_sym_strictfp] = ACTIONS(502), + [anon_sym_native] = ACTIONS(502), + [anon_sym_transient] = ACTIONS(502), + [anon_sym_volatile] = ACTIONS(502), + [anon_sym_sealed] = ACTIONS(502), + [anon_sym_non_DASHsealed] = ACTIONS(500), + [anon_sym_record] = ACTIONS(502), + [anon_sym_ATinterface] = ACTIONS(500), + [anon_sym_interface] = ACTIONS(502), + [anon_sym_byte] = ACTIONS(502), + [anon_sym_short] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_long] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_double] = ACTIONS(502), + [sym_boolean_type] = ACTIONS(502), + [sym_void_type] = ACTIONS(502), + [sym_this] = ACTIONS(502), + [sym_super] = ACTIONS(502), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [138] = { - [ts_builtin_sym_end] = ACTIONS(498), - [sym_identifier] = ACTIONS(500), - [sym_decimal_integer_literal] = ACTIONS(500), - [sym_hex_integer_literal] = ACTIONS(500), - [sym_octal_integer_literal] = ACTIONS(498), - [sym_binary_integer_literal] = ACTIONS(498), - [sym_decimal_floating_point_literal] = ACTIONS(498), - [sym_hex_floating_point_literal] = ACTIONS(500), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_character_literal] = ACTIONS(498), - [sym_string_literal] = ACTIONS(500), - [sym_text_block] = ACTIONS(498), - [sym_null_literal] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_PLUS_PLUS] = ACTIONS(498), - [anon_sym_DASH_DASH] = ACTIONS(498), - [anon_sym_new] = ACTIONS(500), - [anon_sym_class] = ACTIONS(500), - [anon_sym_switch] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_case] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_assert] = ACTIONS(500), - [anon_sym_do] = ACTIONS(500), - [anon_sym_while] = ACTIONS(500), - [anon_sym_break] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(500), - [anon_sym_return] = ACTIONS(500), - [anon_sym_yield] = ACTIONS(500), - [anon_sym_synchronized] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(500), - [anon_sym_try] = ACTIONS(500), - [anon_sym_if] = ACTIONS(500), - [anon_sym_else] = ACTIONS(500), - [anon_sym_for] = ACTIONS(500), - [anon_sym_AT] = ACTIONS(500), - [anon_sym_open] = ACTIONS(500), - [anon_sym_module] = ACTIONS(500), - [anon_sym_static] = ACTIONS(500), - [anon_sym_package] = ACTIONS(500), - [anon_sym_import] = ACTIONS(500), - [anon_sym_enum] = ACTIONS(500), - [anon_sym_public] = ACTIONS(500), - [anon_sym_protected] = ACTIONS(500), - [anon_sym_private] = ACTIONS(500), - [anon_sym_abstract] = ACTIONS(500), - [anon_sym_final] = ACTIONS(500), - [anon_sym_strictfp] = ACTIONS(500), - [anon_sym_native] = ACTIONS(500), - [anon_sym_transient] = ACTIONS(500), - [anon_sym_volatile] = ACTIONS(500), - [anon_sym_sealed] = ACTIONS(500), - [anon_sym_non_DASHsealed] = ACTIONS(498), - [anon_sym_record] = ACTIONS(500), - [anon_sym_ATinterface] = ACTIONS(498), - [anon_sym_interface] = ACTIONS(500), - [anon_sym_byte] = ACTIONS(500), - [anon_sym_short] = ACTIONS(500), - [anon_sym_int] = ACTIONS(500), - [anon_sym_long] = ACTIONS(500), - [anon_sym_char] = ACTIONS(500), - [anon_sym_float] = ACTIONS(500), - [anon_sym_double] = ACTIONS(500), - [sym_boolean_type] = ACTIONS(500), - [sym_void_type] = ACTIONS(500), - [sym_this] = ACTIONS(500), - [sym_super] = ACTIONS(500), + [ts_builtin_sym_end] = ACTIONS(504), + [sym_identifier] = ACTIONS(506), + [sym_decimal_integer_literal] = ACTIONS(506), + [sym_hex_integer_literal] = ACTIONS(506), + [sym_octal_integer_literal] = ACTIONS(504), + [sym_binary_integer_literal] = ACTIONS(504), + [sym_decimal_floating_point_literal] = ACTIONS(504), + [sym_hex_floating_point_literal] = ACTIONS(506), + [sym_true] = ACTIONS(506), + [sym_false] = ACTIONS(506), + [sym_character_literal] = ACTIONS(504), + [sym_string_literal] = ACTIONS(506), + [sym_text_block] = ACTIONS(504), + [sym_null_literal] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_final] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_class] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_case] = ACTIONS(506), + [anon_sym_default] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(504), + [anon_sym_assert] = ACTIONS(506), + [anon_sym_do] = ACTIONS(506), + [anon_sym_while] = ACTIONS(506), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [anon_sym_return] = ACTIONS(506), + [anon_sym_yield] = ACTIONS(506), + [anon_sym_synchronized] = ACTIONS(506), + [anon_sym_throw] = ACTIONS(506), + [anon_sym_try] = ACTIONS(506), + [anon_sym_if] = ACTIONS(506), + [anon_sym_else] = ACTIONS(506), + [anon_sym_for] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(506), + [anon_sym_open] = ACTIONS(506), + [anon_sym_module] = ACTIONS(506), + [anon_sym_static] = ACTIONS(506), + [anon_sym_package] = ACTIONS(506), + [anon_sym_import] = ACTIONS(506), + [anon_sym_enum] = ACTIONS(506), + [anon_sym_public] = ACTIONS(506), + [anon_sym_protected] = ACTIONS(506), + [anon_sym_private] = ACTIONS(506), + [anon_sym_abstract] = ACTIONS(506), + [anon_sym_strictfp] = ACTIONS(506), + [anon_sym_native] = ACTIONS(506), + [anon_sym_transient] = ACTIONS(506), + [anon_sym_volatile] = ACTIONS(506), + [anon_sym_sealed] = ACTIONS(506), + [anon_sym_non_DASHsealed] = ACTIONS(504), + [anon_sym_record] = ACTIONS(506), + [anon_sym_ATinterface] = ACTIONS(504), + [anon_sym_interface] = ACTIONS(506), + [anon_sym_byte] = ACTIONS(506), + [anon_sym_short] = ACTIONS(506), + [anon_sym_int] = ACTIONS(506), + [anon_sym_long] = ACTIONS(506), + [anon_sym_char] = ACTIONS(506), + [anon_sym_float] = ACTIONS(506), + [anon_sym_double] = ACTIONS(506), + [sym_boolean_type] = ACTIONS(506), + [sym_void_type] = ACTIONS(506), + [sym_this] = ACTIONS(506), + [sym_super] = ACTIONS(506), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(502), - [sym_identifier] = ACTIONS(504), - [sym_decimal_integer_literal] = ACTIONS(504), - [sym_hex_integer_literal] = ACTIONS(504), - [sym_octal_integer_literal] = ACTIONS(502), - [sym_binary_integer_literal] = ACTIONS(502), - [sym_decimal_floating_point_literal] = ACTIONS(502), - [sym_hex_floating_point_literal] = ACTIONS(504), - [sym_true] = ACTIONS(504), - [sym_false] = ACTIONS(504), - [sym_character_literal] = ACTIONS(502), - [sym_string_literal] = ACTIONS(504), - [sym_text_block] = ACTIONS(502), - [sym_null_literal] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), - [anon_sym_new] = ACTIONS(504), - [anon_sym_class] = ACTIONS(504), - [anon_sym_switch] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(502), - [anon_sym_case] = ACTIONS(504), - [anon_sym_default] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_assert] = ACTIONS(504), - [anon_sym_do] = ACTIONS(504), - [anon_sym_while] = ACTIONS(504), - [anon_sym_break] = ACTIONS(504), - [anon_sym_continue] = ACTIONS(504), - [anon_sym_return] = ACTIONS(504), - [anon_sym_yield] = ACTIONS(504), - [anon_sym_synchronized] = ACTIONS(504), - [anon_sym_throw] = ACTIONS(504), - [anon_sym_try] = ACTIONS(504), - [anon_sym_if] = ACTIONS(504), - [anon_sym_else] = ACTIONS(504), - [anon_sym_for] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(504), - [anon_sym_open] = ACTIONS(504), - [anon_sym_module] = ACTIONS(504), - [anon_sym_static] = ACTIONS(504), - [anon_sym_package] = ACTIONS(504), - [anon_sym_import] = ACTIONS(504), - [anon_sym_enum] = ACTIONS(504), - [anon_sym_public] = ACTIONS(504), - [anon_sym_protected] = ACTIONS(504), - [anon_sym_private] = ACTIONS(504), - [anon_sym_abstract] = ACTIONS(504), - [anon_sym_final] = ACTIONS(504), - [anon_sym_strictfp] = ACTIONS(504), - [anon_sym_native] = ACTIONS(504), - [anon_sym_transient] = ACTIONS(504), - [anon_sym_volatile] = ACTIONS(504), - [anon_sym_sealed] = ACTIONS(504), - [anon_sym_non_DASHsealed] = ACTIONS(502), - [anon_sym_record] = ACTIONS(504), - [anon_sym_ATinterface] = ACTIONS(502), - [anon_sym_interface] = ACTIONS(504), - [anon_sym_byte] = ACTIONS(504), - [anon_sym_short] = ACTIONS(504), - [anon_sym_int] = ACTIONS(504), - [anon_sym_long] = ACTIONS(504), - [anon_sym_char] = ACTIONS(504), - [anon_sym_float] = ACTIONS(504), - [anon_sym_double] = ACTIONS(504), - [sym_boolean_type] = ACTIONS(504), - [sym_void_type] = ACTIONS(504), - [sym_this] = ACTIONS(504), - [sym_super] = ACTIONS(504), + [ts_builtin_sym_end] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [sym_decimal_integer_literal] = ACTIONS(510), + [sym_hex_integer_literal] = ACTIONS(510), + [sym_octal_integer_literal] = ACTIONS(508), + [sym_binary_integer_literal] = ACTIONS(508), + [sym_decimal_floating_point_literal] = ACTIONS(508), + [sym_hex_floating_point_literal] = ACTIONS(510), + [sym_true] = ACTIONS(510), + [sym_false] = ACTIONS(510), + [sym_character_literal] = ACTIONS(508), + [sym_string_literal] = ACTIONS(510), + [sym_text_block] = ACTIONS(508), + [sym_null_literal] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_final] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_PLUS_PLUS] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(508), + [anon_sym_new] = ACTIONS(510), + [anon_sym_class] = ACTIONS(510), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_case] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_assert] = ACTIONS(510), + [anon_sym_do] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_synchronized] = ACTIONS(510), + [anon_sym_throw] = ACTIONS(510), + [anon_sym_try] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_else] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [anon_sym_AT] = ACTIONS(510), + [anon_sym_open] = ACTIONS(510), + [anon_sym_module] = ACTIONS(510), + [anon_sym_static] = ACTIONS(510), + [anon_sym_package] = ACTIONS(510), + [anon_sym_import] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_public] = ACTIONS(510), + [anon_sym_protected] = ACTIONS(510), + [anon_sym_private] = ACTIONS(510), + [anon_sym_abstract] = ACTIONS(510), + [anon_sym_strictfp] = ACTIONS(510), + [anon_sym_native] = ACTIONS(510), + [anon_sym_transient] = ACTIONS(510), + [anon_sym_volatile] = ACTIONS(510), + [anon_sym_sealed] = ACTIONS(510), + [anon_sym_non_DASHsealed] = ACTIONS(508), + [anon_sym_record] = ACTIONS(510), + [anon_sym_ATinterface] = ACTIONS(508), + [anon_sym_interface] = ACTIONS(510), + [anon_sym_byte] = ACTIONS(510), + [anon_sym_short] = ACTIONS(510), + [anon_sym_int] = ACTIONS(510), + [anon_sym_long] = ACTIONS(510), + [anon_sym_char] = ACTIONS(510), + [anon_sym_float] = ACTIONS(510), + [anon_sym_double] = ACTIONS(510), + [sym_boolean_type] = ACTIONS(510), + [sym_void_type] = ACTIONS(510), + [sym_this] = ACTIONS(510), + [sym_super] = ACTIONS(510), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [sym_decimal_integer_literal] = ACTIONS(508), - [sym_hex_integer_literal] = ACTIONS(508), - [sym_octal_integer_literal] = ACTIONS(506), - [sym_binary_integer_literal] = ACTIONS(506), - [sym_decimal_floating_point_literal] = ACTIONS(506), - [sym_hex_floating_point_literal] = ACTIONS(508), - [sym_true] = ACTIONS(508), - [sym_false] = ACTIONS(508), - [sym_character_literal] = ACTIONS(506), - [sym_string_literal] = ACTIONS(508), - [sym_text_block] = ACTIONS(506), - [sym_null_literal] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_new] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_assert] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_synchronized] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_open] = ACTIONS(508), - [anon_sym_module] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_protected] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_strictfp] = ACTIONS(508), - [anon_sym_native] = ACTIONS(508), - [anon_sym_transient] = ACTIONS(508), - [anon_sym_volatile] = ACTIONS(508), - [anon_sym_sealed] = ACTIONS(508), - [anon_sym_non_DASHsealed] = ACTIONS(506), - [anon_sym_record] = ACTIONS(508), - [anon_sym_ATinterface] = ACTIONS(506), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_byte] = ACTIONS(508), - [anon_sym_short] = ACTIONS(508), - [anon_sym_int] = ACTIONS(508), - [anon_sym_long] = ACTIONS(508), - [anon_sym_char] = ACTIONS(508), - [anon_sym_float] = ACTIONS(508), - [anon_sym_double] = ACTIONS(508), - [sym_boolean_type] = ACTIONS(508), - [sym_void_type] = ACTIONS(508), - [sym_this] = ACTIONS(508), - [sym_super] = ACTIONS(508), + [ts_builtin_sym_end] = ACTIONS(512), + [sym_identifier] = ACTIONS(514), + [sym_decimal_integer_literal] = ACTIONS(514), + [sym_hex_integer_literal] = ACTIONS(514), + [sym_octal_integer_literal] = ACTIONS(512), + [sym_binary_integer_literal] = ACTIONS(512), + [sym_decimal_floating_point_literal] = ACTIONS(512), + [sym_hex_floating_point_literal] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_character_literal] = ACTIONS(512), + [sym_string_literal] = ACTIONS(514), + [sym_text_block] = ACTIONS(512), + [sym_null_literal] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_final] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_PLUS_PLUS] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(512), + [anon_sym_new] = ACTIONS(514), + [anon_sym_class] = ACTIONS(514), + [anon_sym_switch] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_case] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_assert] = ACTIONS(514), + [anon_sym_do] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_yield] = ACTIONS(514), + [anon_sym_synchronized] = ACTIONS(514), + [anon_sym_throw] = ACTIONS(514), + [anon_sym_try] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_else] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [anon_sym_AT] = ACTIONS(514), + [anon_sym_open] = ACTIONS(514), + [anon_sym_module] = ACTIONS(514), + [anon_sym_static] = ACTIONS(514), + [anon_sym_package] = ACTIONS(514), + [anon_sym_import] = ACTIONS(514), + [anon_sym_enum] = ACTIONS(514), + [anon_sym_public] = ACTIONS(514), + [anon_sym_protected] = ACTIONS(514), + [anon_sym_private] = ACTIONS(514), + [anon_sym_abstract] = ACTIONS(514), + [anon_sym_strictfp] = ACTIONS(514), + [anon_sym_native] = ACTIONS(514), + [anon_sym_transient] = ACTIONS(514), + [anon_sym_volatile] = ACTIONS(514), + [anon_sym_sealed] = ACTIONS(514), + [anon_sym_non_DASHsealed] = ACTIONS(512), + [anon_sym_record] = ACTIONS(514), + [anon_sym_ATinterface] = ACTIONS(512), + [anon_sym_interface] = ACTIONS(514), + [anon_sym_byte] = ACTIONS(514), + [anon_sym_short] = ACTIONS(514), + [anon_sym_int] = ACTIONS(514), + [anon_sym_long] = ACTIONS(514), + [anon_sym_char] = ACTIONS(514), + [anon_sym_float] = ACTIONS(514), + [anon_sym_double] = ACTIONS(514), + [sym_boolean_type] = ACTIONS(514), + [sym_void_type] = ACTIONS(514), + [sym_this] = ACTIONS(514), + [sym_super] = ACTIONS(514), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(510), - [sym_identifier] = ACTIONS(512), - [sym_decimal_integer_literal] = ACTIONS(512), - [sym_hex_integer_literal] = ACTIONS(512), - [sym_octal_integer_literal] = ACTIONS(510), - [sym_binary_integer_literal] = ACTIONS(510), - [sym_decimal_floating_point_literal] = ACTIONS(510), - [sym_hex_floating_point_literal] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_character_literal] = ACTIONS(510), - [sym_string_literal] = ACTIONS(512), - [sym_text_block] = ACTIONS(510), - [sym_null_literal] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_TILDE] = ACTIONS(510), - [anon_sym_PLUS_PLUS] = ACTIONS(510), - [anon_sym_DASH_DASH] = ACTIONS(510), - [anon_sym_new] = ACTIONS(512), - [anon_sym_class] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(510), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(510), - [anon_sym_assert] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(512), - [anon_sym_synchronized] = ACTIONS(512), - [anon_sym_throw] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [anon_sym_else] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_open] = ACTIONS(512), - [anon_sym_module] = ACTIONS(512), - [anon_sym_static] = ACTIONS(512), - [anon_sym_package] = ACTIONS(512), - [anon_sym_import] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_public] = ACTIONS(512), - [anon_sym_protected] = ACTIONS(512), - [anon_sym_private] = ACTIONS(512), - [anon_sym_abstract] = ACTIONS(512), - [anon_sym_final] = ACTIONS(512), - [anon_sym_strictfp] = ACTIONS(512), - [anon_sym_native] = ACTIONS(512), - [anon_sym_transient] = ACTIONS(512), - [anon_sym_volatile] = ACTIONS(512), - [anon_sym_sealed] = ACTIONS(512), - [anon_sym_non_DASHsealed] = ACTIONS(510), - [anon_sym_record] = ACTIONS(512), - [anon_sym_ATinterface] = ACTIONS(510), - [anon_sym_interface] = ACTIONS(512), - [anon_sym_byte] = ACTIONS(512), - [anon_sym_short] = ACTIONS(512), - [anon_sym_int] = ACTIONS(512), - [anon_sym_long] = ACTIONS(512), - [anon_sym_char] = ACTIONS(512), - [anon_sym_float] = ACTIONS(512), - [anon_sym_double] = ACTIONS(512), - [sym_boolean_type] = ACTIONS(512), - [sym_void_type] = ACTIONS(512), - [sym_this] = ACTIONS(512), - [sym_super] = ACTIONS(512), + [ts_builtin_sym_end] = ACTIONS(516), + [sym_identifier] = ACTIONS(518), + [sym_decimal_integer_literal] = ACTIONS(518), + [sym_hex_integer_literal] = ACTIONS(518), + [sym_octal_integer_literal] = ACTIONS(516), + [sym_binary_integer_literal] = ACTIONS(516), + [sym_decimal_floating_point_literal] = ACTIONS(516), + [sym_hex_floating_point_literal] = ACTIONS(518), + [sym_true] = ACTIONS(518), + [sym_false] = ACTIONS(518), + [sym_character_literal] = ACTIONS(516), + [sym_string_literal] = ACTIONS(518), + [sym_text_block] = ACTIONS(516), + [sym_null_literal] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_final] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_DASH_DASH] = ACTIONS(516), + [anon_sym_new] = ACTIONS(518), + [anon_sym_class] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_case] = ACTIONS(518), + [anon_sym_default] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_assert] = ACTIONS(518), + [anon_sym_do] = ACTIONS(518), + [anon_sym_while] = ACTIONS(518), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [anon_sym_return] = ACTIONS(518), + [anon_sym_yield] = ACTIONS(518), + [anon_sym_synchronized] = ACTIONS(518), + [anon_sym_throw] = ACTIONS(518), + [anon_sym_try] = ACTIONS(518), + [anon_sym_if] = ACTIONS(518), + [anon_sym_else] = ACTIONS(518), + [anon_sym_for] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(518), + [anon_sym_open] = ACTIONS(518), + [anon_sym_module] = ACTIONS(518), + [anon_sym_static] = ACTIONS(518), + [anon_sym_package] = ACTIONS(518), + [anon_sym_import] = ACTIONS(518), + [anon_sym_enum] = ACTIONS(518), + [anon_sym_public] = ACTIONS(518), + [anon_sym_protected] = ACTIONS(518), + [anon_sym_private] = ACTIONS(518), + [anon_sym_abstract] = ACTIONS(518), + [anon_sym_strictfp] = ACTIONS(518), + [anon_sym_native] = ACTIONS(518), + [anon_sym_transient] = ACTIONS(518), + [anon_sym_volatile] = ACTIONS(518), + [anon_sym_sealed] = ACTIONS(518), + [anon_sym_non_DASHsealed] = ACTIONS(516), + [anon_sym_record] = ACTIONS(518), + [anon_sym_ATinterface] = ACTIONS(516), + [anon_sym_interface] = ACTIONS(518), + [anon_sym_byte] = ACTIONS(518), + [anon_sym_short] = ACTIONS(518), + [anon_sym_int] = ACTIONS(518), + [anon_sym_long] = ACTIONS(518), + [anon_sym_char] = ACTIONS(518), + [anon_sym_float] = ACTIONS(518), + [anon_sym_double] = ACTIONS(518), + [sym_boolean_type] = ACTIONS(518), + [sym_void_type] = ACTIONS(518), + [sym_this] = ACTIONS(518), + [sym_super] = ACTIONS(518), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [142] = { - [ts_builtin_sym_end] = ACTIONS(514), - [sym_identifier] = ACTIONS(516), - [sym_decimal_integer_literal] = ACTIONS(516), - [sym_hex_integer_literal] = ACTIONS(516), - [sym_octal_integer_literal] = ACTIONS(514), - [sym_binary_integer_literal] = ACTIONS(514), - [sym_decimal_floating_point_literal] = ACTIONS(514), - [sym_hex_floating_point_literal] = ACTIONS(516), - [sym_true] = ACTIONS(516), - [sym_false] = ACTIONS(516), - [sym_character_literal] = ACTIONS(514), - [sym_string_literal] = ACTIONS(516), - [sym_text_block] = ACTIONS(514), - [sym_null_literal] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_PLUS] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(516), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_TILDE] = ACTIONS(514), - [anon_sym_PLUS_PLUS] = ACTIONS(514), - [anon_sym_DASH_DASH] = ACTIONS(514), - [anon_sym_new] = ACTIONS(516), - [anon_sym_class] = ACTIONS(516), - [anon_sym_switch] = ACTIONS(516), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_case] = ACTIONS(516), - [anon_sym_default] = ACTIONS(516), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_assert] = ACTIONS(516), - [anon_sym_do] = ACTIONS(516), - [anon_sym_while] = ACTIONS(516), - [anon_sym_break] = ACTIONS(516), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_return] = ACTIONS(516), - [anon_sym_yield] = ACTIONS(516), - [anon_sym_synchronized] = ACTIONS(516), - [anon_sym_throw] = ACTIONS(516), - [anon_sym_try] = ACTIONS(516), - [anon_sym_if] = ACTIONS(516), - [anon_sym_else] = ACTIONS(516), - [anon_sym_for] = ACTIONS(516), - [anon_sym_AT] = ACTIONS(516), - [anon_sym_open] = ACTIONS(516), - [anon_sym_module] = ACTIONS(516), - [anon_sym_static] = ACTIONS(516), - [anon_sym_package] = ACTIONS(516), - [anon_sym_import] = ACTIONS(516), - [anon_sym_enum] = ACTIONS(516), - [anon_sym_public] = ACTIONS(516), - [anon_sym_protected] = ACTIONS(516), - [anon_sym_private] = ACTIONS(516), - [anon_sym_abstract] = ACTIONS(516), - [anon_sym_final] = ACTIONS(516), - [anon_sym_strictfp] = ACTIONS(516), - [anon_sym_native] = ACTIONS(516), - [anon_sym_transient] = ACTIONS(516), - [anon_sym_volatile] = ACTIONS(516), - [anon_sym_sealed] = ACTIONS(516), - [anon_sym_non_DASHsealed] = ACTIONS(514), - [anon_sym_record] = ACTIONS(516), - [anon_sym_ATinterface] = ACTIONS(514), - [anon_sym_interface] = ACTIONS(516), - [anon_sym_byte] = ACTIONS(516), - [anon_sym_short] = ACTIONS(516), - [anon_sym_int] = ACTIONS(516), - [anon_sym_long] = ACTIONS(516), - [anon_sym_char] = ACTIONS(516), - [anon_sym_float] = ACTIONS(516), - [anon_sym_double] = ACTIONS(516), - [sym_boolean_type] = ACTIONS(516), - [sym_void_type] = ACTIONS(516), - [sym_this] = ACTIONS(516), - [sym_super] = ACTIONS(516), + [ts_builtin_sym_end] = ACTIONS(520), + [sym_identifier] = ACTIONS(522), + [sym_decimal_integer_literal] = ACTIONS(522), + [sym_hex_integer_literal] = ACTIONS(522), + [sym_octal_integer_literal] = ACTIONS(520), + [sym_binary_integer_literal] = ACTIONS(520), + [sym_decimal_floating_point_literal] = ACTIONS(520), + [sym_hex_floating_point_literal] = ACTIONS(522), + [sym_true] = ACTIONS(522), + [sym_false] = ACTIONS(522), + [sym_character_literal] = ACTIONS(520), + [sym_string_literal] = ACTIONS(522), + [sym_text_block] = ACTIONS(520), + [sym_null_literal] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_final] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_PLUS_PLUS] = ACTIONS(520), + [anon_sym_DASH_DASH] = ACTIONS(520), + [anon_sym_new] = ACTIONS(522), + [anon_sym_class] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_case] = ACTIONS(522), + [anon_sym_default] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(522), + [anon_sym_do] = ACTIONS(522), + [anon_sym_while] = ACTIONS(522), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_return] = ACTIONS(522), + [anon_sym_yield] = ACTIONS(522), + [anon_sym_synchronized] = ACTIONS(522), + [anon_sym_throw] = ACTIONS(522), + [anon_sym_try] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_else] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(522), + [anon_sym_open] = ACTIONS(522), + [anon_sym_module] = ACTIONS(522), + [anon_sym_static] = ACTIONS(522), + [anon_sym_package] = ACTIONS(522), + [anon_sym_import] = ACTIONS(522), + [anon_sym_enum] = ACTIONS(522), + [anon_sym_public] = ACTIONS(522), + [anon_sym_protected] = ACTIONS(522), + [anon_sym_private] = ACTIONS(522), + [anon_sym_abstract] = ACTIONS(522), + [anon_sym_strictfp] = ACTIONS(522), + [anon_sym_native] = ACTIONS(522), + [anon_sym_transient] = ACTIONS(522), + [anon_sym_volatile] = ACTIONS(522), + [anon_sym_sealed] = ACTIONS(522), + [anon_sym_non_DASHsealed] = ACTIONS(520), + [anon_sym_record] = ACTIONS(522), + [anon_sym_ATinterface] = ACTIONS(520), + [anon_sym_interface] = ACTIONS(522), + [anon_sym_byte] = ACTIONS(522), + [anon_sym_short] = ACTIONS(522), + [anon_sym_int] = ACTIONS(522), + [anon_sym_long] = ACTIONS(522), + [anon_sym_char] = ACTIONS(522), + [anon_sym_float] = ACTIONS(522), + [anon_sym_double] = ACTIONS(522), + [sym_boolean_type] = ACTIONS(522), + [sym_void_type] = ACTIONS(522), + [sym_this] = ACTIONS(522), + [sym_super] = ACTIONS(522), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(518), - [sym_identifier] = ACTIONS(520), - [sym_decimal_integer_literal] = ACTIONS(520), - [sym_hex_integer_literal] = ACTIONS(520), - [sym_octal_integer_literal] = ACTIONS(518), - [sym_binary_integer_literal] = ACTIONS(518), - [sym_decimal_floating_point_literal] = ACTIONS(518), - [sym_hex_floating_point_literal] = ACTIONS(520), - [sym_true] = ACTIONS(520), - [sym_false] = ACTIONS(520), - [sym_character_literal] = ACTIONS(518), - [sym_string_literal] = ACTIONS(520), - [sym_text_block] = ACTIONS(518), - [sym_null_literal] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_new] = ACTIONS(520), - [anon_sym_class] = ACTIONS(520), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(518), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_case] = ACTIONS(520), - [anon_sym_default] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(518), - [anon_sym_assert] = ACTIONS(520), - [anon_sym_do] = ACTIONS(520), - [anon_sym_while] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_return] = ACTIONS(520), - [anon_sym_yield] = ACTIONS(520), - [anon_sym_synchronized] = ACTIONS(520), - [anon_sym_throw] = ACTIONS(520), - [anon_sym_try] = ACTIONS(520), - [anon_sym_if] = ACTIONS(520), - [anon_sym_else] = ACTIONS(520), - [anon_sym_for] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_open] = ACTIONS(520), - [anon_sym_module] = ACTIONS(520), - [anon_sym_static] = ACTIONS(520), - [anon_sym_package] = ACTIONS(520), - [anon_sym_import] = ACTIONS(520), - [anon_sym_enum] = ACTIONS(520), - [anon_sym_public] = ACTIONS(520), - [anon_sym_protected] = ACTIONS(520), - [anon_sym_private] = ACTIONS(520), - [anon_sym_abstract] = ACTIONS(520), - [anon_sym_final] = ACTIONS(520), - [anon_sym_strictfp] = ACTIONS(520), - [anon_sym_native] = ACTIONS(520), - [anon_sym_transient] = ACTIONS(520), - [anon_sym_volatile] = ACTIONS(520), - [anon_sym_sealed] = ACTIONS(520), - [anon_sym_non_DASHsealed] = ACTIONS(518), - [anon_sym_record] = ACTIONS(520), - [anon_sym_ATinterface] = ACTIONS(518), - [anon_sym_interface] = ACTIONS(520), - [anon_sym_byte] = ACTIONS(520), - [anon_sym_short] = ACTIONS(520), - [anon_sym_int] = ACTIONS(520), - [anon_sym_long] = ACTIONS(520), - [anon_sym_char] = ACTIONS(520), - [anon_sym_float] = ACTIONS(520), - [anon_sym_double] = ACTIONS(520), - [sym_boolean_type] = ACTIONS(520), - [sym_void_type] = ACTIONS(520), - [sym_this] = ACTIONS(520), - [sym_super] = ACTIONS(520), + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [sym_decimal_integer_literal] = ACTIONS(526), + [sym_hex_integer_literal] = ACTIONS(526), + [sym_octal_integer_literal] = ACTIONS(524), + [sym_binary_integer_literal] = ACTIONS(524), + [sym_decimal_floating_point_literal] = ACTIONS(524), + [sym_hex_floating_point_literal] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_character_literal] = ACTIONS(524), + [sym_string_literal] = ACTIONS(526), + [sym_text_block] = ACTIONS(524), + [sym_null_literal] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_final] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(524), + [anon_sym_DASH_DASH] = ACTIONS(524), + [anon_sym_new] = ACTIONS(526), + [anon_sym_class] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_case] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_do] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_synchronized] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_try] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_else] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(526), + [anon_sym_open] = ACTIONS(526), + [anon_sym_module] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_package] = ACTIONS(526), + [anon_sym_import] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_public] = ACTIONS(526), + [anon_sym_protected] = ACTIONS(526), + [anon_sym_private] = ACTIONS(526), + [anon_sym_abstract] = ACTIONS(526), + [anon_sym_strictfp] = ACTIONS(526), + [anon_sym_native] = ACTIONS(526), + [anon_sym_transient] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(526), + [anon_sym_sealed] = ACTIONS(526), + [anon_sym_non_DASHsealed] = ACTIONS(524), + [anon_sym_record] = ACTIONS(526), + [anon_sym_ATinterface] = ACTIONS(524), + [anon_sym_interface] = ACTIONS(526), + [anon_sym_byte] = ACTIONS(526), + [anon_sym_short] = ACTIONS(526), + [anon_sym_int] = ACTIONS(526), + [anon_sym_long] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_float] = ACTIONS(526), + [anon_sym_double] = ACTIONS(526), + [sym_boolean_type] = ACTIONS(526), + [sym_void_type] = ACTIONS(526), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [144] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym__element_value] = STATE(1074), - [sym_element_value_array_initializer] = STATE(1074), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym_array_initializer] = STATE(1110), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -25601,13 +24391,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_RBRACE] = ACTIONS(528), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -25627,164 +24418,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [sym_decimal_integer_literal] = ACTIONS(524), - [sym_hex_integer_literal] = ACTIONS(524), - [sym_octal_integer_literal] = ACTIONS(522), - [sym_binary_integer_literal] = ACTIONS(522), - [sym_decimal_floating_point_literal] = ACTIONS(522), - [sym_hex_floating_point_literal] = ACTIONS(524), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_character_literal] = ACTIONS(522), - [sym_string_literal] = ACTIONS(524), - [sym_text_block] = ACTIONS(522), - [sym_null_literal] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_new] = ACTIONS(524), - [anon_sym_class] = ACTIONS(524), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_case] = ACTIONS(524), - [anon_sym_default] = ACTIONS(524), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_assert] = ACTIONS(524), - [anon_sym_do] = ACTIONS(524), - [anon_sym_while] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_return] = ACTIONS(524), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_synchronized] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(524), - [anon_sym_try] = ACTIONS(524), - [anon_sym_if] = ACTIONS(524), - [anon_sym_else] = ACTIONS(524), - [anon_sym_for] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_open] = ACTIONS(524), - [anon_sym_module] = ACTIONS(524), - [anon_sym_static] = ACTIONS(524), - [anon_sym_package] = ACTIONS(524), - [anon_sym_import] = ACTIONS(524), - [anon_sym_enum] = ACTIONS(524), - [anon_sym_public] = ACTIONS(524), - [anon_sym_protected] = ACTIONS(524), - [anon_sym_private] = ACTIONS(524), - [anon_sym_abstract] = ACTIONS(524), - [anon_sym_final] = ACTIONS(524), - [anon_sym_strictfp] = ACTIONS(524), - [anon_sym_native] = ACTIONS(524), - [anon_sym_transient] = ACTIONS(524), - [anon_sym_volatile] = ACTIONS(524), - [anon_sym_sealed] = ACTIONS(524), - [anon_sym_non_DASHsealed] = ACTIONS(522), - [anon_sym_record] = ACTIONS(524), - [anon_sym_ATinterface] = ACTIONS(522), - [anon_sym_interface] = ACTIONS(524), - [anon_sym_byte] = ACTIONS(524), - [anon_sym_short] = ACTIONS(524), - [anon_sym_int] = ACTIONS(524), - [anon_sym_long] = ACTIONS(524), - [anon_sym_char] = ACTIONS(524), - [anon_sym_float] = ACTIONS(524), - [anon_sym_double] = ACTIONS(524), - [sym_boolean_type] = ACTIONS(524), - [sym_void_type] = ACTIONS(524), - [sym_this] = ACTIONS(524), - [sym_super] = ACTIONS(524), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(526), - [sym_identifier] = ACTIONS(528), - [sym_decimal_integer_literal] = ACTIONS(528), - [sym_hex_integer_literal] = ACTIONS(528), - [sym_octal_integer_literal] = ACTIONS(526), - [sym_binary_integer_literal] = ACTIONS(526), - [sym_decimal_floating_point_literal] = ACTIONS(526), - [sym_hex_floating_point_literal] = ACTIONS(528), - [sym_true] = ACTIONS(528), - [sym_false] = ACTIONS(528), - [sym_character_literal] = ACTIONS(526), - [sym_string_literal] = ACTIONS(528), - [sym_text_block] = ACTIONS(526), - [sym_null_literal] = ACTIONS(528), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(526), - [anon_sym_DASH_DASH] = ACTIONS(526), - [anon_sym_new] = ACTIONS(528), - [anon_sym_class] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_case] = ACTIONS(528), - [anon_sym_default] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(526), - [anon_sym_assert] = ACTIONS(528), - [anon_sym_do] = ACTIONS(528), - [anon_sym_while] = ACTIONS(528), - [anon_sym_break] = ACTIONS(528), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_return] = ACTIONS(528), - [anon_sym_yield] = ACTIONS(528), - [anon_sym_synchronized] = ACTIONS(528), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_try] = ACTIONS(528), - [anon_sym_if] = ACTIONS(528), - [anon_sym_else] = ACTIONS(528), - [anon_sym_for] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(528), - [anon_sym_open] = ACTIONS(528), - [anon_sym_module] = ACTIONS(528), - [anon_sym_static] = ACTIONS(528), - [anon_sym_package] = ACTIONS(528), - [anon_sym_import] = ACTIONS(528), - [anon_sym_enum] = ACTIONS(528), - [anon_sym_public] = ACTIONS(528), - [anon_sym_protected] = ACTIONS(528), - [anon_sym_private] = ACTIONS(528), - [anon_sym_abstract] = ACTIONS(528), - [anon_sym_final] = ACTIONS(528), - [anon_sym_strictfp] = ACTIONS(528), - [anon_sym_native] = ACTIONS(528), - [anon_sym_transient] = ACTIONS(528), - [anon_sym_volatile] = ACTIONS(528), - [anon_sym_sealed] = ACTIONS(528), - [anon_sym_non_DASHsealed] = ACTIONS(526), - [anon_sym_record] = ACTIONS(528), - [anon_sym_ATinterface] = ACTIONS(526), - [anon_sym_interface] = ACTIONS(528), - [anon_sym_byte] = ACTIONS(528), - [anon_sym_short] = ACTIONS(528), - [anon_sym_int] = ACTIONS(528), - [anon_sym_long] = ACTIONS(528), - [anon_sym_char] = ACTIONS(528), - [anon_sym_float] = ACTIONS(528), - [anon_sym_double] = ACTIONS(528), - [sym_boolean_type] = ACTIONS(528), - [sym_void_type] = ACTIONS(528), - [sym_this] = ACTIONS(528), - [sym_super] = ACTIONS(528), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [147] = { [ts_builtin_sym_end] = ACTIONS(530), [sym_identifier] = ACTIONS(532), [sym_decimal_integer_literal] = ACTIONS(532), @@ -25803,6 +24436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(530), [anon_sym_PLUS] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(532), + [anon_sym_final] = ACTIONS(532), [anon_sym_BANG] = ACTIONS(530), [anon_sym_TILDE] = ACTIONS(530), [anon_sym_PLUS_PLUS] = ACTIONS(530), @@ -25839,7 +24473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(532), [anon_sym_private] = ACTIONS(532), [anon_sym_abstract] = ACTIONS(532), - [anon_sym_final] = ACTIONS(532), [anon_sym_strictfp] = ACTIONS(532), [anon_sym_native] = ACTIONS(532), [anon_sym_transient] = ACTIONS(532), @@ -25863,7 +24496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [148] = { + [146] = { [ts_builtin_sym_end] = ACTIONS(534), [sym_identifier] = ACTIONS(536), [sym_decimal_integer_literal] = ACTIONS(536), @@ -25882,6 +24515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(534), [anon_sym_PLUS] = ACTIONS(536), [anon_sym_DASH] = ACTIONS(536), + [anon_sym_final] = ACTIONS(536), [anon_sym_BANG] = ACTIONS(534), [anon_sym_TILDE] = ACTIONS(534), [anon_sym_PLUS_PLUS] = ACTIONS(534), @@ -25918,7 +24552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(536), [anon_sym_private] = ACTIONS(536), [anon_sym_abstract] = ACTIONS(536), - [anon_sym_final] = ACTIONS(536), [anon_sym_strictfp] = ACTIONS(536), [anon_sym_native] = ACTIONS(536), [anon_sym_transient] = ACTIONS(536), @@ -25942,7 +24575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [149] = { + [147] = { [ts_builtin_sym_end] = ACTIONS(538), [sym_identifier] = ACTIONS(540), [sym_decimal_integer_literal] = ACTIONS(540), @@ -25961,6 +24594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(538), [anon_sym_PLUS] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(540), + [anon_sym_final] = ACTIONS(540), [anon_sym_BANG] = ACTIONS(538), [anon_sym_TILDE] = ACTIONS(538), [anon_sym_PLUS_PLUS] = ACTIONS(538), @@ -25997,7 +24631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(540), [anon_sym_private] = ACTIONS(540), [anon_sym_abstract] = ACTIONS(540), - [anon_sym_final] = ACTIONS(540), [anon_sym_strictfp] = ACTIONS(540), [anon_sym_native] = ACTIONS(540), [anon_sym_transient] = ACTIONS(540), @@ -26021,7 +24654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [150] = { + [148] = { [ts_builtin_sym_end] = ACTIONS(542), [sym_identifier] = ACTIONS(544), [sym_decimal_integer_literal] = ACTIONS(544), @@ -26040,6 +24673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(542), [anon_sym_PLUS] = ACTIONS(544), [anon_sym_DASH] = ACTIONS(544), + [anon_sym_final] = ACTIONS(544), [anon_sym_BANG] = ACTIONS(542), [anon_sym_TILDE] = ACTIONS(542), [anon_sym_PLUS_PLUS] = ACTIONS(542), @@ -26076,7 +24710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(544), [anon_sym_private] = ACTIONS(544), [anon_sym_abstract] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), [anon_sym_strictfp] = ACTIONS(544), [anon_sym_native] = ACTIONS(544), [anon_sym_transient] = ACTIONS(544), @@ -26100,7 +24733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [151] = { + [149] = { [ts_builtin_sym_end] = ACTIONS(546), [sym_identifier] = ACTIONS(548), [sym_decimal_integer_literal] = ACTIONS(548), @@ -26119,6 +24752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(548), [anon_sym_DASH] = ACTIONS(548), + [anon_sym_final] = ACTIONS(548), [anon_sym_BANG] = ACTIONS(546), [anon_sym_TILDE] = ACTIONS(546), [anon_sym_PLUS_PLUS] = ACTIONS(546), @@ -26155,7 +24789,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(548), [anon_sym_private] = ACTIONS(548), [anon_sym_abstract] = ACTIONS(548), - [anon_sym_final] = ACTIONS(548), [anon_sym_strictfp] = ACTIONS(548), [anon_sym_native] = ACTIONS(548), [anon_sym_transient] = ACTIONS(548), @@ -26179,86 +24812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(707), - [sym_marker_annotation] = STATE(707), - [sym_annotation] = STATE(707), - [sym__element_value] = STATE(1186), - [sym_element_value_array_initializer] = STATE(1186), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { + [150] = { [ts_builtin_sym_end] = ACTIONS(550), [sym_identifier] = ACTIONS(552), [sym_decimal_integer_literal] = ACTIONS(552), @@ -26277,6 +24831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(550), [anon_sym_PLUS] = ACTIONS(552), [anon_sym_DASH] = ACTIONS(552), + [anon_sym_final] = ACTIONS(552), [anon_sym_BANG] = ACTIONS(550), [anon_sym_TILDE] = ACTIONS(550), [anon_sym_PLUS_PLUS] = ACTIONS(550), @@ -26313,7 +24868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(552), [anon_sym_private] = ACTIONS(552), [anon_sym_abstract] = ACTIONS(552), - [anon_sym_final] = ACTIONS(552), [anon_sym_strictfp] = ACTIONS(552), [anon_sym_native] = ACTIONS(552), [anon_sym_transient] = ACTIONS(552), @@ -26337,7 +24891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [154] = { + [151] = { [ts_builtin_sym_end] = ACTIONS(554), [sym_identifier] = ACTIONS(556), [sym_decimal_integer_literal] = ACTIONS(556), @@ -26356,6 +24910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(554), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_DASH] = ACTIONS(556), + [anon_sym_final] = ACTIONS(556), [anon_sym_BANG] = ACTIONS(554), [anon_sym_TILDE] = ACTIONS(554), [anon_sym_PLUS_PLUS] = ACTIONS(554), @@ -26392,7 +24947,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(556), [anon_sym_private] = ACTIONS(556), [anon_sym_abstract] = ACTIONS(556), - [anon_sym_final] = ACTIONS(556), [anon_sym_strictfp] = ACTIONS(556), [anon_sym_native] = ACTIONS(556), [anon_sym_transient] = ACTIONS(556), @@ -26416,7 +24970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [155] = { + [152] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [sym_decimal_integer_literal] = ACTIONS(560), @@ -26435,6 +24989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(558), [anon_sym_PLUS] = ACTIONS(560), [anon_sym_DASH] = ACTIONS(560), + [anon_sym_final] = ACTIONS(560), [anon_sym_BANG] = ACTIONS(558), [anon_sym_TILDE] = ACTIONS(558), [anon_sym_PLUS_PLUS] = ACTIONS(558), @@ -26471,7 +25026,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(560), [anon_sym_private] = ACTIONS(560), [anon_sym_abstract] = ACTIONS(560), - [anon_sym_final] = ACTIONS(560), [anon_sym_strictfp] = ACTIONS(560), [anon_sym_native] = ACTIONS(560), [anon_sym_transient] = ACTIONS(560), @@ -26495,7 +25049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [156] = { + [153] = { [ts_builtin_sym_end] = ACTIONS(562), [sym_identifier] = ACTIONS(564), [sym_decimal_integer_literal] = ACTIONS(564), @@ -26514,6 +25068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(562), [anon_sym_PLUS] = ACTIONS(564), [anon_sym_DASH] = ACTIONS(564), + [anon_sym_final] = ACTIONS(564), [anon_sym_BANG] = ACTIONS(562), [anon_sym_TILDE] = ACTIONS(562), [anon_sym_PLUS_PLUS] = ACTIONS(562), @@ -26550,7 +25105,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(564), [anon_sym_private] = ACTIONS(564), [anon_sym_abstract] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), [anon_sym_strictfp] = ACTIONS(564), [anon_sym_native] = ACTIONS(564), [anon_sym_transient] = ACTIONS(564), @@ -26574,7 +25128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [157] = { + [154] = { [ts_builtin_sym_end] = ACTIONS(566), [sym_identifier] = ACTIONS(568), [sym_decimal_integer_literal] = ACTIONS(568), @@ -26593,6 +25147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26629,7 +25184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(568), [anon_sym_private] = ACTIONS(568), [anon_sym_abstract] = ACTIONS(568), - [anon_sym_final] = ACTIONS(568), [anon_sym_strictfp] = ACTIONS(568), [anon_sym_native] = ACTIONS(568), [anon_sym_transient] = ACTIONS(568), @@ -26653,7 +25207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [158] = { + [155] = { [ts_builtin_sym_end] = ACTIONS(570), [sym_identifier] = ACTIONS(572), [sym_decimal_integer_literal] = ACTIONS(572), @@ -26672,6 +25226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(570), [anon_sym_PLUS] = ACTIONS(572), [anon_sym_DASH] = ACTIONS(572), + [anon_sym_final] = ACTIONS(572), [anon_sym_BANG] = ACTIONS(570), [anon_sym_TILDE] = ACTIONS(570), [anon_sym_PLUS_PLUS] = ACTIONS(570), @@ -26708,7 +25263,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(572), [anon_sym_private] = ACTIONS(572), [anon_sym_abstract] = ACTIONS(572), - [anon_sym_final] = ACTIONS(572), [anon_sym_strictfp] = ACTIONS(572), [anon_sym_native] = ACTIONS(572), [anon_sym_transient] = ACTIONS(572), @@ -26732,7 +25286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [159] = { + [156] = { [ts_builtin_sym_end] = ACTIONS(574), [sym_identifier] = ACTIONS(576), [sym_decimal_integer_literal] = ACTIONS(576), @@ -26751,6 +25305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26787,7 +25342,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(576), [anon_sym_private] = ACTIONS(576), [anon_sym_abstract] = ACTIONS(576), - [anon_sym_final] = ACTIONS(576), [anon_sym_strictfp] = ACTIONS(576), [anon_sym_native] = ACTIONS(576), [anon_sym_transient] = ACTIONS(576), @@ -26811,7 +25365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [160] = { + [157] = { [ts_builtin_sym_end] = ACTIONS(578), [sym_identifier] = ACTIONS(580), [sym_decimal_integer_literal] = ACTIONS(580), @@ -26830,6 +25384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(578), [anon_sym_PLUS] = ACTIONS(580), [anon_sym_DASH] = ACTIONS(580), + [anon_sym_final] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(578), [anon_sym_TILDE] = ACTIONS(578), [anon_sym_PLUS_PLUS] = ACTIONS(578), @@ -26866,7 +25421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(580), [anon_sym_private] = ACTIONS(580), [anon_sym_abstract] = ACTIONS(580), - [anon_sym_final] = ACTIONS(580), [anon_sym_strictfp] = ACTIONS(580), [anon_sym_native] = ACTIONS(580), [anon_sym_transient] = ACTIONS(580), @@ -26890,7 +25444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [161] = { + [158] = { [ts_builtin_sym_end] = ACTIONS(582), [sym_identifier] = ACTIONS(584), [sym_decimal_integer_literal] = ACTIONS(584), @@ -26909,6 +25463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(584), [anon_sym_DASH] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), [anon_sym_BANG] = ACTIONS(582), [anon_sym_TILDE] = ACTIONS(582), [anon_sym_PLUS_PLUS] = ACTIONS(582), @@ -26945,7 +25500,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(584), [anon_sym_private] = ACTIONS(584), [anon_sym_abstract] = ACTIONS(584), - [anon_sym_final] = ACTIONS(584), [anon_sym_strictfp] = ACTIONS(584), [anon_sym_native] = ACTIONS(584), [anon_sym_transient] = ACTIONS(584), @@ -26969,7 +25523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [162] = { + [159] = { [ts_builtin_sym_end] = ACTIONS(586), [sym_identifier] = ACTIONS(588), [sym_decimal_integer_literal] = ACTIONS(588), @@ -26988,6 +25542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(586), [anon_sym_PLUS] = ACTIONS(588), [anon_sym_DASH] = ACTIONS(588), + [anon_sym_final] = ACTIONS(588), [anon_sym_BANG] = ACTIONS(586), [anon_sym_TILDE] = ACTIONS(586), [anon_sym_PLUS_PLUS] = ACTIONS(586), @@ -27024,7 +25579,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(588), [anon_sym_private] = ACTIONS(588), [anon_sym_abstract] = ACTIONS(588), - [anon_sym_final] = ACTIONS(588), [anon_sym_strictfp] = ACTIONS(588), [anon_sym_native] = ACTIONS(588), [anon_sym_transient] = ACTIONS(588), @@ -27048,43 +25602,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [160] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(592), + [sym_hex_integer_literal] = ACTIONS(592), + [sym_octal_integer_literal] = ACTIONS(590), + [sym_binary_integer_literal] = ACTIONS(590), + [sym_decimal_floating_point_literal] = ACTIONS(590), + [sym_hex_floating_point_literal] = ACTIONS(592), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_character_literal] = ACTIONS(590), + [sym_string_literal] = ACTIONS(592), + [sym_text_block] = ACTIONS(590), + [sym_null_literal] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_final] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_new] = ACTIONS(592), + [anon_sym_class] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_case] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_assert] = ACTIONS(592), + [anon_sym_do] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_synchronized] = ACTIONS(592), + [anon_sym_throw] = ACTIONS(592), + [anon_sym_try] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_else] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_open] = ACTIONS(592), + [anon_sym_module] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_package] = ACTIONS(592), + [anon_sym_import] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_public] = ACTIONS(592), + [anon_sym_protected] = ACTIONS(592), + [anon_sym_private] = ACTIONS(592), + [anon_sym_abstract] = ACTIONS(592), + [anon_sym_strictfp] = ACTIONS(592), + [anon_sym_native] = ACTIONS(592), + [anon_sym_transient] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(592), + [anon_sym_sealed] = ACTIONS(592), + [anon_sym_non_DASHsealed] = ACTIONS(590), + [anon_sym_record] = ACTIONS(592), + [anon_sym_ATinterface] = ACTIONS(590), + [anon_sym_interface] = ACTIONS(592), + [anon_sym_byte] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [anon_sym_int] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_float] = ACTIONS(592), + [anon_sym_double] = ACTIONS(592), + [sym_boolean_type] = ACTIONS(592), + [sym_void_type] = ACTIONS(592), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(596), + [sym_hex_integer_literal] = ACTIONS(596), + [sym_octal_integer_literal] = ACTIONS(594), + [sym_binary_integer_literal] = ACTIONS(594), + [sym_decimal_floating_point_literal] = ACTIONS(594), + [sym_hex_floating_point_literal] = ACTIONS(596), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_character_literal] = ACTIONS(594), + [sym_string_literal] = ACTIONS(596), + [sym_text_block] = ACTIONS(594), + [sym_null_literal] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_final] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(594), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_new] = ACTIONS(596), + [anon_sym_class] = ACTIONS(596), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_case] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_assert] = ACTIONS(596), + [anon_sym_do] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_synchronized] = ACTIONS(596), + [anon_sym_throw] = ACTIONS(596), + [anon_sym_try] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_else] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_open] = ACTIONS(596), + [anon_sym_module] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_package] = ACTIONS(596), + [anon_sym_import] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_public] = ACTIONS(596), + [anon_sym_protected] = ACTIONS(596), + [anon_sym_private] = ACTIONS(596), + [anon_sym_abstract] = ACTIONS(596), + [anon_sym_strictfp] = ACTIONS(596), + [anon_sym_native] = ACTIONS(596), + [anon_sym_transient] = ACTIONS(596), + [anon_sym_volatile] = ACTIONS(596), + [anon_sym_sealed] = ACTIONS(596), + [anon_sym_non_DASHsealed] = ACTIONS(594), + [anon_sym_record] = ACTIONS(596), + [anon_sym_ATinterface] = ACTIONS(594), + [anon_sym_interface] = ACTIONS(596), + [anon_sym_byte] = ACTIONS(596), + [anon_sym_short] = ACTIONS(596), + [anon_sym_int] = ACTIONS(596), + [anon_sym_long] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_float] = ACTIONS(596), + [anon_sym_double] = ACTIONS(596), + [sym_boolean_type] = ACTIONS(596), + [sym_void_type] = ACTIONS(596), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(600), + [sym_hex_integer_literal] = ACTIONS(600), + [sym_octal_integer_literal] = ACTIONS(598), + [sym_binary_integer_literal] = ACTIONS(598), + [sym_decimal_floating_point_literal] = ACTIONS(598), + [sym_hex_floating_point_literal] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_character_literal] = ACTIONS(598), + [sym_string_literal] = ACTIONS(600), + [sym_text_block] = ACTIONS(598), + [sym_null_literal] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_final] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS_PLUS] = ACTIONS(598), + [anon_sym_DASH_DASH] = ACTIONS(598), + [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(600), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_case] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(600), + [anon_sym_do] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_synchronized] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(600), + [anon_sym_try] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_else] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_open] = ACTIONS(600), + [anon_sym_module] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_package] = ACTIONS(600), + [anon_sym_import] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_public] = ACTIONS(600), + [anon_sym_protected] = ACTIONS(600), + [anon_sym_private] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(600), + [anon_sym_strictfp] = ACTIONS(600), + [anon_sym_native] = ACTIONS(600), + [anon_sym_transient] = ACTIONS(600), + [anon_sym_volatile] = ACTIONS(600), + [anon_sym_sealed] = ACTIONS(600), + [anon_sym_non_DASHsealed] = ACTIONS(598), + [anon_sym_record] = ACTIONS(600), + [anon_sym_ATinterface] = ACTIONS(598), + [anon_sym_interface] = ACTIONS(600), + [anon_sym_byte] = ACTIONS(600), + [anon_sym_short] = ACTIONS(600), + [anon_sym_int] = ACTIONS(600), + [anon_sym_long] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_float] = ACTIONS(600), + [anon_sym_double] = ACTIONS(600), + [sym_boolean_type] = ACTIONS(600), + [sym_void_type] = ACTIONS(600), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [163] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(589), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym_array_initializer] = STATE(1176), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(604), + [sym_hex_integer_literal] = ACTIONS(604), + [sym_octal_integer_literal] = ACTIONS(602), + [sym_binary_integer_literal] = ACTIONS(602), + [sym_decimal_floating_point_literal] = ACTIONS(602), + [sym_hex_floating_point_literal] = ACTIONS(604), + [sym_true] = ACTIONS(604), + [sym_false] = ACTIONS(604), + [sym_character_literal] = ACTIONS(602), + [sym_string_literal] = ACTIONS(604), + [sym_text_block] = ACTIONS(602), + [sym_null_literal] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_final] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_new] = ACTIONS(604), + [anon_sym_class] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_case] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_assert] = ACTIONS(604), + [anon_sym_do] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_synchronized] = ACTIONS(604), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_try] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_else] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_open] = ACTIONS(604), + [anon_sym_module] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_package] = ACTIONS(604), + [anon_sym_import] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_public] = ACTIONS(604), + [anon_sym_protected] = ACTIONS(604), + [anon_sym_private] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_strictfp] = ACTIONS(604), + [anon_sym_native] = ACTIONS(604), + [anon_sym_transient] = ACTIONS(604), + [anon_sym_volatile] = ACTIONS(604), + [anon_sym_sealed] = ACTIONS(604), + [anon_sym_non_DASHsealed] = ACTIONS(602), + [anon_sym_record] = ACTIONS(604), + [anon_sym_ATinterface] = ACTIONS(602), + [anon_sym_interface] = ACTIONS(604), + [anon_sym_byte] = ACTIONS(604), + [anon_sym_short] = ACTIONS(604), + [anon_sym_int] = ACTIONS(604), + [anon_sym_long] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_float] = ACTIONS(604), + [anon_sym_double] = ACTIONS(604), + [sym_boolean_type] = ACTIONS(604), + [sym_void_type] = ACTIONS(604), + [sym_this] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [ts_builtin_sym_end] = ACTIONS(606), + [sym_identifier] = ACTIONS(608), + [sym_decimal_integer_literal] = ACTIONS(608), + [sym_hex_integer_literal] = ACTIONS(608), + [sym_octal_integer_literal] = ACTIONS(606), + [sym_binary_integer_literal] = ACTIONS(606), + [sym_decimal_floating_point_literal] = ACTIONS(606), + [sym_hex_floating_point_literal] = ACTIONS(608), + [sym_true] = ACTIONS(608), + [sym_false] = ACTIONS(608), + [sym_character_literal] = ACTIONS(606), + [sym_string_literal] = ACTIONS(608), + [sym_text_block] = ACTIONS(606), + [sym_null_literal] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_final] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_PLUS_PLUS] = ACTIONS(606), + [anon_sym_DASH_DASH] = ACTIONS(606), + [anon_sym_new] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_switch] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_case] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_assert] = ACTIONS(608), + [anon_sym_do] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(608), + [anon_sym_synchronized] = ACTIONS(608), + [anon_sym_throw] = ACTIONS(608), + [anon_sym_try] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_else] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_open] = ACTIONS(608), + [anon_sym_module] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_package] = ACTIONS(608), + [anon_sym_import] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(608), + [anon_sym_public] = ACTIONS(608), + [anon_sym_protected] = ACTIONS(608), + [anon_sym_private] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(608), + [anon_sym_strictfp] = ACTIONS(608), + [anon_sym_native] = ACTIONS(608), + [anon_sym_transient] = ACTIONS(608), + [anon_sym_volatile] = ACTIONS(608), + [anon_sym_sealed] = ACTIONS(608), + [anon_sym_non_DASHsealed] = ACTIONS(606), + [anon_sym_record] = ACTIONS(608), + [anon_sym_ATinterface] = ACTIONS(606), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_byte] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [anon_sym_int] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_float] = ACTIONS(608), + [anon_sym_double] = ACTIONS(608), + [sym_boolean_type] = ACTIONS(608), + [sym_void_type] = ACTIONS(608), + [sym_this] = ACTIONS(608), + [sym_super] = ACTIONS(608), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [165] = { + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [sym_decimal_integer_literal] = ACTIONS(612), + [sym_hex_integer_literal] = ACTIONS(612), + [sym_octal_integer_literal] = ACTIONS(610), + [sym_binary_integer_literal] = ACTIONS(610), + [sym_decimal_floating_point_literal] = ACTIONS(610), + [sym_hex_floating_point_literal] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_character_literal] = ACTIONS(610), + [sym_string_literal] = ACTIONS(612), + [sym_text_block] = ACTIONS(610), + [sym_null_literal] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_final] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), + [anon_sym_new] = ACTIONS(612), + [anon_sym_class] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_assert] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_synchronized] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_open] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_static] = ACTIONS(612), + [anon_sym_package] = ACTIONS(612), + [anon_sym_import] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(612), + [anon_sym_public] = ACTIONS(612), + [anon_sym_protected] = ACTIONS(612), + [anon_sym_private] = ACTIONS(612), + [anon_sym_abstract] = ACTIONS(612), + [anon_sym_strictfp] = ACTIONS(612), + [anon_sym_native] = ACTIONS(612), + [anon_sym_transient] = ACTIONS(612), + [anon_sym_volatile] = ACTIONS(612), + [anon_sym_sealed] = ACTIONS(612), + [anon_sym_non_DASHsealed] = ACTIONS(610), + [anon_sym_record] = ACTIONS(612), + [anon_sym_ATinterface] = ACTIONS(610), + [anon_sym_interface] = ACTIONS(612), + [anon_sym_byte] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [anon_sym_int] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_float] = ACTIONS(612), + [anon_sym_double] = ACTIONS(612), + [sym_boolean_type] = ACTIONS(612), + [sym_void_type] = ACTIONS(612), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [166] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym_array_initializer] = STATE(1110), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27101,14 +26129,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(364), - [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_RBRACE] = ACTIONS(614), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -27127,481 +26155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [sym_decimal_integer_literal] = ACTIONS(594), - [sym_hex_integer_literal] = ACTIONS(594), - [sym_octal_integer_literal] = ACTIONS(592), - [sym_binary_integer_literal] = ACTIONS(592), - [sym_decimal_floating_point_literal] = ACTIONS(592), - [sym_hex_floating_point_literal] = ACTIONS(594), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_character_literal] = ACTIONS(592), - [sym_string_literal] = ACTIONS(594), - [sym_text_block] = ACTIONS(592), - [sym_null_literal] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_new] = ACTIONS(594), - [anon_sym_class] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_case] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_assert] = ACTIONS(594), - [anon_sym_do] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_synchronized] = ACTIONS(594), - [anon_sym_throw] = ACTIONS(594), - [anon_sym_try] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_else] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_open] = ACTIONS(594), - [anon_sym_module] = ACTIONS(594), - [anon_sym_static] = ACTIONS(594), - [anon_sym_package] = ACTIONS(594), - [anon_sym_import] = ACTIONS(594), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_public] = ACTIONS(594), - [anon_sym_protected] = ACTIONS(594), - [anon_sym_private] = ACTIONS(594), - [anon_sym_abstract] = ACTIONS(594), - [anon_sym_final] = ACTIONS(594), - [anon_sym_strictfp] = ACTIONS(594), - [anon_sym_native] = ACTIONS(594), - [anon_sym_transient] = ACTIONS(594), - [anon_sym_volatile] = ACTIONS(594), - [anon_sym_sealed] = ACTIONS(594), - [anon_sym_non_DASHsealed] = ACTIONS(592), - [anon_sym_record] = ACTIONS(594), - [anon_sym_ATinterface] = ACTIONS(592), - [anon_sym_interface] = ACTIONS(594), - [anon_sym_byte] = ACTIONS(594), - [anon_sym_short] = ACTIONS(594), - [anon_sym_int] = ACTIONS(594), - [anon_sym_long] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_float] = ACTIONS(594), - [anon_sym_double] = ACTIONS(594), - [sym_boolean_type] = ACTIONS(594), - [sym_void_type] = ACTIONS(594), - [sym_this] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [sym_decimal_integer_literal] = ACTIONS(598), - [sym_hex_integer_literal] = ACTIONS(598), - [sym_octal_integer_literal] = ACTIONS(596), - [sym_binary_integer_literal] = ACTIONS(596), - [sym_decimal_floating_point_literal] = ACTIONS(596), - [sym_hex_floating_point_literal] = ACTIONS(598), - [sym_true] = ACTIONS(598), - [sym_false] = ACTIONS(598), - [sym_character_literal] = ACTIONS(596), - [sym_string_literal] = ACTIONS(598), - [sym_text_block] = ACTIONS(596), - [sym_null_literal] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_new] = ACTIONS(598), - [anon_sym_class] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(596), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_do] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_synchronized] = ACTIONS(598), - [anon_sym_throw] = ACTIONS(598), - [anon_sym_try] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_else] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(598), - [anon_sym_open] = ACTIONS(598), - [anon_sym_module] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_package] = ACTIONS(598), - [anon_sym_import] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_public] = ACTIONS(598), - [anon_sym_protected] = ACTIONS(598), - [anon_sym_private] = ACTIONS(598), - [anon_sym_abstract] = ACTIONS(598), - [anon_sym_final] = ACTIONS(598), - [anon_sym_strictfp] = ACTIONS(598), - [anon_sym_native] = ACTIONS(598), - [anon_sym_transient] = ACTIONS(598), - [anon_sym_volatile] = ACTIONS(598), - [anon_sym_sealed] = ACTIONS(598), - [anon_sym_non_DASHsealed] = ACTIONS(596), - [anon_sym_record] = ACTIONS(598), - [anon_sym_ATinterface] = ACTIONS(596), - [anon_sym_interface] = ACTIONS(598), - [anon_sym_byte] = ACTIONS(598), - [anon_sym_short] = ACTIONS(598), - [anon_sym_int] = ACTIONS(598), - [anon_sym_long] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_float] = ACTIONS(598), - [anon_sym_double] = ACTIONS(598), - [sym_boolean_type] = ACTIONS(598), - [sym_void_type] = ACTIONS(598), - [sym_this] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [sym_decimal_integer_literal] = ACTIONS(602), - [sym_hex_integer_literal] = ACTIONS(602), - [sym_octal_integer_literal] = ACTIONS(600), - [sym_binary_integer_literal] = ACTIONS(600), - [sym_decimal_floating_point_literal] = ACTIONS(600), - [sym_hex_floating_point_literal] = ACTIONS(602), - [sym_true] = ACTIONS(602), - [sym_false] = ACTIONS(602), - [sym_character_literal] = ACTIONS(600), - [sym_string_literal] = ACTIONS(602), - [sym_text_block] = ACTIONS(600), - [sym_null_literal] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_TILDE] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_new] = ACTIONS(602), - [anon_sym_class] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_case] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_assert] = ACTIONS(602), - [anon_sym_do] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_synchronized] = ACTIONS(602), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_try] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_else] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_open] = ACTIONS(602), - [anon_sym_module] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_package] = ACTIONS(602), - [anon_sym_import] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_public] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(602), - [anon_sym_final] = ACTIONS(602), - [anon_sym_strictfp] = ACTIONS(602), - [anon_sym_native] = ACTIONS(602), - [anon_sym_transient] = ACTIONS(602), - [anon_sym_volatile] = ACTIONS(602), - [anon_sym_sealed] = ACTIONS(602), - [anon_sym_non_DASHsealed] = ACTIONS(600), - [anon_sym_record] = ACTIONS(602), - [anon_sym_ATinterface] = ACTIONS(600), - [anon_sym_interface] = ACTIONS(602), - [anon_sym_byte] = ACTIONS(602), - [anon_sym_short] = ACTIONS(602), - [anon_sym_int] = ACTIONS(602), - [anon_sym_long] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_float] = ACTIONS(602), - [anon_sym_double] = ACTIONS(602), - [sym_boolean_type] = ACTIONS(602), - [sym_void_type] = ACTIONS(602), - [sym_this] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [167] = { - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [sym_decimal_integer_literal] = ACTIONS(606), - [sym_hex_integer_literal] = ACTIONS(606), - [sym_octal_integer_literal] = ACTIONS(604), - [sym_binary_integer_literal] = ACTIONS(604), - [sym_decimal_floating_point_literal] = ACTIONS(604), - [sym_hex_floating_point_literal] = ACTIONS(606), - [sym_true] = ACTIONS(606), - [sym_false] = ACTIONS(606), - [sym_character_literal] = ACTIONS(604), - [sym_string_literal] = ACTIONS(606), - [sym_text_block] = ACTIONS(604), - [sym_null_literal] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_PLUS_PLUS] = ACTIONS(604), - [anon_sym_DASH_DASH] = ACTIONS(604), - [anon_sym_new] = ACTIONS(606), - [anon_sym_class] = ACTIONS(606), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(606), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_assert] = ACTIONS(606), - [anon_sym_do] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_synchronized] = ACTIONS(606), - [anon_sym_throw] = ACTIONS(606), - [anon_sym_try] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_else] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(606), - [anon_sym_open] = ACTIONS(606), - [anon_sym_module] = ACTIONS(606), - [anon_sym_static] = ACTIONS(606), - [anon_sym_package] = ACTIONS(606), - [anon_sym_import] = ACTIONS(606), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_public] = ACTIONS(606), - [anon_sym_protected] = ACTIONS(606), - [anon_sym_private] = ACTIONS(606), - [anon_sym_abstract] = ACTIONS(606), - [anon_sym_final] = ACTIONS(606), - [anon_sym_strictfp] = ACTIONS(606), - [anon_sym_native] = ACTIONS(606), - [anon_sym_transient] = ACTIONS(606), - [anon_sym_volatile] = ACTIONS(606), - [anon_sym_sealed] = ACTIONS(606), - [anon_sym_non_DASHsealed] = ACTIONS(604), - [anon_sym_record] = ACTIONS(606), - [anon_sym_ATinterface] = ACTIONS(604), - [anon_sym_interface] = ACTIONS(606), - [anon_sym_byte] = ACTIONS(606), - [anon_sym_short] = ACTIONS(606), - [anon_sym_int] = ACTIONS(606), - [anon_sym_long] = ACTIONS(606), - [anon_sym_char] = ACTIONS(606), - [anon_sym_float] = ACTIONS(606), - [anon_sym_double] = ACTIONS(606), - [sym_boolean_type] = ACTIONS(606), - [sym_void_type] = ACTIONS(606), - [sym_this] = ACTIONS(606), - [sym_super] = ACTIONS(606), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [sym_decimal_integer_literal] = ACTIONS(610), - [sym_hex_integer_literal] = ACTIONS(610), - [sym_octal_integer_literal] = ACTIONS(608), - [sym_binary_integer_literal] = ACTIONS(608), - [sym_decimal_floating_point_literal] = ACTIONS(608), - [sym_hex_floating_point_literal] = ACTIONS(610), - [sym_true] = ACTIONS(610), - [sym_false] = ACTIONS(610), - [sym_character_literal] = ACTIONS(608), - [sym_string_literal] = ACTIONS(610), - [sym_text_block] = ACTIONS(608), - [sym_null_literal] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_PLUS_PLUS] = ACTIONS(608), - [anon_sym_DASH_DASH] = ACTIONS(608), - [anon_sym_new] = ACTIONS(610), - [anon_sym_class] = ACTIONS(610), - [anon_sym_switch] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_case] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_assert] = ACTIONS(610), - [anon_sym_do] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_synchronized] = ACTIONS(610), - [anon_sym_throw] = ACTIONS(610), - [anon_sym_try] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_else] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_AT] = ACTIONS(610), - [anon_sym_open] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_package] = ACTIONS(610), - [anon_sym_import] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_abstract] = ACTIONS(610), - [anon_sym_final] = ACTIONS(610), - [anon_sym_strictfp] = ACTIONS(610), - [anon_sym_native] = ACTIONS(610), - [anon_sym_transient] = ACTIONS(610), - [anon_sym_volatile] = ACTIONS(610), - [anon_sym_sealed] = ACTIONS(610), - [anon_sym_non_DASHsealed] = ACTIONS(608), - [anon_sym_record] = ACTIONS(610), - [anon_sym_ATinterface] = ACTIONS(608), - [anon_sym_interface] = ACTIONS(610), - [anon_sym_byte] = ACTIONS(610), - [anon_sym_short] = ACTIONS(610), - [anon_sym_int] = ACTIONS(610), - [anon_sym_long] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_float] = ACTIONS(610), - [anon_sym_double] = ACTIONS(610), - [sym_boolean_type] = ACTIONS(610), - [sym_void_type] = ACTIONS(610), - [sym_this] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [sym_decimal_integer_literal] = ACTIONS(614), - [sym_hex_integer_literal] = ACTIONS(614), - [sym_octal_integer_literal] = ACTIONS(612), - [sym_binary_integer_literal] = ACTIONS(612), - [sym_decimal_floating_point_literal] = ACTIONS(612), - [sym_hex_floating_point_literal] = ACTIONS(614), - [sym_true] = ACTIONS(614), - [sym_false] = ACTIONS(614), - [sym_character_literal] = ACTIONS(612), - [sym_string_literal] = ACTIONS(614), - [sym_text_block] = ACTIONS(612), - [sym_null_literal] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_BANG] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(612), - [anon_sym_DASH_DASH] = ACTIONS(612), - [anon_sym_new] = ACTIONS(614), - [anon_sym_class] = ACTIONS(614), - [anon_sym_switch] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_case] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_do] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_synchronized] = ACTIONS(614), - [anon_sym_throw] = ACTIONS(614), - [anon_sym_try] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_else] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(614), - [anon_sym_open] = ACTIONS(614), - [anon_sym_module] = ACTIONS(614), - [anon_sym_static] = ACTIONS(614), - [anon_sym_package] = ACTIONS(614), - [anon_sym_import] = ACTIONS(614), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_public] = ACTIONS(614), - [anon_sym_protected] = ACTIONS(614), - [anon_sym_private] = ACTIONS(614), - [anon_sym_abstract] = ACTIONS(614), - [anon_sym_final] = ACTIONS(614), - [anon_sym_strictfp] = ACTIONS(614), - [anon_sym_native] = ACTIONS(614), - [anon_sym_transient] = ACTIONS(614), - [anon_sym_volatile] = ACTIONS(614), - [anon_sym_sealed] = ACTIONS(614), - [anon_sym_non_DASHsealed] = ACTIONS(612), - [anon_sym_record] = ACTIONS(614), - [anon_sym_ATinterface] = ACTIONS(612), - [anon_sym_interface] = ACTIONS(614), - [anon_sym_byte] = ACTIONS(614), - [anon_sym_short] = ACTIONS(614), - [anon_sym_int] = ACTIONS(614), - [anon_sym_long] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_float] = ACTIONS(614), - [anon_sym_double] = ACTIONS(614), - [sym_boolean_type] = ACTIONS(614), - [sym_void_type] = ACTIONS(614), - [sym_this] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { [ts_builtin_sym_end] = ACTIONS(616), [sym_identifier] = ACTIONS(618), [sym_decimal_integer_literal] = ACTIONS(618), @@ -27620,6 +26174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(616), [anon_sym_PLUS] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(618), + [anon_sym_final] = ACTIONS(618), [anon_sym_BANG] = ACTIONS(616), [anon_sym_TILDE] = ACTIONS(616), [anon_sym_PLUS_PLUS] = ACTIONS(616), @@ -27656,7 +26211,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(618), [anon_sym_private] = ACTIONS(618), [anon_sym_abstract] = ACTIONS(618), - [anon_sym_final] = ACTIONS(618), [anon_sym_strictfp] = ACTIONS(618), [anon_sym_native] = ACTIONS(618), [anon_sym_transient] = ACTIONS(618), @@ -27680,7 +26234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [171] = { + [168] = { [ts_builtin_sym_end] = ACTIONS(620), [sym_identifier] = ACTIONS(622), [sym_decimal_integer_literal] = ACTIONS(622), @@ -27699,6 +26253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(620), [anon_sym_PLUS] = ACTIONS(622), [anon_sym_DASH] = ACTIONS(622), + [anon_sym_final] = ACTIONS(622), [anon_sym_BANG] = ACTIONS(620), [anon_sym_TILDE] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(620), @@ -27735,7 +26290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(622), [anon_sym_private] = ACTIONS(622), [anon_sym_abstract] = ACTIONS(622), - [anon_sym_final] = ACTIONS(622), [anon_sym_strictfp] = ACTIONS(622), [anon_sym_native] = ACTIONS(622), [anon_sym_transient] = ACTIONS(622), @@ -27759,7 +26313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [172] = { + [169] = { [ts_builtin_sym_end] = ACTIONS(624), [sym_identifier] = ACTIONS(626), [sym_decimal_integer_literal] = ACTIONS(626), @@ -27778,6 +26332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(624), [anon_sym_PLUS] = ACTIONS(626), [anon_sym_DASH] = ACTIONS(626), + [anon_sym_final] = ACTIONS(626), [anon_sym_BANG] = ACTIONS(624), [anon_sym_TILDE] = ACTIONS(624), [anon_sym_PLUS_PLUS] = ACTIONS(624), @@ -27814,7 +26369,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(626), [anon_sym_private] = ACTIONS(626), [anon_sym_abstract] = ACTIONS(626), - [anon_sym_final] = ACTIONS(626), [anon_sym_strictfp] = ACTIONS(626), [anon_sym_native] = ACTIONS(626), [anon_sym_transient] = ACTIONS(626), @@ -27838,7 +26392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [173] = { + [170] = { [ts_builtin_sym_end] = ACTIONS(628), [sym_identifier] = ACTIONS(630), [sym_decimal_integer_literal] = ACTIONS(630), @@ -27857,6 +26411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(628), [anon_sym_PLUS] = ACTIONS(630), [anon_sym_DASH] = ACTIONS(630), + [anon_sym_final] = ACTIONS(630), [anon_sym_BANG] = ACTIONS(628), [anon_sym_TILDE] = ACTIONS(628), [anon_sym_PLUS_PLUS] = ACTIONS(628), @@ -27893,7 +26448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(630), [anon_sym_private] = ACTIONS(630), [anon_sym_abstract] = ACTIONS(630), - [anon_sym_final] = ACTIONS(630), [anon_sym_strictfp] = ACTIONS(630), [anon_sym_native] = ACTIONS(630), [anon_sym_transient] = ACTIONS(630), @@ -27917,7 +26471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [174] = { + [171] = { [ts_builtin_sym_end] = ACTIONS(632), [sym_identifier] = ACTIONS(634), [sym_decimal_integer_literal] = ACTIONS(634), @@ -27936,6 +26490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(632), [anon_sym_PLUS] = ACTIONS(634), [anon_sym_DASH] = ACTIONS(634), + [anon_sym_final] = ACTIONS(634), [anon_sym_BANG] = ACTIONS(632), [anon_sym_TILDE] = ACTIONS(632), [anon_sym_PLUS_PLUS] = ACTIONS(632), @@ -27972,7 +26527,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(634), [anon_sym_private] = ACTIONS(634), [anon_sym_abstract] = ACTIONS(634), - [anon_sym_final] = ACTIONS(634), [anon_sym_strictfp] = ACTIONS(634), [anon_sym_native] = ACTIONS(634), [anon_sym_transient] = ACTIONS(634), @@ -27996,7 +26550,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [175] = { + [172] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym__element_value] = STATE(1211), + [sym_element_value_array_initializer] = STATE(1211), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [sym_decimal_integer_literal] = ACTIONS(638), @@ -28015,6 +26648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(636), [anon_sym_PLUS] = ACTIONS(638), [anon_sym_DASH] = ACTIONS(638), + [anon_sym_final] = ACTIONS(638), [anon_sym_BANG] = ACTIONS(636), [anon_sym_TILDE] = ACTIONS(636), [anon_sym_PLUS_PLUS] = ACTIONS(636), @@ -28051,7 +26685,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(638), [anon_sym_private] = ACTIONS(638), [anon_sym_abstract] = ACTIONS(638), - [anon_sym_final] = ACTIONS(638), [anon_sym_strictfp] = ACTIONS(638), [anon_sym_native] = ACTIONS(638), [anon_sym_transient] = ACTIONS(638), @@ -28075,7 +26708,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [176] = { + [174] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym__element_value] = STATE(1083), + [sym_element_value_array_initializer] = STATE(1083), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [175] = { [ts_builtin_sym_end] = ACTIONS(640), [sym_identifier] = ACTIONS(642), [sym_decimal_integer_literal] = ACTIONS(642), @@ -28091,8 +26803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(640), [sym_null_literal] = ACTIONS(642), [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LT] = ACTIONS(640), [anon_sym_PLUS] = ACTIONS(642), [anon_sym_DASH] = ACTIONS(642), + [anon_sym_final] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(640), [anon_sym_TILDE] = ACTIONS(640), [anon_sym_PLUS_PLUS] = ACTIONS(640), @@ -28129,7 +26843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(642), [anon_sym_private] = ACTIONS(642), [anon_sym_abstract] = ACTIONS(642), - [anon_sym_final] = ACTIONS(642), [anon_sym_strictfp] = ACTIONS(642), [anon_sym_native] = ACTIONS(642), [anon_sym_transient] = ACTIONS(642), @@ -28153,7 +26866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [177] = { + [176] = { [ts_builtin_sym_end] = ACTIONS(644), [sym_identifier] = ACTIONS(646), [sym_decimal_integer_literal] = ACTIONS(646), @@ -28169,8 +26882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(644), [sym_null_literal] = ACTIONS(646), [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(644), [anon_sym_PLUS] = ACTIONS(646), [anon_sym_DASH] = ACTIONS(646), + [anon_sym_final] = ACTIONS(646), [anon_sym_BANG] = ACTIONS(644), [anon_sym_TILDE] = ACTIONS(644), [anon_sym_PLUS_PLUS] = ACTIONS(644), @@ -28207,7 +26922,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(646), [anon_sym_private] = ACTIONS(646), [anon_sym_abstract] = ACTIONS(646), - [anon_sym_final] = ACTIONS(646), [anon_sym_strictfp] = ACTIONS(646), [anon_sym_native] = ACTIONS(646), [anon_sym_transient] = ACTIONS(646), @@ -28231,44 +26945,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [177] = { + [ts_builtin_sym_end] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), + [sym_decimal_integer_literal] = ACTIONS(650), + [sym_hex_integer_literal] = ACTIONS(650), + [sym_octal_integer_literal] = ACTIONS(648), + [sym_binary_integer_literal] = ACTIONS(648), + [sym_decimal_floating_point_literal] = ACTIONS(648), + [sym_hex_floating_point_literal] = ACTIONS(650), + [sym_true] = ACTIONS(650), + [sym_false] = ACTIONS(650), + [sym_character_literal] = ACTIONS(648), + [sym_string_literal] = ACTIONS(650), + [sym_text_block] = ACTIONS(648), + [sym_null_literal] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_final] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(648), + [anon_sym_TILDE] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_new] = ACTIONS(650), + [anon_sym_class] = ACTIONS(650), + [anon_sym_switch] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_assert] = ACTIONS(650), + [anon_sym_do] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(650), + [anon_sym_synchronized] = ACTIONS(650), + [anon_sym_throw] = ACTIONS(650), + [anon_sym_try] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_else] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_open] = ACTIONS(650), + [anon_sym_module] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_package] = ACTIONS(650), + [anon_sym_import] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_public] = ACTIONS(650), + [anon_sym_protected] = ACTIONS(650), + [anon_sym_private] = ACTIONS(650), + [anon_sym_abstract] = ACTIONS(650), + [anon_sym_strictfp] = ACTIONS(650), + [anon_sym_native] = ACTIONS(650), + [anon_sym_transient] = ACTIONS(650), + [anon_sym_volatile] = ACTIONS(650), + [anon_sym_sealed] = ACTIONS(650), + [anon_sym_non_DASHsealed] = ACTIONS(648), + [anon_sym_record] = ACTIONS(650), + [anon_sym_ATinterface] = ACTIONS(648), + [anon_sym_interface] = ACTIONS(650), + [anon_sym_byte] = ACTIONS(650), + [anon_sym_short] = ACTIONS(650), + [anon_sym_int] = ACTIONS(650), + [anon_sym_long] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_float] = ACTIONS(650), + [anon_sym_double] = ACTIONS(650), + [sym_boolean_type] = ACTIONS(650), + [sym_void_type] = ACTIONS(650), + [sym_this] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [178] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(565), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym_block] = STATE(502), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [sym__literal] = STATE(461), + [sym_expression] = STATE(544), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(710), + [sym_marker_annotation] = STATE(710), + [sym_annotation] = STATE(710), + [sym__element_value] = STATE(1170), + [sym_element_value_array_initializer] = STATE(1170), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28281,20 +27075,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -28310,158 +27104,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [179] = { - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(283), - [sym_decimal_integer_literal] = ACTIONS(283), - [sym_hex_integer_literal] = ACTIONS(283), - [sym_octal_integer_literal] = ACTIONS(281), - [sym_binary_integer_literal] = ACTIONS(281), - [sym_decimal_floating_point_literal] = ACTIONS(281), - [sym_hex_floating_point_literal] = ACTIONS(283), - [sym_true] = ACTIONS(283), - [sym_false] = ACTIONS(283), - [sym_character_literal] = ACTIONS(281), - [sym_string_literal] = ACTIONS(283), - [sym_text_block] = ACTIONS(281), - [sym_null_literal] = ACTIONS(283), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(281), - [anon_sym_DASH_DASH] = ACTIONS(281), - [anon_sym_new] = ACTIONS(283), - [anon_sym_class] = ACTIONS(283), - [anon_sym_switch] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_case] = ACTIONS(283), - [anon_sym_default] = ACTIONS(283), - [anon_sym_SEMI] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(283), - [anon_sym_do] = ACTIONS(283), - [anon_sym_while] = ACTIONS(283), - [anon_sym_break] = ACTIONS(283), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_return] = ACTIONS(283), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_synchronized] = ACTIONS(283), - [anon_sym_throw] = ACTIONS(283), - [anon_sym_try] = ACTIONS(283), - [anon_sym_if] = ACTIONS(283), - [anon_sym_else] = ACTIONS(283), - [anon_sym_for] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [anon_sym_open] = ACTIONS(283), - [anon_sym_module] = ACTIONS(283), - [anon_sym_static] = ACTIONS(283), - [anon_sym_package] = ACTIONS(283), - [anon_sym_import] = ACTIONS(283), - [anon_sym_enum] = ACTIONS(283), - [anon_sym_public] = ACTIONS(283), - [anon_sym_protected] = ACTIONS(283), - [anon_sym_private] = ACTIONS(283), - [anon_sym_abstract] = ACTIONS(283), - [anon_sym_final] = ACTIONS(283), - [anon_sym_strictfp] = ACTIONS(283), - [anon_sym_native] = ACTIONS(283), - [anon_sym_transient] = ACTIONS(283), - [anon_sym_volatile] = ACTIONS(283), - [anon_sym_sealed] = ACTIONS(283), - [anon_sym_non_DASHsealed] = ACTIONS(281), - [anon_sym_record] = ACTIONS(283), - [anon_sym_ATinterface] = ACTIONS(281), - [anon_sym_interface] = ACTIONS(283), - [anon_sym_byte] = ACTIONS(283), - [anon_sym_short] = ACTIONS(283), - [anon_sym_int] = ACTIONS(283), - [anon_sym_long] = ACTIONS(283), - [anon_sym_char] = ACTIONS(283), - [anon_sym_float] = ACTIONS(283), - [anon_sym_double] = ACTIONS(283), - [sym_boolean_type] = ACTIONS(283), - [sym_void_type] = ACTIONS(283), - [sym_this] = ACTIONS(283), - [sym_super] = ACTIONS(283), + [ts_builtin_sym_end] = ACTIONS(652), + [sym_identifier] = ACTIONS(654), + [sym_decimal_integer_literal] = ACTIONS(654), + [sym_hex_integer_literal] = ACTIONS(654), + [sym_octal_integer_literal] = ACTIONS(652), + [sym_binary_integer_literal] = ACTIONS(652), + [sym_decimal_floating_point_literal] = ACTIONS(652), + [sym_hex_floating_point_literal] = ACTIONS(654), + [sym_true] = ACTIONS(654), + [sym_false] = ACTIONS(654), + [sym_character_literal] = ACTIONS(652), + [sym_string_literal] = ACTIONS(654), + [sym_text_block] = ACTIONS(652), + [sym_null_literal] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_final] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(652), + [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_new] = ACTIONS(654), + [anon_sym_class] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_assert] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_yield] = ACTIONS(654), + [anon_sym_synchronized] = ACTIONS(654), + [anon_sym_throw] = ACTIONS(654), + [anon_sym_try] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_open] = ACTIONS(654), + [anon_sym_module] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_package] = ACTIONS(654), + [anon_sym_import] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_public] = ACTIONS(654), + [anon_sym_protected] = ACTIONS(654), + [anon_sym_private] = ACTIONS(654), + [anon_sym_abstract] = ACTIONS(654), + [anon_sym_strictfp] = ACTIONS(654), + [anon_sym_native] = ACTIONS(654), + [anon_sym_transient] = ACTIONS(654), + [anon_sym_volatile] = ACTIONS(654), + [anon_sym_sealed] = ACTIONS(654), + [anon_sym_non_DASHsealed] = ACTIONS(652), + [anon_sym_record] = ACTIONS(654), + [anon_sym_ATinterface] = ACTIONS(652), + [anon_sym_interface] = ACTIONS(654), + [anon_sym_byte] = ACTIONS(654), + [anon_sym_short] = ACTIONS(654), + [anon_sym_int] = ACTIONS(654), + [anon_sym_long] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_float] = ACTIONS(654), + [anon_sym_double] = ACTIONS(654), + [sym_boolean_type] = ACTIONS(654), + [sym_void_type] = ACTIONS(654), + [sym_this] = ACTIONS(654), + [sym_super] = ACTIONS(654), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(558), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym_block] = STATE(509), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(656), + [sym_identifier] = ACTIONS(658), + [sym_decimal_integer_literal] = ACTIONS(658), + [sym_hex_integer_literal] = ACTIONS(658), + [sym_octal_integer_literal] = ACTIONS(656), + [sym_binary_integer_literal] = ACTIONS(656), + [sym_decimal_floating_point_literal] = ACTIONS(656), + [sym_hex_floating_point_literal] = ACTIONS(658), + [sym_true] = ACTIONS(658), + [sym_false] = ACTIONS(658), + [sym_character_literal] = ACTIONS(656), + [sym_string_literal] = ACTIONS(658), + [sym_text_block] = ACTIONS(656), + [sym_null_literal] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_final] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(656), + [anon_sym_TILDE] = ACTIONS(656), [anon_sym_PLUS_PLUS] = ACTIONS(656), [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), + [anon_sym_new] = ACTIONS(658), + [anon_sym_class] = ACTIONS(658), + [anon_sym_switch] = ACTIONS(658), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_assert] = ACTIONS(658), + [anon_sym_do] = ACTIONS(658), + [anon_sym_while] = ACTIONS(658), + [anon_sym_break] = ACTIONS(658), + [anon_sym_continue] = ACTIONS(658), + [anon_sym_return] = ACTIONS(658), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_synchronized] = ACTIONS(658), + [anon_sym_throw] = ACTIONS(658), + [anon_sym_try] = ACTIONS(658), + [anon_sym_if] = ACTIONS(658), + [anon_sym_else] = ACTIONS(658), + [anon_sym_for] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(658), [anon_sym_open] = ACTIONS(658), [anon_sym_module] = ACTIONS(658), + [anon_sym_static] = ACTIONS(658), + [anon_sym_package] = ACTIONS(658), + [anon_sym_import] = ACTIONS(658), + [anon_sym_enum] = ACTIONS(658), + [anon_sym_public] = ACTIONS(658), + [anon_sym_protected] = ACTIONS(658), + [anon_sym_private] = ACTIONS(658), + [anon_sym_abstract] = ACTIONS(658), + [anon_sym_strictfp] = ACTIONS(658), + [anon_sym_native] = ACTIONS(658), + [anon_sym_transient] = ACTIONS(658), + [anon_sym_volatile] = ACTIONS(658), + [anon_sym_sealed] = ACTIONS(658), + [anon_sym_non_DASHsealed] = ACTIONS(656), [anon_sym_record] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(656), + [anon_sym_interface] = ACTIONS(658), + [anon_sym_byte] = ACTIONS(658), + [anon_sym_short] = ACTIONS(658), + [anon_sym_int] = ACTIONS(658), + [anon_sym_long] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_float] = ACTIONS(658), + [anon_sym_double] = ACTIONS(658), + [sym_boolean_type] = ACTIONS(658), + [sym_void_type] = ACTIONS(658), + [sym_this] = ACTIONS(658), + [sym_super] = ACTIONS(658), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -28483,6 +27278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(660), [anon_sym_PLUS] = ACTIONS(662), [anon_sym_DASH] = ACTIONS(662), + [anon_sym_final] = ACTIONS(662), [anon_sym_BANG] = ACTIONS(660), [anon_sym_TILDE] = ACTIONS(660), [anon_sym_PLUS_PLUS] = ACTIONS(660), @@ -28519,7 +27315,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(662), [anon_sym_private] = ACTIONS(662), [anon_sym_abstract] = ACTIONS(662), - [anon_sym_final] = ACTIONS(662), [anon_sym_strictfp] = ACTIONS(662), [anon_sym_native] = ACTIONS(662), [anon_sym_transient] = ACTIONS(662), @@ -28561,6 +27356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(664), [anon_sym_PLUS] = ACTIONS(666), [anon_sym_DASH] = ACTIONS(666), + [anon_sym_final] = ACTIONS(666), [anon_sym_BANG] = ACTIONS(664), [anon_sym_TILDE] = ACTIONS(664), [anon_sym_PLUS_PLUS] = ACTIONS(664), @@ -28597,7 +27393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(666), [anon_sym_private] = ACTIONS(666), [anon_sym_abstract] = ACTIONS(666), - [anon_sym_final] = ACTIONS(666), [anon_sym_strictfp] = ACTIONS(666), [anon_sym_native] = ACTIONS(666), [anon_sym_transient] = ACTIONS(666), @@ -28639,6 +27434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_PLUS] = ACTIONS(670), [anon_sym_DASH] = ACTIONS(670), + [anon_sym_final] = ACTIONS(670), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(668), [anon_sym_PLUS_PLUS] = ACTIONS(668), @@ -28675,7 +27471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(670), [anon_sym_private] = ACTIONS(670), [anon_sym_abstract] = ACTIONS(670), - [anon_sym_final] = ACTIONS(670), [anon_sym_strictfp] = ACTIONS(670), [anon_sym_native] = ACTIONS(670), [anon_sym_transient] = ACTIONS(670), @@ -28700,84 +27495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(315), - [sym_identifier] = ACTIONS(317), - [sym_decimal_integer_literal] = ACTIONS(317), - [sym_hex_integer_literal] = ACTIONS(317), - [sym_octal_integer_literal] = ACTIONS(315), - [sym_binary_integer_literal] = ACTIONS(315), - [sym_decimal_floating_point_literal] = ACTIONS(315), - [sym_hex_floating_point_literal] = ACTIONS(317), - [sym_true] = ACTIONS(317), - [sym_false] = ACTIONS(317), - [sym_character_literal] = ACTIONS(315), - [sym_string_literal] = ACTIONS(317), - [sym_text_block] = ACTIONS(315), - [sym_null_literal] = ACTIONS(317), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS_PLUS] = ACTIONS(315), - [anon_sym_DASH_DASH] = ACTIONS(315), - [anon_sym_new] = ACTIONS(317), - [anon_sym_class] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(315), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(317), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_assert] = ACTIONS(317), - [anon_sym_do] = ACTIONS(317), - [anon_sym_while] = ACTIONS(317), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(317), - [anon_sym_return] = ACTIONS(317), - [anon_sym_yield] = ACTIONS(317), - [anon_sym_synchronized] = ACTIONS(317), - [anon_sym_throw] = ACTIONS(317), - [anon_sym_try] = ACTIONS(317), - [anon_sym_if] = ACTIONS(317), - [anon_sym_else] = ACTIONS(317), - [anon_sym_for] = ACTIONS(317), - [anon_sym_AT] = ACTIONS(317), - [anon_sym_open] = ACTIONS(317), - [anon_sym_module] = ACTIONS(317), - [anon_sym_static] = ACTIONS(317), - [anon_sym_package] = ACTIONS(317), - [anon_sym_import] = ACTIONS(317), - [anon_sym_enum] = ACTIONS(317), - [anon_sym_public] = ACTIONS(317), - [anon_sym_protected] = ACTIONS(317), - [anon_sym_private] = ACTIONS(317), - [anon_sym_abstract] = ACTIONS(317), - [anon_sym_final] = ACTIONS(317), - [anon_sym_strictfp] = ACTIONS(317), - [anon_sym_native] = ACTIONS(317), - [anon_sym_transient] = ACTIONS(317), - [anon_sym_volatile] = ACTIONS(317), - [anon_sym_sealed] = ACTIONS(317), - [anon_sym_non_DASHsealed] = ACTIONS(315), - [anon_sym_record] = ACTIONS(317), - [anon_sym_ATinterface] = ACTIONS(315), - [anon_sym_interface] = ACTIONS(317), - [anon_sym_byte] = ACTIONS(317), - [anon_sym_short] = ACTIONS(317), - [anon_sym_int] = ACTIONS(317), - [anon_sym_long] = ACTIONS(317), - [anon_sym_char] = ACTIONS(317), - [anon_sym_float] = ACTIONS(317), - [anon_sym_double] = ACTIONS(317), - [sym_boolean_type] = ACTIONS(317), - [sym_void_type] = ACTIONS(317), - [sym_this] = ACTIONS(317), - [sym_super] = ACTIONS(317), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [185] = { [ts_builtin_sym_end] = ACTIONS(672), [sym_identifier] = ACTIONS(674), [sym_decimal_integer_literal] = ACTIONS(674), @@ -28795,6 +27512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(672), [anon_sym_PLUS] = ACTIONS(674), [anon_sym_DASH] = ACTIONS(674), + [anon_sym_final] = ACTIONS(674), [anon_sym_BANG] = ACTIONS(672), [anon_sym_TILDE] = ACTIONS(672), [anon_sym_PLUS_PLUS] = ACTIONS(672), @@ -28831,7 +27549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(674), [anon_sym_private] = ACTIONS(674), [anon_sym_abstract] = ACTIONS(674), - [anon_sym_final] = ACTIONS(674), [anon_sym_strictfp] = ACTIONS(674), [anon_sym_native] = ACTIONS(674), [anon_sym_transient] = ACTIONS(674), @@ -28855,7 +27572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [186] = { + [185] = { [ts_builtin_sym_end] = ACTIONS(676), [sym_identifier] = ACTIONS(678), [sym_decimal_integer_literal] = ACTIONS(678), @@ -28873,6 +27590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(676), [anon_sym_PLUS] = ACTIONS(678), [anon_sym_DASH] = ACTIONS(678), + [anon_sym_final] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(676), [anon_sym_TILDE] = ACTIONS(676), [anon_sym_PLUS_PLUS] = ACTIONS(676), @@ -28909,7 +27627,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(678), [anon_sym_private] = ACTIONS(678), [anon_sym_abstract] = ACTIONS(678), - [anon_sym_final] = ACTIONS(678), [anon_sym_strictfp] = ACTIONS(678), [anon_sym_native] = ACTIONS(678), [anon_sym_transient] = ACTIONS(678), @@ -28933,7 +27650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [187] = { + [186] = { [ts_builtin_sym_end] = ACTIONS(680), [sym_identifier] = ACTIONS(682), [sym_decimal_integer_literal] = ACTIONS(682), @@ -28951,6 +27668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(682), [anon_sym_DASH] = ACTIONS(682), + [anon_sym_final] = ACTIONS(682), [anon_sym_BANG] = ACTIONS(680), [anon_sym_TILDE] = ACTIONS(680), [anon_sym_PLUS_PLUS] = ACTIONS(680), @@ -28987,7 +27705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(682), [anon_sym_private] = ACTIONS(682), [anon_sym_abstract] = ACTIONS(682), - [anon_sym_final] = ACTIONS(682), [anon_sym_strictfp] = ACTIONS(682), [anon_sym_native] = ACTIONS(682), [anon_sym_transient] = ACTIONS(682), @@ -29011,6 +27728,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [187] = { + [ts_builtin_sym_end] = ACTIONS(323), + [sym_identifier] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(325), + [sym_hex_integer_literal] = ACTIONS(325), + [sym_octal_integer_literal] = ACTIONS(323), + [sym_binary_integer_literal] = ACTIONS(323), + [sym_decimal_floating_point_literal] = ACTIONS(323), + [sym_hex_floating_point_literal] = ACTIONS(325), + [sym_true] = ACTIONS(325), + [sym_false] = ACTIONS(325), + [sym_character_literal] = ACTIONS(323), + [sym_string_literal] = ACTIONS(325), + [sym_text_block] = ACTIONS(323), + [sym_null_literal] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_final] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_new] = ACTIONS(325), + [anon_sym_class] = ACTIONS(325), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_case] = ACTIONS(325), + [anon_sym_default] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_assert] = ACTIONS(325), + [anon_sym_do] = ACTIONS(325), + [anon_sym_while] = ACTIONS(325), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_return] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(325), + [anon_sym_synchronized] = ACTIONS(325), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_try] = ACTIONS(325), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(325), + [anon_sym_for] = ACTIONS(325), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_open] = ACTIONS(325), + [anon_sym_module] = ACTIONS(325), + [anon_sym_static] = ACTIONS(325), + [anon_sym_package] = ACTIONS(325), + [anon_sym_import] = ACTIONS(325), + [anon_sym_enum] = ACTIONS(325), + [anon_sym_public] = ACTIONS(325), + [anon_sym_protected] = ACTIONS(325), + [anon_sym_private] = ACTIONS(325), + [anon_sym_abstract] = ACTIONS(325), + [anon_sym_strictfp] = ACTIONS(325), + [anon_sym_native] = ACTIONS(325), + [anon_sym_transient] = ACTIONS(325), + [anon_sym_volatile] = ACTIONS(325), + [anon_sym_sealed] = ACTIONS(325), + [anon_sym_non_DASHsealed] = ACTIONS(323), + [anon_sym_record] = ACTIONS(325), + [anon_sym_ATinterface] = ACTIONS(323), + [anon_sym_interface] = ACTIONS(325), + [anon_sym_byte] = ACTIONS(325), + [anon_sym_short] = ACTIONS(325), + [anon_sym_int] = ACTIONS(325), + [anon_sym_long] = ACTIONS(325), + [anon_sym_char] = ACTIONS(325), + [anon_sym_float] = ACTIONS(325), + [anon_sym_double] = ACTIONS(325), + [sym_boolean_type] = ACTIONS(325), + [sym_void_type] = ACTIONS(325), + [sym_this] = ACTIONS(325), + [sym_super] = ACTIONS(325), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [188] = { [ts_builtin_sym_end] = ACTIONS(684), [sym_identifier] = ACTIONS(686), @@ -29029,6 +27824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(686), [anon_sym_DASH] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), [anon_sym_BANG] = ACTIONS(684), [anon_sym_TILDE] = ACTIONS(684), [anon_sym_PLUS_PLUS] = ACTIONS(684), @@ -29065,7 +27861,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(686), [anon_sym_private] = ACTIONS(686), [anon_sym_abstract] = ACTIONS(686), - [anon_sym_final] = ACTIONS(686), [anon_sym_strictfp] = ACTIONS(686), [anon_sym_native] = ACTIONS(686), [anon_sym_transient] = ACTIONS(686), @@ -29107,6 +27902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(688), [anon_sym_PLUS] = ACTIONS(690), [anon_sym_DASH] = ACTIONS(690), + [anon_sym_final] = ACTIONS(690), [anon_sym_BANG] = ACTIONS(688), [anon_sym_TILDE] = ACTIONS(688), [anon_sym_PLUS_PLUS] = ACTIONS(688), @@ -29143,7 +27939,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(690), [anon_sym_private] = ACTIONS(690), [anon_sym_abstract] = ACTIONS(690), - [anon_sym_final] = ACTIONS(690), [anon_sym_strictfp] = ACTIONS(690), [anon_sym_native] = ACTIONS(690), [anon_sym_transient] = ACTIONS(690), @@ -29185,6 +27980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(692), [anon_sym_PLUS] = ACTIONS(694), [anon_sym_DASH] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(692), [anon_sym_TILDE] = ACTIONS(692), [anon_sym_PLUS_PLUS] = ACTIONS(692), @@ -29221,7 +28017,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(694), [anon_sym_private] = ACTIONS(694), [anon_sym_abstract] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), [anon_sym_strictfp] = ACTIONS(694), [anon_sym_native] = ACTIONS(694), [anon_sym_transient] = ACTIONS(694), @@ -29246,432 +28041,900 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_switch_label] = STATE(1219), - [aux_sym_switch_block_statement_group_repeat1] = STATE(191), - [sym_identifier] = ACTIONS(696), - [sym_decimal_integer_literal] = ACTIONS(696), - [sym_hex_integer_literal] = ACTIONS(696), - [sym_octal_integer_literal] = ACTIONS(698), - [sym_binary_integer_literal] = ACTIONS(698), - [sym_decimal_floating_point_literal] = ACTIONS(698), - [sym_hex_floating_point_literal] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_character_literal] = ACTIONS(698), - [sym_string_literal] = ACTIONS(696), - [sym_text_block] = ACTIONS(698), - [sym_null_literal] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_new] = ACTIONS(696), - [anon_sym_class] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(703), - [anon_sym_SEMI] = ACTIONS(698), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_break] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(696), - [anon_sym_synchronized] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_try] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_open] = ACTIONS(696), - [anon_sym_module] = ACTIONS(696), - [anon_sym_static] = ACTIONS(696), - [anon_sym_package] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_enum] = ACTIONS(696), - [anon_sym_public] = ACTIONS(696), - [anon_sym_protected] = ACTIONS(696), - [anon_sym_private] = ACTIONS(696), - [anon_sym_abstract] = ACTIONS(696), - [anon_sym_final] = ACTIONS(696), - [anon_sym_strictfp] = ACTIONS(696), - [anon_sym_native] = ACTIONS(696), - [anon_sym_transient] = ACTIONS(696), - [anon_sym_volatile] = ACTIONS(696), - [anon_sym_sealed] = ACTIONS(696), - [anon_sym_non_DASHsealed] = ACTIONS(698), - [anon_sym_record] = ACTIONS(696), - [anon_sym_ATinterface] = ACTIONS(698), - [anon_sym_interface] = ACTIONS(696), - [anon_sym_byte] = ACTIONS(696), - [anon_sym_short] = ACTIONS(696), - [anon_sym_int] = ACTIONS(696), - [anon_sym_long] = ACTIONS(696), - [anon_sym_char] = ACTIONS(696), - [anon_sym_float] = ACTIONS(696), - [anon_sym_double] = ACTIONS(696), - [sym_boolean_type] = ACTIONS(696), - [sym_void_type] = ACTIONS(696), - [sym_this] = ACTIONS(696), - [sym_super] = ACTIONS(696), + [ts_builtin_sym_end] = ACTIONS(696), + [sym_identifier] = ACTIONS(698), + [sym_decimal_integer_literal] = ACTIONS(698), + [sym_hex_integer_literal] = ACTIONS(698), + [sym_octal_integer_literal] = ACTIONS(696), + [sym_binary_integer_literal] = ACTIONS(696), + [sym_decimal_floating_point_literal] = ACTIONS(696), + [sym_hex_floating_point_literal] = ACTIONS(698), + [sym_true] = ACTIONS(698), + [sym_false] = ACTIONS(698), + [sym_character_literal] = ACTIONS(696), + [sym_string_literal] = ACTIONS(698), + [sym_text_block] = ACTIONS(696), + [sym_null_literal] = ACTIONS(698), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_final] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(696), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_new] = ACTIONS(698), + [anon_sym_class] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_case] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(696), + [anon_sym_assert] = ACTIONS(698), + [anon_sym_do] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_yield] = ACTIONS(698), + [anon_sym_synchronized] = ACTIONS(698), + [anon_sym_throw] = ACTIONS(698), + [anon_sym_try] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_else] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_AT] = ACTIONS(698), + [anon_sym_open] = ACTIONS(698), + [anon_sym_module] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_package] = ACTIONS(698), + [anon_sym_import] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_public] = ACTIONS(698), + [anon_sym_protected] = ACTIONS(698), + [anon_sym_private] = ACTIONS(698), + [anon_sym_abstract] = ACTIONS(698), + [anon_sym_strictfp] = ACTIONS(698), + [anon_sym_native] = ACTIONS(698), + [anon_sym_transient] = ACTIONS(698), + [anon_sym_volatile] = ACTIONS(698), + [anon_sym_sealed] = ACTIONS(698), + [anon_sym_non_DASHsealed] = ACTIONS(696), + [anon_sym_record] = ACTIONS(698), + [anon_sym_ATinterface] = ACTIONS(696), + [anon_sym_interface] = ACTIONS(698), + [anon_sym_byte] = ACTIONS(698), + [anon_sym_short] = ACTIONS(698), + [anon_sym_int] = ACTIONS(698), + [anon_sym_long] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_float] = ACTIONS(698), + [anon_sym_double] = ACTIONS(698), + [sym_boolean_type] = ACTIONS(698), + [sym_void_type] = ACTIONS(698), + [sym_this] = ACTIONS(698), + [sym_super] = ACTIONS(698), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [192] = { - [ts_builtin_sym_end] = ACTIONS(706), - [sym_identifier] = ACTIONS(708), - [sym_decimal_integer_literal] = ACTIONS(708), - [sym_hex_integer_literal] = ACTIONS(708), - [sym_octal_integer_literal] = ACTIONS(706), - [sym_binary_integer_literal] = ACTIONS(706), - [sym_decimal_floating_point_literal] = ACTIONS(706), - [sym_hex_floating_point_literal] = ACTIONS(708), - [sym_true] = ACTIONS(708), - [sym_false] = ACTIONS(708), - [sym_character_literal] = ACTIONS(706), - [sym_string_literal] = ACTIONS(708), - [sym_text_block] = ACTIONS(706), - [sym_null_literal] = ACTIONS(708), - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_class] = ACTIONS(708), - [anon_sym_switch] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_case] = ACTIONS(708), - [anon_sym_default] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_assert] = ACTIONS(708), - [anon_sym_do] = ACTIONS(708), - [anon_sym_while] = ACTIONS(708), - [anon_sym_break] = ACTIONS(708), - [anon_sym_continue] = ACTIONS(708), - [anon_sym_return] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(708), - [anon_sym_synchronized] = ACTIONS(708), - [anon_sym_throw] = ACTIONS(708), - [anon_sym_try] = ACTIONS(708), - [anon_sym_if] = ACTIONS(708), - [anon_sym_else] = ACTIONS(708), - [anon_sym_for] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(708), - [anon_sym_open] = ACTIONS(708), - [anon_sym_module] = ACTIONS(708), - [anon_sym_static] = ACTIONS(708), - [anon_sym_package] = ACTIONS(708), - [anon_sym_import] = ACTIONS(708), - [anon_sym_enum] = ACTIONS(708), - [anon_sym_public] = ACTIONS(708), - [anon_sym_protected] = ACTIONS(708), - [anon_sym_private] = ACTIONS(708), - [anon_sym_abstract] = ACTIONS(708), - [anon_sym_final] = ACTIONS(708), - [anon_sym_strictfp] = ACTIONS(708), - [anon_sym_native] = ACTIONS(708), - [anon_sym_transient] = ACTIONS(708), - [anon_sym_volatile] = ACTIONS(708), - [anon_sym_sealed] = ACTIONS(708), - [anon_sym_non_DASHsealed] = ACTIONS(706), - [anon_sym_record] = ACTIONS(708), - [anon_sym_ATinterface] = ACTIONS(706), - [anon_sym_interface] = ACTIONS(708), - [anon_sym_byte] = ACTIONS(708), - [anon_sym_short] = ACTIONS(708), - [anon_sym_int] = ACTIONS(708), - [anon_sym_long] = ACTIONS(708), - [anon_sym_char] = ACTIONS(708), - [anon_sym_float] = ACTIONS(708), - [anon_sym_double] = ACTIONS(708), - [sym_boolean_type] = ACTIONS(708), - [sym_void_type] = ACTIONS(708), - [sym_this] = ACTIONS(708), - [sym_super] = ACTIONS(708), + [ts_builtin_sym_end] = ACTIONS(700), + [sym_identifier] = ACTIONS(702), + [sym_decimal_integer_literal] = ACTIONS(702), + [sym_hex_integer_literal] = ACTIONS(702), + [sym_octal_integer_literal] = ACTIONS(700), + [sym_binary_integer_literal] = ACTIONS(700), + [sym_decimal_floating_point_literal] = ACTIONS(700), + [sym_hex_floating_point_literal] = ACTIONS(702), + [sym_true] = ACTIONS(702), + [sym_false] = ACTIONS(702), + [sym_character_literal] = ACTIONS(700), + [sym_string_literal] = ACTIONS(702), + [sym_text_block] = ACTIONS(700), + [sym_null_literal] = ACTIONS(702), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_final] = ACTIONS(702), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_new] = ACTIONS(702), + [anon_sym_class] = ACTIONS(702), + [anon_sym_switch] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_case] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_do] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_synchronized] = ACTIONS(702), + [anon_sym_throw] = ACTIONS(702), + [anon_sym_try] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_else] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_open] = ACTIONS(702), + [anon_sym_module] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_package] = ACTIONS(702), + [anon_sym_import] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_public] = ACTIONS(702), + [anon_sym_protected] = ACTIONS(702), + [anon_sym_private] = ACTIONS(702), + [anon_sym_abstract] = ACTIONS(702), + [anon_sym_strictfp] = ACTIONS(702), + [anon_sym_native] = ACTIONS(702), + [anon_sym_transient] = ACTIONS(702), + [anon_sym_volatile] = ACTIONS(702), + [anon_sym_sealed] = ACTIONS(702), + [anon_sym_non_DASHsealed] = ACTIONS(700), + [anon_sym_record] = ACTIONS(702), + [anon_sym_ATinterface] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(702), + [anon_sym_byte] = ACTIONS(702), + [anon_sym_short] = ACTIONS(702), + [anon_sym_int] = ACTIONS(702), + [anon_sym_long] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_float] = ACTIONS(702), + [anon_sym_double] = ACTIONS(702), + [sym_boolean_type] = ACTIONS(702), + [sym_void_type] = ACTIONS(702), + [sym_this] = ACTIONS(702), + [sym_super] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(710), - [sym_identifier] = ACTIONS(712), - [sym_decimal_integer_literal] = ACTIONS(712), - [sym_hex_integer_literal] = ACTIONS(712), - [sym_octal_integer_literal] = ACTIONS(710), - [sym_binary_integer_literal] = ACTIONS(710), - [sym_decimal_floating_point_literal] = ACTIONS(710), - [sym_hex_floating_point_literal] = ACTIONS(712), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_character_literal] = ACTIONS(710), - [sym_string_literal] = ACTIONS(712), - [sym_text_block] = ACTIONS(710), - [sym_null_literal] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(710), - [anon_sym_DASH_DASH] = ACTIONS(710), - [anon_sym_new] = ACTIONS(712), - [anon_sym_class] = ACTIONS(712), - [anon_sym_switch] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_case] = ACTIONS(712), - [anon_sym_default] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_do] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_break] = ACTIONS(712), - [anon_sym_continue] = ACTIONS(712), - [anon_sym_return] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_synchronized] = ACTIONS(712), - [anon_sym_throw] = ACTIONS(712), - [anon_sym_try] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_else] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [anon_sym_open] = ACTIONS(712), - [anon_sym_module] = ACTIONS(712), - [anon_sym_static] = ACTIONS(712), - [anon_sym_package] = ACTIONS(712), - [anon_sym_import] = ACTIONS(712), - [anon_sym_enum] = ACTIONS(712), - [anon_sym_public] = ACTIONS(712), - [anon_sym_protected] = ACTIONS(712), - [anon_sym_private] = ACTIONS(712), - [anon_sym_abstract] = ACTIONS(712), - [anon_sym_final] = ACTIONS(712), - [anon_sym_strictfp] = ACTIONS(712), - [anon_sym_native] = ACTIONS(712), - [anon_sym_transient] = ACTIONS(712), - [anon_sym_volatile] = ACTIONS(712), - [anon_sym_sealed] = ACTIONS(712), - [anon_sym_non_DASHsealed] = ACTIONS(710), - [anon_sym_record] = ACTIONS(712), - [anon_sym_ATinterface] = ACTIONS(710), - [anon_sym_interface] = ACTIONS(712), - [anon_sym_byte] = ACTIONS(712), - [anon_sym_short] = ACTIONS(712), - [anon_sym_int] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_char] = ACTIONS(712), - [anon_sym_float] = ACTIONS(712), - [anon_sym_double] = ACTIONS(712), - [sym_boolean_type] = ACTIONS(712), - [sym_void_type] = ACTIONS(712), - [sym_this] = ACTIONS(712), - [sym_super] = ACTIONS(712), + [ts_builtin_sym_end] = ACTIONS(704), + [sym_identifier] = ACTIONS(706), + [sym_decimal_integer_literal] = ACTIONS(706), + [sym_hex_integer_literal] = ACTIONS(706), + [sym_octal_integer_literal] = ACTIONS(704), + [sym_binary_integer_literal] = ACTIONS(704), + [sym_decimal_floating_point_literal] = ACTIONS(704), + [sym_hex_floating_point_literal] = ACTIONS(706), + [sym_true] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [sym_character_literal] = ACTIONS(704), + [sym_string_literal] = ACTIONS(706), + [sym_text_block] = ACTIONS(704), + [sym_null_literal] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_final] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_PLUS_PLUS] = ACTIONS(704), + [anon_sym_DASH_DASH] = ACTIONS(704), + [anon_sym_new] = ACTIONS(706), + [anon_sym_class] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_case] = ACTIONS(706), + [anon_sym_default] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_do] = ACTIONS(706), + [anon_sym_while] = ACTIONS(706), + [anon_sym_break] = ACTIONS(706), + [anon_sym_continue] = ACTIONS(706), + [anon_sym_return] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_synchronized] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(706), + [anon_sym_try] = ACTIONS(706), + [anon_sym_if] = ACTIONS(706), + [anon_sym_else] = ACTIONS(706), + [anon_sym_for] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_open] = ACTIONS(706), + [anon_sym_module] = ACTIONS(706), + [anon_sym_static] = ACTIONS(706), + [anon_sym_package] = ACTIONS(706), + [anon_sym_import] = ACTIONS(706), + [anon_sym_enum] = ACTIONS(706), + [anon_sym_public] = ACTIONS(706), + [anon_sym_protected] = ACTIONS(706), + [anon_sym_private] = ACTIONS(706), + [anon_sym_abstract] = ACTIONS(706), + [anon_sym_strictfp] = ACTIONS(706), + [anon_sym_native] = ACTIONS(706), + [anon_sym_transient] = ACTIONS(706), + [anon_sym_volatile] = ACTIONS(706), + [anon_sym_sealed] = ACTIONS(706), + [anon_sym_non_DASHsealed] = ACTIONS(704), + [anon_sym_record] = ACTIONS(706), + [anon_sym_ATinterface] = ACTIONS(704), + [anon_sym_interface] = ACTIONS(706), + [anon_sym_byte] = ACTIONS(706), + [anon_sym_short] = ACTIONS(706), + [anon_sym_int] = ACTIONS(706), + [anon_sym_long] = ACTIONS(706), + [anon_sym_char] = ACTIONS(706), + [anon_sym_float] = ACTIONS(706), + [anon_sym_double] = ACTIONS(706), + [sym_boolean_type] = ACTIONS(706), + [sym_void_type] = ACTIONS(706), + [sym_this] = ACTIONS(706), + [sym_super] = ACTIONS(706), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [194] = { - [ts_builtin_sym_end] = ACTIONS(714), - [sym_identifier] = ACTIONS(716), - [sym_decimal_integer_literal] = ACTIONS(716), - [sym_hex_integer_literal] = ACTIONS(716), - [sym_octal_integer_literal] = ACTIONS(714), - [sym_binary_integer_literal] = ACTIONS(714), - [sym_decimal_floating_point_literal] = ACTIONS(714), - [sym_hex_floating_point_literal] = ACTIONS(716), - [sym_true] = ACTIONS(716), - [sym_false] = ACTIONS(716), - [sym_character_literal] = ACTIONS(714), - [sym_string_literal] = ACTIONS(716), - [sym_text_block] = ACTIONS(714), - [sym_null_literal] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_new] = ACTIONS(716), - [anon_sym_class] = ACTIONS(716), - [anon_sym_switch] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(714), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_case] = ACTIONS(716), - [anon_sym_default] = ACTIONS(716), - [anon_sym_SEMI] = ACTIONS(714), - [anon_sym_assert] = ACTIONS(716), - [anon_sym_do] = ACTIONS(716), - [anon_sym_while] = ACTIONS(716), - [anon_sym_break] = ACTIONS(716), - [anon_sym_continue] = ACTIONS(716), - [anon_sym_return] = ACTIONS(716), - [anon_sym_yield] = ACTIONS(716), - [anon_sym_synchronized] = ACTIONS(716), - [anon_sym_throw] = ACTIONS(716), - [anon_sym_try] = ACTIONS(716), - [anon_sym_if] = ACTIONS(716), - [anon_sym_else] = ACTIONS(716), - [anon_sym_for] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(716), - [anon_sym_open] = ACTIONS(716), - [anon_sym_module] = ACTIONS(716), - [anon_sym_static] = ACTIONS(716), - [anon_sym_package] = ACTIONS(716), - [anon_sym_import] = ACTIONS(716), - [anon_sym_enum] = ACTIONS(716), - [anon_sym_public] = ACTIONS(716), - [anon_sym_protected] = ACTIONS(716), - [anon_sym_private] = ACTIONS(716), - [anon_sym_abstract] = ACTIONS(716), - [anon_sym_final] = ACTIONS(716), - [anon_sym_strictfp] = ACTIONS(716), - [anon_sym_native] = ACTIONS(716), - [anon_sym_transient] = ACTIONS(716), - [anon_sym_volatile] = ACTIONS(716), - [anon_sym_sealed] = ACTIONS(716), - [anon_sym_non_DASHsealed] = ACTIONS(714), - [anon_sym_record] = ACTIONS(716), - [anon_sym_ATinterface] = ACTIONS(714), - [anon_sym_interface] = ACTIONS(716), - [anon_sym_byte] = ACTIONS(716), - [anon_sym_short] = ACTIONS(716), - [anon_sym_int] = ACTIONS(716), - [anon_sym_long] = ACTIONS(716), - [anon_sym_char] = ACTIONS(716), - [anon_sym_float] = ACTIONS(716), - [anon_sym_double] = ACTIONS(716), - [sym_boolean_type] = ACTIONS(716), - [sym_void_type] = ACTIONS(716), - [sym_this] = ACTIONS(716), - [sym_super] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(708), + [sym_identifier] = ACTIONS(710), + [sym_decimal_integer_literal] = ACTIONS(710), + [sym_hex_integer_literal] = ACTIONS(710), + [sym_octal_integer_literal] = ACTIONS(708), + [sym_binary_integer_literal] = ACTIONS(708), + [sym_decimal_floating_point_literal] = ACTIONS(708), + [sym_hex_floating_point_literal] = ACTIONS(710), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_character_literal] = ACTIONS(708), + [sym_string_literal] = ACTIONS(710), + [sym_text_block] = ACTIONS(708), + [sym_null_literal] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_final] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), + [anon_sym_new] = ACTIONS(710), + [anon_sym_class] = ACTIONS(710), + [anon_sym_switch] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(710), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_assert] = ACTIONS(710), + [anon_sym_do] = ACTIONS(710), + [anon_sym_while] = ACTIONS(710), + [anon_sym_break] = ACTIONS(710), + [anon_sym_continue] = ACTIONS(710), + [anon_sym_return] = ACTIONS(710), + [anon_sym_yield] = ACTIONS(710), + [anon_sym_synchronized] = ACTIONS(710), + [anon_sym_throw] = ACTIONS(710), + [anon_sym_try] = ACTIONS(710), + [anon_sym_if] = ACTIONS(710), + [anon_sym_else] = ACTIONS(710), + [anon_sym_for] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_open] = ACTIONS(710), + [anon_sym_module] = ACTIONS(710), + [anon_sym_static] = ACTIONS(710), + [anon_sym_package] = ACTIONS(710), + [anon_sym_import] = ACTIONS(710), + [anon_sym_enum] = ACTIONS(710), + [anon_sym_public] = ACTIONS(710), + [anon_sym_protected] = ACTIONS(710), + [anon_sym_private] = ACTIONS(710), + [anon_sym_abstract] = ACTIONS(710), + [anon_sym_strictfp] = ACTIONS(710), + [anon_sym_native] = ACTIONS(710), + [anon_sym_transient] = ACTIONS(710), + [anon_sym_volatile] = ACTIONS(710), + [anon_sym_sealed] = ACTIONS(710), + [anon_sym_non_DASHsealed] = ACTIONS(708), + [anon_sym_record] = ACTIONS(710), + [anon_sym_ATinterface] = ACTIONS(708), + [anon_sym_interface] = ACTIONS(710), + [anon_sym_byte] = ACTIONS(710), + [anon_sym_short] = ACTIONS(710), + [anon_sym_int] = ACTIONS(710), + [anon_sym_long] = ACTIONS(710), + [anon_sym_char] = ACTIONS(710), + [anon_sym_float] = ACTIONS(710), + [anon_sym_double] = ACTIONS(710), + [sym_boolean_type] = ACTIONS(710), + [sym_void_type] = ACTIONS(710), + [sym_this] = ACTIONS(710), + [sym_super] = ACTIONS(710), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [195] = { - [ts_builtin_sym_end] = ACTIONS(718), - [sym_identifier] = ACTIONS(720), - [sym_decimal_integer_literal] = ACTIONS(720), - [sym_hex_integer_literal] = ACTIONS(720), - [sym_octal_integer_literal] = ACTIONS(718), - [sym_binary_integer_literal] = ACTIONS(718), - [sym_decimal_floating_point_literal] = ACTIONS(718), - [sym_hex_floating_point_literal] = ACTIONS(720), - [sym_true] = ACTIONS(720), - [sym_false] = ACTIONS(720), - [sym_character_literal] = ACTIONS(718), - [sym_string_literal] = ACTIONS(720), - [sym_text_block] = ACTIONS(718), - [sym_null_literal] = ACTIONS(720), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_new] = ACTIONS(720), - [anon_sym_class] = ACTIONS(720), - [anon_sym_switch] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_case] = ACTIONS(720), - [anon_sym_default] = ACTIONS(720), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_assert] = ACTIONS(720), - [anon_sym_do] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_break] = ACTIONS(720), - [anon_sym_continue] = ACTIONS(720), - [anon_sym_return] = ACTIONS(720), - [anon_sym_yield] = ACTIONS(720), - [anon_sym_synchronized] = ACTIONS(720), - [anon_sym_throw] = ACTIONS(720), - [anon_sym_try] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_else] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [anon_sym_AT] = ACTIONS(720), - [anon_sym_open] = ACTIONS(720), - [anon_sym_module] = ACTIONS(720), - [anon_sym_static] = ACTIONS(720), - [anon_sym_package] = ACTIONS(720), - [anon_sym_import] = ACTIONS(720), - [anon_sym_enum] = ACTIONS(720), - [anon_sym_public] = ACTIONS(720), - [anon_sym_protected] = ACTIONS(720), - [anon_sym_private] = ACTIONS(720), - [anon_sym_abstract] = ACTIONS(720), - [anon_sym_final] = ACTIONS(720), - [anon_sym_strictfp] = ACTIONS(720), - [anon_sym_native] = ACTIONS(720), - [anon_sym_transient] = ACTIONS(720), - [anon_sym_volatile] = ACTIONS(720), - [anon_sym_sealed] = ACTIONS(720), - [anon_sym_non_DASHsealed] = ACTIONS(718), - [anon_sym_record] = ACTIONS(720), - [anon_sym_ATinterface] = ACTIONS(718), - [anon_sym_interface] = ACTIONS(720), - [anon_sym_byte] = ACTIONS(720), - [anon_sym_short] = ACTIONS(720), - [anon_sym_int] = ACTIONS(720), - [anon_sym_long] = ACTIONS(720), - [anon_sym_char] = ACTIONS(720), - [anon_sym_float] = ACTIONS(720), - [anon_sym_double] = ACTIONS(720), - [sym_boolean_type] = ACTIONS(720), - [sym_void_type] = ACTIONS(720), - [sym_this] = ACTIONS(720), - [sym_super] = ACTIONS(720), + [ts_builtin_sym_end] = ACTIONS(712), + [sym_identifier] = ACTIONS(714), + [sym_decimal_integer_literal] = ACTIONS(714), + [sym_hex_integer_literal] = ACTIONS(714), + [sym_octal_integer_literal] = ACTIONS(712), + [sym_binary_integer_literal] = ACTIONS(712), + [sym_decimal_floating_point_literal] = ACTIONS(712), + [sym_hex_floating_point_literal] = ACTIONS(714), + [sym_true] = ACTIONS(714), + [sym_false] = ACTIONS(714), + [sym_character_literal] = ACTIONS(712), + [sym_string_literal] = ACTIONS(714), + [sym_text_block] = ACTIONS(712), + [sym_null_literal] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_final] = ACTIONS(714), + [anon_sym_BANG] = ACTIONS(712), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [anon_sym_new] = ACTIONS(714), + [anon_sym_class] = ACTIONS(714), + [anon_sym_switch] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_case] = ACTIONS(714), + [anon_sym_default] = ACTIONS(714), + [anon_sym_SEMI] = ACTIONS(712), + [anon_sym_assert] = ACTIONS(714), + [anon_sym_do] = ACTIONS(714), + [anon_sym_while] = ACTIONS(714), + [anon_sym_break] = ACTIONS(714), + [anon_sym_continue] = ACTIONS(714), + [anon_sym_return] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(714), + [anon_sym_synchronized] = ACTIONS(714), + [anon_sym_throw] = ACTIONS(714), + [anon_sym_try] = ACTIONS(714), + [anon_sym_if] = ACTIONS(714), + [anon_sym_else] = ACTIONS(714), + [anon_sym_for] = ACTIONS(714), + [anon_sym_AT] = ACTIONS(714), + [anon_sym_open] = ACTIONS(714), + [anon_sym_module] = ACTIONS(714), + [anon_sym_static] = ACTIONS(714), + [anon_sym_package] = ACTIONS(714), + [anon_sym_import] = ACTIONS(714), + [anon_sym_enum] = ACTIONS(714), + [anon_sym_public] = ACTIONS(714), + [anon_sym_protected] = ACTIONS(714), + [anon_sym_private] = ACTIONS(714), + [anon_sym_abstract] = ACTIONS(714), + [anon_sym_strictfp] = ACTIONS(714), + [anon_sym_native] = ACTIONS(714), + [anon_sym_transient] = ACTIONS(714), + [anon_sym_volatile] = ACTIONS(714), + [anon_sym_sealed] = ACTIONS(714), + [anon_sym_non_DASHsealed] = ACTIONS(712), + [anon_sym_record] = ACTIONS(714), + [anon_sym_ATinterface] = ACTIONS(712), + [anon_sym_interface] = ACTIONS(714), + [anon_sym_byte] = ACTIONS(714), + [anon_sym_short] = ACTIONS(714), + [anon_sym_int] = ACTIONS(714), + [anon_sym_long] = ACTIONS(714), + [anon_sym_char] = ACTIONS(714), + [anon_sym_float] = ACTIONS(714), + [anon_sym_double] = ACTIONS(714), + [sym_boolean_type] = ACTIONS(714), + [sym_void_type] = ACTIONS(714), + [sym_this] = ACTIONS(714), + [sym_super] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym_array_initializer] = STATE(957), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(716), + [sym_identifier] = ACTIONS(718), + [sym_decimal_integer_literal] = ACTIONS(718), + [sym_hex_integer_literal] = ACTIONS(718), + [sym_octal_integer_literal] = ACTIONS(716), + [sym_binary_integer_literal] = ACTIONS(716), + [sym_decimal_floating_point_literal] = ACTIONS(716), + [sym_hex_floating_point_literal] = ACTIONS(718), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_character_literal] = ACTIONS(716), + [sym_string_literal] = ACTIONS(718), + [sym_text_block] = ACTIONS(716), + [sym_null_literal] = ACTIONS(718), + [anon_sym_LPAREN] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_final] = ACTIONS(718), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(716), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_new] = ACTIONS(718), + [anon_sym_class] = ACTIONS(718), + [anon_sym_switch] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_case] = ACTIONS(718), + [anon_sym_default] = ACTIONS(718), + [anon_sym_SEMI] = ACTIONS(716), + [anon_sym_assert] = ACTIONS(718), + [anon_sym_do] = ACTIONS(718), + [anon_sym_while] = ACTIONS(718), + [anon_sym_break] = ACTIONS(718), + [anon_sym_continue] = ACTIONS(718), + [anon_sym_return] = ACTIONS(718), + [anon_sym_yield] = ACTIONS(718), + [anon_sym_synchronized] = ACTIONS(718), + [anon_sym_throw] = ACTIONS(718), + [anon_sym_try] = ACTIONS(718), + [anon_sym_if] = ACTIONS(718), + [anon_sym_else] = ACTIONS(718), + [anon_sym_for] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_open] = ACTIONS(718), + [anon_sym_module] = ACTIONS(718), + [anon_sym_static] = ACTIONS(718), + [anon_sym_package] = ACTIONS(718), + [anon_sym_import] = ACTIONS(718), + [anon_sym_enum] = ACTIONS(718), + [anon_sym_public] = ACTIONS(718), + [anon_sym_protected] = ACTIONS(718), + [anon_sym_private] = ACTIONS(718), + [anon_sym_abstract] = ACTIONS(718), + [anon_sym_strictfp] = ACTIONS(718), + [anon_sym_native] = ACTIONS(718), + [anon_sym_transient] = ACTIONS(718), + [anon_sym_volatile] = ACTIONS(718), + [anon_sym_sealed] = ACTIONS(718), + [anon_sym_non_DASHsealed] = ACTIONS(716), + [anon_sym_record] = ACTIONS(718), + [anon_sym_ATinterface] = ACTIONS(716), + [anon_sym_interface] = ACTIONS(718), + [anon_sym_byte] = ACTIONS(718), + [anon_sym_short] = ACTIONS(718), + [anon_sym_int] = ACTIONS(718), + [anon_sym_long] = ACTIONS(718), + [anon_sym_char] = ACTIONS(718), + [anon_sym_float] = ACTIONS(718), + [anon_sym_double] = ACTIONS(718), + [sym_boolean_type] = ACTIONS(718), + [sym_void_type] = ACTIONS(718), + [sym_this] = ACTIONS(718), + [sym_super] = ACTIONS(718), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(720), + [sym_identifier] = ACTIONS(722), + [sym_decimal_integer_literal] = ACTIONS(722), + [sym_hex_integer_literal] = ACTIONS(722), + [sym_octal_integer_literal] = ACTIONS(720), + [sym_binary_integer_literal] = ACTIONS(720), + [sym_decimal_floating_point_literal] = ACTIONS(720), + [sym_hex_floating_point_literal] = ACTIONS(722), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_character_literal] = ACTIONS(720), + [sym_string_literal] = ACTIONS(722), + [sym_text_block] = ACTIONS(720), + [sym_null_literal] = ACTIONS(722), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(722), + [anon_sym_final] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(720), + [anon_sym_PLUS_PLUS] = ACTIONS(720), + [anon_sym_DASH_DASH] = ACTIONS(720), + [anon_sym_new] = ACTIONS(722), + [anon_sym_class] = ACTIONS(722), + [anon_sym_switch] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_case] = ACTIONS(722), + [anon_sym_default] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_assert] = ACTIONS(722), + [anon_sym_do] = ACTIONS(722), + [anon_sym_while] = ACTIONS(722), + [anon_sym_break] = ACTIONS(722), + [anon_sym_continue] = ACTIONS(722), + [anon_sym_return] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(722), + [anon_sym_synchronized] = ACTIONS(722), + [anon_sym_throw] = ACTIONS(722), + [anon_sym_try] = ACTIONS(722), + [anon_sym_if] = ACTIONS(722), + [anon_sym_else] = ACTIONS(722), + [anon_sym_for] = ACTIONS(722), + [anon_sym_AT] = ACTIONS(722), + [anon_sym_open] = ACTIONS(722), + [anon_sym_module] = ACTIONS(722), + [anon_sym_static] = ACTIONS(722), + [anon_sym_package] = ACTIONS(722), + [anon_sym_import] = ACTIONS(722), + [anon_sym_enum] = ACTIONS(722), + [anon_sym_public] = ACTIONS(722), + [anon_sym_protected] = ACTIONS(722), + [anon_sym_private] = ACTIONS(722), + [anon_sym_abstract] = ACTIONS(722), + [anon_sym_strictfp] = ACTIONS(722), + [anon_sym_native] = ACTIONS(722), + [anon_sym_transient] = ACTIONS(722), + [anon_sym_volatile] = ACTIONS(722), + [anon_sym_sealed] = ACTIONS(722), + [anon_sym_non_DASHsealed] = ACTIONS(720), + [anon_sym_record] = ACTIONS(722), + [anon_sym_ATinterface] = ACTIONS(720), + [anon_sym_interface] = ACTIONS(722), + [anon_sym_byte] = ACTIONS(722), + [anon_sym_short] = ACTIONS(722), + [anon_sym_int] = ACTIONS(722), + [anon_sym_long] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_float] = ACTIONS(722), + [anon_sym_double] = ACTIONS(722), + [sym_boolean_type] = ACTIONS(722), + [sym_void_type] = ACTIONS(722), + [sym_this] = ACTIONS(722), + [sym_super] = ACTIONS(722), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [198] = { + [ts_builtin_sym_end] = ACTIONS(724), + [sym_identifier] = ACTIONS(726), + [sym_decimal_integer_literal] = ACTIONS(726), + [sym_hex_integer_literal] = ACTIONS(726), + [sym_octal_integer_literal] = ACTIONS(724), + [sym_binary_integer_literal] = ACTIONS(724), + [sym_decimal_floating_point_literal] = ACTIONS(724), + [sym_hex_floating_point_literal] = ACTIONS(726), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_character_literal] = ACTIONS(724), + [sym_string_literal] = ACTIONS(726), + [sym_text_block] = ACTIONS(724), + [sym_null_literal] = ACTIONS(726), + [anon_sym_LPAREN] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_final] = ACTIONS(726), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_PLUS_PLUS] = ACTIONS(724), + [anon_sym_DASH_DASH] = ACTIONS(724), + [anon_sym_new] = ACTIONS(726), + [anon_sym_class] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(724), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_case] = ACTIONS(726), + [anon_sym_default] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_assert] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_break] = ACTIONS(726), + [anon_sym_continue] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(726), + [anon_sym_synchronized] = ACTIONS(726), + [anon_sym_throw] = ACTIONS(726), + [anon_sym_try] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_else] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(726), + [anon_sym_open] = ACTIONS(726), + [anon_sym_module] = ACTIONS(726), + [anon_sym_static] = ACTIONS(726), + [anon_sym_package] = ACTIONS(726), + [anon_sym_import] = ACTIONS(726), + [anon_sym_enum] = ACTIONS(726), + [anon_sym_public] = ACTIONS(726), + [anon_sym_protected] = ACTIONS(726), + [anon_sym_private] = ACTIONS(726), + [anon_sym_abstract] = ACTIONS(726), + [anon_sym_strictfp] = ACTIONS(726), + [anon_sym_native] = ACTIONS(726), + [anon_sym_transient] = ACTIONS(726), + [anon_sym_volatile] = ACTIONS(726), + [anon_sym_sealed] = ACTIONS(726), + [anon_sym_non_DASHsealed] = ACTIONS(724), + [anon_sym_record] = ACTIONS(726), + [anon_sym_ATinterface] = ACTIONS(724), + [anon_sym_interface] = ACTIONS(726), + [anon_sym_byte] = ACTIONS(726), + [anon_sym_short] = ACTIONS(726), + [anon_sym_int] = ACTIONS(726), + [anon_sym_long] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), + [anon_sym_float] = ACTIONS(726), + [anon_sym_double] = ACTIONS(726), + [sym_boolean_type] = ACTIONS(726), + [sym_void_type] = ACTIONS(726), + [sym_this] = ACTIONS(726), + [sym_super] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [199] = { + [ts_builtin_sym_end] = ACTIONS(728), + [sym_identifier] = ACTIONS(730), + [sym_decimal_integer_literal] = ACTIONS(730), + [sym_hex_integer_literal] = ACTIONS(730), + [sym_octal_integer_literal] = ACTIONS(728), + [sym_binary_integer_literal] = ACTIONS(728), + [sym_decimal_floating_point_literal] = ACTIONS(728), + [sym_hex_floating_point_literal] = ACTIONS(730), + [sym_true] = ACTIONS(730), + [sym_false] = ACTIONS(730), + [sym_character_literal] = ACTIONS(728), + [sym_string_literal] = ACTIONS(730), + [sym_text_block] = ACTIONS(728), + [sym_null_literal] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_final] = ACTIONS(730), + [anon_sym_BANG] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_PLUS_PLUS] = ACTIONS(728), + [anon_sym_DASH_DASH] = ACTIONS(728), + [anon_sym_new] = ACTIONS(730), + [anon_sym_class] = ACTIONS(730), + [anon_sym_switch] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_case] = ACTIONS(730), + [anon_sym_default] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_assert] = ACTIONS(730), + [anon_sym_do] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_break] = ACTIONS(730), + [anon_sym_continue] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_yield] = ACTIONS(730), + [anon_sym_synchronized] = ACTIONS(730), + [anon_sym_throw] = ACTIONS(730), + [anon_sym_try] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_else] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_AT] = ACTIONS(730), + [anon_sym_open] = ACTIONS(730), + [anon_sym_module] = ACTIONS(730), + [anon_sym_static] = ACTIONS(730), + [anon_sym_package] = ACTIONS(730), + [anon_sym_import] = ACTIONS(730), + [anon_sym_enum] = ACTIONS(730), + [anon_sym_public] = ACTIONS(730), + [anon_sym_protected] = ACTIONS(730), + [anon_sym_private] = ACTIONS(730), + [anon_sym_abstract] = ACTIONS(730), + [anon_sym_strictfp] = ACTIONS(730), + [anon_sym_native] = ACTIONS(730), + [anon_sym_transient] = ACTIONS(730), + [anon_sym_volatile] = ACTIONS(730), + [anon_sym_sealed] = ACTIONS(730), + [anon_sym_non_DASHsealed] = ACTIONS(728), + [anon_sym_record] = ACTIONS(730), + [anon_sym_ATinterface] = ACTIONS(728), + [anon_sym_interface] = ACTIONS(730), + [anon_sym_byte] = ACTIONS(730), + [anon_sym_short] = ACTIONS(730), + [anon_sym_int] = ACTIONS(730), + [anon_sym_long] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_float] = ACTIONS(730), + [anon_sym_double] = ACTIONS(730), + [sym_boolean_type] = ACTIONS(730), + [sym_void_type] = ACTIONS(730), + [sym_this] = ACTIONS(730), + [sym_super] = ACTIONS(730), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [200] = { + [ts_builtin_sym_end] = ACTIONS(732), + [sym_identifier] = ACTIONS(734), + [sym_decimal_integer_literal] = ACTIONS(734), + [sym_hex_integer_literal] = ACTIONS(734), + [sym_octal_integer_literal] = ACTIONS(732), + [sym_binary_integer_literal] = ACTIONS(732), + [sym_decimal_floating_point_literal] = ACTIONS(732), + [sym_hex_floating_point_literal] = ACTIONS(734), + [sym_true] = ACTIONS(734), + [sym_false] = ACTIONS(734), + [sym_character_literal] = ACTIONS(732), + [sym_string_literal] = ACTIONS(734), + [sym_text_block] = ACTIONS(732), + [sym_null_literal] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_final] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(732), + [anon_sym_DASH_DASH] = ACTIONS(732), + [anon_sym_new] = ACTIONS(734), + [anon_sym_class] = ACTIONS(734), + [anon_sym_switch] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(732), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_case] = ACTIONS(734), + [anon_sym_default] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_do] = ACTIONS(734), + [anon_sym_while] = ACTIONS(734), + [anon_sym_break] = ACTIONS(734), + [anon_sym_continue] = ACTIONS(734), + [anon_sym_return] = ACTIONS(734), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_synchronized] = ACTIONS(734), + [anon_sym_throw] = ACTIONS(734), + [anon_sym_try] = ACTIONS(734), + [anon_sym_if] = ACTIONS(734), + [anon_sym_else] = ACTIONS(734), + [anon_sym_for] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_open] = ACTIONS(734), + [anon_sym_module] = ACTIONS(734), + [anon_sym_static] = ACTIONS(734), + [anon_sym_package] = ACTIONS(734), + [anon_sym_import] = ACTIONS(734), + [anon_sym_enum] = ACTIONS(734), + [anon_sym_public] = ACTIONS(734), + [anon_sym_protected] = ACTIONS(734), + [anon_sym_private] = ACTIONS(734), + [anon_sym_abstract] = ACTIONS(734), + [anon_sym_strictfp] = ACTIONS(734), + [anon_sym_native] = ACTIONS(734), + [anon_sym_transient] = ACTIONS(734), + [anon_sym_volatile] = ACTIONS(734), + [anon_sym_sealed] = ACTIONS(734), + [anon_sym_non_DASHsealed] = ACTIONS(732), + [anon_sym_record] = ACTIONS(734), + [anon_sym_ATinterface] = ACTIONS(732), + [anon_sym_interface] = ACTIONS(734), + [anon_sym_byte] = ACTIONS(734), + [anon_sym_short] = ACTIONS(734), + [anon_sym_int] = ACTIONS(734), + [anon_sym_long] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_float] = ACTIONS(734), + [anon_sym_double] = ACTIONS(734), + [sym_boolean_type] = ACTIONS(734), + [sym_void_type] = ACTIONS(734), + [sym_this] = ACTIONS(734), + [sym_super] = ACTIONS(734), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [201] = { + [ts_builtin_sym_end] = ACTIONS(736), + [sym_identifier] = ACTIONS(738), + [sym_decimal_integer_literal] = ACTIONS(738), + [sym_hex_integer_literal] = ACTIONS(738), + [sym_octal_integer_literal] = ACTIONS(736), + [sym_binary_integer_literal] = ACTIONS(736), + [sym_decimal_floating_point_literal] = ACTIONS(736), + [sym_hex_floating_point_literal] = ACTIONS(738), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_character_literal] = ACTIONS(736), + [sym_string_literal] = ACTIONS(738), + [sym_text_block] = ACTIONS(736), + [sym_null_literal] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_final] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_TILDE] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(736), + [anon_sym_new] = ACTIONS(738), + [anon_sym_class] = ACTIONS(738), + [anon_sym_switch] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_case] = ACTIONS(738), + [anon_sym_default] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_assert] = ACTIONS(738), + [anon_sym_do] = ACTIONS(738), + [anon_sym_while] = ACTIONS(738), + [anon_sym_break] = ACTIONS(738), + [anon_sym_continue] = ACTIONS(738), + [anon_sym_return] = ACTIONS(738), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_synchronized] = ACTIONS(738), + [anon_sym_throw] = ACTIONS(738), + [anon_sym_try] = ACTIONS(738), + [anon_sym_if] = ACTIONS(738), + [anon_sym_else] = ACTIONS(738), + [anon_sym_for] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_open] = ACTIONS(738), + [anon_sym_module] = ACTIONS(738), + [anon_sym_static] = ACTIONS(738), + [anon_sym_package] = ACTIONS(738), + [anon_sym_import] = ACTIONS(738), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_public] = ACTIONS(738), + [anon_sym_protected] = ACTIONS(738), + [anon_sym_private] = ACTIONS(738), + [anon_sym_abstract] = ACTIONS(738), + [anon_sym_strictfp] = ACTIONS(738), + [anon_sym_native] = ACTIONS(738), + [anon_sym_transient] = ACTIONS(738), + [anon_sym_volatile] = ACTIONS(738), + [anon_sym_sealed] = ACTIONS(738), + [anon_sym_non_DASHsealed] = ACTIONS(736), + [anon_sym_record] = ACTIONS(738), + [anon_sym_ATinterface] = ACTIONS(736), + [anon_sym_interface] = ACTIONS(738), + [anon_sym_byte] = ACTIONS(738), + [anon_sym_short] = ACTIONS(738), + [anon_sym_int] = ACTIONS(738), + [anon_sym_long] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_float] = ACTIONS(738), + [anon_sym_double] = ACTIONS(738), + [sym_boolean_type] = ACTIONS(738), + [sym_void_type] = ACTIONS(738), + [sym_this] = ACTIONS(738), + [sym_super] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [202] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(527), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym_block] = STATE(520), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29688,13 +28951,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -29713,1369 +28976,1213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(722), - [sym_identifier] = ACTIONS(724), - [sym_decimal_integer_literal] = ACTIONS(724), - [sym_hex_integer_literal] = ACTIONS(724), - [sym_octal_integer_literal] = ACTIONS(722), - [sym_binary_integer_literal] = ACTIONS(722), - [sym_decimal_floating_point_literal] = ACTIONS(722), - [sym_hex_floating_point_literal] = ACTIONS(724), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_character_literal] = ACTIONS(722), - [sym_string_literal] = ACTIONS(724), - [sym_text_block] = ACTIONS(722), - [sym_null_literal] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_new] = ACTIONS(724), - [anon_sym_class] = ACTIONS(724), - [anon_sym_switch] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(724), - [anon_sym_default] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_assert] = ACTIONS(724), - [anon_sym_do] = ACTIONS(724), - [anon_sym_while] = ACTIONS(724), - [anon_sym_break] = ACTIONS(724), - [anon_sym_continue] = ACTIONS(724), - [anon_sym_return] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(724), - [anon_sym_synchronized] = ACTIONS(724), - [anon_sym_throw] = ACTIONS(724), - [anon_sym_try] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_else] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_AT] = ACTIONS(724), - [anon_sym_open] = ACTIONS(724), - [anon_sym_module] = ACTIONS(724), - [anon_sym_static] = ACTIONS(724), - [anon_sym_package] = ACTIONS(724), - [anon_sym_import] = ACTIONS(724), - [anon_sym_enum] = ACTIONS(724), - [anon_sym_public] = ACTIONS(724), - [anon_sym_protected] = ACTIONS(724), - [anon_sym_private] = ACTIONS(724), - [anon_sym_abstract] = ACTIONS(724), - [anon_sym_final] = ACTIONS(724), - [anon_sym_strictfp] = ACTIONS(724), - [anon_sym_native] = ACTIONS(724), - [anon_sym_transient] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(724), - [anon_sym_sealed] = ACTIONS(724), - [anon_sym_non_DASHsealed] = ACTIONS(722), - [anon_sym_record] = ACTIONS(724), - [anon_sym_ATinterface] = ACTIONS(722), - [anon_sym_interface] = ACTIONS(724), - [anon_sym_byte] = ACTIONS(724), - [anon_sym_short] = ACTIONS(724), - [anon_sym_int] = ACTIONS(724), - [anon_sym_long] = ACTIONS(724), - [anon_sym_char] = ACTIONS(724), - [anon_sym_float] = ACTIONS(724), - [anon_sym_double] = ACTIONS(724), - [sym_boolean_type] = ACTIONS(724), - [sym_void_type] = ACTIONS(724), - [sym_this] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [198] = { - [ts_builtin_sym_end] = ACTIONS(726), - [sym_identifier] = ACTIONS(728), - [sym_decimal_integer_literal] = ACTIONS(728), - [sym_hex_integer_literal] = ACTIONS(728), - [sym_octal_integer_literal] = ACTIONS(726), - [sym_binary_integer_literal] = ACTIONS(726), - [sym_decimal_floating_point_literal] = ACTIONS(726), - [sym_hex_floating_point_literal] = ACTIONS(728), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_character_literal] = ACTIONS(726), - [sym_string_literal] = ACTIONS(728), - [sym_text_block] = ACTIONS(726), - [sym_null_literal] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_BANG] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_class] = ACTIONS(728), - [anon_sym_switch] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(726), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_case] = ACTIONS(728), - [anon_sym_default] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(726), - [anon_sym_assert] = ACTIONS(728), - [anon_sym_do] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_break] = ACTIONS(728), - [anon_sym_continue] = ACTIONS(728), - [anon_sym_return] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(728), - [anon_sym_synchronized] = ACTIONS(728), - [anon_sym_throw] = ACTIONS(728), - [anon_sym_try] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_else] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_AT] = ACTIONS(728), - [anon_sym_open] = ACTIONS(728), - [anon_sym_module] = ACTIONS(728), - [anon_sym_static] = ACTIONS(728), - [anon_sym_package] = ACTIONS(728), - [anon_sym_import] = ACTIONS(728), - [anon_sym_enum] = ACTIONS(728), - [anon_sym_public] = ACTIONS(728), - [anon_sym_protected] = ACTIONS(728), - [anon_sym_private] = ACTIONS(728), - [anon_sym_abstract] = ACTIONS(728), - [anon_sym_final] = ACTIONS(728), - [anon_sym_strictfp] = ACTIONS(728), - [anon_sym_native] = ACTIONS(728), - [anon_sym_transient] = ACTIONS(728), - [anon_sym_volatile] = ACTIONS(728), - [anon_sym_sealed] = ACTIONS(728), - [anon_sym_non_DASHsealed] = ACTIONS(726), - [anon_sym_record] = ACTIONS(728), - [anon_sym_ATinterface] = ACTIONS(726), - [anon_sym_interface] = ACTIONS(728), - [anon_sym_byte] = ACTIONS(728), - [anon_sym_short] = ACTIONS(728), - [anon_sym_int] = ACTIONS(728), - [anon_sym_long] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_float] = ACTIONS(728), - [anon_sym_double] = ACTIONS(728), - [sym_boolean_type] = ACTIONS(728), - [sym_void_type] = ACTIONS(728), - [sym_this] = ACTIONS(728), - [sym_super] = ACTIONS(728), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(730), - [sym_identifier] = ACTIONS(732), - [sym_decimal_integer_literal] = ACTIONS(732), - [sym_hex_integer_literal] = ACTIONS(732), - [sym_octal_integer_literal] = ACTIONS(730), - [sym_binary_integer_literal] = ACTIONS(730), - [sym_decimal_floating_point_literal] = ACTIONS(730), - [sym_hex_floating_point_literal] = ACTIONS(732), - [sym_true] = ACTIONS(732), - [sym_false] = ACTIONS(732), - [sym_character_literal] = ACTIONS(730), - [sym_string_literal] = ACTIONS(732), - [sym_text_block] = ACTIONS(730), - [sym_null_literal] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(730), - [anon_sym_TILDE] = ACTIONS(730), - [anon_sym_PLUS_PLUS] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(730), - [anon_sym_new] = ACTIONS(732), - [anon_sym_class] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_case] = ACTIONS(732), - [anon_sym_default] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(730), - [anon_sym_assert] = ACTIONS(732), - [anon_sym_do] = ACTIONS(732), - [anon_sym_while] = ACTIONS(732), - [anon_sym_break] = ACTIONS(732), - [anon_sym_continue] = ACTIONS(732), - [anon_sym_return] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(732), - [anon_sym_synchronized] = ACTIONS(732), - [anon_sym_throw] = ACTIONS(732), - [anon_sym_try] = ACTIONS(732), - [anon_sym_if] = ACTIONS(732), - [anon_sym_else] = ACTIONS(732), - [anon_sym_for] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [anon_sym_open] = ACTIONS(732), - [anon_sym_module] = ACTIONS(732), - [anon_sym_static] = ACTIONS(732), - [anon_sym_package] = ACTIONS(732), - [anon_sym_import] = ACTIONS(732), - [anon_sym_enum] = ACTIONS(732), - [anon_sym_public] = ACTIONS(732), - [anon_sym_protected] = ACTIONS(732), - [anon_sym_private] = ACTIONS(732), - [anon_sym_abstract] = ACTIONS(732), - [anon_sym_final] = ACTIONS(732), - [anon_sym_strictfp] = ACTIONS(732), - [anon_sym_native] = ACTIONS(732), - [anon_sym_transient] = ACTIONS(732), - [anon_sym_volatile] = ACTIONS(732), - [anon_sym_sealed] = ACTIONS(732), - [anon_sym_non_DASHsealed] = ACTIONS(730), - [anon_sym_record] = ACTIONS(732), - [anon_sym_ATinterface] = ACTIONS(730), - [anon_sym_interface] = ACTIONS(732), - [anon_sym_byte] = ACTIONS(732), - [anon_sym_short] = ACTIONS(732), - [anon_sym_int] = ACTIONS(732), - [anon_sym_long] = ACTIONS(732), - [anon_sym_char] = ACTIONS(732), - [anon_sym_float] = ACTIONS(732), - [anon_sym_double] = ACTIONS(732), - [sym_boolean_type] = ACTIONS(732), - [sym_void_type] = ACTIONS(732), - [sym_this] = ACTIONS(732), - [sym_super] = ACTIONS(732), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [200] = { - [ts_builtin_sym_end] = ACTIONS(734), - [sym_identifier] = ACTIONS(736), - [sym_decimal_integer_literal] = ACTIONS(736), - [sym_hex_integer_literal] = ACTIONS(736), - [sym_octal_integer_literal] = ACTIONS(734), - [sym_binary_integer_literal] = ACTIONS(734), - [sym_decimal_floating_point_literal] = ACTIONS(734), - [sym_hex_floating_point_literal] = ACTIONS(736), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_character_literal] = ACTIONS(734), - [sym_string_literal] = ACTIONS(736), - [sym_text_block] = ACTIONS(734), - [sym_null_literal] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(734), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_TILDE] = ACTIONS(734), - [anon_sym_PLUS_PLUS] = ACTIONS(734), - [anon_sym_DASH_DASH] = ACTIONS(734), - [anon_sym_new] = ACTIONS(736), - [anon_sym_class] = ACTIONS(736), - [anon_sym_switch] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_case] = ACTIONS(736), - [anon_sym_default] = ACTIONS(736), - [anon_sym_SEMI] = ACTIONS(734), - [anon_sym_assert] = ACTIONS(736), - [anon_sym_do] = ACTIONS(736), - [anon_sym_while] = ACTIONS(736), - [anon_sym_break] = ACTIONS(736), - [anon_sym_continue] = ACTIONS(736), - [anon_sym_return] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(736), - [anon_sym_synchronized] = ACTIONS(736), - [anon_sym_throw] = ACTIONS(736), - [anon_sym_try] = ACTIONS(736), - [anon_sym_if] = ACTIONS(736), - [anon_sym_else] = ACTIONS(736), - [anon_sym_for] = ACTIONS(736), - [anon_sym_AT] = ACTIONS(736), - [anon_sym_open] = ACTIONS(736), - [anon_sym_module] = ACTIONS(736), - [anon_sym_static] = ACTIONS(736), - [anon_sym_package] = ACTIONS(736), - [anon_sym_import] = ACTIONS(736), - [anon_sym_enum] = ACTIONS(736), - [anon_sym_public] = ACTIONS(736), - [anon_sym_protected] = ACTIONS(736), - [anon_sym_private] = ACTIONS(736), - [anon_sym_abstract] = ACTIONS(736), - [anon_sym_final] = ACTIONS(736), - [anon_sym_strictfp] = ACTIONS(736), - [anon_sym_native] = ACTIONS(736), - [anon_sym_transient] = ACTIONS(736), - [anon_sym_volatile] = ACTIONS(736), - [anon_sym_sealed] = ACTIONS(736), - [anon_sym_non_DASHsealed] = ACTIONS(734), - [anon_sym_record] = ACTIONS(736), - [anon_sym_ATinterface] = ACTIONS(734), - [anon_sym_interface] = ACTIONS(736), - [anon_sym_byte] = ACTIONS(736), - [anon_sym_short] = ACTIONS(736), - [anon_sym_int] = ACTIONS(736), - [anon_sym_long] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_float] = ACTIONS(736), - [anon_sym_double] = ACTIONS(736), - [sym_boolean_type] = ACTIONS(736), - [sym_void_type] = ACTIONS(736), - [sym_this] = ACTIONS(736), - [sym_super] = ACTIONS(736), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [201] = { - [ts_builtin_sym_end] = ACTIONS(738), + [203] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(581), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym_block] = STATE(519), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(740), - [sym_hex_integer_literal] = ACTIONS(740), - [sym_octal_integer_literal] = ACTIONS(738), - [sym_binary_integer_literal] = ACTIONS(738), - [sym_decimal_floating_point_literal] = ACTIONS(738), - [sym_hex_floating_point_literal] = ACTIONS(740), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_character_literal] = ACTIONS(738), - [sym_string_literal] = ACTIONS(740), - [sym_text_block] = ACTIONS(738), - [sym_null_literal] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(738), - [anon_sym_DASH_DASH] = ACTIONS(738), - [anon_sym_new] = ACTIONS(740), - [anon_sym_class] = ACTIONS(740), - [anon_sym_switch] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(738), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_case] = ACTIONS(740), - [anon_sym_default] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_assert] = ACTIONS(740), - [anon_sym_do] = ACTIONS(740), - [anon_sym_while] = ACTIONS(740), - [anon_sym_break] = ACTIONS(740), - [anon_sym_continue] = ACTIONS(740), - [anon_sym_return] = ACTIONS(740), - [anon_sym_yield] = ACTIONS(740), - [anon_sym_synchronized] = ACTIONS(740), - [anon_sym_throw] = ACTIONS(740), - [anon_sym_try] = ACTIONS(740), - [anon_sym_if] = ACTIONS(740), - [anon_sym_else] = ACTIONS(740), - [anon_sym_for] = ACTIONS(740), - [anon_sym_AT] = ACTIONS(740), - [anon_sym_open] = ACTIONS(740), - [anon_sym_module] = ACTIONS(740), - [anon_sym_static] = ACTIONS(740), - [anon_sym_package] = ACTIONS(740), - [anon_sym_import] = ACTIONS(740), - [anon_sym_enum] = ACTIONS(740), - [anon_sym_public] = ACTIONS(740), - [anon_sym_protected] = ACTIONS(740), - [anon_sym_private] = ACTIONS(740), - [anon_sym_abstract] = ACTIONS(740), - [anon_sym_final] = ACTIONS(740), - [anon_sym_strictfp] = ACTIONS(740), - [anon_sym_native] = ACTIONS(740), - [anon_sym_transient] = ACTIONS(740), - [anon_sym_volatile] = ACTIONS(740), - [anon_sym_sealed] = ACTIONS(740), - [anon_sym_non_DASHsealed] = ACTIONS(738), - [anon_sym_record] = ACTIONS(740), - [anon_sym_ATinterface] = ACTIONS(738), - [anon_sym_interface] = ACTIONS(740), - [anon_sym_byte] = ACTIONS(740), - [anon_sym_short] = ACTIONS(740), - [anon_sym_int] = ACTIONS(740), - [anon_sym_long] = ACTIONS(740), - [anon_sym_char] = ACTIONS(740), - [anon_sym_float] = ACTIONS(740), - [anon_sym_double] = ACTIONS(740), - [sym_boolean_type] = ACTIONS(740), - [sym_void_type] = ACTIONS(740), - [sym_this] = ACTIONS(740), - [sym_super] = ACTIONS(740), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(742), - [sym_identifier] = ACTIONS(744), - [sym_decimal_integer_literal] = ACTIONS(744), - [sym_hex_integer_literal] = ACTIONS(744), - [sym_octal_integer_literal] = ACTIONS(742), - [sym_binary_integer_literal] = ACTIONS(742), - [sym_decimal_floating_point_literal] = ACTIONS(742), - [sym_hex_floating_point_literal] = ACTIONS(744), - [sym_true] = ACTIONS(744), - [sym_false] = ACTIONS(744), - [sym_character_literal] = ACTIONS(742), - [sym_string_literal] = ACTIONS(744), - [sym_text_block] = ACTIONS(742), - [sym_null_literal] = ACTIONS(744), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(742), [anon_sym_PLUS] = ACTIONS(744), [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(742), - [anon_sym_new] = ACTIONS(744), - [anon_sym_class] = ACTIONS(744), - [anon_sym_switch] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_case] = ACTIONS(744), - [anon_sym_default] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_assert] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_yield] = ACTIONS(744), - [anon_sym_synchronized] = ACTIONS(744), - [anon_sym_throw] = ACTIONS(744), - [anon_sym_try] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_else] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_open] = ACTIONS(744), - [anon_sym_module] = ACTIONS(744), - [anon_sym_static] = ACTIONS(744), - [anon_sym_package] = ACTIONS(744), - [anon_sym_import] = ACTIONS(744), - [anon_sym_enum] = ACTIONS(744), - [anon_sym_public] = ACTIONS(744), - [anon_sym_protected] = ACTIONS(744), - [anon_sym_private] = ACTIONS(744), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_final] = ACTIONS(744), - [anon_sym_strictfp] = ACTIONS(744), - [anon_sym_native] = ACTIONS(744), - [anon_sym_transient] = ACTIONS(744), - [anon_sym_volatile] = ACTIONS(744), - [anon_sym_sealed] = ACTIONS(744), - [anon_sym_non_DASHsealed] = ACTIONS(742), - [anon_sym_record] = ACTIONS(744), - [anon_sym_ATinterface] = ACTIONS(742), - [anon_sym_interface] = ACTIONS(744), - [anon_sym_byte] = ACTIONS(744), - [anon_sym_short] = ACTIONS(744), - [anon_sym_int] = ACTIONS(744), - [anon_sym_long] = ACTIONS(744), - [anon_sym_char] = ACTIONS(744), - [anon_sym_float] = ACTIONS(744), - [anon_sym_double] = ACTIONS(744), - [sym_boolean_type] = ACTIONS(744), - [sym_void_type] = ACTIONS(744), - [sym_this] = ACTIONS(744), - [sym_super] = ACTIONS(744), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [203] = { - [ts_builtin_sym_end] = ACTIONS(746), - [sym_identifier] = ACTIONS(748), - [sym_decimal_integer_literal] = ACTIONS(748), - [sym_hex_integer_literal] = ACTIONS(748), - [sym_octal_integer_literal] = ACTIONS(746), - [sym_binary_integer_literal] = ACTIONS(746), - [sym_decimal_floating_point_literal] = ACTIONS(746), - [sym_hex_floating_point_literal] = ACTIONS(748), - [sym_true] = ACTIONS(748), - [sym_false] = ACTIONS(748), - [sym_character_literal] = ACTIONS(746), - [sym_string_literal] = ACTIONS(748), - [sym_text_block] = ACTIONS(746), - [sym_null_literal] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), [anon_sym_BANG] = ACTIONS(746), [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(746), - [anon_sym_DASH_DASH] = ACTIONS(746), - [anon_sym_new] = ACTIONS(748), - [anon_sym_class] = ACTIONS(748), - [anon_sym_switch] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(746), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_case] = ACTIONS(748), - [anon_sym_default] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(746), - [anon_sym_assert] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_yield] = ACTIONS(748), - [anon_sym_synchronized] = ACTIONS(748), - [anon_sym_throw] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_else] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_open] = ACTIONS(748), - [anon_sym_module] = ACTIONS(748), - [anon_sym_static] = ACTIONS(748), - [anon_sym_package] = ACTIONS(748), - [anon_sym_import] = ACTIONS(748), - [anon_sym_enum] = ACTIONS(748), - [anon_sym_public] = ACTIONS(748), - [anon_sym_protected] = ACTIONS(748), - [anon_sym_private] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(748), - [anon_sym_final] = ACTIONS(748), - [anon_sym_strictfp] = ACTIONS(748), - [anon_sym_native] = ACTIONS(748), - [anon_sym_transient] = ACTIONS(748), - [anon_sym_volatile] = ACTIONS(748), - [anon_sym_sealed] = ACTIONS(748), - [anon_sym_non_DASHsealed] = ACTIONS(746), - [anon_sym_record] = ACTIONS(748), - [anon_sym_ATinterface] = ACTIONS(746), - [anon_sym_interface] = ACTIONS(748), - [anon_sym_byte] = ACTIONS(748), - [anon_sym_short] = ACTIONS(748), - [anon_sym_int] = ACTIONS(748), - [anon_sym_long] = ACTIONS(748), - [anon_sym_char] = ACTIONS(748), - [anon_sym_float] = ACTIONS(748), - [anon_sym_double] = ACTIONS(748), - [sym_boolean_type] = ACTIONS(748), - [sym_void_type] = ACTIONS(748), - [sym_this] = ACTIONS(748), - [sym_super] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [204] = { - [ts_builtin_sym_end] = ACTIONS(750), - [sym_identifier] = ACTIONS(752), - [sym_decimal_integer_literal] = ACTIONS(752), - [sym_hex_integer_literal] = ACTIONS(752), - [sym_octal_integer_literal] = ACTIONS(750), - [sym_binary_integer_literal] = ACTIONS(750), - [sym_decimal_floating_point_literal] = ACTIONS(750), - [sym_hex_floating_point_literal] = ACTIONS(752), - [sym_true] = ACTIONS(752), - [sym_false] = ACTIONS(752), - [sym_character_literal] = ACTIONS(750), - [sym_string_literal] = ACTIONS(752), - [sym_text_block] = ACTIONS(750), - [sym_null_literal] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(750), - [anon_sym_TILDE] = ACTIONS(750), - [anon_sym_PLUS_PLUS] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(750), - [anon_sym_new] = ACTIONS(752), - [anon_sym_class] = ACTIONS(752), - [anon_sym_switch] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_RBRACE] = ACTIONS(750), - [anon_sym_case] = ACTIONS(752), - [anon_sym_default] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [anon_sym_assert] = ACTIONS(752), - [anon_sym_do] = ACTIONS(752), - [anon_sym_while] = ACTIONS(752), - [anon_sym_break] = ACTIONS(752), - [anon_sym_continue] = ACTIONS(752), - [anon_sym_return] = ACTIONS(752), - [anon_sym_yield] = ACTIONS(752), - [anon_sym_synchronized] = ACTIONS(752), - [anon_sym_throw] = ACTIONS(752), - [anon_sym_try] = ACTIONS(752), - [anon_sym_if] = ACTIONS(752), - [anon_sym_else] = ACTIONS(752), - [anon_sym_for] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(752), - [anon_sym_open] = ACTIONS(752), - [anon_sym_module] = ACTIONS(752), - [anon_sym_static] = ACTIONS(752), - [anon_sym_package] = ACTIONS(752), - [anon_sym_import] = ACTIONS(752), - [anon_sym_enum] = ACTIONS(752), - [anon_sym_public] = ACTIONS(752), - [anon_sym_protected] = ACTIONS(752), - [anon_sym_private] = ACTIONS(752), - [anon_sym_abstract] = ACTIONS(752), - [anon_sym_final] = ACTIONS(752), - [anon_sym_strictfp] = ACTIONS(752), - [anon_sym_native] = ACTIONS(752), - [anon_sym_transient] = ACTIONS(752), - [anon_sym_volatile] = ACTIONS(752), - [anon_sym_sealed] = ACTIONS(752), - [anon_sym_non_DASHsealed] = ACTIONS(750), - [anon_sym_record] = ACTIONS(752), - [anon_sym_ATinterface] = ACTIONS(750), - [anon_sym_interface] = ACTIONS(752), - [anon_sym_byte] = ACTIONS(752), - [anon_sym_short] = ACTIONS(752), - [anon_sym_int] = ACTIONS(752), - [anon_sym_long] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_float] = ACTIONS(752), - [anon_sym_double] = ACTIONS(752), - [sym_boolean_type] = ACTIONS(752), - [sym_void_type] = ACTIONS(752), - [sym_this] = ACTIONS(752), - [sym_super] = ACTIONS(752), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(283), + [sym_decimal_integer_literal] = ACTIONS(283), + [sym_hex_integer_literal] = ACTIONS(283), + [sym_octal_integer_literal] = ACTIONS(281), + [sym_binary_integer_literal] = ACTIONS(281), + [sym_decimal_floating_point_literal] = ACTIONS(281), + [sym_hex_floating_point_literal] = ACTIONS(283), + [sym_true] = ACTIONS(283), + [sym_false] = ACTIONS(283), + [sym_character_literal] = ACTIONS(281), + [sym_string_literal] = ACTIONS(283), + [sym_text_block] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_final] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_PLUS_PLUS] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(281), + [anon_sym_new] = ACTIONS(283), + [anon_sym_class] = ACTIONS(283), + [anon_sym_switch] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_case] = ACTIONS(283), + [anon_sym_default] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_assert] = ACTIONS(283), + [anon_sym_do] = ACTIONS(283), + [anon_sym_while] = ACTIONS(283), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_return] = ACTIONS(283), + [anon_sym_yield] = ACTIONS(283), + [anon_sym_synchronized] = ACTIONS(283), + [anon_sym_throw] = ACTIONS(283), + [anon_sym_try] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_for] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [anon_sym_open] = ACTIONS(283), + [anon_sym_module] = ACTIONS(283), + [anon_sym_static] = ACTIONS(283), + [anon_sym_package] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_enum] = ACTIONS(283), + [anon_sym_public] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_abstract] = ACTIONS(283), + [anon_sym_strictfp] = ACTIONS(283), + [anon_sym_native] = ACTIONS(283), + [anon_sym_transient] = ACTIONS(283), + [anon_sym_volatile] = ACTIONS(283), + [anon_sym_sealed] = ACTIONS(283), + [anon_sym_non_DASHsealed] = ACTIONS(281), + [anon_sym_record] = ACTIONS(283), + [anon_sym_ATinterface] = ACTIONS(281), + [anon_sym_interface] = ACTIONS(283), + [anon_sym_byte] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [anon_sym_int] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_char] = ACTIONS(283), + [anon_sym_float] = ACTIONS(283), + [anon_sym_double] = ACTIONS(283), + [sym_boolean_type] = ACTIONS(283), + [sym_void_type] = ACTIONS(283), + [sym_this] = ACTIONS(283), + [sym_super] = ACTIONS(283), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), - [sym_decimal_integer_literal] = ACTIONS(756), - [sym_hex_integer_literal] = ACTIONS(756), - [sym_octal_integer_literal] = ACTIONS(754), - [sym_binary_integer_literal] = ACTIONS(754), - [sym_decimal_floating_point_literal] = ACTIONS(754), - [sym_hex_floating_point_literal] = ACTIONS(756), - [sym_true] = ACTIONS(756), - [sym_false] = ACTIONS(756), - [sym_character_literal] = ACTIONS(754), - [sym_string_literal] = ACTIONS(756), - [sym_text_block] = ACTIONS(754), - [sym_null_literal] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_DASH_DASH] = ACTIONS(754), - [anon_sym_new] = ACTIONS(756), - [anon_sym_class] = ACTIONS(756), - [anon_sym_switch] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_RBRACE] = ACTIONS(754), - [anon_sym_case] = ACTIONS(756), - [anon_sym_default] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_do] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_break] = ACTIONS(756), - [anon_sym_continue] = ACTIONS(756), - [anon_sym_return] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_synchronized] = ACTIONS(756), - [anon_sym_throw] = ACTIONS(756), - [anon_sym_try] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_else] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym_open] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_static] = ACTIONS(756), - [anon_sym_package] = ACTIONS(756), - [anon_sym_import] = ACTIONS(756), - [anon_sym_enum] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_abstract] = ACTIONS(756), - [anon_sym_final] = ACTIONS(756), - [anon_sym_strictfp] = ACTIONS(756), - [anon_sym_native] = ACTIONS(756), - [anon_sym_transient] = ACTIONS(756), - [anon_sym_volatile] = ACTIONS(756), - [anon_sym_sealed] = ACTIONS(756), - [anon_sym_non_DASHsealed] = ACTIONS(754), - [anon_sym_record] = ACTIONS(756), - [anon_sym_ATinterface] = ACTIONS(754), - [anon_sym_interface] = ACTIONS(756), - [anon_sym_byte] = ACTIONS(756), - [anon_sym_short] = ACTIONS(756), - [anon_sym_int] = ACTIONS(756), - [anon_sym_long] = ACTIONS(756), - [anon_sym_char] = ACTIONS(756), - [anon_sym_float] = ACTIONS(756), - [anon_sym_double] = ACTIONS(756), - [sym_boolean_type] = ACTIONS(756), - [sym_void_type] = ACTIONS(756), - [sym_this] = ACTIONS(756), - [sym_super] = ACTIONS(756), + [ts_builtin_sym_end] = ACTIONS(752), + [sym_identifier] = ACTIONS(754), + [sym_decimal_integer_literal] = ACTIONS(754), + [sym_hex_integer_literal] = ACTIONS(754), + [sym_octal_integer_literal] = ACTIONS(752), + [sym_binary_integer_literal] = ACTIONS(752), + [sym_decimal_floating_point_literal] = ACTIONS(752), + [sym_hex_floating_point_literal] = ACTIONS(754), + [sym_true] = ACTIONS(754), + [sym_false] = ACTIONS(754), + [sym_character_literal] = ACTIONS(752), + [sym_string_literal] = ACTIONS(754), + [sym_text_block] = ACTIONS(752), + [sym_null_literal] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_final] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_TILDE] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_new] = ACTIONS(754), + [anon_sym_class] = ACTIONS(754), + [anon_sym_switch] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_case] = ACTIONS(754), + [anon_sym_default] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_assert] = ACTIONS(754), + [anon_sym_do] = ACTIONS(754), + [anon_sym_while] = ACTIONS(754), + [anon_sym_break] = ACTIONS(754), + [anon_sym_continue] = ACTIONS(754), + [anon_sym_return] = ACTIONS(754), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_synchronized] = ACTIONS(754), + [anon_sym_throw] = ACTIONS(754), + [anon_sym_try] = ACTIONS(754), + [anon_sym_if] = ACTIONS(754), + [anon_sym_else] = ACTIONS(754), + [anon_sym_for] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [anon_sym_open] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_static] = ACTIONS(754), + [anon_sym_package] = ACTIONS(754), + [anon_sym_import] = ACTIONS(754), + [anon_sym_enum] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_abstract] = ACTIONS(754), + [anon_sym_strictfp] = ACTIONS(754), + [anon_sym_native] = ACTIONS(754), + [anon_sym_transient] = ACTIONS(754), + [anon_sym_volatile] = ACTIONS(754), + [anon_sym_sealed] = ACTIONS(754), + [anon_sym_non_DASHsealed] = ACTIONS(752), + [anon_sym_record] = ACTIONS(754), + [anon_sym_ATinterface] = ACTIONS(752), + [anon_sym_interface] = ACTIONS(754), + [anon_sym_byte] = ACTIONS(754), + [anon_sym_short] = ACTIONS(754), + [anon_sym_int] = ACTIONS(754), + [anon_sym_long] = ACTIONS(754), + [anon_sym_char] = ACTIONS(754), + [anon_sym_float] = ACTIONS(754), + [anon_sym_double] = ACTIONS(754), + [sym_boolean_type] = ACTIONS(754), + [sym_void_type] = ACTIONS(754), + [sym_this] = ACTIONS(754), + [sym_super] = ACTIONS(754), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [206] = { - [ts_builtin_sym_end] = ACTIONS(758), - [sym_identifier] = ACTIONS(760), - [sym_decimal_integer_literal] = ACTIONS(760), - [sym_hex_integer_literal] = ACTIONS(760), - [sym_octal_integer_literal] = ACTIONS(758), - [sym_binary_integer_literal] = ACTIONS(758), - [sym_decimal_floating_point_literal] = ACTIONS(758), - [sym_hex_floating_point_literal] = ACTIONS(760), - [sym_true] = ACTIONS(760), - [sym_false] = ACTIONS(760), - [sym_character_literal] = ACTIONS(758), - [sym_string_literal] = ACTIONS(760), - [sym_text_block] = ACTIONS(758), - [sym_null_literal] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(758), - [anon_sym_PLUS] = ACTIONS(760), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(758), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_new] = ACTIONS(760), - [anon_sym_class] = ACTIONS(760), - [anon_sym_switch] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(758), - [anon_sym_RBRACE] = ACTIONS(758), - [anon_sym_case] = ACTIONS(760), - [anon_sym_default] = ACTIONS(760), - [anon_sym_SEMI] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(760), - [anon_sym_do] = ACTIONS(760), - [anon_sym_while] = ACTIONS(760), - [anon_sym_break] = ACTIONS(760), - [anon_sym_continue] = ACTIONS(760), - [anon_sym_return] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_synchronized] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(760), - [anon_sym_try] = ACTIONS(760), - [anon_sym_if] = ACTIONS(760), - [anon_sym_else] = ACTIONS(760), - [anon_sym_for] = ACTIONS(760), - [anon_sym_AT] = ACTIONS(760), - [anon_sym_open] = ACTIONS(760), - [anon_sym_module] = ACTIONS(760), - [anon_sym_static] = ACTIONS(760), - [anon_sym_package] = ACTIONS(760), - [anon_sym_import] = ACTIONS(760), - [anon_sym_enum] = ACTIONS(760), - [anon_sym_public] = ACTIONS(760), - [anon_sym_protected] = ACTIONS(760), - [anon_sym_private] = ACTIONS(760), - [anon_sym_abstract] = ACTIONS(760), - [anon_sym_final] = ACTIONS(760), - [anon_sym_strictfp] = ACTIONS(760), - [anon_sym_native] = ACTIONS(760), - [anon_sym_transient] = ACTIONS(760), - [anon_sym_volatile] = ACTIONS(760), - [anon_sym_sealed] = ACTIONS(760), - [anon_sym_non_DASHsealed] = ACTIONS(758), - [anon_sym_record] = ACTIONS(760), - [anon_sym_ATinterface] = ACTIONS(758), - [anon_sym_interface] = ACTIONS(760), - [anon_sym_byte] = ACTIONS(760), - [anon_sym_short] = ACTIONS(760), - [anon_sym_int] = ACTIONS(760), - [anon_sym_long] = ACTIONS(760), - [anon_sym_char] = ACTIONS(760), - [anon_sym_float] = ACTIONS(760), - [anon_sym_double] = ACTIONS(760), - [sym_boolean_type] = ACTIONS(760), - [sym_void_type] = ACTIONS(760), - [sym_this] = ACTIONS(760), - [sym_super] = ACTIONS(760), + [ts_builtin_sym_end] = ACTIONS(756), + [sym_identifier] = ACTIONS(758), + [sym_decimal_integer_literal] = ACTIONS(758), + [sym_hex_integer_literal] = ACTIONS(758), + [sym_octal_integer_literal] = ACTIONS(756), + [sym_binary_integer_literal] = ACTIONS(756), + [sym_decimal_floating_point_literal] = ACTIONS(756), + [sym_hex_floating_point_literal] = ACTIONS(758), + [sym_true] = ACTIONS(758), + [sym_false] = ACTIONS(758), + [sym_character_literal] = ACTIONS(756), + [sym_string_literal] = ACTIONS(758), + [sym_text_block] = ACTIONS(756), + [sym_null_literal] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_final] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_class] = ACTIONS(758), + [anon_sym_switch] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_case] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_assert] = ACTIONS(758), + [anon_sym_do] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(758), + [anon_sym_synchronized] = ACTIONS(758), + [anon_sym_throw] = ACTIONS(758), + [anon_sym_try] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_else] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_open] = ACTIONS(758), + [anon_sym_module] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_package] = ACTIONS(758), + [anon_sym_import] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_public] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_abstract] = ACTIONS(758), + [anon_sym_strictfp] = ACTIONS(758), + [anon_sym_native] = ACTIONS(758), + [anon_sym_transient] = ACTIONS(758), + [anon_sym_volatile] = ACTIONS(758), + [anon_sym_sealed] = ACTIONS(758), + [anon_sym_non_DASHsealed] = ACTIONS(756), + [anon_sym_record] = ACTIONS(758), + [anon_sym_ATinterface] = ACTIONS(756), + [anon_sym_interface] = ACTIONS(758), + [anon_sym_byte] = ACTIONS(758), + [anon_sym_short] = ACTIONS(758), + [anon_sym_int] = ACTIONS(758), + [anon_sym_long] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_float] = ACTIONS(758), + [anon_sym_double] = ACTIONS(758), + [sym_boolean_type] = ACTIONS(758), + [sym_void_type] = ACTIONS(758), + [sym_this] = ACTIONS(758), + [sym_super] = ACTIONS(758), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [207] = { - [ts_builtin_sym_end] = ACTIONS(762), - [sym_identifier] = ACTIONS(764), - [sym_decimal_integer_literal] = ACTIONS(764), - [sym_hex_integer_literal] = ACTIONS(764), - [sym_octal_integer_literal] = ACTIONS(762), - [sym_binary_integer_literal] = ACTIONS(762), - [sym_decimal_floating_point_literal] = ACTIONS(762), - [sym_hex_floating_point_literal] = ACTIONS(764), - [sym_true] = ACTIONS(764), - [sym_false] = ACTIONS(764), - [sym_character_literal] = ACTIONS(762), - [sym_string_literal] = ACTIONS(764), - [sym_text_block] = ACTIONS(762), - [sym_null_literal] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_PLUS_PLUS] = ACTIONS(762), - [anon_sym_DASH_DASH] = ACTIONS(762), - [anon_sym_new] = ACTIONS(764), - [anon_sym_class] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_case] = ACTIONS(764), - [anon_sym_default] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_assert] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_yield] = ACTIONS(764), - [anon_sym_synchronized] = ACTIONS(764), - [anon_sym_throw] = ACTIONS(764), - [anon_sym_try] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_else] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(764), - [anon_sym_open] = ACTIONS(764), - [anon_sym_module] = ACTIONS(764), - [anon_sym_static] = ACTIONS(764), - [anon_sym_package] = ACTIONS(764), - [anon_sym_import] = ACTIONS(764), - [anon_sym_enum] = ACTIONS(764), - [anon_sym_public] = ACTIONS(764), - [anon_sym_protected] = ACTIONS(764), - [anon_sym_private] = ACTIONS(764), - [anon_sym_abstract] = ACTIONS(764), - [anon_sym_final] = ACTIONS(764), - [anon_sym_strictfp] = ACTIONS(764), - [anon_sym_native] = ACTIONS(764), - [anon_sym_transient] = ACTIONS(764), - [anon_sym_volatile] = ACTIONS(764), - [anon_sym_sealed] = ACTIONS(764), - [anon_sym_non_DASHsealed] = ACTIONS(762), - [anon_sym_record] = ACTIONS(764), - [anon_sym_ATinterface] = ACTIONS(762), - [anon_sym_interface] = ACTIONS(764), - [anon_sym_byte] = ACTIONS(764), - [anon_sym_short] = ACTIONS(764), - [anon_sym_int] = ACTIONS(764), - [anon_sym_long] = ACTIONS(764), - [anon_sym_char] = ACTIONS(764), - [anon_sym_float] = ACTIONS(764), - [anon_sym_double] = ACTIONS(764), - [sym_boolean_type] = ACTIONS(764), - [sym_void_type] = ACTIONS(764), - [sym_this] = ACTIONS(764), - [sym_super] = ACTIONS(764), + [ts_builtin_sym_end] = ACTIONS(760), + [sym_identifier] = ACTIONS(762), + [sym_decimal_integer_literal] = ACTIONS(762), + [sym_hex_integer_literal] = ACTIONS(762), + [sym_octal_integer_literal] = ACTIONS(760), + [sym_binary_integer_literal] = ACTIONS(760), + [sym_decimal_floating_point_literal] = ACTIONS(760), + [sym_hex_floating_point_literal] = ACTIONS(762), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_character_literal] = ACTIONS(760), + [sym_string_literal] = ACTIONS(762), + [sym_text_block] = ACTIONS(760), + [sym_null_literal] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_final] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_DASH_DASH] = ACTIONS(760), + [anon_sym_new] = ACTIONS(762), + [anon_sym_class] = ACTIONS(762), + [anon_sym_switch] = ACTIONS(762), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_case] = ACTIONS(762), + [anon_sym_default] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_assert] = ACTIONS(762), + [anon_sym_do] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_yield] = ACTIONS(762), + [anon_sym_synchronized] = ACTIONS(762), + [anon_sym_throw] = ACTIONS(762), + [anon_sym_try] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_else] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_AT] = ACTIONS(762), + [anon_sym_open] = ACTIONS(762), + [anon_sym_module] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_package] = ACTIONS(762), + [anon_sym_import] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_public] = ACTIONS(762), + [anon_sym_protected] = ACTIONS(762), + [anon_sym_private] = ACTIONS(762), + [anon_sym_abstract] = ACTIONS(762), + [anon_sym_strictfp] = ACTIONS(762), + [anon_sym_native] = ACTIONS(762), + [anon_sym_transient] = ACTIONS(762), + [anon_sym_volatile] = ACTIONS(762), + [anon_sym_sealed] = ACTIONS(762), + [anon_sym_non_DASHsealed] = ACTIONS(760), + [anon_sym_record] = ACTIONS(762), + [anon_sym_ATinterface] = ACTIONS(760), + [anon_sym_interface] = ACTIONS(762), + [anon_sym_byte] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [anon_sym_int] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_char] = ACTIONS(762), + [anon_sym_float] = ACTIONS(762), + [anon_sym_double] = ACTIONS(762), + [sym_boolean_type] = ACTIONS(762), + [sym_void_type] = ACTIONS(762), + [sym_this] = ACTIONS(762), + [sym_super] = ACTIONS(762), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [208] = { - [ts_builtin_sym_end] = ACTIONS(766), - [sym_identifier] = ACTIONS(768), - [sym_decimal_integer_literal] = ACTIONS(768), - [sym_hex_integer_literal] = ACTIONS(768), - [sym_octal_integer_literal] = ACTIONS(766), - [sym_binary_integer_literal] = ACTIONS(766), - [sym_decimal_floating_point_literal] = ACTIONS(766), - [sym_hex_floating_point_literal] = ACTIONS(768), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_character_literal] = ACTIONS(766), - [sym_string_literal] = ACTIONS(768), - [sym_text_block] = ACTIONS(766), - [sym_null_literal] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(766), - [anon_sym_DASH_DASH] = ACTIONS(766), - [anon_sym_new] = ACTIONS(768), - [anon_sym_class] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_case] = ACTIONS(768), - [anon_sym_default] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_assert] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_yield] = ACTIONS(768), - [anon_sym_synchronized] = ACTIONS(768), - [anon_sym_throw] = ACTIONS(768), - [anon_sym_try] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_else] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_AT] = ACTIONS(768), - [anon_sym_open] = ACTIONS(768), - [anon_sym_module] = ACTIONS(768), - [anon_sym_static] = ACTIONS(768), - [anon_sym_package] = ACTIONS(768), - [anon_sym_import] = ACTIONS(768), - [anon_sym_enum] = ACTIONS(768), - [anon_sym_public] = ACTIONS(768), - [anon_sym_protected] = ACTIONS(768), - [anon_sym_private] = ACTIONS(768), - [anon_sym_abstract] = ACTIONS(768), - [anon_sym_final] = ACTIONS(768), - [anon_sym_strictfp] = ACTIONS(768), - [anon_sym_native] = ACTIONS(768), - [anon_sym_transient] = ACTIONS(768), - [anon_sym_volatile] = ACTIONS(768), - [anon_sym_sealed] = ACTIONS(768), - [anon_sym_non_DASHsealed] = ACTIONS(766), - [anon_sym_record] = ACTIONS(768), - [anon_sym_ATinterface] = ACTIONS(766), - [anon_sym_interface] = ACTIONS(768), - [anon_sym_byte] = ACTIONS(768), - [anon_sym_short] = ACTIONS(768), - [anon_sym_int] = ACTIONS(768), - [anon_sym_long] = ACTIONS(768), - [anon_sym_char] = ACTIONS(768), - [anon_sym_float] = ACTIONS(768), - [anon_sym_double] = ACTIONS(768), - [sym_boolean_type] = ACTIONS(768), - [sym_void_type] = ACTIONS(768), - [sym_this] = ACTIONS(768), - [sym_super] = ACTIONS(768), + [ts_builtin_sym_end] = ACTIONS(764), + [sym_identifier] = ACTIONS(766), + [sym_decimal_integer_literal] = ACTIONS(766), + [sym_hex_integer_literal] = ACTIONS(766), + [sym_octal_integer_literal] = ACTIONS(764), + [sym_binary_integer_literal] = ACTIONS(764), + [sym_decimal_floating_point_literal] = ACTIONS(764), + [sym_hex_floating_point_literal] = ACTIONS(766), + [sym_true] = ACTIONS(766), + [sym_false] = ACTIONS(766), + [sym_character_literal] = ACTIONS(764), + [sym_string_literal] = ACTIONS(766), + [sym_text_block] = ACTIONS(764), + [sym_null_literal] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_final] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_new] = ACTIONS(766), + [anon_sym_class] = ACTIONS(766), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_case] = ACTIONS(766), + [anon_sym_default] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_assert] = ACTIONS(766), + [anon_sym_do] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_yield] = ACTIONS(766), + [anon_sym_synchronized] = ACTIONS(766), + [anon_sym_throw] = ACTIONS(766), + [anon_sym_try] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_AT] = ACTIONS(766), + [anon_sym_open] = ACTIONS(766), + [anon_sym_module] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_package] = ACTIONS(766), + [anon_sym_import] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_public] = ACTIONS(766), + [anon_sym_protected] = ACTIONS(766), + [anon_sym_private] = ACTIONS(766), + [anon_sym_abstract] = ACTIONS(766), + [anon_sym_strictfp] = ACTIONS(766), + [anon_sym_native] = ACTIONS(766), + [anon_sym_transient] = ACTIONS(766), + [anon_sym_volatile] = ACTIONS(766), + [anon_sym_sealed] = ACTIONS(766), + [anon_sym_non_DASHsealed] = ACTIONS(764), + [anon_sym_record] = ACTIONS(766), + [anon_sym_ATinterface] = ACTIONS(764), + [anon_sym_interface] = ACTIONS(766), + [anon_sym_byte] = ACTIONS(766), + [anon_sym_short] = ACTIONS(766), + [anon_sym_int] = ACTIONS(766), + [anon_sym_long] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_float] = ACTIONS(766), + [anon_sym_double] = ACTIONS(766), + [sym_boolean_type] = ACTIONS(766), + [sym_void_type] = ACTIONS(766), + [sym_this] = ACTIONS(766), + [sym_super] = ACTIONS(766), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [209] = { - [ts_builtin_sym_end] = ACTIONS(770), - [sym_identifier] = ACTIONS(772), - [sym_decimal_integer_literal] = ACTIONS(772), - [sym_hex_integer_literal] = ACTIONS(772), - [sym_octal_integer_literal] = ACTIONS(770), - [sym_binary_integer_literal] = ACTIONS(770), - [sym_decimal_floating_point_literal] = ACTIONS(770), - [sym_hex_floating_point_literal] = ACTIONS(772), - [sym_true] = ACTIONS(772), - [sym_false] = ACTIONS(772), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(772), - [sym_text_block] = ACTIONS(770), - [sym_null_literal] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(770), - [anon_sym_DASH_DASH] = ACTIONS(770), - [anon_sym_new] = ACTIONS(772), - [anon_sym_class] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(770), - [anon_sym_case] = ACTIONS(772), - [anon_sym_default] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(770), - [anon_sym_assert] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_yield] = ACTIONS(772), - [anon_sym_synchronized] = ACTIONS(772), - [anon_sym_throw] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_else] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_open] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_static] = ACTIONS(772), - [anon_sym_package] = ACTIONS(772), - [anon_sym_import] = ACTIONS(772), - [anon_sym_enum] = ACTIONS(772), - [anon_sym_public] = ACTIONS(772), - [anon_sym_protected] = ACTIONS(772), - [anon_sym_private] = ACTIONS(772), - [anon_sym_abstract] = ACTIONS(772), - [anon_sym_final] = ACTIONS(772), - [anon_sym_strictfp] = ACTIONS(772), - [anon_sym_native] = ACTIONS(772), - [anon_sym_transient] = ACTIONS(772), - [anon_sym_volatile] = ACTIONS(772), - [anon_sym_sealed] = ACTIONS(772), - [anon_sym_non_DASHsealed] = ACTIONS(770), - [anon_sym_record] = ACTIONS(772), - [anon_sym_ATinterface] = ACTIONS(770), - [anon_sym_interface] = ACTIONS(772), - [anon_sym_byte] = ACTIONS(772), - [anon_sym_short] = ACTIONS(772), - [anon_sym_int] = ACTIONS(772), - [anon_sym_long] = ACTIONS(772), - [anon_sym_char] = ACTIONS(772), - [anon_sym_float] = ACTIONS(772), - [anon_sym_double] = ACTIONS(772), - [sym_boolean_type] = ACTIONS(772), - [sym_void_type] = ACTIONS(772), - [sym_this] = ACTIONS(772), - [sym_super] = ACTIONS(772), + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(770), + [sym_decimal_integer_literal] = ACTIONS(770), + [sym_hex_integer_literal] = ACTIONS(770), + [sym_octal_integer_literal] = ACTIONS(768), + [sym_binary_integer_literal] = ACTIONS(768), + [sym_decimal_floating_point_literal] = ACTIONS(768), + [sym_hex_floating_point_literal] = ACTIONS(770), + [sym_true] = ACTIONS(770), + [sym_false] = ACTIONS(770), + [sym_character_literal] = ACTIONS(768), + [sym_string_literal] = ACTIONS(770), + [sym_text_block] = ACTIONS(768), + [sym_null_literal] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_final] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_class] = ACTIONS(770), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_case] = ACTIONS(770), + [anon_sym_default] = ACTIONS(770), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_assert] = ACTIONS(770), + [anon_sym_do] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_yield] = ACTIONS(770), + [anon_sym_synchronized] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(770), + [anon_sym_try] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(770), + [anon_sym_open] = ACTIONS(770), + [anon_sym_module] = ACTIONS(770), + [anon_sym_static] = ACTIONS(770), + [anon_sym_package] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_enum] = ACTIONS(770), + [anon_sym_public] = ACTIONS(770), + [anon_sym_protected] = ACTIONS(770), + [anon_sym_private] = ACTIONS(770), + [anon_sym_abstract] = ACTIONS(770), + [anon_sym_strictfp] = ACTIONS(770), + [anon_sym_native] = ACTIONS(770), + [anon_sym_transient] = ACTIONS(770), + [anon_sym_volatile] = ACTIONS(770), + [anon_sym_sealed] = ACTIONS(770), + [anon_sym_non_DASHsealed] = ACTIONS(768), + [anon_sym_record] = ACTIONS(770), + [anon_sym_ATinterface] = ACTIONS(768), + [anon_sym_interface] = ACTIONS(770), + [anon_sym_byte] = ACTIONS(770), + [anon_sym_short] = ACTIONS(770), + [anon_sym_int] = ACTIONS(770), + [anon_sym_long] = ACTIONS(770), + [anon_sym_char] = ACTIONS(770), + [anon_sym_float] = ACTIONS(770), + [anon_sym_double] = ACTIONS(770), + [sym_boolean_type] = ACTIONS(770), + [sym_void_type] = ACTIONS(770), + [sym_this] = ACTIONS(770), + [sym_super] = ACTIONS(770), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [210] = { - [ts_builtin_sym_end] = ACTIONS(774), - [sym_identifier] = ACTIONS(776), - [sym_decimal_integer_literal] = ACTIONS(776), - [sym_hex_integer_literal] = ACTIONS(776), - [sym_octal_integer_literal] = ACTIONS(774), - [sym_binary_integer_literal] = ACTIONS(774), - [sym_decimal_floating_point_literal] = ACTIONS(774), - [sym_hex_floating_point_literal] = ACTIONS(776), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_character_literal] = ACTIONS(774), - [sym_string_literal] = ACTIONS(776), - [sym_text_block] = ACTIONS(774), - [sym_null_literal] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(776), - [anon_sym_DASH] = ACTIONS(776), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(774), - [anon_sym_DASH_DASH] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_class] = ACTIONS(776), - [anon_sym_switch] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(774), - [anon_sym_RBRACE] = ACTIONS(774), - [anon_sym_case] = ACTIONS(776), - [anon_sym_default] = ACTIONS(776), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_assert] = ACTIONS(776), - [anon_sym_do] = ACTIONS(776), - [anon_sym_while] = ACTIONS(776), - [anon_sym_break] = ACTIONS(776), - [anon_sym_continue] = ACTIONS(776), - [anon_sym_return] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(776), - [anon_sym_synchronized] = ACTIONS(776), - [anon_sym_throw] = ACTIONS(776), - [anon_sym_try] = ACTIONS(776), - [anon_sym_if] = ACTIONS(776), - [anon_sym_else] = ACTIONS(776), - [anon_sym_for] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(776), - [anon_sym_open] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_static] = ACTIONS(776), - [anon_sym_package] = ACTIONS(776), - [anon_sym_import] = ACTIONS(776), - [anon_sym_enum] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_abstract] = ACTIONS(776), - [anon_sym_final] = ACTIONS(776), - [anon_sym_strictfp] = ACTIONS(776), - [anon_sym_native] = ACTIONS(776), - [anon_sym_transient] = ACTIONS(776), - [anon_sym_volatile] = ACTIONS(776), - [anon_sym_sealed] = ACTIONS(776), - [anon_sym_non_DASHsealed] = ACTIONS(774), - [anon_sym_record] = ACTIONS(776), - [anon_sym_ATinterface] = ACTIONS(774), - [anon_sym_interface] = ACTIONS(776), - [anon_sym_byte] = ACTIONS(776), - [anon_sym_short] = ACTIONS(776), - [anon_sym_int] = ACTIONS(776), - [anon_sym_long] = ACTIONS(776), - [anon_sym_char] = ACTIONS(776), - [anon_sym_float] = ACTIONS(776), - [anon_sym_double] = ACTIONS(776), - [sym_boolean_type] = ACTIONS(776), - [sym_void_type] = ACTIONS(776), - [sym_this] = ACTIONS(776), - [sym_super] = ACTIONS(776), + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(774), + [sym_decimal_integer_literal] = ACTIONS(774), + [sym_hex_integer_literal] = ACTIONS(774), + [sym_octal_integer_literal] = ACTIONS(772), + [sym_binary_integer_literal] = ACTIONS(772), + [sym_decimal_floating_point_literal] = ACTIONS(772), + [sym_hex_floating_point_literal] = ACTIONS(774), + [sym_true] = ACTIONS(774), + [sym_false] = ACTIONS(774), + [sym_character_literal] = ACTIONS(772), + [sym_string_literal] = ACTIONS(774), + [sym_text_block] = ACTIONS(772), + [sym_null_literal] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_final] = ACTIONS(774), + [anon_sym_BANG] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_new] = ACTIONS(774), + [anon_sym_class] = ACTIONS(774), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_case] = ACTIONS(774), + [anon_sym_default] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_assert] = ACTIONS(774), + [anon_sym_do] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_yield] = ACTIONS(774), + [anon_sym_synchronized] = ACTIONS(774), + [anon_sym_throw] = ACTIONS(774), + [anon_sym_try] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_for] = ACTIONS(774), + [anon_sym_AT] = ACTIONS(774), + [anon_sym_open] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_static] = ACTIONS(774), + [anon_sym_package] = ACTIONS(774), + [anon_sym_import] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_abstract] = ACTIONS(774), + [anon_sym_strictfp] = ACTIONS(774), + [anon_sym_native] = ACTIONS(774), + [anon_sym_transient] = ACTIONS(774), + [anon_sym_volatile] = ACTIONS(774), + [anon_sym_sealed] = ACTIONS(774), + [anon_sym_non_DASHsealed] = ACTIONS(772), + [anon_sym_record] = ACTIONS(774), + [anon_sym_ATinterface] = ACTIONS(772), + [anon_sym_interface] = ACTIONS(774), + [anon_sym_byte] = ACTIONS(774), + [anon_sym_short] = ACTIONS(774), + [anon_sym_int] = ACTIONS(774), + [anon_sym_long] = ACTIONS(774), + [anon_sym_char] = ACTIONS(774), + [anon_sym_float] = ACTIONS(774), + [anon_sym_double] = ACTIONS(774), + [sym_boolean_type] = ACTIONS(774), + [sym_void_type] = ACTIONS(774), + [sym_this] = ACTIONS(774), + [sym_super] = ACTIONS(774), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [211] = { - [ts_builtin_sym_end] = ACTIONS(778), - [sym_identifier] = ACTIONS(780), - [sym_decimal_integer_literal] = ACTIONS(780), - [sym_hex_integer_literal] = ACTIONS(780), - [sym_octal_integer_literal] = ACTIONS(778), - [sym_binary_integer_literal] = ACTIONS(778), - [sym_decimal_floating_point_literal] = ACTIONS(778), - [sym_hex_floating_point_literal] = ACTIONS(780), - [sym_true] = ACTIONS(780), - [sym_false] = ACTIONS(780), - [sym_character_literal] = ACTIONS(778), - [sym_string_literal] = ACTIONS(780), - [sym_text_block] = ACTIONS(778), - [sym_null_literal] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(778), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(778), - [anon_sym_TILDE] = ACTIONS(778), - [anon_sym_PLUS_PLUS] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_new] = ACTIONS(780), - [anon_sym_class] = ACTIONS(780), - [anon_sym_switch] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_RBRACE] = ACTIONS(778), - [anon_sym_case] = ACTIONS(780), - [anon_sym_default] = ACTIONS(780), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_assert] = ACTIONS(780), - [anon_sym_do] = ACTIONS(780), - [anon_sym_while] = ACTIONS(780), - [anon_sym_break] = ACTIONS(780), - [anon_sym_continue] = ACTIONS(780), - [anon_sym_return] = ACTIONS(780), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_synchronized] = ACTIONS(780), - [anon_sym_throw] = ACTIONS(780), - [anon_sym_try] = ACTIONS(780), - [anon_sym_if] = ACTIONS(780), - [anon_sym_else] = ACTIONS(780), - [anon_sym_for] = ACTIONS(780), - [anon_sym_AT] = ACTIONS(780), - [anon_sym_open] = ACTIONS(780), - [anon_sym_module] = ACTIONS(780), - [anon_sym_static] = ACTIONS(780), - [anon_sym_package] = ACTIONS(780), - [anon_sym_import] = ACTIONS(780), - [anon_sym_enum] = ACTIONS(780), - [anon_sym_public] = ACTIONS(780), - [anon_sym_protected] = ACTIONS(780), - [anon_sym_private] = ACTIONS(780), - [anon_sym_abstract] = ACTIONS(780), - [anon_sym_final] = ACTIONS(780), - [anon_sym_strictfp] = ACTIONS(780), - [anon_sym_native] = ACTIONS(780), - [anon_sym_transient] = ACTIONS(780), - [anon_sym_volatile] = ACTIONS(780), - [anon_sym_sealed] = ACTIONS(780), - [anon_sym_non_DASHsealed] = ACTIONS(778), - [anon_sym_record] = ACTIONS(780), - [anon_sym_ATinterface] = ACTIONS(778), - [anon_sym_interface] = ACTIONS(780), - [anon_sym_byte] = ACTIONS(780), - [anon_sym_short] = ACTIONS(780), - [anon_sym_int] = ACTIONS(780), - [anon_sym_long] = ACTIONS(780), - [anon_sym_char] = ACTIONS(780), - [anon_sym_float] = ACTIONS(780), - [anon_sym_double] = ACTIONS(780), - [sym_boolean_type] = ACTIONS(780), - [sym_void_type] = ACTIONS(780), - [sym_this] = ACTIONS(780), - [sym_super] = ACTIONS(780), + [ts_builtin_sym_end] = ACTIONS(776), + [sym_identifier] = ACTIONS(778), + [sym_decimal_integer_literal] = ACTIONS(778), + [sym_hex_integer_literal] = ACTIONS(778), + [sym_octal_integer_literal] = ACTIONS(776), + [sym_binary_integer_literal] = ACTIONS(776), + [sym_decimal_floating_point_literal] = ACTIONS(776), + [sym_hex_floating_point_literal] = ACTIONS(778), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_character_literal] = ACTIONS(776), + [sym_string_literal] = ACTIONS(778), + [sym_text_block] = ACTIONS(776), + [sym_null_literal] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_PLUS] = ACTIONS(778), + [anon_sym_DASH] = ACTIONS(778), + [anon_sym_final] = ACTIONS(778), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_new] = ACTIONS(778), + [anon_sym_class] = ACTIONS(778), + [anon_sym_switch] = ACTIONS(778), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_case] = ACTIONS(778), + [anon_sym_default] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(776), + [anon_sym_assert] = ACTIONS(778), + [anon_sym_do] = ACTIONS(778), + [anon_sym_while] = ACTIONS(778), + [anon_sym_break] = ACTIONS(778), + [anon_sym_continue] = ACTIONS(778), + [anon_sym_return] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(778), + [anon_sym_synchronized] = ACTIONS(778), + [anon_sym_throw] = ACTIONS(778), + [anon_sym_try] = ACTIONS(778), + [anon_sym_if] = ACTIONS(778), + [anon_sym_else] = ACTIONS(778), + [anon_sym_for] = ACTIONS(778), + [anon_sym_AT] = ACTIONS(778), + [anon_sym_open] = ACTIONS(778), + [anon_sym_module] = ACTIONS(778), + [anon_sym_static] = ACTIONS(778), + [anon_sym_package] = ACTIONS(778), + [anon_sym_import] = ACTIONS(778), + [anon_sym_enum] = ACTIONS(778), + [anon_sym_public] = ACTIONS(778), + [anon_sym_protected] = ACTIONS(778), + [anon_sym_private] = ACTIONS(778), + [anon_sym_abstract] = ACTIONS(778), + [anon_sym_strictfp] = ACTIONS(778), + [anon_sym_native] = ACTIONS(778), + [anon_sym_transient] = ACTIONS(778), + [anon_sym_volatile] = ACTIONS(778), + [anon_sym_sealed] = ACTIONS(778), + [anon_sym_non_DASHsealed] = ACTIONS(776), + [anon_sym_record] = ACTIONS(778), + [anon_sym_ATinterface] = ACTIONS(776), + [anon_sym_interface] = ACTIONS(778), + [anon_sym_byte] = ACTIONS(778), + [anon_sym_short] = ACTIONS(778), + [anon_sym_int] = ACTIONS(778), + [anon_sym_long] = ACTIONS(778), + [anon_sym_char] = ACTIONS(778), + [anon_sym_float] = ACTIONS(778), + [anon_sym_double] = ACTIONS(778), + [sym_boolean_type] = ACTIONS(778), + [sym_void_type] = ACTIONS(778), + [sym_this] = ACTIONS(778), + [sym_super] = ACTIONS(778), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [212] = { - [ts_builtin_sym_end] = ACTIONS(782), - [sym_identifier] = ACTIONS(784), - [sym_decimal_integer_literal] = ACTIONS(784), - [sym_hex_integer_literal] = ACTIONS(784), - [sym_octal_integer_literal] = ACTIONS(782), - [sym_binary_integer_literal] = ACTIONS(782), - [sym_decimal_floating_point_literal] = ACTIONS(782), - [sym_hex_floating_point_literal] = ACTIONS(784), - [sym_true] = ACTIONS(784), - [sym_false] = ACTIONS(784), - [sym_character_literal] = ACTIONS(782), - [sym_string_literal] = ACTIONS(784), - [sym_text_block] = ACTIONS(782), - [sym_null_literal] = ACTIONS(784), - [anon_sym_LPAREN] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_new] = ACTIONS(784), - [anon_sym_class] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_RBRACE] = ACTIONS(782), - [anon_sym_case] = ACTIONS(784), - [anon_sym_default] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_assert] = ACTIONS(784), - [anon_sym_do] = ACTIONS(784), - [anon_sym_while] = ACTIONS(784), - [anon_sym_break] = ACTIONS(784), - [anon_sym_continue] = ACTIONS(784), - [anon_sym_return] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(784), - [anon_sym_synchronized] = ACTIONS(784), - [anon_sym_throw] = ACTIONS(784), - [anon_sym_try] = ACTIONS(784), - [anon_sym_if] = ACTIONS(784), - [anon_sym_else] = ACTIONS(784), - [anon_sym_for] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(784), - [anon_sym_open] = ACTIONS(784), - [anon_sym_module] = ACTIONS(784), - [anon_sym_static] = ACTIONS(784), - [anon_sym_package] = ACTIONS(784), - [anon_sym_import] = ACTIONS(784), - [anon_sym_enum] = ACTIONS(784), - [anon_sym_public] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_abstract] = ACTIONS(784), - [anon_sym_final] = ACTIONS(784), - [anon_sym_strictfp] = ACTIONS(784), - [anon_sym_native] = ACTIONS(784), - [anon_sym_transient] = ACTIONS(784), - [anon_sym_volatile] = ACTIONS(784), - [anon_sym_sealed] = ACTIONS(784), - [anon_sym_non_DASHsealed] = ACTIONS(782), - [anon_sym_record] = ACTIONS(784), - [anon_sym_ATinterface] = ACTIONS(782), - [anon_sym_interface] = ACTIONS(784), - [anon_sym_byte] = ACTIONS(784), - [anon_sym_short] = ACTIONS(784), - [anon_sym_int] = ACTIONS(784), - [anon_sym_long] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_float] = ACTIONS(784), - [anon_sym_double] = ACTIONS(784), - [sym_boolean_type] = ACTIONS(784), - [sym_void_type] = ACTIONS(784), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(784), + [ts_builtin_sym_end] = ACTIONS(780), + [sym_identifier] = ACTIONS(782), + [sym_decimal_integer_literal] = ACTIONS(782), + [sym_hex_integer_literal] = ACTIONS(782), + [sym_octal_integer_literal] = ACTIONS(780), + [sym_binary_integer_literal] = ACTIONS(780), + [sym_decimal_floating_point_literal] = ACTIONS(780), + [sym_hex_floating_point_literal] = ACTIONS(782), + [sym_true] = ACTIONS(782), + [sym_false] = ACTIONS(782), + [sym_character_literal] = ACTIONS(780), + [sym_string_literal] = ACTIONS(782), + [sym_text_block] = ACTIONS(780), + [sym_null_literal] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_final] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_new] = ACTIONS(782), + [anon_sym_class] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_case] = ACTIONS(782), + [anon_sym_default] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_assert] = ACTIONS(782), + [anon_sym_do] = ACTIONS(782), + [anon_sym_while] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_continue] = ACTIONS(782), + [anon_sym_return] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(782), + [anon_sym_synchronized] = ACTIONS(782), + [anon_sym_throw] = ACTIONS(782), + [anon_sym_try] = ACTIONS(782), + [anon_sym_if] = ACTIONS(782), + [anon_sym_else] = ACTIONS(782), + [anon_sym_for] = ACTIONS(782), + [anon_sym_AT] = ACTIONS(782), + [anon_sym_open] = ACTIONS(782), + [anon_sym_module] = ACTIONS(782), + [anon_sym_static] = ACTIONS(782), + [anon_sym_package] = ACTIONS(782), + [anon_sym_import] = ACTIONS(782), + [anon_sym_enum] = ACTIONS(782), + [anon_sym_public] = ACTIONS(782), + [anon_sym_protected] = ACTIONS(782), + [anon_sym_private] = ACTIONS(782), + [anon_sym_abstract] = ACTIONS(782), + [anon_sym_strictfp] = ACTIONS(782), + [anon_sym_native] = ACTIONS(782), + [anon_sym_transient] = ACTIONS(782), + [anon_sym_volatile] = ACTIONS(782), + [anon_sym_sealed] = ACTIONS(782), + [anon_sym_non_DASHsealed] = ACTIONS(780), + [anon_sym_record] = ACTIONS(782), + [anon_sym_ATinterface] = ACTIONS(780), + [anon_sym_interface] = ACTIONS(782), + [anon_sym_byte] = ACTIONS(782), + [anon_sym_short] = ACTIONS(782), + [anon_sym_int] = ACTIONS(782), + [anon_sym_long] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_float] = ACTIONS(782), + [anon_sym_double] = ACTIONS(782), + [sym_boolean_type] = ACTIONS(782), + [sym_void_type] = ACTIONS(782), + [sym_this] = ACTIONS(782), + [sym_super] = ACTIONS(782), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(786), - [sym_identifier] = ACTIONS(788), - [sym_decimal_integer_literal] = ACTIONS(788), - [sym_hex_integer_literal] = ACTIONS(788), - [sym_octal_integer_literal] = ACTIONS(786), - [sym_binary_integer_literal] = ACTIONS(786), - [sym_decimal_floating_point_literal] = ACTIONS(786), - [sym_hex_floating_point_literal] = ACTIONS(788), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_character_literal] = ACTIONS(786), - [sym_string_literal] = ACTIONS(788), - [sym_text_block] = ACTIONS(786), - [sym_null_literal] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_DASH_DASH] = ACTIONS(786), - [anon_sym_new] = ACTIONS(788), - [anon_sym_class] = ACTIONS(788), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(786), - [anon_sym_RBRACE] = ACTIONS(786), - [anon_sym_case] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_assert] = ACTIONS(788), - [anon_sym_do] = ACTIONS(788), - [anon_sym_while] = ACTIONS(788), - [anon_sym_break] = ACTIONS(788), - [anon_sym_continue] = ACTIONS(788), - [anon_sym_return] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(788), - [anon_sym_synchronized] = ACTIONS(788), - [anon_sym_throw] = ACTIONS(788), - [anon_sym_try] = ACTIONS(788), - [anon_sym_if] = ACTIONS(788), - [anon_sym_else] = ACTIONS(788), - [anon_sym_for] = ACTIONS(788), - [anon_sym_AT] = ACTIONS(788), - [anon_sym_open] = ACTIONS(788), - [anon_sym_module] = ACTIONS(788), - [anon_sym_static] = ACTIONS(788), - [anon_sym_package] = ACTIONS(788), - [anon_sym_import] = ACTIONS(788), - [anon_sym_enum] = ACTIONS(788), - [anon_sym_public] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_abstract] = ACTIONS(788), - [anon_sym_final] = ACTIONS(788), - [anon_sym_strictfp] = ACTIONS(788), - [anon_sym_native] = ACTIONS(788), - [anon_sym_transient] = ACTIONS(788), - [anon_sym_volatile] = ACTIONS(788), - [anon_sym_sealed] = ACTIONS(788), - [anon_sym_non_DASHsealed] = ACTIONS(786), - [anon_sym_record] = ACTIONS(788), - [anon_sym_ATinterface] = ACTIONS(786), - [anon_sym_interface] = ACTIONS(788), - [anon_sym_byte] = ACTIONS(788), - [anon_sym_short] = ACTIONS(788), - [anon_sym_int] = ACTIONS(788), - [anon_sym_long] = ACTIONS(788), - [anon_sym_char] = ACTIONS(788), - [anon_sym_float] = ACTIONS(788), - [anon_sym_double] = ACTIONS(788), - [sym_boolean_type] = ACTIONS(788), - [sym_void_type] = ACTIONS(788), - [sym_this] = ACTIONS(788), - [sym_super] = ACTIONS(788), + [ts_builtin_sym_end] = ACTIONS(784), + [sym_identifier] = ACTIONS(786), + [sym_decimal_integer_literal] = ACTIONS(786), + [sym_hex_integer_literal] = ACTIONS(786), + [sym_octal_integer_literal] = ACTIONS(784), + [sym_binary_integer_literal] = ACTIONS(784), + [sym_decimal_floating_point_literal] = ACTIONS(784), + [sym_hex_floating_point_literal] = ACTIONS(786), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_character_literal] = ACTIONS(784), + [sym_string_literal] = ACTIONS(786), + [sym_text_block] = ACTIONS(784), + [sym_null_literal] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_final] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(784), + [anon_sym_TILDE] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_new] = ACTIONS(786), + [anon_sym_class] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_case] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_assert] = ACTIONS(786), + [anon_sym_do] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [anon_sym_break] = ACTIONS(786), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_return] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_synchronized] = ACTIONS(786), + [anon_sym_throw] = ACTIONS(786), + [anon_sym_try] = ACTIONS(786), + [anon_sym_if] = ACTIONS(786), + [anon_sym_else] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(786), + [anon_sym_open] = ACTIONS(786), + [anon_sym_module] = ACTIONS(786), + [anon_sym_static] = ACTIONS(786), + [anon_sym_package] = ACTIONS(786), + [anon_sym_import] = ACTIONS(786), + [anon_sym_enum] = ACTIONS(786), + [anon_sym_public] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_abstract] = ACTIONS(786), + [anon_sym_strictfp] = ACTIONS(786), + [anon_sym_native] = ACTIONS(786), + [anon_sym_transient] = ACTIONS(786), + [anon_sym_volatile] = ACTIONS(786), + [anon_sym_sealed] = ACTIONS(786), + [anon_sym_non_DASHsealed] = ACTIONS(784), + [anon_sym_record] = ACTIONS(786), + [anon_sym_ATinterface] = ACTIONS(784), + [anon_sym_interface] = ACTIONS(786), + [anon_sym_byte] = ACTIONS(786), + [anon_sym_short] = ACTIONS(786), + [anon_sym_int] = ACTIONS(786), + [anon_sym_long] = ACTIONS(786), + [anon_sym_char] = ACTIONS(786), + [anon_sym_float] = ACTIONS(786), + [anon_sym_double] = ACTIONS(786), + [sym_boolean_type] = ACTIONS(786), + [sym_void_type] = ACTIONS(786), + [sym_this] = ACTIONS(786), + [sym_super] = ACTIONS(786), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(521), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym_block] = STATE(502), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(788), + [sym_identifier] = ACTIONS(790), + [sym_decimal_integer_literal] = ACTIONS(790), + [sym_hex_integer_literal] = ACTIONS(790), + [sym_octal_integer_literal] = ACTIONS(788), + [sym_binary_integer_literal] = ACTIONS(788), + [sym_decimal_floating_point_literal] = ACTIONS(788), + [sym_hex_floating_point_literal] = ACTIONS(790), + [sym_true] = ACTIONS(790), + [sym_false] = ACTIONS(790), + [sym_character_literal] = ACTIONS(788), + [sym_string_literal] = ACTIONS(790), + [sym_text_block] = ACTIONS(788), + [sym_null_literal] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_final] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [anon_sym_PLUS_PLUS] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(788), + [anon_sym_new] = ACTIONS(790), + [anon_sym_class] = ACTIONS(790), + [anon_sym_switch] = ACTIONS(790), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_case] = ACTIONS(790), + [anon_sym_default] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(788), + [anon_sym_assert] = ACTIONS(790), + [anon_sym_do] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [anon_sym_break] = ACTIONS(790), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_return] = ACTIONS(790), + [anon_sym_yield] = ACTIONS(790), + [anon_sym_synchronized] = ACTIONS(790), + [anon_sym_throw] = ACTIONS(790), + [anon_sym_try] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_else] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_AT] = ACTIONS(790), + [anon_sym_open] = ACTIONS(790), + [anon_sym_module] = ACTIONS(790), + [anon_sym_static] = ACTIONS(790), + [anon_sym_package] = ACTIONS(790), + [anon_sym_import] = ACTIONS(790), + [anon_sym_enum] = ACTIONS(790), + [anon_sym_public] = ACTIONS(790), + [anon_sym_protected] = ACTIONS(790), + [anon_sym_private] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(790), + [anon_sym_strictfp] = ACTIONS(790), + [anon_sym_native] = ACTIONS(790), + [anon_sym_transient] = ACTIONS(790), + [anon_sym_volatile] = ACTIONS(790), + [anon_sym_sealed] = ACTIONS(790), + [anon_sym_non_DASHsealed] = ACTIONS(788), + [anon_sym_record] = ACTIONS(790), + [anon_sym_ATinterface] = ACTIONS(788), + [anon_sym_interface] = ACTIONS(790), + [anon_sym_byte] = ACTIONS(790), + [anon_sym_short] = ACTIONS(790), + [anon_sym_int] = ACTIONS(790), + [anon_sym_long] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [anon_sym_float] = ACTIONS(790), + [anon_sym_double] = ACTIONS(790), + [sym_boolean_type] = ACTIONS(790), + [sym_void_type] = ACTIONS(790), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(790), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(792), + [sym_identifier] = ACTIONS(794), + [sym_decimal_integer_literal] = ACTIONS(794), + [sym_hex_integer_literal] = ACTIONS(794), + [sym_octal_integer_literal] = ACTIONS(792), + [sym_binary_integer_literal] = ACTIONS(792), + [sym_decimal_floating_point_literal] = ACTIONS(792), + [sym_hex_floating_point_literal] = ACTIONS(794), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_character_literal] = ACTIONS(792), + [sym_string_literal] = ACTIONS(794), + [sym_text_block] = ACTIONS(792), + [sym_null_literal] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_final] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_new] = ACTIONS(794), + [anon_sym_class] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_case] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_assert] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_yield] = ACTIONS(794), + [anon_sym_synchronized] = ACTIONS(794), + [anon_sym_throw] = ACTIONS(794), + [anon_sym_try] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_open] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_static] = ACTIONS(794), + [anon_sym_package] = ACTIONS(794), + [anon_sym_import] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_abstract] = ACTIONS(794), + [anon_sym_strictfp] = ACTIONS(794), + [anon_sym_native] = ACTIONS(794), + [anon_sym_transient] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(794), + [anon_sym_sealed] = ACTIONS(794), + [anon_sym_non_DASHsealed] = ACTIONS(792), + [anon_sym_record] = ACTIONS(794), + [anon_sym_ATinterface] = ACTIONS(792), + [anon_sym_interface] = ACTIONS(794), + [anon_sym_byte] = ACTIONS(794), + [anon_sym_short] = ACTIONS(794), + [anon_sym_int] = ACTIONS(794), + [anon_sym_long] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_float] = ACTIONS(794), + [anon_sym_double] = ACTIONS(794), + [sym_boolean_type] = ACTIONS(794), + [sym_void_type] = ACTIONS(794), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(794), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [216] = { + [ts_builtin_sym_end] = ACTIONS(796), + [sym_identifier] = ACTIONS(798), + [sym_decimal_integer_literal] = ACTIONS(798), + [sym_hex_integer_literal] = ACTIONS(798), + [sym_octal_integer_literal] = ACTIONS(796), + [sym_binary_integer_literal] = ACTIONS(796), + [sym_decimal_floating_point_literal] = ACTIONS(796), + [sym_hex_floating_point_literal] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_character_literal] = ACTIONS(796), + [sym_string_literal] = ACTIONS(798), + [sym_text_block] = ACTIONS(796), + [sym_null_literal] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_final] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(796), + [anon_sym_TILDE] = ACTIONS(796), + [anon_sym_PLUS_PLUS] = ACTIONS(796), + [anon_sym_DASH_DASH] = ACTIONS(796), + [anon_sym_new] = ACTIONS(798), + [anon_sym_class] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_assert] = ACTIONS(798), + [anon_sym_do] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_yield] = ACTIONS(798), + [anon_sym_synchronized] = ACTIONS(798), + [anon_sym_throw] = ACTIONS(798), + [anon_sym_try] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_else] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(798), + [anon_sym_open] = ACTIONS(798), + [anon_sym_module] = ACTIONS(798), + [anon_sym_static] = ACTIONS(798), + [anon_sym_package] = ACTIONS(798), + [anon_sym_import] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(798), + [anon_sym_public] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_abstract] = ACTIONS(798), + [anon_sym_strictfp] = ACTIONS(798), + [anon_sym_native] = ACTIONS(798), + [anon_sym_transient] = ACTIONS(798), + [anon_sym_volatile] = ACTIONS(798), + [anon_sym_sealed] = ACTIONS(798), + [anon_sym_non_DASHsealed] = ACTIONS(796), + [anon_sym_record] = ACTIONS(798), + [anon_sym_ATinterface] = ACTIONS(796), + [anon_sym_interface] = ACTIONS(798), + [anon_sym_byte] = ACTIONS(798), + [anon_sym_short] = ACTIONS(798), + [anon_sym_int] = ACTIONS(798), + [anon_sym_long] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_float] = ACTIONS(798), + [anon_sym_double] = ACTIONS(798), + [sym_boolean_type] = ACTIONS(798), + [sym_void_type] = ACTIONS(798), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [217] = { + [ts_builtin_sym_end] = ACTIONS(800), + [sym_identifier] = ACTIONS(802), + [sym_decimal_integer_literal] = ACTIONS(802), + [sym_hex_integer_literal] = ACTIONS(802), + [sym_octal_integer_literal] = ACTIONS(800), + [sym_binary_integer_literal] = ACTIONS(800), + [sym_decimal_floating_point_literal] = ACTIONS(800), + [sym_hex_floating_point_literal] = ACTIONS(802), + [sym_true] = ACTIONS(802), + [sym_false] = ACTIONS(802), + [sym_character_literal] = ACTIONS(800), + [sym_string_literal] = ACTIONS(802), + [sym_text_block] = ACTIONS(800), + [sym_null_literal] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(802), + [anon_sym_final] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(800), + [anon_sym_DASH_DASH] = ACTIONS(800), + [anon_sym_new] = ACTIONS(802), + [anon_sym_class] = ACTIONS(802), + [anon_sym_switch] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_case] = ACTIONS(802), + [anon_sym_default] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_assert] = ACTIONS(802), + [anon_sym_do] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [anon_sym_break] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_return] = ACTIONS(802), + [anon_sym_yield] = ACTIONS(802), + [anon_sym_synchronized] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_try] = ACTIONS(802), + [anon_sym_if] = ACTIONS(802), + [anon_sym_else] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_AT] = ACTIONS(802), + [anon_sym_open] = ACTIONS(802), + [anon_sym_module] = ACTIONS(802), + [anon_sym_static] = ACTIONS(802), + [anon_sym_package] = ACTIONS(802), + [anon_sym_import] = ACTIONS(802), + [anon_sym_enum] = ACTIONS(802), + [anon_sym_public] = ACTIONS(802), + [anon_sym_protected] = ACTIONS(802), + [anon_sym_private] = ACTIONS(802), + [anon_sym_abstract] = ACTIONS(802), + [anon_sym_strictfp] = ACTIONS(802), + [anon_sym_native] = ACTIONS(802), + [anon_sym_transient] = ACTIONS(802), + [anon_sym_volatile] = ACTIONS(802), + [anon_sym_sealed] = ACTIONS(802), + [anon_sym_non_DASHsealed] = ACTIONS(800), + [anon_sym_record] = ACTIONS(802), + [anon_sym_ATinterface] = ACTIONS(800), + [anon_sym_interface] = ACTIONS(802), + [anon_sym_byte] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [anon_sym_int] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_char] = ACTIONS(802), + [anon_sym_float] = ACTIONS(802), + [anon_sym_double] = ACTIONS(802), + [sym_boolean_type] = ACTIONS(802), + [sym_void_type] = ACTIONS(802), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(802), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym_array_initializer] = STATE(1110), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31092,13 +30199,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -31117,1362 +30224,1286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(790), - [sym_identifier] = ACTIONS(792), - [sym_decimal_integer_literal] = ACTIONS(792), - [sym_hex_integer_literal] = ACTIONS(792), - [sym_octal_integer_literal] = ACTIONS(790), - [sym_binary_integer_literal] = ACTIONS(790), - [sym_decimal_floating_point_literal] = ACTIONS(790), - [sym_hex_floating_point_literal] = ACTIONS(792), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_character_literal] = ACTIONS(790), - [sym_string_literal] = ACTIONS(792), - [sym_text_block] = ACTIONS(790), - [sym_null_literal] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_BANG] = ACTIONS(790), - [anon_sym_TILDE] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_new] = ACTIONS(792), - [anon_sym_class] = ACTIONS(792), - [anon_sym_switch] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(790), - [anon_sym_RBRACE] = ACTIONS(790), - [anon_sym_case] = ACTIONS(792), - [anon_sym_default] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_assert] = ACTIONS(792), - [anon_sym_do] = ACTIONS(792), - [anon_sym_while] = ACTIONS(792), - [anon_sym_break] = ACTIONS(792), - [anon_sym_continue] = ACTIONS(792), - [anon_sym_return] = ACTIONS(792), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_synchronized] = ACTIONS(792), - [anon_sym_throw] = ACTIONS(792), - [anon_sym_try] = ACTIONS(792), - [anon_sym_if] = ACTIONS(792), - [anon_sym_else] = ACTIONS(792), - [anon_sym_for] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(792), - [anon_sym_open] = ACTIONS(792), - [anon_sym_module] = ACTIONS(792), - [anon_sym_static] = ACTIONS(792), - [anon_sym_package] = ACTIONS(792), - [anon_sym_import] = ACTIONS(792), - [anon_sym_enum] = ACTIONS(792), - [anon_sym_public] = ACTIONS(792), - [anon_sym_protected] = ACTIONS(792), - [anon_sym_private] = ACTIONS(792), - [anon_sym_abstract] = ACTIONS(792), - [anon_sym_final] = ACTIONS(792), - [anon_sym_strictfp] = ACTIONS(792), - [anon_sym_native] = ACTIONS(792), - [anon_sym_transient] = ACTIONS(792), - [anon_sym_volatile] = ACTIONS(792), - [anon_sym_sealed] = ACTIONS(792), - [anon_sym_non_DASHsealed] = ACTIONS(790), - [anon_sym_record] = ACTIONS(792), - [anon_sym_ATinterface] = ACTIONS(790), - [anon_sym_interface] = ACTIONS(792), - [anon_sym_byte] = ACTIONS(792), - [anon_sym_short] = ACTIONS(792), - [anon_sym_int] = ACTIONS(792), - [anon_sym_long] = ACTIONS(792), - [anon_sym_char] = ACTIONS(792), - [anon_sym_float] = ACTIONS(792), - [anon_sym_double] = ACTIONS(792), - [sym_boolean_type] = ACTIONS(792), - [sym_void_type] = ACTIONS(792), - [sym_this] = ACTIONS(792), - [sym_super] = ACTIONS(792), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(794), - [sym_identifier] = ACTIONS(796), - [sym_decimal_integer_literal] = ACTIONS(796), - [sym_hex_integer_literal] = ACTIONS(796), - [sym_octal_integer_literal] = ACTIONS(794), - [sym_binary_integer_literal] = ACTIONS(794), - [sym_decimal_floating_point_literal] = ACTIONS(794), - [sym_hex_floating_point_literal] = ACTIONS(796), - [sym_true] = ACTIONS(796), - [sym_false] = ACTIONS(796), - [sym_character_literal] = ACTIONS(794), - [sym_string_literal] = ACTIONS(796), - [sym_text_block] = ACTIONS(794), - [sym_null_literal] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_new] = ACTIONS(796), - [anon_sym_class] = ACTIONS(796), - [anon_sym_switch] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_case] = ACTIONS(796), - [anon_sym_default] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_assert] = ACTIONS(796), - [anon_sym_do] = ACTIONS(796), - [anon_sym_while] = ACTIONS(796), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_return] = ACTIONS(796), - [anon_sym_yield] = ACTIONS(796), - [anon_sym_synchronized] = ACTIONS(796), - [anon_sym_throw] = ACTIONS(796), - [anon_sym_try] = ACTIONS(796), - [anon_sym_if] = ACTIONS(796), - [anon_sym_else] = ACTIONS(796), - [anon_sym_for] = ACTIONS(796), - [anon_sym_AT] = ACTIONS(796), - [anon_sym_open] = ACTIONS(796), - [anon_sym_module] = ACTIONS(796), - [anon_sym_static] = ACTIONS(796), - [anon_sym_package] = ACTIONS(796), - [anon_sym_import] = ACTIONS(796), - [anon_sym_enum] = ACTIONS(796), - [anon_sym_public] = ACTIONS(796), - [anon_sym_protected] = ACTIONS(796), - [anon_sym_private] = ACTIONS(796), - [anon_sym_abstract] = ACTIONS(796), - [anon_sym_final] = ACTIONS(796), - [anon_sym_strictfp] = ACTIONS(796), - [anon_sym_native] = ACTIONS(796), - [anon_sym_transient] = ACTIONS(796), - [anon_sym_volatile] = ACTIONS(796), - [anon_sym_sealed] = ACTIONS(796), - [anon_sym_non_DASHsealed] = ACTIONS(794), - [anon_sym_record] = ACTIONS(796), - [anon_sym_ATinterface] = ACTIONS(794), - [anon_sym_interface] = ACTIONS(796), - [anon_sym_byte] = ACTIONS(796), - [anon_sym_short] = ACTIONS(796), - [anon_sym_int] = ACTIONS(796), - [anon_sym_long] = ACTIONS(796), - [anon_sym_char] = ACTIONS(796), - [anon_sym_float] = ACTIONS(796), - [anon_sym_double] = ACTIONS(796), - [sym_boolean_type] = ACTIONS(796), - [sym_void_type] = ACTIONS(796), - [sym_this] = ACTIONS(796), - [sym_super] = ACTIONS(796), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(798), - [sym_identifier] = ACTIONS(800), - [sym_decimal_integer_literal] = ACTIONS(800), - [sym_hex_integer_literal] = ACTIONS(800), - [sym_octal_integer_literal] = ACTIONS(798), - [sym_binary_integer_literal] = ACTIONS(798), - [sym_decimal_floating_point_literal] = ACTIONS(798), - [sym_hex_floating_point_literal] = ACTIONS(800), - [sym_true] = ACTIONS(800), - [sym_false] = ACTIONS(800), - [sym_character_literal] = ACTIONS(798), - [sym_string_literal] = ACTIONS(800), - [sym_text_block] = ACTIONS(798), - [sym_null_literal] = ACTIONS(800), - [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_PLUS_PLUS] = ACTIONS(798), - [anon_sym_DASH_DASH] = ACTIONS(798), - [anon_sym_new] = ACTIONS(800), - [anon_sym_class] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_assert] = ACTIONS(800), - [anon_sym_do] = ACTIONS(800), - [anon_sym_while] = ACTIONS(800), - [anon_sym_break] = ACTIONS(800), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_return] = ACTIONS(800), - [anon_sym_yield] = ACTIONS(800), - [anon_sym_synchronized] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(800), - [anon_sym_try] = ACTIONS(800), - [anon_sym_if] = ACTIONS(800), - [anon_sym_else] = ACTIONS(800), - [anon_sym_for] = ACTIONS(800), - [anon_sym_AT] = ACTIONS(800), - [anon_sym_open] = ACTIONS(800), - [anon_sym_module] = ACTIONS(800), - [anon_sym_static] = ACTIONS(800), - [anon_sym_package] = ACTIONS(800), - [anon_sym_import] = ACTIONS(800), - [anon_sym_enum] = ACTIONS(800), - [anon_sym_public] = ACTIONS(800), - [anon_sym_protected] = ACTIONS(800), - [anon_sym_private] = ACTIONS(800), - [anon_sym_abstract] = ACTIONS(800), - [anon_sym_final] = ACTIONS(800), - [anon_sym_strictfp] = ACTIONS(800), - [anon_sym_native] = ACTIONS(800), - [anon_sym_transient] = ACTIONS(800), - [anon_sym_volatile] = ACTIONS(800), - [anon_sym_sealed] = ACTIONS(800), - [anon_sym_non_DASHsealed] = ACTIONS(798), - [anon_sym_record] = ACTIONS(800), - [anon_sym_ATinterface] = ACTIONS(798), - [anon_sym_interface] = ACTIONS(800), - [anon_sym_byte] = ACTIONS(800), - [anon_sym_short] = ACTIONS(800), - [anon_sym_int] = ACTIONS(800), - [anon_sym_long] = ACTIONS(800), - [anon_sym_char] = ACTIONS(800), - [anon_sym_float] = ACTIONS(800), - [anon_sym_double] = ACTIONS(800), - [sym_boolean_type] = ACTIONS(800), - [sym_void_type] = ACTIONS(800), - [sym_this] = ACTIONS(800), - [sym_super] = ACTIONS(800), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(802), - [sym_identifier] = ACTIONS(804), - [sym_decimal_integer_literal] = ACTIONS(804), - [sym_hex_integer_literal] = ACTIONS(804), - [sym_octal_integer_literal] = ACTIONS(802), - [sym_binary_integer_literal] = ACTIONS(802), - [sym_decimal_floating_point_literal] = ACTIONS(802), - [sym_hex_floating_point_literal] = ACTIONS(804), - [sym_true] = ACTIONS(804), - [sym_false] = ACTIONS(804), - [sym_character_literal] = ACTIONS(802), - [sym_string_literal] = ACTIONS(804), - [sym_text_block] = ACTIONS(802), - [sym_null_literal] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(802), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_new] = ACTIONS(804), - [anon_sym_class] = ACTIONS(804), - [anon_sym_switch] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_case] = ACTIONS(804), - [anon_sym_default] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_assert] = ACTIONS(804), - [anon_sym_do] = ACTIONS(804), - [anon_sym_while] = ACTIONS(804), - [anon_sym_break] = ACTIONS(804), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_return] = ACTIONS(804), - [anon_sym_yield] = ACTIONS(804), - [anon_sym_synchronized] = ACTIONS(804), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_try] = ACTIONS(804), - [anon_sym_if] = ACTIONS(804), - [anon_sym_else] = ACTIONS(804), - [anon_sym_for] = ACTIONS(804), - [anon_sym_AT] = ACTIONS(804), - [anon_sym_open] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_static] = ACTIONS(804), - [anon_sym_package] = ACTIONS(804), - [anon_sym_import] = ACTIONS(804), - [anon_sym_enum] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_abstract] = ACTIONS(804), - [anon_sym_final] = ACTIONS(804), - [anon_sym_strictfp] = ACTIONS(804), - [anon_sym_native] = ACTIONS(804), - [anon_sym_transient] = ACTIONS(804), - [anon_sym_volatile] = ACTIONS(804), - [anon_sym_sealed] = ACTIONS(804), - [anon_sym_non_DASHsealed] = ACTIONS(802), - [anon_sym_record] = ACTIONS(804), - [anon_sym_ATinterface] = ACTIONS(802), - [anon_sym_interface] = ACTIONS(804), - [anon_sym_byte] = ACTIONS(804), - [anon_sym_short] = ACTIONS(804), - [anon_sym_int] = ACTIONS(804), - [anon_sym_long] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_float] = ACTIONS(804), - [anon_sym_double] = ACTIONS(804), - [sym_boolean_type] = ACTIONS(804), - [sym_void_type] = ACTIONS(804), - [sym_this] = ACTIONS(804), - [sym_super] = ACTIONS(804), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [219] = { - [ts_builtin_sym_end] = ACTIONS(806), - [sym_identifier] = ACTIONS(808), - [sym_decimal_integer_literal] = ACTIONS(808), - [sym_hex_integer_literal] = ACTIONS(808), - [sym_octal_integer_literal] = ACTIONS(806), - [sym_binary_integer_literal] = ACTIONS(806), - [sym_decimal_floating_point_literal] = ACTIONS(806), - [sym_hex_floating_point_literal] = ACTIONS(808), - [sym_true] = ACTIONS(808), - [sym_false] = ACTIONS(808), - [sym_character_literal] = ACTIONS(806), - [sym_string_literal] = ACTIONS(808), - [sym_text_block] = ACTIONS(806), - [sym_null_literal] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_BANG] = ACTIONS(806), - [anon_sym_TILDE] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_DASH_DASH] = ACTIONS(806), - [anon_sym_new] = ACTIONS(808), - [anon_sym_class] = ACTIONS(808), - [anon_sym_switch] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_case] = ACTIONS(808), - [anon_sym_default] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_assert] = ACTIONS(808), - [anon_sym_do] = ACTIONS(808), - [anon_sym_while] = ACTIONS(808), - [anon_sym_break] = ACTIONS(808), - [anon_sym_continue] = ACTIONS(808), - [anon_sym_return] = ACTIONS(808), - [anon_sym_yield] = ACTIONS(808), - [anon_sym_synchronized] = ACTIONS(808), - [anon_sym_throw] = ACTIONS(808), - [anon_sym_try] = ACTIONS(808), - [anon_sym_if] = ACTIONS(808), - [anon_sym_else] = ACTIONS(808), - [anon_sym_for] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(808), - [anon_sym_open] = ACTIONS(808), - [anon_sym_module] = ACTIONS(808), - [anon_sym_static] = ACTIONS(808), - [anon_sym_package] = ACTIONS(808), - [anon_sym_import] = ACTIONS(808), - [anon_sym_enum] = ACTIONS(808), - [anon_sym_public] = ACTIONS(808), - [anon_sym_protected] = ACTIONS(808), - [anon_sym_private] = ACTIONS(808), - [anon_sym_abstract] = ACTIONS(808), - [anon_sym_final] = ACTIONS(808), - [anon_sym_strictfp] = ACTIONS(808), - [anon_sym_native] = ACTIONS(808), - [anon_sym_transient] = ACTIONS(808), - [anon_sym_volatile] = ACTIONS(808), - [anon_sym_sealed] = ACTIONS(808), - [anon_sym_non_DASHsealed] = ACTIONS(806), - [anon_sym_record] = ACTIONS(808), - [anon_sym_ATinterface] = ACTIONS(806), - [anon_sym_interface] = ACTIONS(808), - [anon_sym_byte] = ACTIONS(808), - [anon_sym_short] = ACTIONS(808), - [anon_sym_int] = ACTIONS(808), - [anon_sym_long] = ACTIONS(808), - [anon_sym_char] = ACTIONS(808), - [anon_sym_float] = ACTIONS(808), - [anon_sym_double] = ACTIONS(808), - [sym_boolean_type] = ACTIONS(808), - [sym_void_type] = ACTIONS(808), - [sym_this] = ACTIONS(808), - [sym_super] = ACTIONS(808), + [ts_builtin_sym_end] = ACTIONS(804), + [sym_identifier] = ACTIONS(806), + [sym_decimal_integer_literal] = ACTIONS(806), + [sym_hex_integer_literal] = ACTIONS(806), + [sym_octal_integer_literal] = ACTIONS(804), + [sym_binary_integer_literal] = ACTIONS(804), + [sym_decimal_floating_point_literal] = ACTIONS(804), + [sym_hex_floating_point_literal] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_character_literal] = ACTIONS(804), + [sym_string_literal] = ACTIONS(806), + [sym_text_block] = ACTIONS(804), + [sym_null_literal] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS_PLUS] = ACTIONS(804), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_new] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_case] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_throw] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_open] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_import] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_strictfp] = ACTIONS(806), + [anon_sym_native] = ACTIONS(806), + [anon_sym_transient] = ACTIONS(806), + [anon_sym_volatile] = ACTIONS(806), + [anon_sym_sealed] = ACTIONS(806), + [anon_sym_non_DASHsealed] = ACTIONS(804), + [anon_sym_record] = ACTIONS(806), + [anon_sym_ATinterface] = ACTIONS(804), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_byte] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [sym_boolean_type] = ACTIONS(806), + [sym_void_type] = ACTIONS(806), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(810), - [sym_identifier] = ACTIONS(812), - [sym_decimal_integer_literal] = ACTIONS(812), - [sym_hex_integer_literal] = ACTIONS(812), - [sym_octal_integer_literal] = ACTIONS(810), - [sym_binary_integer_literal] = ACTIONS(810), - [sym_decimal_floating_point_literal] = ACTIONS(810), - [sym_hex_floating_point_literal] = ACTIONS(812), - [sym_true] = ACTIONS(812), - [sym_false] = ACTIONS(812), - [sym_character_literal] = ACTIONS(810), - [sym_string_literal] = ACTIONS(812), - [sym_text_block] = ACTIONS(810), - [sym_null_literal] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_PLUS] = ACTIONS(812), - [anon_sym_DASH] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), - [anon_sym_class] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_case] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_assert] = ACTIONS(812), - [anon_sym_do] = ACTIONS(812), - [anon_sym_while] = ACTIONS(812), - [anon_sym_break] = ACTIONS(812), - [anon_sym_continue] = ACTIONS(812), - [anon_sym_return] = ACTIONS(812), - [anon_sym_yield] = ACTIONS(812), - [anon_sym_synchronized] = ACTIONS(812), - [anon_sym_throw] = ACTIONS(812), - [anon_sym_try] = ACTIONS(812), - [anon_sym_if] = ACTIONS(812), - [anon_sym_else] = ACTIONS(812), - [anon_sym_for] = ACTIONS(812), - [anon_sym_AT] = ACTIONS(812), - [anon_sym_open] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_static] = ACTIONS(812), - [anon_sym_package] = ACTIONS(812), - [anon_sym_import] = ACTIONS(812), - [anon_sym_enum] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_abstract] = ACTIONS(812), - [anon_sym_final] = ACTIONS(812), - [anon_sym_strictfp] = ACTIONS(812), - [anon_sym_native] = ACTIONS(812), - [anon_sym_transient] = ACTIONS(812), - [anon_sym_volatile] = ACTIONS(812), - [anon_sym_sealed] = ACTIONS(812), - [anon_sym_non_DASHsealed] = ACTIONS(810), - [anon_sym_record] = ACTIONS(812), - [anon_sym_ATinterface] = ACTIONS(810), - [anon_sym_interface] = ACTIONS(812), - [anon_sym_byte] = ACTIONS(812), - [anon_sym_short] = ACTIONS(812), - [anon_sym_int] = ACTIONS(812), - [anon_sym_long] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_float] = ACTIONS(812), - [anon_sym_double] = ACTIONS(812), - [sym_boolean_type] = ACTIONS(812), - [sym_void_type] = ACTIONS(812), - [sym_this] = ACTIONS(812), - [sym_super] = ACTIONS(812), + [ts_builtin_sym_end] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [sym_decimal_integer_literal] = ACTIONS(810), + [sym_hex_integer_literal] = ACTIONS(810), + [sym_octal_integer_literal] = ACTIONS(808), + [sym_binary_integer_literal] = ACTIONS(808), + [sym_decimal_floating_point_literal] = ACTIONS(808), + [sym_hex_floating_point_literal] = ACTIONS(810), + [sym_true] = ACTIONS(810), + [sym_false] = ACTIONS(810), + [sym_character_literal] = ACTIONS(808), + [sym_string_literal] = ACTIONS(810), + [sym_text_block] = ACTIONS(808), + [sym_null_literal] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_final] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_new] = ACTIONS(810), + [anon_sym_class] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_case] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_assert] = ACTIONS(810), + [anon_sym_do] = ACTIONS(810), + [anon_sym_while] = ACTIONS(810), + [anon_sym_break] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_return] = ACTIONS(810), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_synchronized] = ACTIONS(810), + [anon_sym_throw] = ACTIONS(810), + [anon_sym_try] = ACTIONS(810), + [anon_sym_if] = ACTIONS(810), + [anon_sym_else] = ACTIONS(810), + [anon_sym_for] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(810), + [anon_sym_open] = ACTIONS(810), + [anon_sym_module] = ACTIONS(810), + [anon_sym_static] = ACTIONS(810), + [anon_sym_package] = ACTIONS(810), + [anon_sym_import] = ACTIONS(810), + [anon_sym_enum] = ACTIONS(810), + [anon_sym_public] = ACTIONS(810), + [anon_sym_protected] = ACTIONS(810), + [anon_sym_private] = ACTIONS(810), + [anon_sym_abstract] = ACTIONS(810), + [anon_sym_strictfp] = ACTIONS(810), + [anon_sym_native] = ACTIONS(810), + [anon_sym_transient] = ACTIONS(810), + [anon_sym_volatile] = ACTIONS(810), + [anon_sym_sealed] = ACTIONS(810), + [anon_sym_non_DASHsealed] = ACTIONS(808), + [anon_sym_record] = ACTIONS(810), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(810), + [anon_sym_byte] = ACTIONS(810), + [anon_sym_short] = ACTIONS(810), + [anon_sym_int] = ACTIONS(810), + [anon_sym_long] = ACTIONS(810), + [anon_sym_char] = ACTIONS(810), + [anon_sym_float] = ACTIONS(810), + [anon_sym_double] = ACTIONS(810), + [sym_boolean_type] = ACTIONS(810), + [sym_void_type] = ACTIONS(810), + [sym_this] = ACTIONS(810), + [sym_super] = ACTIONS(810), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(814), - [sym_identifier] = ACTIONS(816), - [sym_decimal_integer_literal] = ACTIONS(816), - [sym_hex_integer_literal] = ACTIONS(816), - [sym_octal_integer_literal] = ACTIONS(814), - [sym_binary_integer_literal] = ACTIONS(814), - [sym_decimal_floating_point_literal] = ACTIONS(814), - [sym_hex_floating_point_literal] = ACTIONS(816), - [sym_true] = ACTIONS(816), - [sym_false] = ACTIONS(816), - [sym_character_literal] = ACTIONS(814), - [sym_string_literal] = ACTIONS(816), - [sym_text_block] = ACTIONS(814), - [sym_null_literal] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(816), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(814), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_new] = ACTIONS(816), - [anon_sym_class] = ACTIONS(816), - [anon_sym_switch] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_case] = ACTIONS(816), - [anon_sym_default] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_assert] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(816), - [anon_sym_synchronized] = ACTIONS(816), - [anon_sym_throw] = ACTIONS(816), - [anon_sym_try] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_else] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(816), - [anon_sym_open] = ACTIONS(816), - [anon_sym_module] = ACTIONS(816), - [anon_sym_static] = ACTIONS(816), - [anon_sym_package] = ACTIONS(816), - [anon_sym_import] = ACTIONS(816), - [anon_sym_enum] = ACTIONS(816), - [anon_sym_public] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(816), - [anon_sym_final] = ACTIONS(816), - [anon_sym_strictfp] = ACTIONS(816), - [anon_sym_native] = ACTIONS(816), - [anon_sym_transient] = ACTIONS(816), - [anon_sym_volatile] = ACTIONS(816), - [anon_sym_sealed] = ACTIONS(816), - [anon_sym_non_DASHsealed] = ACTIONS(814), - [anon_sym_record] = ACTIONS(816), - [anon_sym_ATinterface] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(816), - [anon_sym_byte] = ACTIONS(816), - [anon_sym_short] = ACTIONS(816), - [anon_sym_int] = ACTIONS(816), - [anon_sym_long] = ACTIONS(816), - [anon_sym_char] = ACTIONS(816), - [anon_sym_float] = ACTIONS(816), - [anon_sym_double] = ACTIONS(816), - [sym_boolean_type] = ACTIONS(816), - [sym_void_type] = ACTIONS(816), - [sym_this] = ACTIONS(816), - [sym_super] = ACTIONS(816), + [sym__literal] = STATE(461), + [sym_expression] = STATE(587), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym_block] = STATE(520), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(818), - [sym_identifier] = ACTIONS(820), - [sym_decimal_integer_literal] = ACTIONS(820), - [sym_hex_integer_literal] = ACTIONS(820), - [sym_octal_integer_literal] = ACTIONS(818), - [sym_binary_integer_literal] = ACTIONS(818), - [sym_decimal_floating_point_literal] = ACTIONS(818), - [sym_hex_floating_point_literal] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_character_literal] = ACTIONS(818), - [sym_string_literal] = ACTIONS(820), - [sym_text_block] = ACTIONS(818), - [sym_null_literal] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(818), - [anon_sym_TILDE] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_new] = ACTIONS(820), - [anon_sym_class] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(818), - [anon_sym_case] = ACTIONS(820), - [anon_sym_default] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_assert] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_synchronized] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_else] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_open] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_package] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_enum] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_final] = ACTIONS(820), - [anon_sym_strictfp] = ACTIONS(820), - [anon_sym_native] = ACTIONS(820), - [anon_sym_transient] = ACTIONS(820), - [anon_sym_volatile] = ACTIONS(820), - [anon_sym_sealed] = ACTIONS(820), - [anon_sym_non_DASHsealed] = ACTIONS(818), - [anon_sym_record] = ACTIONS(820), - [anon_sym_ATinterface] = ACTIONS(818), - [anon_sym_interface] = ACTIONS(820), - [anon_sym_byte] = ACTIONS(820), - [anon_sym_short] = ACTIONS(820), - [anon_sym_int] = ACTIONS(820), - [anon_sym_long] = ACTIONS(820), - [anon_sym_char] = ACTIONS(820), - [anon_sym_float] = ACTIONS(820), - [anon_sym_double] = ACTIONS(820), - [sym_boolean_type] = ACTIONS(820), - [sym_void_type] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), + [ts_builtin_sym_end] = ACTIONS(812), + [sym_identifier] = ACTIONS(814), + [sym_decimal_integer_literal] = ACTIONS(814), + [sym_hex_integer_literal] = ACTIONS(814), + [sym_octal_integer_literal] = ACTIONS(812), + [sym_binary_integer_literal] = ACTIONS(812), + [sym_decimal_floating_point_literal] = ACTIONS(812), + [sym_hex_floating_point_literal] = ACTIONS(814), + [sym_true] = ACTIONS(814), + [sym_false] = ACTIONS(814), + [sym_character_literal] = ACTIONS(812), + [sym_string_literal] = ACTIONS(814), + [sym_text_block] = ACTIONS(812), + [sym_null_literal] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_BANG] = ACTIONS(812), + [anon_sym_TILDE] = ACTIONS(812), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_assert] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_yield] = ACTIONS(814), + [anon_sym_synchronized] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_try] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_for] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_open] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_strictfp] = ACTIONS(814), + [anon_sym_native] = ACTIONS(814), + [anon_sym_transient] = ACTIONS(814), + [anon_sym_volatile] = ACTIONS(814), + [anon_sym_sealed] = ACTIONS(814), + [anon_sym_non_DASHsealed] = ACTIONS(812), + [anon_sym_record] = ACTIONS(814), + [anon_sym_ATinterface] = ACTIONS(812), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_byte] = ACTIONS(814), + [anon_sym_short] = ACTIONS(814), + [anon_sym_int] = ACTIONS(814), + [anon_sym_long] = ACTIONS(814), + [anon_sym_char] = ACTIONS(814), + [anon_sym_float] = ACTIONS(814), + [anon_sym_double] = ACTIONS(814), + [sym_boolean_type] = ACTIONS(814), + [sym_void_type] = ACTIONS(814), + [sym_this] = ACTIONS(814), + [sym_super] = ACTIONS(814), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_decimal_integer_literal] = ACTIONS(824), - [sym_hex_integer_literal] = ACTIONS(824), - [sym_octal_integer_literal] = ACTIONS(822), - [sym_binary_integer_literal] = ACTIONS(822), - [sym_decimal_floating_point_literal] = ACTIONS(822), - [sym_hex_floating_point_literal] = ACTIONS(824), - [sym_true] = ACTIONS(824), - [sym_false] = ACTIONS(824), - [sym_character_literal] = ACTIONS(822), - [sym_string_literal] = ACTIONS(824), - [sym_text_block] = ACTIONS(822), - [sym_null_literal] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_BANG] = ACTIONS(822), - [anon_sym_TILDE] = ACTIONS(822), - [anon_sym_PLUS_PLUS] = ACTIONS(822), - [anon_sym_DASH_DASH] = ACTIONS(822), - [anon_sym_new] = ACTIONS(824), - [anon_sym_class] = ACTIONS(824), - [anon_sym_switch] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_case] = ACTIONS(824), - [anon_sym_default] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_yield] = ACTIONS(824), - [anon_sym_synchronized] = ACTIONS(824), - [anon_sym_throw] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_else] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(824), - [anon_sym_open] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_static] = ACTIONS(824), - [anon_sym_package] = ACTIONS(824), - [anon_sym_import] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(824), - [anon_sym_public] = ACTIONS(824), - [anon_sym_protected] = ACTIONS(824), - [anon_sym_private] = ACTIONS(824), - [anon_sym_abstract] = ACTIONS(824), - [anon_sym_final] = ACTIONS(824), - [anon_sym_strictfp] = ACTIONS(824), - [anon_sym_native] = ACTIONS(824), - [anon_sym_transient] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(824), - [anon_sym_sealed] = ACTIONS(824), - [anon_sym_non_DASHsealed] = ACTIONS(822), - [anon_sym_record] = ACTIONS(824), - [anon_sym_ATinterface] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_byte] = ACTIONS(824), - [anon_sym_short] = ACTIONS(824), - [anon_sym_int] = ACTIONS(824), - [anon_sym_long] = ACTIONS(824), - [anon_sym_char] = ACTIONS(824), - [anon_sym_float] = ACTIONS(824), - [anon_sym_double] = ACTIONS(824), - [sym_boolean_type] = ACTIONS(824), - [sym_void_type] = ACTIONS(824), - [sym_this] = ACTIONS(824), - [sym_super] = ACTIONS(824), + [ts_builtin_sym_end] = ACTIONS(816), + [sym_identifier] = ACTIONS(818), + [sym_decimal_integer_literal] = ACTIONS(818), + [sym_hex_integer_literal] = ACTIONS(818), + [sym_octal_integer_literal] = ACTIONS(816), + [sym_binary_integer_literal] = ACTIONS(816), + [sym_decimal_floating_point_literal] = ACTIONS(816), + [sym_hex_floating_point_literal] = ACTIONS(818), + [sym_true] = ACTIONS(818), + [sym_false] = ACTIONS(818), + [sym_character_literal] = ACTIONS(816), + [sym_string_literal] = ACTIONS(818), + [sym_text_block] = ACTIONS(816), + [sym_null_literal] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_final] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(816), + [anon_sym_new] = ACTIONS(818), + [anon_sym_class] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_assert] = ACTIONS(818), + [anon_sym_do] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_synchronized] = ACTIONS(818), + [anon_sym_throw] = ACTIONS(818), + [anon_sym_try] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_else] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [anon_sym_open] = ACTIONS(818), + [anon_sym_module] = ACTIONS(818), + [anon_sym_static] = ACTIONS(818), + [anon_sym_package] = ACTIONS(818), + [anon_sym_import] = ACTIONS(818), + [anon_sym_enum] = ACTIONS(818), + [anon_sym_public] = ACTIONS(818), + [anon_sym_protected] = ACTIONS(818), + [anon_sym_private] = ACTIONS(818), + [anon_sym_abstract] = ACTIONS(818), + [anon_sym_strictfp] = ACTIONS(818), + [anon_sym_native] = ACTIONS(818), + [anon_sym_transient] = ACTIONS(818), + [anon_sym_volatile] = ACTIONS(818), + [anon_sym_sealed] = ACTIONS(818), + [anon_sym_non_DASHsealed] = ACTIONS(816), + [anon_sym_record] = ACTIONS(818), + [anon_sym_ATinterface] = ACTIONS(816), + [anon_sym_interface] = ACTIONS(818), + [anon_sym_byte] = ACTIONS(818), + [anon_sym_short] = ACTIONS(818), + [anon_sym_int] = ACTIONS(818), + [anon_sym_long] = ACTIONS(818), + [anon_sym_char] = ACTIONS(818), + [anon_sym_float] = ACTIONS(818), + [anon_sym_double] = ACTIONS(818), + [sym_boolean_type] = ACTIONS(818), + [sym_void_type] = ACTIONS(818), + [sym_this] = ACTIONS(818), + [sym_super] = ACTIONS(818), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(826), - [sym_identifier] = ACTIONS(828), - [sym_decimal_integer_literal] = ACTIONS(828), - [sym_hex_integer_literal] = ACTIONS(828), - [sym_octal_integer_literal] = ACTIONS(826), - [sym_binary_integer_literal] = ACTIONS(826), - [sym_decimal_floating_point_literal] = ACTIONS(826), - [sym_hex_floating_point_literal] = ACTIONS(828), - [sym_true] = ACTIONS(828), - [sym_false] = ACTIONS(828), - [sym_character_literal] = ACTIONS(826), - [sym_string_literal] = ACTIONS(828), - [sym_text_block] = ACTIONS(826), - [sym_null_literal] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_BANG] = ACTIONS(826), - [anon_sym_TILDE] = ACTIONS(826), - [anon_sym_PLUS_PLUS] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(826), - [anon_sym_new] = ACTIONS(828), - [anon_sym_class] = ACTIONS(828), - [anon_sym_switch] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_case] = ACTIONS(828), - [anon_sym_default] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_assert] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_yield] = ACTIONS(828), - [anon_sym_synchronized] = ACTIONS(828), - [anon_sym_throw] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_else] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_open] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_static] = ACTIONS(828), - [anon_sym_package] = ACTIONS(828), - [anon_sym_import] = ACTIONS(828), - [anon_sym_enum] = ACTIONS(828), - [anon_sym_public] = ACTIONS(828), - [anon_sym_protected] = ACTIONS(828), - [anon_sym_private] = ACTIONS(828), - [anon_sym_abstract] = ACTIONS(828), - [anon_sym_final] = ACTIONS(828), - [anon_sym_strictfp] = ACTIONS(828), - [anon_sym_native] = ACTIONS(828), - [anon_sym_transient] = ACTIONS(828), - [anon_sym_volatile] = ACTIONS(828), - [anon_sym_sealed] = ACTIONS(828), - [anon_sym_non_DASHsealed] = ACTIONS(826), - [anon_sym_record] = ACTIONS(828), - [anon_sym_ATinterface] = ACTIONS(826), - [anon_sym_interface] = ACTIONS(828), - [anon_sym_byte] = ACTIONS(828), - [anon_sym_short] = ACTIONS(828), - [anon_sym_int] = ACTIONS(828), - [anon_sym_long] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), - [anon_sym_float] = ACTIONS(828), - [anon_sym_double] = ACTIONS(828), - [sym_boolean_type] = ACTIONS(828), - [sym_void_type] = ACTIONS(828), - [sym_this] = ACTIONS(828), - [sym_super] = ACTIONS(828), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), + [sym_decimal_integer_literal] = ACTIONS(822), + [sym_hex_integer_literal] = ACTIONS(822), + [sym_octal_integer_literal] = ACTIONS(820), + [sym_binary_integer_literal] = ACTIONS(820), + [sym_decimal_floating_point_literal] = ACTIONS(820), + [sym_hex_floating_point_literal] = ACTIONS(822), + [sym_true] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [sym_character_literal] = ACTIONS(820), + [sym_string_literal] = ACTIONS(822), + [sym_text_block] = ACTIONS(820), + [sym_null_literal] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_final] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(820), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_new] = ACTIONS(822), + [anon_sym_class] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_case] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(822), + [anon_sym_synchronized] = ACTIONS(822), + [anon_sym_throw] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [anon_sym_open] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_package] = ACTIONS(822), + [anon_sym_import] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_public] = ACTIONS(822), + [anon_sym_protected] = ACTIONS(822), + [anon_sym_private] = ACTIONS(822), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_strictfp] = ACTIONS(822), + [anon_sym_native] = ACTIONS(822), + [anon_sym_transient] = ACTIONS(822), + [anon_sym_volatile] = ACTIONS(822), + [anon_sym_sealed] = ACTIONS(822), + [anon_sym_non_DASHsealed] = ACTIONS(820), + [anon_sym_record] = ACTIONS(822), + [anon_sym_ATinterface] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_byte] = ACTIONS(822), + [anon_sym_short] = ACTIONS(822), + [anon_sym_int] = ACTIONS(822), + [anon_sym_long] = ACTIONS(822), + [anon_sym_char] = ACTIONS(822), + [anon_sym_float] = ACTIONS(822), + [anon_sym_double] = ACTIONS(822), + [sym_boolean_type] = ACTIONS(822), + [sym_void_type] = ACTIONS(822), + [sym_this] = ACTIONS(822), + [sym_super] = ACTIONS(822), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(832), - [sym_decimal_integer_literal] = ACTIONS(832), - [sym_hex_integer_literal] = ACTIONS(832), - [sym_octal_integer_literal] = ACTIONS(830), - [sym_binary_integer_literal] = ACTIONS(830), - [sym_decimal_floating_point_literal] = ACTIONS(830), - [sym_hex_floating_point_literal] = ACTIONS(832), - [sym_true] = ACTIONS(832), - [sym_false] = ACTIONS(832), - [sym_character_literal] = ACTIONS(830), - [sym_string_literal] = ACTIONS(832), - [sym_text_block] = ACTIONS(830), - [sym_null_literal] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(832), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(830), - [anon_sym_TILDE] = ACTIONS(830), - [anon_sym_PLUS_PLUS] = ACTIONS(830), - [anon_sym_DASH_DASH] = ACTIONS(830), - [anon_sym_new] = ACTIONS(832), - [anon_sym_class] = ACTIONS(832), - [anon_sym_switch] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_case] = ACTIONS(832), - [anon_sym_default] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_assert] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_synchronized] = ACTIONS(832), - [anon_sym_throw] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_else] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(832), - [anon_sym_open] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_static] = ACTIONS(832), - [anon_sym_package] = ACTIONS(832), - [anon_sym_import] = ACTIONS(832), - [anon_sym_enum] = ACTIONS(832), - [anon_sym_public] = ACTIONS(832), - [anon_sym_protected] = ACTIONS(832), - [anon_sym_private] = ACTIONS(832), - [anon_sym_abstract] = ACTIONS(832), - [anon_sym_final] = ACTIONS(832), - [anon_sym_strictfp] = ACTIONS(832), - [anon_sym_native] = ACTIONS(832), - [anon_sym_transient] = ACTIONS(832), - [anon_sym_volatile] = ACTIONS(832), - [anon_sym_sealed] = ACTIONS(832), - [anon_sym_non_DASHsealed] = ACTIONS(830), - [anon_sym_record] = ACTIONS(832), - [anon_sym_ATinterface] = ACTIONS(830), - [anon_sym_interface] = ACTIONS(832), - [anon_sym_byte] = ACTIONS(832), - [anon_sym_short] = ACTIONS(832), - [anon_sym_int] = ACTIONS(832), - [anon_sym_long] = ACTIONS(832), - [anon_sym_char] = ACTIONS(832), - [anon_sym_float] = ACTIONS(832), - [anon_sym_double] = ACTIONS(832), - [sym_boolean_type] = ACTIONS(832), - [sym_void_type] = ACTIONS(832), - [sym_this] = ACTIONS(832), - [sym_super] = ACTIONS(832), + [sym__literal] = STATE(461), + [sym_expression] = STATE(525), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym_block] = STATE(519), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(834), - [sym_identifier] = ACTIONS(836), - [sym_decimal_integer_literal] = ACTIONS(836), - [sym_hex_integer_literal] = ACTIONS(836), - [sym_octal_integer_literal] = ACTIONS(834), - [sym_binary_integer_literal] = ACTIONS(834), - [sym_decimal_floating_point_literal] = ACTIONS(834), - [sym_hex_floating_point_literal] = ACTIONS(836), - [sym_true] = ACTIONS(836), - [sym_false] = ACTIONS(836), - [sym_character_literal] = ACTIONS(834), - [sym_string_literal] = ACTIONS(836), - [sym_text_block] = ACTIONS(834), - [sym_null_literal] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(834), - [anon_sym_PLUS_PLUS] = ACTIONS(834), - [anon_sym_DASH_DASH] = ACTIONS(834), - [anon_sym_new] = ACTIONS(836), - [anon_sym_class] = ACTIONS(836), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_case] = ACTIONS(836), - [anon_sym_default] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_assert] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_yield] = ACTIONS(836), - [anon_sym_synchronized] = ACTIONS(836), - [anon_sym_throw] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_else] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_open] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_static] = ACTIONS(836), - [anon_sym_package] = ACTIONS(836), - [anon_sym_import] = ACTIONS(836), - [anon_sym_enum] = ACTIONS(836), - [anon_sym_public] = ACTIONS(836), - [anon_sym_protected] = ACTIONS(836), - [anon_sym_private] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(836), - [anon_sym_final] = ACTIONS(836), - [anon_sym_strictfp] = ACTIONS(836), - [anon_sym_native] = ACTIONS(836), - [anon_sym_transient] = ACTIONS(836), - [anon_sym_volatile] = ACTIONS(836), - [anon_sym_sealed] = ACTIONS(836), - [anon_sym_non_DASHsealed] = ACTIONS(834), - [anon_sym_record] = ACTIONS(836), - [anon_sym_ATinterface] = ACTIONS(834), - [anon_sym_interface] = ACTIONS(836), - [anon_sym_byte] = ACTIONS(836), - [anon_sym_short] = ACTIONS(836), - [anon_sym_int] = ACTIONS(836), - [anon_sym_long] = ACTIONS(836), - [anon_sym_char] = ACTIONS(836), - [anon_sym_float] = ACTIONS(836), - [anon_sym_double] = ACTIONS(836), - [sym_boolean_type] = ACTIONS(836), - [sym_void_type] = ACTIONS(836), - [sym_this] = ACTIONS(836), - [sym_super] = ACTIONS(836), + [ts_builtin_sym_end] = ACTIONS(824), + [sym_identifier] = ACTIONS(826), + [sym_decimal_integer_literal] = ACTIONS(826), + [sym_hex_integer_literal] = ACTIONS(826), + [sym_octal_integer_literal] = ACTIONS(824), + [sym_binary_integer_literal] = ACTIONS(824), + [sym_decimal_floating_point_literal] = ACTIONS(824), + [sym_hex_floating_point_literal] = ACTIONS(826), + [sym_true] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [sym_character_literal] = ACTIONS(824), + [sym_string_literal] = ACTIONS(826), + [sym_text_block] = ACTIONS(824), + [sym_null_literal] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_final] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym_new] = ACTIONS(826), + [anon_sym_class] = ACTIONS(826), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_assert] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(826), + [anon_sym_synchronized] = ACTIONS(826), + [anon_sym_throw] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_else] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_open] = ACTIONS(826), + [anon_sym_module] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_package] = ACTIONS(826), + [anon_sym_import] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_public] = ACTIONS(826), + [anon_sym_protected] = ACTIONS(826), + [anon_sym_private] = ACTIONS(826), + [anon_sym_abstract] = ACTIONS(826), + [anon_sym_strictfp] = ACTIONS(826), + [anon_sym_native] = ACTIONS(826), + [anon_sym_transient] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_sealed] = ACTIONS(826), + [anon_sym_non_DASHsealed] = ACTIONS(824), + [anon_sym_record] = ACTIONS(826), + [anon_sym_ATinterface] = ACTIONS(824), + [anon_sym_interface] = ACTIONS(826), + [anon_sym_byte] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_int] = ACTIONS(826), + [anon_sym_long] = ACTIONS(826), + [anon_sym_char] = ACTIONS(826), + [anon_sym_float] = ACTIONS(826), + [anon_sym_double] = ACTIONS(826), + [sym_boolean_type] = ACTIONS(826), + [sym_void_type] = ACTIONS(826), + [sym_this] = ACTIONS(826), + [sym_super] = ACTIONS(826), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(838), - [sym_identifier] = ACTIONS(840), - [sym_decimal_integer_literal] = ACTIONS(840), - [sym_hex_integer_literal] = ACTIONS(840), - [sym_octal_integer_literal] = ACTIONS(838), - [sym_binary_integer_literal] = ACTIONS(838), - [sym_decimal_floating_point_literal] = ACTIONS(838), - [sym_hex_floating_point_literal] = ACTIONS(840), - [sym_true] = ACTIONS(840), - [sym_false] = ACTIONS(840), - [sym_character_literal] = ACTIONS(838), - [sym_string_literal] = ACTIONS(840), - [sym_text_block] = ACTIONS(838), - [sym_null_literal] = ACTIONS(840), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(838), - [anon_sym_TILDE] = ACTIONS(838), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_new] = ACTIONS(840), - [anon_sym_class] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_case] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_do] = ACTIONS(840), - [anon_sym_while] = ACTIONS(840), - [anon_sym_break] = ACTIONS(840), - [anon_sym_continue] = ACTIONS(840), - [anon_sym_return] = ACTIONS(840), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_synchronized] = ACTIONS(840), - [anon_sym_throw] = ACTIONS(840), - [anon_sym_try] = ACTIONS(840), - [anon_sym_if] = ACTIONS(840), - [anon_sym_else] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_AT] = ACTIONS(840), - [anon_sym_open] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_static] = ACTIONS(840), - [anon_sym_package] = ACTIONS(840), - [anon_sym_import] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_abstract] = ACTIONS(840), - [anon_sym_final] = ACTIONS(840), - [anon_sym_strictfp] = ACTIONS(840), - [anon_sym_native] = ACTIONS(840), - [anon_sym_transient] = ACTIONS(840), - [anon_sym_volatile] = ACTIONS(840), - [anon_sym_sealed] = ACTIONS(840), - [anon_sym_non_DASHsealed] = ACTIONS(838), - [anon_sym_record] = ACTIONS(840), - [anon_sym_ATinterface] = ACTIONS(838), - [anon_sym_interface] = ACTIONS(840), - [anon_sym_byte] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_int] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_char] = ACTIONS(840), - [anon_sym_float] = ACTIONS(840), - [anon_sym_double] = ACTIONS(840), - [sym_boolean_type] = ACTIONS(840), - [sym_void_type] = ACTIONS(840), - [sym_this] = ACTIONS(840), - [sym_super] = ACTIONS(840), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), + [sym_decimal_integer_literal] = ACTIONS(830), + [sym_hex_integer_literal] = ACTIONS(830), + [sym_octal_integer_literal] = ACTIONS(828), + [sym_binary_integer_literal] = ACTIONS(828), + [sym_decimal_floating_point_literal] = ACTIONS(828), + [sym_hex_floating_point_literal] = ACTIONS(830), + [sym_true] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [sym_character_literal] = ACTIONS(828), + [sym_string_literal] = ACTIONS(830), + [sym_text_block] = ACTIONS(828), + [sym_null_literal] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_final] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(828), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym_new] = ACTIONS(830), + [anon_sym_class] = ACTIONS(830), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_case] = ACTIONS(830), + [anon_sym_default] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_assert] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_yield] = ACTIONS(830), + [anon_sym_synchronized] = ACTIONS(830), + [anon_sym_throw] = ACTIONS(830), + [anon_sym_try] = ACTIONS(830), + [anon_sym_if] = ACTIONS(830), + [anon_sym_else] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_open] = ACTIONS(830), + [anon_sym_module] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_package] = ACTIONS(830), + [anon_sym_import] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_public] = ACTIONS(830), + [anon_sym_protected] = ACTIONS(830), + [anon_sym_private] = ACTIONS(830), + [anon_sym_abstract] = ACTIONS(830), + [anon_sym_strictfp] = ACTIONS(830), + [anon_sym_native] = ACTIONS(830), + [anon_sym_transient] = ACTIONS(830), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym_sealed] = ACTIONS(830), + [anon_sym_non_DASHsealed] = ACTIONS(828), + [anon_sym_record] = ACTIONS(830), + [anon_sym_ATinterface] = ACTIONS(828), + [anon_sym_interface] = ACTIONS(830), + [anon_sym_byte] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [anon_sym_int] = ACTIONS(830), + [anon_sym_long] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), + [anon_sym_float] = ACTIONS(830), + [anon_sym_double] = ACTIONS(830), + [sym_boolean_type] = ACTIONS(830), + [sym_void_type] = ACTIONS(830), + [sym_this] = ACTIONS(830), + [sym_super] = ACTIONS(830), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(842), - [sym_identifier] = ACTIONS(844), - [sym_decimal_integer_literal] = ACTIONS(844), - [sym_hex_integer_literal] = ACTIONS(844), - [sym_octal_integer_literal] = ACTIONS(842), - [sym_binary_integer_literal] = ACTIONS(842), - [sym_decimal_floating_point_literal] = ACTIONS(842), - [sym_hex_floating_point_literal] = ACTIONS(844), - [sym_true] = ACTIONS(844), - [sym_false] = ACTIONS(844), - [sym_character_literal] = ACTIONS(842), - [sym_string_literal] = ACTIONS(844), - [sym_text_block] = ACTIONS(842), - [sym_null_literal] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(842), - [anon_sym_TILDE] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_new] = ACTIONS(844), - [anon_sym_class] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(842), - [anon_sym_assert] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_yield] = ACTIONS(844), - [anon_sym_synchronized] = ACTIONS(844), - [anon_sym_throw] = ACTIONS(844), - [anon_sym_try] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [anon_sym_open] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_static] = ACTIONS(844), - [anon_sym_package] = ACTIONS(844), - [anon_sym_import] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(844), - [anon_sym_public] = ACTIONS(844), - [anon_sym_protected] = ACTIONS(844), - [anon_sym_private] = ACTIONS(844), - [anon_sym_abstract] = ACTIONS(844), - [anon_sym_final] = ACTIONS(844), - [anon_sym_strictfp] = ACTIONS(844), - [anon_sym_native] = ACTIONS(844), - [anon_sym_transient] = ACTIONS(844), - [anon_sym_volatile] = ACTIONS(844), - [anon_sym_sealed] = ACTIONS(844), - [anon_sym_non_DASHsealed] = ACTIONS(842), - [anon_sym_record] = ACTIONS(844), - [anon_sym_ATinterface] = ACTIONS(842), - [anon_sym_interface] = ACTIONS(844), - [anon_sym_byte] = ACTIONS(844), - [anon_sym_short] = ACTIONS(844), - [anon_sym_int] = ACTIONS(844), - [anon_sym_long] = ACTIONS(844), - [anon_sym_char] = ACTIONS(844), - [anon_sym_float] = ACTIONS(844), - [anon_sym_double] = ACTIONS(844), - [sym_boolean_type] = ACTIONS(844), - [sym_void_type] = ACTIONS(844), - [sym_this] = ACTIONS(844), - [sym_super] = ACTIONS(844), + [ts_builtin_sym_end] = ACTIONS(832), + [sym_identifier] = ACTIONS(834), + [sym_decimal_integer_literal] = ACTIONS(834), + [sym_hex_integer_literal] = ACTIONS(834), + [sym_octal_integer_literal] = ACTIONS(832), + [sym_binary_integer_literal] = ACTIONS(832), + [sym_decimal_floating_point_literal] = ACTIONS(832), + [sym_hex_floating_point_literal] = ACTIONS(834), + [sym_true] = ACTIONS(834), + [sym_false] = ACTIONS(834), + [sym_character_literal] = ACTIONS(832), + [sym_string_literal] = ACTIONS(834), + [sym_text_block] = ACTIONS(832), + [sym_null_literal] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_final] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(832), + [anon_sym_TILDE] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(832), + [anon_sym_DASH_DASH] = ACTIONS(832), + [anon_sym_new] = ACTIONS(834), + [anon_sym_class] = ACTIONS(834), + [anon_sym_switch] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_case] = ACTIONS(834), + [anon_sym_default] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_assert] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(834), + [anon_sym_synchronized] = ACTIONS(834), + [anon_sym_throw] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_else] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_open] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_static] = ACTIONS(834), + [anon_sym_package] = ACTIONS(834), + [anon_sym_import] = ACTIONS(834), + [anon_sym_enum] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_abstract] = ACTIONS(834), + [anon_sym_strictfp] = ACTIONS(834), + [anon_sym_native] = ACTIONS(834), + [anon_sym_transient] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_sealed] = ACTIONS(834), + [anon_sym_non_DASHsealed] = ACTIONS(832), + [anon_sym_record] = ACTIONS(834), + [anon_sym_ATinterface] = ACTIONS(832), + [anon_sym_interface] = ACTIONS(834), + [anon_sym_byte] = ACTIONS(834), + [anon_sym_short] = ACTIONS(834), + [anon_sym_int] = ACTIONS(834), + [anon_sym_long] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), + [anon_sym_float] = ACTIONS(834), + [anon_sym_double] = ACTIONS(834), + [sym_boolean_type] = ACTIONS(834), + [sym_void_type] = ACTIONS(834), + [sym_this] = ACTIONS(834), + [sym_super] = ACTIONS(834), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(846), - [sym_identifier] = ACTIONS(848), - [sym_decimal_integer_literal] = ACTIONS(848), - [sym_hex_integer_literal] = ACTIONS(848), - [sym_octal_integer_literal] = ACTIONS(846), - [sym_binary_integer_literal] = ACTIONS(846), - [sym_decimal_floating_point_literal] = ACTIONS(846), - [sym_hex_floating_point_literal] = ACTIONS(848), - [sym_true] = ACTIONS(848), - [sym_false] = ACTIONS(848), - [sym_character_literal] = ACTIONS(846), - [sym_string_literal] = ACTIONS(848), - [sym_text_block] = ACTIONS(846), - [sym_null_literal] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_new] = ACTIONS(848), - [anon_sym_class] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_case] = ACTIONS(848), - [anon_sym_default] = ACTIONS(848), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_assert] = ACTIONS(848), - [anon_sym_do] = ACTIONS(848), - [anon_sym_while] = ACTIONS(848), - [anon_sym_break] = ACTIONS(848), - [anon_sym_continue] = ACTIONS(848), - [anon_sym_return] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(848), - [anon_sym_synchronized] = ACTIONS(848), - [anon_sym_throw] = ACTIONS(848), - [anon_sym_try] = ACTIONS(848), - [anon_sym_if] = ACTIONS(848), - [anon_sym_else] = ACTIONS(848), - [anon_sym_for] = ACTIONS(848), - [anon_sym_AT] = ACTIONS(848), - [anon_sym_open] = ACTIONS(848), - [anon_sym_module] = ACTIONS(848), - [anon_sym_static] = ACTIONS(848), - [anon_sym_package] = ACTIONS(848), - [anon_sym_import] = ACTIONS(848), - [anon_sym_enum] = ACTIONS(848), - [anon_sym_public] = ACTIONS(848), - [anon_sym_protected] = ACTIONS(848), - [anon_sym_private] = ACTIONS(848), - [anon_sym_abstract] = ACTIONS(848), - [anon_sym_final] = ACTIONS(848), - [anon_sym_strictfp] = ACTIONS(848), - [anon_sym_native] = ACTIONS(848), - [anon_sym_transient] = ACTIONS(848), - [anon_sym_volatile] = ACTIONS(848), - [anon_sym_sealed] = ACTIONS(848), - [anon_sym_non_DASHsealed] = ACTIONS(846), - [anon_sym_record] = ACTIONS(848), - [anon_sym_ATinterface] = ACTIONS(846), - [anon_sym_interface] = ACTIONS(848), - [anon_sym_byte] = ACTIONS(848), - [anon_sym_short] = ACTIONS(848), - [anon_sym_int] = ACTIONS(848), - [anon_sym_long] = ACTIONS(848), - [anon_sym_char] = ACTIONS(848), - [anon_sym_float] = ACTIONS(848), - [anon_sym_double] = ACTIONS(848), - [sym_boolean_type] = ACTIONS(848), - [sym_void_type] = ACTIONS(848), - [sym_this] = ACTIONS(848), - [sym_super] = ACTIONS(848), + [ts_builtin_sym_end] = ACTIONS(836), + [sym_identifier] = ACTIONS(838), + [sym_decimal_integer_literal] = ACTIONS(838), + [sym_hex_integer_literal] = ACTIONS(838), + [sym_octal_integer_literal] = ACTIONS(836), + [sym_binary_integer_literal] = ACTIONS(836), + [sym_decimal_floating_point_literal] = ACTIONS(836), + [sym_hex_floating_point_literal] = ACTIONS(838), + [sym_true] = ACTIONS(838), + [sym_false] = ACTIONS(838), + [sym_character_literal] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_text_block] = ACTIONS(836), + [sym_null_literal] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_final] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(836), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_new] = ACTIONS(838), + [anon_sym_class] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_case] = ACTIONS(838), + [anon_sym_default] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_assert] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_synchronized] = ACTIONS(838), + [anon_sym_throw] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_else] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [anon_sym_open] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_static] = ACTIONS(838), + [anon_sym_package] = ACTIONS(838), + [anon_sym_import] = ACTIONS(838), + [anon_sym_enum] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_abstract] = ACTIONS(838), + [anon_sym_strictfp] = ACTIONS(838), + [anon_sym_native] = ACTIONS(838), + [anon_sym_transient] = ACTIONS(838), + [anon_sym_volatile] = ACTIONS(838), + [anon_sym_sealed] = ACTIONS(838), + [anon_sym_non_DASHsealed] = ACTIONS(836), + [anon_sym_record] = ACTIONS(838), + [anon_sym_ATinterface] = ACTIONS(836), + [anon_sym_interface] = ACTIONS(838), + [anon_sym_byte] = ACTIONS(838), + [anon_sym_short] = ACTIONS(838), + [anon_sym_int] = ACTIONS(838), + [anon_sym_long] = ACTIONS(838), + [anon_sym_char] = ACTIONS(838), + [anon_sym_float] = ACTIONS(838), + [anon_sym_double] = ACTIONS(838), + [sym_boolean_type] = ACTIONS(838), + [sym_void_type] = ACTIONS(838), + [sym_this] = ACTIONS(838), + [sym_super] = ACTIONS(838), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(850), - [sym_identifier] = ACTIONS(852), - [sym_decimal_integer_literal] = ACTIONS(852), - [sym_hex_integer_literal] = ACTIONS(852), - [sym_octal_integer_literal] = ACTIONS(850), - [sym_binary_integer_literal] = ACTIONS(850), - [sym_decimal_floating_point_literal] = ACTIONS(850), - [sym_hex_floating_point_literal] = ACTIONS(852), - [sym_true] = ACTIONS(852), - [sym_false] = ACTIONS(852), - [sym_character_literal] = ACTIONS(850), - [sym_string_literal] = ACTIONS(852), - [sym_text_block] = ACTIONS(850), - [sym_null_literal] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_PLUS_PLUS] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(850), - [anon_sym_new] = ACTIONS(852), - [anon_sym_class] = ACTIONS(852), - [anon_sym_switch] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_case] = ACTIONS(852), - [anon_sym_default] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(850), - [anon_sym_assert] = ACTIONS(852), - [anon_sym_do] = ACTIONS(852), - [anon_sym_while] = ACTIONS(852), - [anon_sym_break] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_return] = ACTIONS(852), - [anon_sym_yield] = ACTIONS(852), - [anon_sym_synchronized] = ACTIONS(852), - [anon_sym_throw] = ACTIONS(852), - [anon_sym_try] = ACTIONS(852), - [anon_sym_if] = ACTIONS(852), - [anon_sym_else] = ACTIONS(852), - [anon_sym_for] = ACTIONS(852), - [anon_sym_AT] = ACTIONS(852), - [anon_sym_open] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_static] = ACTIONS(852), - [anon_sym_package] = ACTIONS(852), - [anon_sym_import] = ACTIONS(852), - [anon_sym_enum] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_abstract] = ACTIONS(852), - [anon_sym_final] = ACTIONS(852), - [anon_sym_strictfp] = ACTIONS(852), - [anon_sym_native] = ACTIONS(852), - [anon_sym_transient] = ACTIONS(852), - [anon_sym_volatile] = ACTIONS(852), - [anon_sym_sealed] = ACTIONS(852), - [anon_sym_non_DASHsealed] = ACTIONS(850), - [anon_sym_record] = ACTIONS(852), - [anon_sym_ATinterface] = ACTIONS(850), - [anon_sym_interface] = ACTIONS(852), - [anon_sym_byte] = ACTIONS(852), - [anon_sym_short] = ACTIONS(852), - [anon_sym_int] = ACTIONS(852), - [anon_sym_long] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_float] = ACTIONS(852), - [anon_sym_double] = ACTIONS(852), - [sym_boolean_type] = ACTIONS(852), - [sym_void_type] = ACTIONS(852), - [sym_this] = ACTIONS(852), - [sym_super] = ACTIONS(852), + [ts_builtin_sym_end] = ACTIONS(840), + [sym_identifier] = ACTIONS(842), + [sym_decimal_integer_literal] = ACTIONS(842), + [sym_hex_integer_literal] = ACTIONS(842), + [sym_octal_integer_literal] = ACTIONS(840), + [sym_binary_integer_literal] = ACTIONS(840), + [sym_decimal_floating_point_literal] = ACTIONS(840), + [sym_hex_floating_point_literal] = ACTIONS(842), + [sym_true] = ACTIONS(842), + [sym_false] = ACTIONS(842), + [sym_character_literal] = ACTIONS(840), + [sym_string_literal] = ACTIONS(842), + [sym_text_block] = ACTIONS(840), + [sym_null_literal] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_final] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(840), + [anon_sym_DASH_DASH] = ACTIONS(840), + [anon_sym_new] = ACTIONS(842), + [anon_sym_class] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_case] = ACTIONS(842), + [anon_sym_default] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_assert] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_yield] = ACTIONS(842), + [anon_sym_synchronized] = ACTIONS(842), + [anon_sym_throw] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_else] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(842), + [anon_sym_open] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_static] = ACTIONS(842), + [anon_sym_package] = ACTIONS(842), + [anon_sym_import] = ACTIONS(842), + [anon_sym_enum] = ACTIONS(842), + [anon_sym_public] = ACTIONS(842), + [anon_sym_protected] = ACTIONS(842), + [anon_sym_private] = ACTIONS(842), + [anon_sym_abstract] = ACTIONS(842), + [anon_sym_strictfp] = ACTIONS(842), + [anon_sym_native] = ACTIONS(842), + [anon_sym_transient] = ACTIONS(842), + [anon_sym_volatile] = ACTIONS(842), + [anon_sym_sealed] = ACTIONS(842), + [anon_sym_non_DASHsealed] = ACTIONS(840), + [anon_sym_record] = ACTIONS(842), + [anon_sym_ATinterface] = ACTIONS(840), + [anon_sym_interface] = ACTIONS(842), + [anon_sym_byte] = ACTIONS(842), + [anon_sym_short] = ACTIONS(842), + [anon_sym_int] = ACTIONS(842), + [anon_sym_long] = ACTIONS(842), + [anon_sym_char] = ACTIONS(842), + [anon_sym_float] = ACTIONS(842), + [anon_sym_double] = ACTIONS(842), + [sym_boolean_type] = ACTIONS(842), + [sym_void_type] = ACTIONS(842), + [sym_this] = ACTIONS(842), + [sym_super] = ACTIONS(842), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(854), - [sym_identifier] = ACTIONS(856), - [sym_decimal_integer_literal] = ACTIONS(856), - [sym_hex_integer_literal] = ACTIONS(856), - [sym_octal_integer_literal] = ACTIONS(854), - [sym_binary_integer_literal] = ACTIONS(854), - [sym_decimal_floating_point_literal] = ACTIONS(854), - [sym_hex_floating_point_literal] = ACTIONS(856), - [sym_true] = ACTIONS(856), - [sym_false] = ACTIONS(856), - [sym_character_literal] = ACTIONS(854), - [sym_string_literal] = ACTIONS(856), - [sym_text_block] = ACTIONS(854), - [sym_null_literal] = ACTIONS(856), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(856), - [anon_sym_DASH] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(854), - [anon_sym_TILDE] = ACTIONS(854), - [anon_sym_PLUS_PLUS] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(854), - [anon_sym_new] = ACTIONS(856), - [anon_sym_class] = ACTIONS(856), - [anon_sym_switch] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_case] = ACTIONS(856), - [anon_sym_default] = ACTIONS(856), - [anon_sym_SEMI] = ACTIONS(854), - [anon_sym_assert] = ACTIONS(856), - [anon_sym_do] = ACTIONS(856), - [anon_sym_while] = ACTIONS(856), - [anon_sym_break] = ACTIONS(856), - [anon_sym_continue] = ACTIONS(856), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(856), - [anon_sym_synchronized] = ACTIONS(856), - [anon_sym_throw] = ACTIONS(856), - [anon_sym_try] = ACTIONS(856), - [anon_sym_if] = ACTIONS(856), - [anon_sym_else] = ACTIONS(856), - [anon_sym_for] = ACTIONS(856), - [anon_sym_AT] = ACTIONS(856), - [anon_sym_open] = ACTIONS(856), - [anon_sym_module] = ACTIONS(856), - [anon_sym_static] = ACTIONS(856), - [anon_sym_package] = ACTIONS(856), - [anon_sym_import] = ACTIONS(856), - [anon_sym_enum] = ACTIONS(856), - [anon_sym_public] = ACTIONS(856), - [anon_sym_protected] = ACTIONS(856), - [anon_sym_private] = ACTIONS(856), - [anon_sym_abstract] = ACTIONS(856), - [anon_sym_final] = ACTIONS(856), - [anon_sym_strictfp] = ACTIONS(856), - [anon_sym_native] = ACTIONS(856), - [anon_sym_transient] = ACTIONS(856), - [anon_sym_volatile] = ACTIONS(856), - [anon_sym_sealed] = ACTIONS(856), - [anon_sym_non_DASHsealed] = ACTIONS(854), - [anon_sym_record] = ACTIONS(856), - [anon_sym_ATinterface] = ACTIONS(854), - [anon_sym_interface] = ACTIONS(856), - [anon_sym_byte] = ACTIONS(856), - [anon_sym_short] = ACTIONS(856), - [anon_sym_int] = ACTIONS(856), - [anon_sym_long] = ACTIONS(856), - [anon_sym_char] = ACTIONS(856), - [anon_sym_float] = ACTIONS(856), - [anon_sym_double] = ACTIONS(856), - [sym_boolean_type] = ACTIONS(856), - [sym_void_type] = ACTIONS(856), - [sym_this] = ACTIONS(856), - [sym_super] = ACTIONS(856), + [ts_builtin_sym_end] = ACTIONS(844), + [sym_identifier] = ACTIONS(846), + [sym_decimal_integer_literal] = ACTIONS(846), + [sym_hex_integer_literal] = ACTIONS(846), + [sym_octal_integer_literal] = ACTIONS(844), + [sym_binary_integer_literal] = ACTIONS(844), + [sym_decimal_floating_point_literal] = ACTIONS(844), + [sym_hex_floating_point_literal] = ACTIONS(846), + [sym_true] = ACTIONS(846), + [sym_false] = ACTIONS(846), + [sym_character_literal] = ACTIONS(844), + [sym_string_literal] = ACTIONS(846), + [sym_text_block] = ACTIONS(844), + [sym_null_literal] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_final] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_new] = ACTIONS(846), + [anon_sym_class] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_case] = ACTIONS(846), + [anon_sym_default] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_assert] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_synchronized] = ACTIONS(846), + [anon_sym_throw] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_open] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_static] = ACTIONS(846), + [anon_sym_package] = ACTIONS(846), + [anon_sym_import] = ACTIONS(846), + [anon_sym_enum] = ACTIONS(846), + [anon_sym_public] = ACTIONS(846), + [anon_sym_protected] = ACTIONS(846), + [anon_sym_private] = ACTIONS(846), + [anon_sym_abstract] = ACTIONS(846), + [anon_sym_strictfp] = ACTIONS(846), + [anon_sym_native] = ACTIONS(846), + [anon_sym_transient] = ACTIONS(846), + [anon_sym_volatile] = ACTIONS(846), + [anon_sym_sealed] = ACTIONS(846), + [anon_sym_non_DASHsealed] = ACTIONS(844), + [anon_sym_record] = ACTIONS(846), + [anon_sym_ATinterface] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(846), + [anon_sym_byte] = ACTIONS(846), + [anon_sym_short] = ACTIONS(846), + [anon_sym_int] = ACTIONS(846), + [anon_sym_long] = ACTIONS(846), + [anon_sym_char] = ACTIONS(846), + [anon_sym_float] = ACTIONS(846), + [anon_sym_double] = ACTIONS(846), + [sym_boolean_type] = ACTIONS(846), + [sym_void_type] = ACTIONS(846), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(846), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(858), + [ts_builtin_sym_end] = ACTIONS(848), + [sym_identifier] = ACTIONS(850), + [sym_decimal_integer_literal] = ACTIONS(850), + [sym_hex_integer_literal] = ACTIONS(850), + [sym_octal_integer_literal] = ACTIONS(848), + [sym_binary_integer_literal] = ACTIONS(848), + [sym_decimal_floating_point_literal] = ACTIONS(848), + [sym_hex_floating_point_literal] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [sym_false] = ACTIONS(850), + [sym_character_literal] = ACTIONS(848), + [sym_string_literal] = ACTIONS(850), + [sym_text_block] = ACTIONS(848), + [sym_null_literal] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_final] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_new] = ACTIONS(850), + [anon_sym_class] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_assert] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_yield] = ACTIONS(850), + [anon_sym_synchronized] = ACTIONS(850), + [anon_sym_throw] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_else] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_open] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_static] = ACTIONS(850), + [anon_sym_package] = ACTIONS(850), + [anon_sym_import] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(850), + [anon_sym_strictfp] = ACTIONS(850), + [anon_sym_native] = ACTIONS(850), + [anon_sym_transient] = ACTIONS(850), + [anon_sym_volatile] = ACTIONS(850), + [anon_sym_sealed] = ACTIONS(850), + [anon_sym_non_DASHsealed] = ACTIONS(848), + [anon_sym_record] = ACTIONS(850), + [anon_sym_ATinterface] = ACTIONS(848), + [anon_sym_interface] = ACTIONS(850), + [anon_sym_byte] = ACTIONS(850), + [anon_sym_short] = ACTIONS(850), + [anon_sym_int] = ACTIONS(850), + [anon_sym_long] = ACTIONS(850), + [anon_sym_char] = ACTIONS(850), + [anon_sym_float] = ACTIONS(850), + [anon_sym_double] = ACTIONS(850), + [sym_boolean_type] = ACTIONS(850), + [sym_void_type] = ACTIONS(850), + [sym_this] = ACTIONS(850), + [sym_super] = ACTIONS(850), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [ts_builtin_sym_end] = ACTIONS(852), + [sym_identifier] = ACTIONS(854), + [sym_decimal_integer_literal] = ACTIONS(854), + [sym_hex_integer_literal] = ACTIONS(854), + [sym_octal_integer_literal] = ACTIONS(852), + [sym_binary_integer_literal] = ACTIONS(852), + [sym_decimal_floating_point_literal] = ACTIONS(852), + [sym_hex_floating_point_literal] = ACTIONS(854), + [sym_true] = ACTIONS(854), + [sym_false] = ACTIONS(854), + [sym_character_literal] = ACTIONS(852), + [sym_string_literal] = ACTIONS(854), + [sym_text_block] = ACTIONS(852), + [sym_null_literal] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_final] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym_new] = ACTIONS(854), + [anon_sym_class] = ACTIONS(854), + [anon_sym_switch] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_case] = ACTIONS(854), + [anon_sym_default] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_assert] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_synchronized] = ACTIONS(854), + [anon_sym_throw] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_open] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_static] = ACTIONS(854), + [anon_sym_package] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_enum] = ACTIONS(854), + [anon_sym_public] = ACTIONS(854), + [anon_sym_protected] = ACTIONS(854), + [anon_sym_private] = ACTIONS(854), + [anon_sym_abstract] = ACTIONS(854), + [anon_sym_strictfp] = ACTIONS(854), + [anon_sym_native] = ACTIONS(854), + [anon_sym_transient] = ACTIONS(854), + [anon_sym_volatile] = ACTIONS(854), + [anon_sym_sealed] = ACTIONS(854), + [anon_sym_non_DASHsealed] = ACTIONS(852), + [anon_sym_record] = ACTIONS(854), + [anon_sym_ATinterface] = ACTIONS(852), + [anon_sym_interface] = ACTIONS(854), + [anon_sym_byte] = ACTIONS(854), + [anon_sym_short] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_long] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_double] = ACTIONS(854), + [sym_boolean_type] = ACTIONS(854), + [sym_void_type] = ACTIONS(854), + [sym_this] = ACTIONS(854), + [sym_super] = ACTIONS(854), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(856), + [sym_identifier] = ACTIONS(858), + [sym_decimal_integer_literal] = ACTIONS(858), + [sym_hex_integer_literal] = ACTIONS(858), + [sym_octal_integer_literal] = ACTIONS(856), + [sym_binary_integer_literal] = ACTIONS(856), + [sym_decimal_floating_point_literal] = ACTIONS(856), + [sym_hex_floating_point_literal] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_character_literal] = ACTIONS(856), + [sym_string_literal] = ACTIONS(858), + [sym_text_block] = ACTIONS(856), + [sym_null_literal] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_final] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_new] = ACTIONS(858), + [anon_sym_class] = ACTIONS(858), + [anon_sym_switch] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(856), + [anon_sym_case] = ACTIONS(858), + [anon_sym_default] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_assert] = ACTIONS(858), + [anon_sym_do] = ACTIONS(858), + [anon_sym_while] = ACTIONS(858), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(858), + [anon_sym_return] = ACTIONS(858), + [anon_sym_yield] = ACTIONS(858), + [anon_sym_synchronized] = ACTIONS(858), + [anon_sym_throw] = ACTIONS(858), + [anon_sym_try] = ACTIONS(858), + [anon_sym_if] = ACTIONS(858), + [anon_sym_else] = ACTIONS(858), + [anon_sym_for] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(858), + [anon_sym_open] = ACTIONS(858), + [anon_sym_module] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_package] = ACTIONS(858), + [anon_sym_import] = ACTIONS(858), + [anon_sym_enum] = ACTIONS(858), + [anon_sym_public] = ACTIONS(858), + [anon_sym_protected] = ACTIONS(858), + [anon_sym_private] = ACTIONS(858), + [anon_sym_abstract] = ACTIONS(858), + [anon_sym_strictfp] = ACTIONS(858), + [anon_sym_native] = ACTIONS(858), + [anon_sym_transient] = ACTIONS(858), + [anon_sym_volatile] = ACTIONS(858), + [anon_sym_sealed] = ACTIONS(858), + [anon_sym_non_DASHsealed] = ACTIONS(856), + [anon_sym_record] = ACTIONS(858), + [anon_sym_ATinterface] = ACTIONS(856), + [anon_sym_interface] = ACTIONS(858), + [anon_sym_byte] = ACTIONS(858), + [anon_sym_short] = ACTIONS(858), + [anon_sym_int] = ACTIONS(858), + [anon_sym_long] = ACTIONS(858), + [anon_sym_char] = ACTIONS(858), + [anon_sym_float] = ACTIONS(858), + [anon_sym_double] = ACTIONS(858), + [sym_boolean_type] = ACTIONS(858), + [sym_void_type] = ACTIONS(858), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_switch_label] = STATE(1228), + [aux_sym_switch_block_statement_group_repeat1] = STATE(235), [sym_identifier] = ACTIONS(860), [sym_decimal_integer_literal] = ACTIONS(860), [sym_hex_integer_literal] = ACTIONS(860), - [sym_octal_integer_literal] = ACTIONS(858), - [sym_binary_integer_literal] = ACTIONS(858), - [sym_decimal_floating_point_literal] = ACTIONS(858), + [sym_octal_integer_literal] = ACTIONS(862), + [sym_binary_integer_literal] = ACTIONS(862), + [sym_decimal_floating_point_literal] = ACTIONS(862), [sym_hex_floating_point_literal] = ACTIONS(860), [sym_true] = ACTIONS(860), [sym_false] = ACTIONS(860), - [sym_character_literal] = ACTIONS(858), + [sym_character_literal] = ACTIONS(862), [sym_string_literal] = ACTIONS(860), - [sym_text_block] = ACTIONS(858), + [sym_text_block] = ACTIONS(862), [sym_null_literal] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(862), [anon_sym_PLUS] = ACTIONS(860), [anon_sym_DASH] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_final] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), [anon_sym_new] = ACTIONS(860), [anon_sym_class] = ACTIONS(860), [anon_sym_switch] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_case] = ACTIONS(860), - [anon_sym_default] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_case] = ACTIONS(864), + [anon_sym_default] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_assert] = ACTIONS(860), [anon_sym_do] = ACTIONS(860), [anon_sym_while] = ACTIONS(860), @@ -32484,7 +31515,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(860), [anon_sym_try] = ACTIONS(860), [anon_sym_if] = ACTIONS(860), - [anon_sym_else] = ACTIONS(860), [anon_sym_for] = ACTIONS(860), [anon_sym_AT] = ACTIONS(860), [anon_sym_open] = ACTIONS(860), @@ -32497,15 +31527,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(860), [anon_sym_private] = ACTIONS(860), [anon_sym_abstract] = ACTIONS(860), - [anon_sym_final] = ACTIONS(860), [anon_sym_strictfp] = ACTIONS(860), [anon_sym_native] = ACTIONS(860), [anon_sym_transient] = ACTIONS(860), [anon_sym_volatile] = ACTIONS(860), [anon_sym_sealed] = ACTIONS(860), - [anon_sym_non_DASHsealed] = ACTIONS(858), + [anon_sym_non_DASHsealed] = ACTIONS(862), [anon_sym_record] = ACTIONS(860), - [anon_sym_ATinterface] = ACTIONS(858), + [anon_sym_ATinterface] = ACTIONS(862), [anon_sym_interface] = ACTIONS(860), [anon_sym_byte] = ACTIONS(860), [anon_sym_short] = ACTIONS(860), @@ -32521,240 +31550,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(862), - [sym_identifier] = ACTIONS(864), - [sym_decimal_integer_literal] = ACTIONS(864), - [sym_hex_integer_literal] = ACTIONS(864), - [sym_octal_integer_literal] = ACTIONS(862), - [sym_binary_integer_literal] = ACTIONS(862), - [sym_decimal_floating_point_literal] = ACTIONS(862), - [sym_hex_floating_point_literal] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_character_literal] = ACTIONS(862), - [sym_string_literal] = ACTIONS(864), - [sym_text_block] = ACTIONS(862), - [sym_null_literal] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_DASH_DASH] = ACTIONS(862), - [anon_sym_new] = ACTIONS(864), - [anon_sym_class] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_case] = ACTIONS(864), - [anon_sym_default] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_assert] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_while] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_synchronized] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_else] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_open] = ACTIONS(864), - [anon_sym_module] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_package] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_enum] = ACTIONS(864), - [anon_sym_public] = ACTIONS(864), - [anon_sym_protected] = ACTIONS(864), - [anon_sym_private] = ACTIONS(864), - [anon_sym_abstract] = ACTIONS(864), - [anon_sym_final] = ACTIONS(864), - [anon_sym_strictfp] = ACTIONS(864), - [anon_sym_native] = ACTIONS(864), - [anon_sym_transient] = ACTIONS(864), - [anon_sym_volatile] = ACTIONS(864), - [anon_sym_sealed] = ACTIONS(864), - [anon_sym_non_DASHsealed] = ACTIONS(862), - [anon_sym_record] = ACTIONS(864), - [anon_sym_ATinterface] = ACTIONS(862), - [anon_sym_interface] = ACTIONS(864), - [anon_sym_byte] = ACTIONS(864), - [anon_sym_short] = ACTIONS(864), - [anon_sym_int] = ACTIONS(864), - [anon_sym_long] = ACTIONS(864), - [anon_sym_char] = ACTIONS(864), - [anon_sym_float] = ACTIONS(864), - [anon_sym_double] = ACTIONS(864), - [sym_boolean_type] = ACTIONS(864), - [sym_void_type] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_decimal_integer_literal] = ACTIONS(868), - [sym_hex_integer_literal] = ACTIONS(868), - [sym_octal_integer_literal] = ACTIONS(866), - [sym_binary_integer_literal] = ACTIONS(866), - [sym_decimal_floating_point_literal] = ACTIONS(866), - [sym_hex_floating_point_literal] = ACTIONS(868), - [sym_true] = ACTIONS(868), - [sym_false] = ACTIONS(868), - [sym_character_literal] = ACTIONS(866), - [sym_string_literal] = ACTIONS(868), - [sym_text_block] = ACTIONS(866), - [sym_null_literal] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(866), - [anon_sym_PLUS] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), - [anon_sym_BANG] = ACTIONS(866), - [anon_sym_TILDE] = ACTIONS(866), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_new] = ACTIONS(868), - [anon_sym_class] = ACTIONS(868), - [anon_sym_switch] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(866), - [anon_sym_case] = ACTIONS(868), - [anon_sym_default] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(866), - [anon_sym_assert] = ACTIONS(868), - [anon_sym_do] = ACTIONS(868), - [anon_sym_while] = ACTIONS(868), - [anon_sym_break] = ACTIONS(868), - [anon_sym_continue] = ACTIONS(868), - [anon_sym_return] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_synchronized] = ACTIONS(868), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_try] = ACTIONS(868), - [anon_sym_if] = ACTIONS(868), - [anon_sym_else] = ACTIONS(868), - [anon_sym_for] = ACTIONS(868), - [anon_sym_AT] = ACTIONS(868), - [anon_sym_open] = ACTIONS(868), - [anon_sym_module] = ACTIONS(868), - [anon_sym_static] = ACTIONS(868), - [anon_sym_package] = ACTIONS(868), - [anon_sym_import] = ACTIONS(868), - [anon_sym_enum] = ACTIONS(868), - [anon_sym_public] = ACTIONS(868), - [anon_sym_protected] = ACTIONS(868), - [anon_sym_private] = ACTIONS(868), - [anon_sym_abstract] = ACTIONS(868), - [anon_sym_final] = ACTIONS(868), - [anon_sym_strictfp] = ACTIONS(868), - [anon_sym_native] = ACTIONS(868), - [anon_sym_transient] = ACTIONS(868), - [anon_sym_volatile] = ACTIONS(868), - [anon_sym_sealed] = ACTIONS(868), - [anon_sym_non_DASHsealed] = ACTIONS(866), - [anon_sym_record] = ACTIONS(868), - [anon_sym_ATinterface] = ACTIONS(866), - [anon_sym_interface] = ACTIONS(868), - [anon_sym_byte] = ACTIONS(868), - [anon_sym_short] = ACTIONS(868), - [anon_sym_int] = ACTIONS(868), - [anon_sym_long] = ACTIONS(868), - [anon_sym_char] = ACTIONS(868), - [anon_sym_float] = ACTIONS(868), - [anon_sym_double] = ACTIONS(868), - [sym_boolean_type] = ACTIONS(868), - [sym_void_type] = ACTIONS(868), - [sym_this] = ACTIONS(868), - [sym_super] = ACTIONS(868), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(517), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym_block] = STATE(509), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [236] = { [ts_builtin_sym_end] = ACTIONS(870), [sym_identifier] = ACTIONS(872), @@ -32773,6 +31568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(870), [anon_sym_PLUS] = ACTIONS(872), [anon_sym_DASH] = ACTIONS(872), + [anon_sym_final] = ACTIONS(872), [anon_sym_BANG] = ACTIONS(870), [anon_sym_TILDE] = ACTIONS(870), [anon_sym_PLUS_PLUS] = ACTIONS(870), @@ -32809,7 +31605,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(872), [anon_sym_private] = ACTIONS(872), [anon_sym_abstract] = ACTIONS(872), - [anon_sym_final] = ACTIONS(872), [anon_sym_strictfp] = ACTIONS(872), [anon_sym_native] = ACTIONS(872), [anon_sym_transient] = ACTIONS(872), @@ -32834,6 +31629,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [237] = { + [ts_builtin_sym_end] = ACTIONS(327), + [sym_identifier] = ACTIONS(329), + [sym_decimal_integer_literal] = ACTIONS(329), + [sym_hex_integer_literal] = ACTIONS(329), + [sym_octal_integer_literal] = ACTIONS(327), + [sym_binary_integer_literal] = ACTIONS(327), + [sym_decimal_floating_point_literal] = ACTIONS(327), + [sym_hex_floating_point_literal] = ACTIONS(329), + [sym_true] = ACTIONS(329), + [sym_false] = ACTIONS(329), + [sym_character_literal] = ACTIONS(327), + [sym_string_literal] = ACTIONS(329), + [sym_text_block] = ACTIONS(327), + [sym_null_literal] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_class] = ACTIONS(329), + [anon_sym_switch] = ACTIONS(329), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_case] = ACTIONS(329), + [anon_sym_default] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_assert] = ACTIONS(329), + [anon_sym_do] = ACTIONS(329), + [anon_sym_while] = ACTIONS(329), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_return] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_try] = ACTIONS(329), + [anon_sym_if] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_for] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(329), + [anon_sym_open] = ACTIONS(329), + [anon_sym_module] = ACTIONS(329), + [anon_sym_static] = ACTIONS(329), + [anon_sym_package] = ACTIONS(329), + [anon_sym_import] = ACTIONS(329), + [anon_sym_enum] = ACTIONS(329), + [anon_sym_public] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_abstract] = ACTIONS(329), + [anon_sym_strictfp] = ACTIONS(329), + [anon_sym_native] = ACTIONS(329), + [anon_sym_transient] = ACTIONS(329), + [anon_sym_volatile] = ACTIONS(329), + [anon_sym_sealed] = ACTIONS(329), + [anon_sym_non_DASHsealed] = ACTIONS(327), + [anon_sym_record] = ACTIONS(329), + [anon_sym_ATinterface] = ACTIONS(327), + [anon_sym_interface] = ACTIONS(329), + [anon_sym_byte] = ACTIONS(329), + [anon_sym_short] = ACTIONS(329), + [anon_sym_int] = ACTIONS(329), + [anon_sym_long] = ACTIONS(329), + [anon_sym_char] = ACTIONS(329), + [anon_sym_float] = ACTIONS(329), + [anon_sym_double] = ACTIONS(329), + [sym_boolean_type] = ACTIONS(329), + [sym_void_type] = ACTIONS(329), + [sym_this] = ACTIONS(329), + [sym_super] = ACTIONS(329), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { [ts_builtin_sym_end] = ACTIONS(874), [sym_identifier] = ACTIONS(876), [sym_decimal_integer_literal] = ACTIONS(876), @@ -32851,6 +31724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(874), [anon_sym_PLUS] = ACTIONS(876), [anon_sym_DASH] = ACTIONS(876), + [anon_sym_final] = ACTIONS(876), [anon_sym_BANG] = ACTIONS(874), [anon_sym_TILDE] = ACTIONS(874), [anon_sym_PLUS_PLUS] = ACTIONS(874), @@ -32887,7 +31761,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(876), [anon_sym_private] = ACTIONS(876), [anon_sym_abstract] = ACTIONS(876), - [anon_sym_final] = ACTIONS(876), [anon_sym_strictfp] = ACTIONS(876), [anon_sym_native] = ACTIONS(876), [anon_sym_transient] = ACTIONS(876), @@ -32911,7 +31784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [238] = { + [239] = { [ts_builtin_sym_end] = ACTIONS(878), [sym_identifier] = ACTIONS(880), [sym_decimal_integer_literal] = ACTIONS(880), @@ -32929,6 +31802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(878), [anon_sym_PLUS] = ACTIONS(880), [anon_sym_DASH] = ACTIONS(880), + [anon_sym_final] = ACTIONS(880), [anon_sym_BANG] = ACTIONS(878), [anon_sym_TILDE] = ACTIONS(878), [anon_sym_PLUS_PLUS] = ACTIONS(878), @@ -32965,7 +31839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(880), [anon_sym_private] = ACTIONS(880), [anon_sym_abstract] = ACTIONS(880), - [anon_sym_final] = ACTIONS(880), [anon_sym_strictfp] = ACTIONS(880), [anon_sym_native] = ACTIONS(880), [anon_sym_transient] = ACTIONS(880), @@ -32989,7 +31862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [239] = { + [240] = { [ts_builtin_sym_end] = ACTIONS(882), [sym_identifier] = ACTIONS(884), [sym_decimal_integer_literal] = ACTIONS(884), @@ -33007,6 +31880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(882), [anon_sym_PLUS] = ACTIONS(884), [anon_sym_DASH] = ACTIONS(884), + [anon_sym_final] = ACTIONS(884), [anon_sym_BANG] = ACTIONS(882), [anon_sym_TILDE] = ACTIONS(882), [anon_sym_PLUS_PLUS] = ACTIONS(882), @@ -33030,7 +31904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(884), [anon_sym_try] = ACTIONS(884), [anon_sym_if] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), + [anon_sym_else] = ACTIONS(886), [anon_sym_for] = ACTIONS(884), [anon_sym_AT] = ACTIONS(884), [anon_sym_open] = ACTIONS(884), @@ -33043,7 +31917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(884), [anon_sym_private] = ACTIONS(884), [anon_sym_abstract] = ACTIONS(884), - [anon_sym_final] = ACTIONS(884), [anon_sym_strictfp] = ACTIONS(884), [anon_sym_native] = ACTIONS(884), [anon_sym_transient] = ACTIONS(884), @@ -33067,471 +31940,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(886), - [sym_identifier] = ACTIONS(888), - [sym_decimal_integer_literal] = ACTIONS(888), - [sym_hex_integer_literal] = ACTIONS(888), - [sym_octal_integer_literal] = ACTIONS(886), - [sym_binary_integer_literal] = ACTIONS(886), - [sym_decimal_floating_point_literal] = ACTIONS(886), - [sym_hex_floating_point_literal] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [sym_character_literal] = ACTIONS(886), - [sym_string_literal] = ACTIONS(888), - [sym_text_block] = ACTIONS(886), - [sym_null_literal] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_new] = ACTIONS(888), - [anon_sym_class] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_case] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_assert] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_synchronized] = ACTIONS(888), - [anon_sym_throw] = ACTIONS(888), - [anon_sym_try] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_else] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_AT] = ACTIONS(888), - [anon_sym_open] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_package] = ACTIONS(888), - [anon_sym_import] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_abstract] = ACTIONS(888), - [anon_sym_final] = ACTIONS(888), - [anon_sym_strictfp] = ACTIONS(888), - [anon_sym_native] = ACTIONS(888), - [anon_sym_transient] = ACTIONS(888), - [anon_sym_volatile] = ACTIONS(888), - [anon_sym_sealed] = ACTIONS(888), - [anon_sym_non_DASHsealed] = ACTIONS(886), - [anon_sym_record] = ACTIONS(888), - [anon_sym_ATinterface] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_byte] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [anon_sym_int] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_float] = ACTIONS(888), - [anon_sym_double] = ACTIONS(888), - [sym_boolean_type] = ACTIONS(888), - [sym_void_type] = ACTIONS(888), - [sym_this] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [241] = { - [ts_builtin_sym_end] = ACTIONS(890), - [sym_identifier] = ACTIONS(892), - [sym_decimal_integer_literal] = ACTIONS(892), - [sym_hex_integer_literal] = ACTIONS(892), - [sym_octal_integer_literal] = ACTIONS(890), - [sym_binary_integer_literal] = ACTIONS(890), - [sym_decimal_floating_point_literal] = ACTIONS(890), - [sym_hex_floating_point_literal] = ACTIONS(892), - [sym_true] = ACTIONS(892), - [sym_false] = ACTIONS(892), - [sym_character_literal] = ACTIONS(890), - [sym_string_literal] = ACTIONS(892), - [sym_text_block] = ACTIONS(890), - [sym_null_literal] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(890), - [anon_sym_TILDE] = ACTIONS(890), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_new] = ACTIONS(892), - [anon_sym_class] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_case] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_assert] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_yield] = ACTIONS(892), - [anon_sym_synchronized] = ACTIONS(892), - [anon_sym_throw] = ACTIONS(892), - [anon_sym_try] = ACTIONS(892), - [anon_sym_if] = ACTIONS(892), - [anon_sym_else] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_AT] = ACTIONS(892), - [anon_sym_open] = ACTIONS(892), - [anon_sym_module] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_package] = ACTIONS(892), - [anon_sym_import] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [anon_sym_public] = ACTIONS(892), - [anon_sym_protected] = ACTIONS(892), - [anon_sym_private] = ACTIONS(892), - [anon_sym_abstract] = ACTIONS(892), - [anon_sym_final] = ACTIONS(892), - [anon_sym_strictfp] = ACTIONS(892), - [anon_sym_native] = ACTIONS(892), - [anon_sym_transient] = ACTIONS(892), - [anon_sym_volatile] = ACTIONS(892), - [anon_sym_sealed] = ACTIONS(892), - [anon_sym_non_DASHsealed] = ACTIONS(890), - [anon_sym_record] = ACTIONS(892), - [anon_sym_ATinterface] = ACTIONS(890), - [anon_sym_interface] = ACTIONS(892), - [anon_sym_byte] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [anon_sym_int] = ACTIONS(892), - [anon_sym_long] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_float] = ACTIONS(892), - [anon_sym_double] = ACTIONS(892), - [sym_boolean_type] = ACTIONS(892), - [sym_void_type] = ACTIONS(892), - [sym_this] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [sym_decimal_integer_literal] = ACTIONS(890), + [sym_hex_integer_literal] = ACTIONS(890), + [sym_octal_integer_literal] = ACTIONS(888), + [sym_binary_integer_literal] = ACTIONS(888), + [sym_decimal_floating_point_literal] = ACTIONS(888), + [sym_hex_floating_point_literal] = ACTIONS(890), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_character_literal] = ACTIONS(888), + [sym_string_literal] = ACTIONS(890), + [sym_text_block] = ACTIONS(888), + [sym_null_literal] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_final] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_assert] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_synchronized] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(890), + [anon_sym_open] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_static] = ACTIONS(890), + [anon_sym_package] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_strictfp] = ACTIONS(890), + [anon_sym_native] = ACTIONS(890), + [anon_sym_transient] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_sealed] = ACTIONS(890), + [anon_sym_non_DASHsealed] = ACTIONS(888), + [anon_sym_record] = ACTIONS(890), + [anon_sym_ATinterface] = ACTIONS(888), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_byte] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [anon_sym_int] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_char] = ACTIONS(890), + [anon_sym_float] = ACTIONS(890), + [anon_sym_double] = ACTIONS(890), + [sym_boolean_type] = ACTIONS(890), + [sym_void_type] = ACTIONS(890), + [sym_this] = ACTIONS(890), + [sym_super] = ACTIONS(890), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(327), - [sym_identifier] = ACTIONS(329), - [sym_decimal_integer_literal] = ACTIONS(329), - [sym_hex_integer_literal] = ACTIONS(329), - [sym_octal_integer_literal] = ACTIONS(327), - [sym_binary_integer_literal] = ACTIONS(327), - [sym_decimal_floating_point_literal] = ACTIONS(327), - [sym_hex_floating_point_literal] = ACTIONS(329), - [sym_true] = ACTIONS(329), - [sym_false] = ACTIONS(329), - [sym_character_literal] = ACTIONS(327), - [sym_string_literal] = ACTIONS(329), - [sym_text_block] = ACTIONS(327), - [sym_null_literal] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), - [anon_sym_TILDE] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(327), - [anon_sym_DASH_DASH] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_class] = ACTIONS(329), - [anon_sym_switch] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_case] = ACTIONS(329), - [anon_sym_default] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(327), - [anon_sym_assert] = ACTIONS(329), - [anon_sym_do] = ACTIONS(329), - [anon_sym_while] = ACTIONS(329), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_return] = ACTIONS(329), - [anon_sym_yield] = ACTIONS(329), - [anon_sym_synchronized] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_try] = ACTIONS(329), - [anon_sym_if] = ACTIONS(329), - [anon_sym_else] = ACTIONS(329), - [anon_sym_for] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_open] = ACTIONS(329), - [anon_sym_module] = ACTIONS(329), - [anon_sym_static] = ACTIONS(329), - [anon_sym_package] = ACTIONS(329), - [anon_sym_import] = ACTIONS(329), - [anon_sym_enum] = ACTIONS(329), - [anon_sym_public] = ACTIONS(329), - [anon_sym_protected] = ACTIONS(329), - [anon_sym_private] = ACTIONS(329), - [anon_sym_abstract] = ACTIONS(329), - [anon_sym_final] = ACTIONS(329), - [anon_sym_strictfp] = ACTIONS(329), - [anon_sym_native] = ACTIONS(329), - [anon_sym_transient] = ACTIONS(329), - [anon_sym_volatile] = ACTIONS(329), - [anon_sym_sealed] = ACTIONS(329), - [anon_sym_non_DASHsealed] = ACTIONS(327), - [anon_sym_record] = ACTIONS(329), - [anon_sym_ATinterface] = ACTIONS(327), - [anon_sym_interface] = ACTIONS(329), - [anon_sym_byte] = ACTIONS(329), - [anon_sym_short] = ACTIONS(329), - [anon_sym_int] = ACTIONS(329), - [anon_sym_long] = ACTIONS(329), - [anon_sym_char] = ACTIONS(329), - [anon_sym_float] = ACTIONS(329), - [anon_sym_double] = ACTIONS(329), - [sym_boolean_type] = ACTIONS(329), - [sym_void_type] = ACTIONS(329), - [sym_this] = ACTIONS(329), - [sym_super] = ACTIONS(329), + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(894), + [sym_decimal_integer_literal] = ACTIONS(894), + [sym_hex_integer_literal] = ACTIONS(894), + [sym_octal_integer_literal] = ACTIONS(892), + [sym_binary_integer_literal] = ACTIONS(892), + [sym_decimal_floating_point_literal] = ACTIONS(892), + [sym_hex_floating_point_literal] = ACTIONS(894), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_character_literal] = ACTIONS(892), + [sym_string_literal] = ACTIONS(894), + [sym_text_block] = ACTIONS(892), + [sym_null_literal] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_final] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_new] = ACTIONS(894), + [anon_sym_class] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_assert] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_yield] = ACTIONS(894), + [anon_sym_synchronized] = ACTIONS(894), + [anon_sym_throw] = ACTIONS(894), + [anon_sym_try] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_AT] = ACTIONS(894), + [anon_sym_open] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_package] = ACTIONS(894), + [anon_sym_import] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_abstract] = ACTIONS(894), + [anon_sym_strictfp] = ACTIONS(894), + [anon_sym_native] = ACTIONS(894), + [anon_sym_transient] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_sealed] = ACTIONS(894), + [anon_sym_non_DASHsealed] = ACTIONS(892), + [anon_sym_record] = ACTIONS(894), + [anon_sym_ATinterface] = ACTIONS(892), + [anon_sym_interface] = ACTIONS(894), + [anon_sym_byte] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [anon_sym_int] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_float] = ACTIONS(894), + [anon_sym_double] = ACTIONS(894), + [sym_boolean_type] = ACTIONS(894), + [sym_void_type] = ACTIONS(894), + [sym_this] = ACTIONS(894), + [sym_super] = ACTIONS(894), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(894), - [sym_identifier] = ACTIONS(896), - [sym_decimal_integer_literal] = ACTIONS(896), - [sym_hex_integer_literal] = ACTIONS(896), - [sym_octal_integer_literal] = ACTIONS(894), - [sym_binary_integer_literal] = ACTIONS(894), - [sym_decimal_floating_point_literal] = ACTIONS(894), - [sym_hex_floating_point_literal] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_character_literal] = ACTIONS(894), - [sym_string_literal] = ACTIONS(896), - [sym_text_block] = ACTIONS(894), - [sym_null_literal] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_TILDE] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym_new] = ACTIONS(896), - [anon_sym_class] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_case] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_assert] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_synchronized] = ACTIONS(896), - [anon_sym_throw] = ACTIONS(896), - [anon_sym_try] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(896), - [anon_sym_open] = ACTIONS(896), - [anon_sym_module] = ACTIONS(896), - [anon_sym_static] = ACTIONS(896), - [anon_sym_package] = ACTIONS(896), - [anon_sym_import] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_public] = ACTIONS(896), - [anon_sym_protected] = ACTIONS(896), - [anon_sym_private] = ACTIONS(896), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_final] = ACTIONS(896), - [anon_sym_strictfp] = ACTIONS(896), - [anon_sym_native] = ACTIONS(896), - [anon_sym_transient] = ACTIONS(896), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_sealed] = ACTIONS(896), - [anon_sym_non_DASHsealed] = ACTIONS(894), - [anon_sym_record] = ACTIONS(896), - [anon_sym_ATinterface] = ACTIONS(894), - [anon_sym_interface] = ACTIONS(896), - [anon_sym_byte] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [anon_sym_int] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), - [anon_sym_float] = ACTIONS(896), - [anon_sym_double] = ACTIONS(896), - [sym_boolean_type] = ACTIONS(896), - [sym_void_type] = ACTIONS(896), - [sym_this] = ACTIONS(896), - [sym_super] = ACTIONS(896), + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(898), + [sym_decimal_integer_literal] = ACTIONS(898), + [sym_hex_integer_literal] = ACTIONS(898), + [sym_octal_integer_literal] = ACTIONS(896), + [sym_binary_integer_literal] = ACTIONS(896), + [sym_decimal_floating_point_literal] = ACTIONS(896), + [sym_hex_floating_point_literal] = ACTIONS(898), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_character_literal] = ACTIONS(896), + [sym_string_literal] = ACTIONS(898), + [sym_text_block] = ACTIONS(896), + [sym_null_literal] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_final] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_new] = ACTIONS(898), + [anon_sym_class] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_yield] = ACTIONS(898), + [anon_sym_synchronized] = ACTIONS(898), + [anon_sym_throw] = ACTIONS(898), + [anon_sym_try] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_AT] = ACTIONS(898), + [anon_sym_open] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_static] = ACTIONS(898), + [anon_sym_package] = ACTIONS(898), + [anon_sym_import] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_abstract] = ACTIONS(898), + [anon_sym_strictfp] = ACTIONS(898), + [anon_sym_native] = ACTIONS(898), + [anon_sym_transient] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_sealed] = ACTIONS(898), + [anon_sym_non_DASHsealed] = ACTIONS(896), + [anon_sym_record] = ACTIONS(898), + [anon_sym_ATinterface] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_byte] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [anon_sym_int] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_char] = ACTIONS(898), + [anon_sym_float] = ACTIONS(898), + [anon_sym_double] = ACTIONS(898), + [sym_boolean_type] = ACTIONS(898), + [sym_void_type] = ACTIONS(898), + [sym_this] = ACTIONS(898), + [sym_super] = ACTIONS(898), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(898), - [sym_identifier] = ACTIONS(900), - [sym_decimal_integer_literal] = ACTIONS(900), - [sym_hex_integer_literal] = ACTIONS(900), - [sym_octal_integer_literal] = ACTIONS(898), - [sym_binary_integer_literal] = ACTIONS(898), - [sym_decimal_floating_point_literal] = ACTIONS(898), - [sym_hex_floating_point_literal] = ACTIONS(900), - [sym_true] = ACTIONS(900), - [sym_false] = ACTIONS(900), - [sym_character_literal] = ACTIONS(898), - [sym_string_literal] = ACTIONS(900), - [sym_text_block] = ACTIONS(898), - [sym_null_literal] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_new] = ACTIONS(900), - [anon_sym_class] = ACTIONS(900), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_case] = ACTIONS(900), - [anon_sym_default] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_assert] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_yield] = ACTIONS(900), - [anon_sym_synchronized] = ACTIONS(900), - [anon_sym_throw] = ACTIONS(900), - [anon_sym_try] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_AT] = ACTIONS(900), - [anon_sym_open] = ACTIONS(900), - [anon_sym_module] = ACTIONS(900), - [anon_sym_static] = ACTIONS(900), - [anon_sym_package] = ACTIONS(900), - [anon_sym_import] = ACTIONS(900), - [anon_sym_enum] = ACTIONS(900), - [anon_sym_public] = ACTIONS(900), - [anon_sym_protected] = ACTIONS(900), - [anon_sym_private] = ACTIONS(900), - [anon_sym_abstract] = ACTIONS(900), - [anon_sym_final] = ACTIONS(900), - [anon_sym_strictfp] = ACTIONS(900), - [anon_sym_native] = ACTIONS(900), - [anon_sym_transient] = ACTIONS(900), - [anon_sym_volatile] = ACTIONS(900), - [anon_sym_sealed] = ACTIONS(900), - [anon_sym_non_DASHsealed] = ACTIONS(898), - [anon_sym_record] = ACTIONS(900), - [anon_sym_ATinterface] = ACTIONS(898), - [anon_sym_interface] = ACTIONS(900), - [anon_sym_byte] = ACTIONS(900), - [anon_sym_short] = ACTIONS(900), - [anon_sym_int] = ACTIONS(900), - [anon_sym_long] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [anon_sym_float] = ACTIONS(900), - [anon_sym_double] = ACTIONS(900), - [sym_boolean_type] = ACTIONS(900), - [sym_void_type] = ACTIONS(900), - [sym_this] = ACTIONS(900), - [sym_super] = ACTIONS(900), + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(902), + [sym_decimal_integer_literal] = ACTIONS(902), + [sym_hex_integer_literal] = ACTIONS(902), + [sym_octal_integer_literal] = ACTIONS(900), + [sym_binary_integer_literal] = ACTIONS(900), + [sym_decimal_floating_point_literal] = ACTIONS(900), + [sym_hex_floating_point_literal] = ACTIONS(902), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_character_literal] = ACTIONS(900), + [sym_string_literal] = ACTIONS(902), + [sym_text_block] = ACTIONS(900), + [sym_null_literal] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_final] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_new] = ACTIONS(902), + [anon_sym_class] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_assert] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_yield] = ACTIONS(902), + [anon_sym_synchronized] = ACTIONS(902), + [anon_sym_throw] = ACTIONS(902), + [anon_sym_try] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_AT] = ACTIONS(902), + [anon_sym_open] = ACTIONS(902), + [anon_sym_module] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_package] = ACTIONS(902), + [anon_sym_import] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_public] = ACTIONS(902), + [anon_sym_protected] = ACTIONS(902), + [anon_sym_private] = ACTIONS(902), + [anon_sym_abstract] = ACTIONS(902), + [anon_sym_strictfp] = ACTIONS(902), + [anon_sym_native] = ACTIONS(902), + [anon_sym_transient] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_sealed] = ACTIONS(902), + [anon_sym_non_DASHsealed] = ACTIONS(900), + [anon_sym_record] = ACTIONS(902), + [anon_sym_ATinterface] = ACTIONS(900), + [anon_sym_interface] = ACTIONS(902), + [anon_sym_byte] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [anon_sym_int] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_float] = ACTIONS(902), + [anon_sym_double] = ACTIONS(902), + [sym_boolean_type] = ACTIONS(902), + [sym_void_type] = ACTIONS(902), + [sym_this] = ACTIONS(902), + [sym_super] = ACTIONS(902), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(902), - [sym_identifier] = ACTIONS(904), - [sym_decimal_integer_literal] = ACTIONS(904), - [sym_hex_integer_literal] = ACTIONS(904), - [sym_octal_integer_literal] = ACTIONS(902), - [sym_binary_integer_literal] = ACTIONS(902), - [sym_decimal_floating_point_literal] = ACTIONS(902), - [sym_hex_floating_point_literal] = ACTIONS(904), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_character_literal] = ACTIONS(902), - [sym_string_literal] = ACTIONS(904), - [sym_text_block] = ACTIONS(902), - [sym_null_literal] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_TILDE] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_new] = ACTIONS(904), - [anon_sym_class] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_case] = ACTIONS(904), - [anon_sym_default] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_assert] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_synchronized] = ACTIONS(904), - [anon_sym_throw] = ACTIONS(904), - [anon_sym_try] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(906), + [sym_decimal_integer_literal] = ACTIONS(906), + [sym_hex_integer_literal] = ACTIONS(906), + [sym_octal_integer_literal] = ACTIONS(904), + [sym_binary_integer_literal] = ACTIONS(904), + [sym_decimal_floating_point_literal] = ACTIONS(904), + [sym_hex_floating_point_literal] = ACTIONS(906), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_character_literal] = ACTIONS(904), + [sym_string_literal] = ACTIONS(906), + [sym_text_block] = ACTIONS(904), + [sym_null_literal] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_final] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_new] = ACTIONS(906), + [anon_sym_class] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_assert] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(906), + [anon_sym_synchronized] = ACTIONS(906), + [anon_sym_throw] = ACTIONS(906), + [anon_sym_try] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), [anon_sym_else] = ACTIONS(906), - [anon_sym_for] = ACTIONS(904), - [anon_sym_AT] = ACTIONS(904), - [anon_sym_open] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_static] = ACTIONS(904), - [anon_sym_package] = ACTIONS(904), - [anon_sym_import] = ACTIONS(904), - [anon_sym_enum] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_abstract] = ACTIONS(904), - [anon_sym_final] = ACTIONS(904), - [anon_sym_strictfp] = ACTIONS(904), - [anon_sym_native] = ACTIONS(904), - [anon_sym_transient] = ACTIONS(904), - [anon_sym_volatile] = ACTIONS(904), - [anon_sym_sealed] = ACTIONS(904), - [anon_sym_non_DASHsealed] = ACTIONS(902), - [anon_sym_record] = ACTIONS(904), - [anon_sym_ATinterface] = ACTIONS(902), - [anon_sym_interface] = ACTIONS(904), - [anon_sym_byte] = ACTIONS(904), - [anon_sym_short] = ACTIONS(904), - [anon_sym_int] = ACTIONS(904), - [anon_sym_long] = ACTIONS(904), - [anon_sym_char] = ACTIONS(904), - [anon_sym_float] = ACTIONS(904), - [anon_sym_double] = ACTIONS(904), - [sym_boolean_type] = ACTIONS(904), - [sym_void_type] = ACTIONS(904), - [sym_this] = ACTIONS(904), - [sym_super] = ACTIONS(904), + [anon_sym_for] = ACTIONS(906), + [anon_sym_AT] = ACTIONS(906), + [anon_sym_open] = ACTIONS(906), + [anon_sym_module] = ACTIONS(906), + [anon_sym_static] = ACTIONS(906), + [anon_sym_package] = ACTIONS(906), + [anon_sym_import] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_abstract] = ACTIONS(906), + [anon_sym_strictfp] = ACTIONS(906), + [anon_sym_native] = ACTIONS(906), + [anon_sym_transient] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_sealed] = ACTIONS(906), + [anon_sym_non_DASHsealed] = ACTIONS(904), + [anon_sym_record] = ACTIONS(906), + [anon_sym_ATinterface] = ACTIONS(904), + [anon_sym_interface] = ACTIONS(906), + [anon_sym_byte] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [anon_sym_int] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_char] = ACTIONS(906), + [anon_sym_float] = ACTIONS(906), + [anon_sym_double] = ACTIONS(906), + [sym_boolean_type] = ACTIONS(906), + [sym_void_type] = ACTIONS(906), + [sym_this] = ACTIONS(906), + [sym_super] = ACTIONS(906), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -33553,6 +32348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(908), [anon_sym_PLUS] = ACTIONS(910), [anon_sym_DASH] = ACTIONS(910), + [anon_sym_final] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(908), [anon_sym_TILDE] = ACTIONS(908), [anon_sym_PLUS_PLUS] = ACTIONS(908), @@ -33589,7 +32385,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(910), [anon_sym_private] = ACTIONS(910), [anon_sym_abstract] = ACTIONS(910), - [anon_sym_final] = ACTIONS(910), [anon_sym_strictfp] = ACTIONS(910), [anon_sym_native] = ACTIONS(910), [anon_sym_transient] = ACTIONS(910), @@ -33631,6 +32426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(912), [anon_sym_PLUS] = ACTIONS(914), [anon_sym_DASH] = ACTIONS(914), + [anon_sym_final] = ACTIONS(914), [anon_sym_BANG] = ACTIONS(912), [anon_sym_TILDE] = ACTIONS(912), [anon_sym_PLUS_PLUS] = ACTIONS(912), @@ -33667,7 +32463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(914), [anon_sym_private] = ACTIONS(914), [anon_sym_abstract] = ACTIONS(914), - [anon_sym_final] = ACTIONS(914), [anon_sym_strictfp] = ACTIONS(914), [anon_sym_native] = ACTIONS(914), [anon_sym_transient] = ACTIONS(914), @@ -33692,84 +32487,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(589), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym_array_initializer] = STATE(1176), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(364), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { [ts_builtin_sym_end] = ACTIONS(916), [sym_identifier] = ACTIONS(918), [sym_decimal_integer_literal] = ACTIONS(918), @@ -33787,6 +32504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(916), [anon_sym_PLUS] = ACTIONS(918), [anon_sym_DASH] = ACTIONS(918), + [anon_sym_final] = ACTIONS(918), [anon_sym_BANG] = ACTIONS(916), [anon_sym_TILDE] = ACTIONS(916), [anon_sym_PLUS_PLUS] = ACTIONS(916), @@ -33823,7 +32541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(918), [anon_sym_private] = ACTIONS(918), [anon_sym_abstract] = ACTIONS(918), - [anon_sym_final] = ACTIONS(918), [anon_sym_strictfp] = ACTIONS(918), [anon_sym_native] = ACTIONS(918), [anon_sym_transient] = ACTIONS(918), @@ -33847,7 +32564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [250] = { + [249] = { [ts_builtin_sym_end] = ACTIONS(920), [sym_identifier] = ACTIONS(922), [sym_decimal_integer_literal] = ACTIONS(922), @@ -33865,6 +32582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(920), [anon_sym_PLUS] = ACTIONS(922), [anon_sym_DASH] = ACTIONS(922), + [anon_sym_final] = ACTIONS(922), [anon_sym_BANG] = ACTIONS(920), [anon_sym_TILDE] = ACTIONS(920), [anon_sym_PLUS_PLUS] = ACTIONS(920), @@ -33901,7 +32619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(922), [anon_sym_private] = ACTIONS(922), [anon_sym_abstract] = ACTIONS(922), - [anon_sym_final] = ACTIONS(922), [anon_sym_strictfp] = ACTIONS(922), [anon_sym_native] = ACTIONS(922), [anon_sym_transient] = ACTIONS(922), @@ -33925,7 +32642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [251] = { + [250] = { [ts_builtin_sym_end] = ACTIONS(924), [sym_identifier] = ACTIONS(926), [sym_decimal_integer_literal] = ACTIONS(926), @@ -33943,6 +32660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(924), [anon_sym_PLUS] = ACTIONS(926), [anon_sym_DASH] = ACTIONS(926), + [anon_sym_final] = ACTIONS(926), [anon_sym_BANG] = ACTIONS(924), [anon_sym_TILDE] = ACTIONS(924), [anon_sym_PLUS_PLUS] = ACTIONS(924), @@ -33979,7 +32697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(926), [anon_sym_private] = ACTIONS(926), [anon_sym_abstract] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), [anon_sym_strictfp] = ACTIONS(926), [anon_sym_native] = ACTIONS(926), [anon_sym_transient] = ACTIONS(926), @@ -34003,7 +32720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [252] = { + [251] = { [ts_builtin_sym_end] = ACTIONS(928), [sym_identifier] = ACTIONS(930), [sym_decimal_integer_literal] = ACTIONS(930), @@ -34021,6 +32738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(928), [anon_sym_PLUS] = ACTIONS(930), [anon_sym_DASH] = ACTIONS(930), + [anon_sym_final] = ACTIONS(930), [anon_sym_BANG] = ACTIONS(928), [anon_sym_TILDE] = ACTIONS(928), [anon_sym_PLUS_PLUS] = ACTIONS(928), @@ -34057,7 +32775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(930), [anon_sym_private] = ACTIONS(930), [anon_sym_abstract] = ACTIONS(930), - [anon_sym_final] = ACTIONS(930), [anon_sym_strictfp] = ACTIONS(930), [anon_sym_native] = ACTIONS(930), [anon_sym_transient] = ACTIONS(930), @@ -34081,7 +32798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [253] = { + [252] = { [ts_builtin_sym_end] = ACTIONS(932), [sym_identifier] = ACTIONS(934), [sym_decimal_integer_literal] = ACTIONS(934), @@ -34099,6 +32816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(932), [anon_sym_PLUS] = ACTIONS(934), [anon_sym_DASH] = ACTIONS(934), + [anon_sym_final] = ACTIONS(934), [anon_sym_BANG] = ACTIONS(932), [anon_sym_TILDE] = ACTIONS(932), [anon_sym_PLUS_PLUS] = ACTIONS(932), @@ -34135,7 +32853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(934), [anon_sym_private] = ACTIONS(934), [anon_sym_abstract] = ACTIONS(934), - [anon_sym_final] = ACTIONS(934), [anon_sym_strictfp] = ACTIONS(934), [anon_sym_native] = ACTIONS(934), [anon_sym_transient] = ACTIONS(934), @@ -34159,7 +32876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [254] = { + [253] = { [ts_builtin_sym_end] = ACTIONS(936), [sym_identifier] = ACTIONS(938), [sym_decimal_integer_literal] = ACTIONS(938), @@ -34177,6 +32894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(936), [anon_sym_PLUS] = ACTIONS(938), [anon_sym_DASH] = ACTIONS(938), + [anon_sym_final] = ACTIONS(938), [anon_sym_BANG] = ACTIONS(936), [anon_sym_TILDE] = ACTIONS(936), [anon_sym_PLUS_PLUS] = ACTIONS(936), @@ -34213,7 +32931,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(938), [anon_sym_private] = ACTIONS(938), [anon_sym_abstract] = ACTIONS(938), - [anon_sym_final] = ACTIONS(938), [anon_sym_strictfp] = ACTIONS(938), [anon_sym_native] = ACTIONS(938), [anon_sym_transient] = ACTIONS(938), @@ -34237,196 +32954,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [255] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(611), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [254] = { + [ts_builtin_sym_end] = ACTIONS(940), + [sym_identifier] = ACTIONS(942), + [sym_decimal_integer_literal] = ACTIONS(942), + [sym_hex_integer_literal] = ACTIONS(942), + [sym_octal_integer_literal] = ACTIONS(940), + [sym_binary_integer_literal] = ACTIONS(940), + [sym_decimal_floating_point_literal] = ACTIONS(940), + [sym_hex_floating_point_literal] = ACTIONS(942), + [sym_true] = ACTIONS(942), + [sym_false] = ACTIONS(942), + [sym_character_literal] = ACTIONS(940), + [sym_string_literal] = ACTIONS(942), + [sym_text_block] = ACTIONS(940), + [sym_null_literal] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_final] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(942), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_yield] = ACTIONS(942), + [anon_sym_synchronized] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_AT] = ACTIONS(942), + [anon_sym_open] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_static] = ACTIONS(942), + [anon_sym_package] = ACTIONS(942), + [anon_sym_import] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(942), + [anon_sym_strictfp] = ACTIONS(942), + [anon_sym_native] = ACTIONS(942), + [anon_sym_transient] = ACTIONS(942), + [anon_sym_volatile] = ACTIONS(942), + [anon_sym_sealed] = ACTIONS(942), + [anon_sym_non_DASHsealed] = ACTIONS(940), + [anon_sym_record] = ACTIONS(942), + [anon_sym_ATinterface] = ACTIONS(940), + [anon_sym_interface] = ACTIONS(942), + [anon_sym_byte] = ACTIONS(942), + [anon_sym_short] = ACTIONS(942), + [anon_sym_int] = ACTIONS(942), + [anon_sym_long] = ACTIONS(942), + [anon_sym_char] = ACTIONS(942), + [anon_sym_float] = ACTIONS(942), + [anon_sym_double] = ACTIONS(942), + [sym_boolean_type] = ACTIONS(942), + [sym_void_type] = ACTIONS(942), + [sym_this] = ACTIONS(942), + [sym_super] = ACTIONS(942), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [255] = { + [ts_builtin_sym_end] = ACTIONS(944), + [sym_identifier] = ACTIONS(946), + [sym_decimal_integer_literal] = ACTIONS(946), + [sym_hex_integer_literal] = ACTIONS(946), + [sym_octal_integer_literal] = ACTIONS(944), + [sym_binary_integer_literal] = ACTIONS(944), + [sym_decimal_floating_point_literal] = ACTIONS(944), + [sym_hex_floating_point_literal] = ACTIONS(946), + [sym_true] = ACTIONS(946), + [sym_false] = ACTIONS(946), + [sym_character_literal] = ACTIONS(944), + [sym_string_literal] = ACTIONS(946), + [sym_text_block] = ACTIONS(944), + [sym_null_literal] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_final] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_new] = ACTIONS(946), + [anon_sym_class] = ACTIONS(946), + [anon_sym_switch] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_assert] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_synchronized] = ACTIONS(946), + [anon_sym_throw] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_AT] = ACTIONS(946), + [anon_sym_open] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_static] = ACTIONS(946), + [anon_sym_package] = ACTIONS(946), + [anon_sym_import] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_abstract] = ACTIONS(946), + [anon_sym_strictfp] = ACTIONS(946), + [anon_sym_native] = ACTIONS(946), + [anon_sym_transient] = ACTIONS(946), + [anon_sym_volatile] = ACTIONS(946), + [anon_sym_sealed] = ACTIONS(946), + [anon_sym_non_DASHsealed] = ACTIONS(944), + [anon_sym_record] = ACTIONS(946), + [anon_sym_ATinterface] = ACTIONS(944), + [anon_sym_interface] = ACTIONS(946), + [anon_sym_byte] = ACTIONS(946), + [anon_sym_short] = ACTIONS(946), + [anon_sym_int] = ACTIONS(946), + [anon_sym_long] = ACTIONS(946), + [anon_sym_char] = ACTIONS(946), + [anon_sym_float] = ACTIONS(946), + [anon_sym_double] = ACTIONS(946), + [sym_boolean_type] = ACTIONS(946), + [sym_void_type] = ACTIONS(946), + [sym_this] = ACTIONS(946), + [sym_super] = ACTIONS(946), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [256] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(618), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(948), + [sym_identifier] = ACTIONS(950), + [sym_decimal_integer_literal] = ACTIONS(950), + [sym_hex_integer_literal] = ACTIONS(950), + [sym_octal_integer_literal] = ACTIONS(948), + [sym_binary_integer_literal] = ACTIONS(948), + [sym_decimal_floating_point_literal] = ACTIONS(948), + [sym_hex_floating_point_literal] = ACTIONS(950), + [sym_true] = ACTIONS(950), + [sym_false] = ACTIONS(950), + [sym_character_literal] = ACTIONS(948), + [sym_string_literal] = ACTIONS(950), + [sym_text_block] = ACTIONS(948), + [sym_null_literal] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_final] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS_PLUS] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_new] = ACTIONS(950), + [anon_sym_class] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_case] = ACTIONS(950), + [anon_sym_default] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_assert] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_synchronized] = ACTIONS(950), + [anon_sym_throw] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_open] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_package] = ACTIONS(950), + [anon_sym_import] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_public] = ACTIONS(950), + [anon_sym_protected] = ACTIONS(950), + [anon_sym_private] = ACTIONS(950), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_strictfp] = ACTIONS(950), + [anon_sym_native] = ACTIONS(950), + [anon_sym_transient] = ACTIONS(950), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_sealed] = ACTIONS(950), + [anon_sym_non_DASHsealed] = ACTIONS(948), + [anon_sym_record] = ACTIONS(950), + [anon_sym_ATinterface] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_byte] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_int] = ACTIONS(950), + [anon_sym_long] = ACTIONS(950), + [anon_sym_char] = ACTIONS(950), + [anon_sym_float] = ACTIONS(950), + [anon_sym_double] = ACTIONS(950), + [sym_boolean_type] = ACTIONS(950), + [sym_void_type] = ACTIONS(950), + [sym_this] = ACTIONS(950), + [sym_super] = ACTIONS(950), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [257] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(607), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(596), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym_array_initializer] = STATE(1021), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34443,13 +33241,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -34469,118 +33267,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [258] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(574), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(952), + [sym_identifier] = ACTIONS(954), + [sym_decimal_integer_literal] = ACTIONS(954), + [sym_hex_integer_literal] = ACTIONS(954), + [sym_octal_integer_literal] = ACTIONS(952), + [sym_binary_integer_literal] = ACTIONS(952), + [sym_decimal_floating_point_literal] = ACTIONS(952), + [sym_hex_floating_point_literal] = ACTIONS(954), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [sym_character_literal] = ACTIONS(952), + [sym_string_literal] = ACTIONS(954), + [sym_text_block] = ACTIONS(952), + [sym_null_literal] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_final] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_assert] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_synchronized] = ACTIONS(954), + [anon_sym_throw] = ACTIONS(954), + [anon_sym_try] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_AT] = ACTIONS(954), + [anon_sym_open] = ACTIONS(954), + [anon_sym_module] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_package] = ACTIONS(954), + [anon_sym_import] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_public] = ACTIONS(954), + [anon_sym_protected] = ACTIONS(954), + [anon_sym_private] = ACTIONS(954), + [anon_sym_abstract] = ACTIONS(954), + [anon_sym_strictfp] = ACTIONS(954), + [anon_sym_native] = ACTIONS(954), + [anon_sym_transient] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_sealed] = ACTIONS(954), + [anon_sym_non_DASHsealed] = ACTIONS(952), + [anon_sym_record] = ACTIONS(954), + [anon_sym_ATinterface] = ACTIONS(952), + [anon_sym_interface] = ACTIONS(954), + [anon_sym_byte] = ACTIONS(954), + [anon_sym_short] = ACTIONS(954), + [anon_sym_int] = ACTIONS(954), + [anon_sym_long] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_float] = ACTIONS(954), + [anon_sym_double] = ACTIONS(954), + [sym_boolean_type] = ACTIONS(954), + [sym_void_type] = ACTIONS(954), + [sym_this] = ACTIONS(954), + [sym_super] = ACTIONS(954), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [259] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(627), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(612), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34597,13 +33396,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -34623,41 +33422,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [260] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(564), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(575), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34672,15 +33471,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(958), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -34700,41 +33499,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [261] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(606), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(593), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34749,15 +33548,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(960), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -34777,41 +33576,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [262] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(563), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(638), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34826,15 +33625,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(954), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(962), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -34854,41 +33653,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [263] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(578), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34903,15 +33702,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(964), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -34931,41 +33730,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [264] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(561), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(634), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34980,15 +33779,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(958), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(966), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35008,41 +33807,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [265] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(541), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(567), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35057,15 +33856,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(968), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35085,41 +33884,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [266] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(625), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(583), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35134,15 +33933,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(970), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35162,41 +33961,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [267] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(575), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(571), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35211,15 +34010,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35239,41 +34038,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [268] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(569), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(548), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35288,15 +34087,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(974), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35316,41 +34115,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [269] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(619), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(597), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35365,15 +34164,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(976), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35393,41 +34192,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [270] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(633), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35444,13 +34243,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(978), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35470,41 +34269,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [271] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(570), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(619), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35519,15 +34318,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35547,41 +34346,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [272] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(622), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(574), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35596,15 +34395,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(982), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35624,41 +34423,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [273] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35673,15 +34472,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(976), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(984), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35701,41 +34500,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [274] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(620), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(572), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35750,15 +34549,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(986), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35778,41 +34577,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [275] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(566), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(619), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35827,15 +34626,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(980), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35855,41 +34654,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [276] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(573), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(632), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35904,15 +34703,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(982), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(990), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -35932,41 +34731,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [277] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(625), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(635), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35983,13 +34782,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36009,41 +34808,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [278] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(624), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(582), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36058,15 +34857,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(994), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36086,41 +34885,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [279] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(611), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36137,13 +34936,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(996), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36163,41 +34962,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [280] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(559), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(628), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36212,15 +35011,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(990), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(998), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36240,41 +35039,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [281] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(581), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(562), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36289,15 +35088,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36317,41 +35116,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [282] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(576), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(612), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36366,15 +35165,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(994), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(1002), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36394,41 +35193,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [283] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(549), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36443,15 +35242,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(996), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1004), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36471,41 +35270,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [284] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(577), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(569), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36520,15 +35319,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(1006), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36548,117 +35347,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [285] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(580), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [286] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(602), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [sym__literal] = STATE(461), + [sym_expression] = STATE(550), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36673,14 +35396,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1008), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -36699,270 +35423,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(538), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [288] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [289] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(562), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [290] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(600), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [286] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(590), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36977,14 +35473,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37003,42 +35500,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(593), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [287] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(551), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37053,14 +35550,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1012), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37079,42 +35577,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(595), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [288] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(585), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37129,14 +35627,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1014), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37155,119 +35654,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [293] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(578), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [294] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(556), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [289] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(570), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37280,19 +35703,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37307,42 +35730,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(609), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [290] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37359,12 +35782,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37383,42 +35806,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(518), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [291] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(612), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37435,12 +35858,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37459,42 +35882,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [292] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(610), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37511,12 +35934,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37535,43 +35958,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(520), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), + [293] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(555), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37584,19 +36007,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37611,42 +36034,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [299] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(524), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [294] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(503), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37663,12 +36086,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37687,118 +36110,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [300] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(554), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [301] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(612), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [295] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(624), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37815,12 +36162,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37839,43 +36186,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [302] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [296] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(617), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37888,19 +36235,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -37915,42 +36262,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [303] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(514), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [297] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(501), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -37967,12 +36314,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -37991,42 +36338,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [304] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(513), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [298] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38043,12 +36390,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38067,42 +36414,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [305] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [299] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38119,12 +36466,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38143,42 +36490,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [306] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(512), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [300] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(502), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38195,12 +36542,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38219,42 +36566,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [307] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(516), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [301] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(600), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38271,12 +36618,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38295,118 +36642,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [308] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(613), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [309] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(603), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [302] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38423,12 +36694,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38447,42 +36718,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [310] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [303] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(622), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38499,12 +36770,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38523,119 +36794,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [311] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(560), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [312] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(496), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [304] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(573), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38648,19 +36843,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38675,42 +36870,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [313] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(614), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [305] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38727,12 +36922,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38751,43 +36946,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [314] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(547), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [306] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(568), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38800,19 +36995,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -38827,118 +37022,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [315] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(515), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [316] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(519), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [307] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(533), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -38955,12 +37074,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -38979,43 +37098,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [317] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(582), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [308] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(561), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39028,19 +37147,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39055,42 +37174,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [318] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(610), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [309] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(619), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39107,12 +37226,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -39131,43 +37250,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [319] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(494), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [310] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(566), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39180,19 +37299,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39207,43 +37326,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [320] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(540), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), + [311] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(584), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39256,19 +37375,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39283,42 +37402,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [321] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(623), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [312] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(637), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39335,12 +37454,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -39359,43 +37478,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [322] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [313] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(565), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39408,19 +37527,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39435,43 +37554,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [323] = { - [sym__literal] = STATE(473), + [314] = { + [sym__literal] = STATE(461), [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39484,19 +37603,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39511,119 +37630,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [324] = { - [sym_identifier] = ACTIONS(696), - [sym_decimal_integer_literal] = ACTIONS(696), - [sym_hex_integer_literal] = ACTIONS(696), - [sym_octal_integer_literal] = ACTIONS(698), - [sym_binary_integer_literal] = ACTIONS(698), - [sym_decimal_floating_point_literal] = ACTIONS(698), - [sym_hex_floating_point_literal] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_character_literal] = ACTIONS(698), - [sym_string_literal] = ACTIONS(696), - [sym_text_block] = ACTIONS(698), - [sym_null_literal] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_new] = ACTIONS(696), - [anon_sym_class] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_case] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(698), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_break] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(696), - [anon_sym_synchronized] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_try] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_open] = ACTIONS(696), - [anon_sym_module] = ACTIONS(696), - [anon_sym_static] = ACTIONS(696), - [anon_sym_package] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_enum] = ACTIONS(696), - [anon_sym_public] = ACTIONS(696), - [anon_sym_protected] = ACTIONS(696), - [anon_sym_private] = ACTIONS(696), - [anon_sym_abstract] = ACTIONS(696), - [anon_sym_final] = ACTIONS(696), - [anon_sym_strictfp] = ACTIONS(696), - [anon_sym_native] = ACTIONS(696), - [anon_sym_transient] = ACTIONS(696), - [anon_sym_volatile] = ACTIONS(696), - [anon_sym_sealed] = ACTIONS(696), - [anon_sym_non_DASHsealed] = ACTIONS(698), - [anon_sym_record] = ACTIONS(696), - [anon_sym_ATinterface] = ACTIONS(698), - [anon_sym_interface] = ACTIONS(696), - [anon_sym_byte] = ACTIONS(696), - [anon_sym_short] = ACTIONS(696), - [anon_sym_int] = ACTIONS(696), - [anon_sym_long] = ACTIONS(696), - [anon_sym_char] = ACTIONS(696), - [anon_sym_float] = ACTIONS(696), - [anon_sym_double] = ACTIONS(696), - [sym_boolean_type] = ACTIONS(696), - [sym_void_type] = ACTIONS(696), - [sym_this] = ACTIONS(696), - [sym_super] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [325] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(584), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [315] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39636,19 +37679,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39663,43 +37706,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [326] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(583), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [316] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39712,19 +37755,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39739,43 +37782,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [327] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(615), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(307), + [317] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(564), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39788,19 +37831,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39815,42 +37858,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [328] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(496), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [318] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -39867,12 +37910,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -39891,43 +37934,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [329] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(587), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [319] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(563), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -39940,19 +37983,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -39967,42 +38010,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [330] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(526), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [320] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(536), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40019,12 +38062,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40043,42 +38086,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [331] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(617), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [321] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(601), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40095,12 +38138,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40119,43 +38162,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [332] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(586), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [322] = { + [sym_identifier] = ACTIONS(860), + [sym_decimal_integer_literal] = ACTIONS(860), + [sym_hex_integer_literal] = ACTIONS(860), + [sym_octal_integer_literal] = ACTIONS(862), + [sym_binary_integer_literal] = ACTIONS(862), + [sym_decimal_floating_point_literal] = ACTIONS(862), + [sym_hex_floating_point_literal] = ACTIONS(860), + [sym_true] = ACTIONS(860), + [sym_false] = ACTIONS(860), + [sym_character_literal] = ACTIONS(862), + [sym_string_literal] = ACTIONS(860), + [sym_text_block] = ACTIONS(862), + [sym_null_literal] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_final] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [anon_sym_new] = ACTIONS(860), + [anon_sym_class] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_case] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_do] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_synchronized] = ACTIONS(860), + [anon_sym_throw] = ACTIONS(860), + [anon_sym_try] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_open] = ACTIONS(860), + [anon_sym_module] = ACTIONS(860), + [anon_sym_static] = ACTIONS(860), + [anon_sym_package] = ACTIONS(860), + [anon_sym_import] = ACTIONS(860), + [anon_sym_enum] = ACTIONS(860), + [anon_sym_public] = ACTIONS(860), + [anon_sym_protected] = ACTIONS(860), + [anon_sym_private] = ACTIONS(860), + [anon_sym_abstract] = ACTIONS(860), + [anon_sym_strictfp] = ACTIONS(860), + [anon_sym_native] = ACTIONS(860), + [anon_sym_transient] = ACTIONS(860), + [anon_sym_volatile] = ACTIONS(860), + [anon_sym_sealed] = ACTIONS(860), + [anon_sym_non_DASHsealed] = ACTIONS(862), + [anon_sym_record] = ACTIONS(860), + [anon_sym_ATinterface] = ACTIONS(862), + [anon_sym_interface] = ACTIONS(860), + [anon_sym_byte] = ACTIONS(860), + [anon_sym_short] = ACTIONS(860), + [anon_sym_int] = ACTIONS(860), + [anon_sym_long] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_float] = ACTIONS(860), + [anon_sym_double] = ACTIONS(860), + [sym_boolean_type] = ACTIONS(860), + [sym_void_type] = ACTIONS(860), + [sym_this] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [323] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(547), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -40168,19 +38287,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -40195,42 +38314,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [333] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [324] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(502), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [325] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(534), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40247,12 +38442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40271,42 +38466,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [334] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(567), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [326] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(529), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40323,12 +38518,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40347,42 +38542,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [335] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(591), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [327] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(636), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40399,12 +38594,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40423,43 +38618,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [336] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1218), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(390), - [sym_array_access] = STATE(390), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1218), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(648), + [328] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(506), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -40472,19 +38667,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_record] = ACTIONS(658), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -40499,42 +38694,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [337] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(605), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [329] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(603), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40551,12 +38746,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40575,42 +38770,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [338] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(596), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [330] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(559), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40627,12 +38822,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40651,42 +38846,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [339] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(625), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [331] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(524), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40703,12 +38898,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40727,42 +38922,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [340] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [332] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(501), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [333] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(535), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40779,12 +39050,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40803,42 +39074,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [341] = { - [sym__literal] = STATE(473), - [sym_expression] = STATE(494), - [sym_cast_expression] = STATE(495), - [sym_assignment_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_instanceof_expression] = STATE(495), - [sym_lambda_expression] = STATE(495), - [sym_inferred_parameters] = STATE(1247), - [sym_ternary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_primary_expression] = STATE(469), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(376), - [sym_array_access] = STATE(376), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_switch_expression] = STATE(495), - [sym__annotation] = STATE(654), - [sym_marker_annotation] = STATE(654), - [sym_annotation] = STATE(654), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(755), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [sym_formal_parameters] = STATE(1247), - [aux_sym_array_creation_expression_repeat1] = STATE(654), + [334] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(521), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -40855,12 +39126,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), [anon_sym_AT] = ACTIONS(344), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), @@ -40879,334 +39150,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [342] = { - [sym_identifier] = ACTIONS(1000), - [sym_decimal_integer_literal] = ACTIONS(1000), - [sym_hex_integer_literal] = ACTIONS(1000), - [sym_octal_integer_literal] = ACTIONS(1002), - [sym_binary_integer_literal] = ACTIONS(1002), - [sym_decimal_floating_point_literal] = ACTIONS(1002), - [sym_hex_floating_point_literal] = ACTIONS(1000), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_character_literal] = ACTIONS(1002), - [sym_string_literal] = ACTIONS(1000), - [sym_text_block] = ACTIONS(1002), - [sym_null_literal] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_new] = ACTIONS(1000), - [anon_sym_class] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_assert] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1000), - [anon_sym_synchronized] = ACTIONS(1000), - [anon_sym_throw] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_AT] = ACTIONS(1000), - [anon_sym_open] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_package] = ACTIONS(1000), - [anon_sym_import] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_public] = ACTIONS(1000), - [anon_sym_protected] = ACTIONS(1000), - [anon_sym_private] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(1000), - [anon_sym_final] = ACTIONS(1000), - [anon_sym_strictfp] = ACTIONS(1000), - [anon_sym_native] = ACTIONS(1000), - [anon_sym_transient] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_sealed] = ACTIONS(1000), - [anon_sym_non_DASHsealed] = ACTIONS(1002), - [anon_sym_record] = ACTIONS(1000), - [anon_sym_ATinterface] = ACTIONS(1002), - [anon_sym_interface] = ACTIONS(1000), - [anon_sym_byte] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [anon_sym_int] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_char] = ACTIONS(1000), - [anon_sym_float] = ACTIONS(1000), - [anon_sym_double] = ACTIONS(1000), - [sym_boolean_type] = ACTIONS(1000), - [sym_void_type] = ACTIONS(1000), - [sym_this] = ACTIONS(1000), - [sym_super] = ACTIONS(1000), + [335] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [343] = { - [sym_identifier] = ACTIONS(1004), - [sym_decimal_integer_literal] = ACTIONS(1004), - [sym_hex_integer_literal] = ACTIONS(1004), - [sym_octal_integer_literal] = ACTIONS(1006), - [sym_binary_integer_literal] = ACTIONS(1006), - [sym_decimal_floating_point_literal] = ACTIONS(1006), - [sym_hex_floating_point_literal] = ACTIONS(1004), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_character_literal] = ACTIONS(1006), - [sym_string_literal] = ACTIONS(1004), - [sym_text_block] = ACTIONS(1006), - [sym_null_literal] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1004), - [anon_sym_class] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_assert] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_yield] = ACTIONS(1004), - [anon_sym_synchronized] = ACTIONS(1004), - [anon_sym_throw] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_AT] = ACTIONS(1004), - [anon_sym_open] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_package] = ACTIONS(1004), - [anon_sym_import] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_abstract] = ACTIONS(1004), - [anon_sym_final] = ACTIONS(1004), - [anon_sym_strictfp] = ACTIONS(1004), - [anon_sym_native] = ACTIONS(1004), - [anon_sym_transient] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_sealed] = ACTIONS(1004), - [anon_sym_non_DASHsealed] = ACTIONS(1006), - [anon_sym_record] = ACTIONS(1004), - [anon_sym_ATinterface] = ACTIONS(1006), - [anon_sym_interface] = ACTIONS(1004), - [anon_sym_byte] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [anon_sym_int] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_float] = ACTIONS(1004), - [anon_sym_double] = ACTIONS(1004), - [sym_boolean_type] = ACTIONS(1004), - [sym_void_type] = ACTIONS(1004), - [sym_this] = ACTIONS(1004), - [sym_super] = ACTIONS(1004), + [336] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(576), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [344] = { - [sym_identifier] = ACTIONS(1008), - [sym_decimal_integer_literal] = ACTIONS(1008), - [sym_hex_integer_literal] = ACTIONS(1008), - [sym_octal_integer_literal] = ACTIONS(1010), - [sym_binary_integer_literal] = ACTIONS(1010), - [sym_decimal_floating_point_literal] = ACTIONS(1010), - [sym_hex_floating_point_literal] = ACTIONS(1008), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_character_literal] = ACTIONS(1010), - [sym_string_literal] = ACTIONS(1008), - [sym_text_block] = ACTIONS(1010), - [sym_null_literal] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_class] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_assert] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_yield] = ACTIONS(1008), - [anon_sym_synchronized] = ACTIONS(1008), - [anon_sym_throw] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_AT] = ACTIONS(1008), - [anon_sym_open] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_package] = ACTIONS(1008), - [anon_sym_import] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_abstract] = ACTIONS(1008), - [anon_sym_final] = ACTIONS(1008), - [anon_sym_strictfp] = ACTIONS(1008), - [anon_sym_native] = ACTIONS(1008), - [anon_sym_transient] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_sealed] = ACTIONS(1008), - [anon_sym_non_DASHsealed] = ACTIONS(1010), - [anon_sym_record] = ACTIONS(1008), - [anon_sym_ATinterface] = ACTIONS(1010), - [anon_sym_interface] = ACTIONS(1008), - [anon_sym_byte] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [anon_sym_int] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), - [anon_sym_float] = ACTIONS(1008), - [anon_sym_double] = ACTIONS(1008), - [sym_boolean_type] = ACTIONS(1008), - [sym_void_type] = ACTIONS(1008), - [sym_this] = ACTIONS(1008), - [sym_super] = ACTIONS(1008), + [337] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [345] = { - [sym_identifier] = ACTIONS(1012), - [sym_decimal_integer_literal] = ACTIONS(1012), - [sym_hex_integer_literal] = ACTIONS(1012), - [sym_octal_integer_literal] = ACTIONS(1014), - [sym_binary_integer_literal] = ACTIONS(1014), - [sym_decimal_floating_point_literal] = ACTIONS(1014), - [sym_hex_floating_point_literal] = ACTIONS(1012), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_character_literal] = ACTIONS(1014), - [sym_string_literal] = ACTIONS(1012), - [sym_text_block] = ACTIONS(1014), - [sym_null_literal] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_new] = ACTIONS(1012), - [anon_sym_class] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_assert] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_yield] = ACTIONS(1012), - [anon_sym_synchronized] = ACTIONS(1012), - [anon_sym_throw] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_AT] = ACTIONS(1012), - [anon_sym_open] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_package] = ACTIONS(1012), - [anon_sym_import] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_abstract] = ACTIONS(1012), - [anon_sym_final] = ACTIONS(1012), - [anon_sym_strictfp] = ACTIONS(1012), - [anon_sym_native] = ACTIONS(1012), - [anon_sym_transient] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_sealed] = ACTIONS(1012), - [anon_sym_non_DASHsealed] = ACTIONS(1014), - [anon_sym_record] = ACTIONS(1012), - [anon_sym_ATinterface] = ACTIONS(1014), - [anon_sym_interface] = ACTIONS(1012), - [anon_sym_byte] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [anon_sym_int] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_char] = ACTIONS(1012), - [anon_sym_float] = ACTIONS(1012), - [anon_sym_double] = ACTIONS(1012), - [sym_boolean_type] = ACTIONS(1012), - [sym_void_type] = ACTIONS(1012), - [sym_this] = ACTIONS(1012), - [sym_super] = ACTIONS(1012), + [338] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(545), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [346] = { - [sym__literal] = STATE(473), - [sym_primary_expression] = STATE(1031), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(869), - [sym_array_access] = STATE(473), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_resource] = STATE(1105), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(694), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(701), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [aux_sym_modifiers_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(1016), + [339] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -41219,27 +39503,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -41254,34 +39530,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [347] = { - [sym__literal] = STATE(473), - [sym_primary_expression] = STATE(1031), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(869), - [sym_array_access] = STATE(473), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_resource] = STATE(1105), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(694), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(701), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [aux_sym_modifiers_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(1016), + [340] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(609), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -41294,27 +39579,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -41329,34 +39606,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [348] = { - [sym__literal] = STATE(473), - [sym_primary_expression] = STATE(1031), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(869), - [sym_array_access] = STATE(473), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_resource] = STATE(1033), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(694), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(701), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [aux_sym_modifiers_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(1016), + [341] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(503), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -41369,26 +39655,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -41403,34 +39682,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [349] = { - [sym__literal] = STATE(473), - [sym_primary_expression] = STATE(1031), - [sym_array_creation_expression] = STATE(473), - [sym_parenthesized_expression] = STATE(473), - [sym_class_literal] = STATE(473), - [sym_object_creation_expression] = STATE(473), - [sym__unqualified_object_creation_expression] = STATE(466), - [sym_field_access] = STATE(869), - [sym_array_access] = STATE(473), - [sym_method_invocation] = STATE(473), - [sym_method_reference] = STATE(473), - [sym_resource] = STATE(1105), - [sym__annotation] = STATE(590), - [sym_marker_annotation] = STATE(590), - [sym_annotation] = STATE(590), - [sym_modifiers] = STATE(694), - [sym__type] = STATE(1246), - [sym__unannotated_type] = STATE(701), - [sym_annotated_type] = STATE(759), - [sym_scoped_type_identifier] = STATE(709), - [sym_generic_type] = STATE(736), - [sym_array_type] = STATE(672), - [sym_integral_type] = STATE(672), - [sym_floating_point_type] = STATE(672), - [aux_sym_array_creation_expression_repeat1] = STATE(654), - [aux_sym_modifiers_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(1016), + [342] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(530), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -41443,26 +39731,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(9), [sym_text_block] = ACTIONS(11), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), [anon_sym_byte] = ACTIONS(77), [anon_sym_short] = ACTIONS(77), [anon_sym_int] = ACTIONS(77), @@ -41477,52 +39758,878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(73), 1, - anon_sym_ATinterface, - ACTIONS(75), 1, - anon_sym_interface, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, - anon_sym_LT, - ACTIONS(1032), 1, - anon_sym_RBRACE, - ACTIONS(1034), 1, - anon_sym_SEMI, - ACTIONS(1036), 1, - anon_sym_static, - ACTIONS(1038), 1, - anon_sym_record, - STATE(599), 1, - sym_modifiers, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(657), 1, - sym_type_parameters, - STATE(669), 1, - sym_generic_type, - STATE(683), 1, - sym__unannotated_type, - STATE(937), 1, - sym__constructor_declarator, - STATE(1059), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, + [343] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(532), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [344] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(556), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1234), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(393), + [sym_array_access] = STATE(393), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1234), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(750), + [anon_sym_module] = ACTIONS(750), + [anon_sym_record] = ACTIONS(750), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [345] = { + [sym__literal] = STATE(461), + [sym_expression] = STATE(623), + [sym_cast_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_binary_expression] = STATE(510), + [sym_instanceof_expression] = STATE(510), + [sym_lambda_expression] = STATE(510), + [sym_inferred_parameters] = STATE(1206), + [sym_ternary_expression] = STATE(510), + [sym_unary_expression] = STATE(510), + [sym_update_expression] = STATE(510), + [sym_primary_expression] = STATE(482), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_switch_expression] = STATE(510), + [sym__annotation] = STATE(661), + [sym_marker_annotation] = STATE(661), + [sym_annotation] = STATE(661), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(761), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [sym_formal_parameters] = STATE(1206), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [sym_identifier] = ACTIONS(307), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(21), + [anon_sym_DASH_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_record] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [346] = { + [sym__literal] = STATE(461), + [sym_primary_expression] = STATE(992), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(875), + [sym_array_access] = STATE(461), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_resource] = STATE(1172), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(701), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(706), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [aux_sym_modifiers_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(1016), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_final] = ACTIONS(299), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(299), + [anon_sym_synchronized] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(301), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(299), + [anon_sym_public] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_abstract] = ACTIONS(299), + [anon_sym_strictfp] = ACTIONS(299), + [anon_sym_native] = ACTIONS(299), + [anon_sym_transient] = ACTIONS(299), + [anon_sym_volatile] = ACTIONS(299), + [anon_sym_sealed] = ACTIONS(299), + [anon_sym_non_DASHsealed] = ACTIONS(305), + [anon_sym_record] = ACTIONS(1024), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [347] = { + [sym_identifier] = ACTIONS(1026), + [sym_decimal_integer_literal] = ACTIONS(1026), + [sym_hex_integer_literal] = ACTIONS(1026), + [sym_octal_integer_literal] = ACTIONS(1028), + [sym_binary_integer_literal] = ACTIONS(1028), + [sym_decimal_floating_point_literal] = ACTIONS(1028), + [sym_hex_floating_point_literal] = ACTIONS(1026), + [sym_true] = ACTIONS(1026), + [sym_false] = ACTIONS(1026), + [sym_character_literal] = ACTIONS(1028), + [sym_string_literal] = ACTIONS(1026), + [sym_text_block] = ACTIONS(1028), + [sym_null_literal] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_final] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1026), + [anon_sym_class] = ACTIONS(1026), + [anon_sym_switch] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_synchronized] = ACTIONS(1026), + [anon_sym_throw] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(1026), + [anon_sym_open] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_package] = ACTIONS(1026), + [anon_sym_import] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1026), + [anon_sym_public] = ACTIONS(1026), + [anon_sym_protected] = ACTIONS(1026), + [anon_sym_private] = ACTIONS(1026), + [anon_sym_abstract] = ACTIONS(1026), + [anon_sym_strictfp] = ACTIONS(1026), + [anon_sym_native] = ACTIONS(1026), + [anon_sym_transient] = ACTIONS(1026), + [anon_sym_volatile] = ACTIONS(1026), + [anon_sym_sealed] = ACTIONS(1026), + [anon_sym_non_DASHsealed] = ACTIONS(1028), + [anon_sym_record] = ACTIONS(1026), + [anon_sym_ATinterface] = ACTIONS(1028), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_byte] = ACTIONS(1026), + [anon_sym_short] = ACTIONS(1026), + [anon_sym_int] = ACTIONS(1026), + [anon_sym_long] = ACTIONS(1026), + [anon_sym_char] = ACTIONS(1026), + [anon_sym_float] = ACTIONS(1026), + [anon_sym_double] = ACTIONS(1026), + [sym_boolean_type] = ACTIONS(1026), + [sym_void_type] = ACTIONS(1026), + [sym_this] = ACTIONS(1026), + [sym_super] = ACTIONS(1026), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [348] = { + [sym__literal] = STATE(461), + [sym_primary_expression] = STATE(992), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(875), + [sym_array_access] = STATE(461), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_resource] = STATE(1172), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(701), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(706), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [aux_sym_modifiers_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(1016), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_final] = ACTIONS(299), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(299), + [anon_sym_synchronized] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(301), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(299), + [anon_sym_public] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_abstract] = ACTIONS(299), + [anon_sym_strictfp] = ACTIONS(299), + [anon_sym_native] = ACTIONS(299), + [anon_sym_transient] = ACTIONS(299), + [anon_sym_volatile] = ACTIONS(299), + [anon_sym_sealed] = ACTIONS(299), + [anon_sym_non_DASHsealed] = ACTIONS(305), + [anon_sym_record] = ACTIONS(1024), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [349] = { + [sym_identifier] = ACTIONS(1032), + [sym_decimal_integer_literal] = ACTIONS(1032), + [sym_hex_integer_literal] = ACTIONS(1032), + [sym_octal_integer_literal] = ACTIONS(1034), + [sym_binary_integer_literal] = ACTIONS(1034), + [sym_decimal_floating_point_literal] = ACTIONS(1034), + [sym_hex_floating_point_literal] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_character_literal] = ACTIONS(1034), + [sym_string_literal] = ACTIONS(1032), + [sym_text_block] = ACTIONS(1034), + [sym_null_literal] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_final] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1032), + [anon_sym_class] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_assert] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_synchronized] = ACTIONS(1032), + [anon_sym_throw] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1032), + [anon_sym_open] = ACTIONS(1032), + [anon_sym_module] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_package] = ACTIONS(1032), + [anon_sym_import] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_public] = ACTIONS(1032), + [anon_sym_protected] = ACTIONS(1032), + [anon_sym_private] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1032), + [anon_sym_strictfp] = ACTIONS(1032), + [anon_sym_native] = ACTIONS(1032), + [anon_sym_transient] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_sealed] = ACTIONS(1032), + [anon_sym_non_DASHsealed] = ACTIONS(1034), + [anon_sym_record] = ACTIONS(1032), + [anon_sym_ATinterface] = ACTIONS(1034), + [anon_sym_interface] = ACTIONS(1032), + [anon_sym_byte] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [anon_sym_int] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_char] = ACTIONS(1032), + [anon_sym_float] = ACTIONS(1032), + [anon_sym_double] = ACTIONS(1032), + [sym_boolean_type] = ACTIONS(1032), + [sym_void_type] = ACTIONS(1032), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [350] = { + [sym_identifier] = ACTIONS(1036), + [sym_decimal_integer_literal] = ACTIONS(1036), + [sym_hex_integer_literal] = ACTIONS(1036), + [sym_octal_integer_literal] = ACTIONS(1038), + [sym_binary_integer_literal] = ACTIONS(1038), + [sym_decimal_floating_point_literal] = ACTIONS(1038), + [sym_hex_floating_point_literal] = ACTIONS(1036), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_character_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(1036), + [sym_text_block] = ACTIONS(1038), + [sym_null_literal] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_final] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_class] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_assert] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_yield] = ACTIONS(1036), + [anon_sym_synchronized] = ACTIONS(1036), + [anon_sym_throw] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym_open] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_package] = ACTIONS(1036), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_abstract] = ACTIONS(1036), + [anon_sym_strictfp] = ACTIONS(1036), + [anon_sym_native] = ACTIONS(1036), + [anon_sym_transient] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_sealed] = ACTIONS(1036), + [anon_sym_non_DASHsealed] = ACTIONS(1038), + [anon_sym_record] = ACTIONS(1036), + [anon_sym_ATinterface] = ACTIONS(1038), + [anon_sym_interface] = ACTIONS(1036), + [anon_sym_byte] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [anon_sym_int] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_char] = ACTIONS(1036), + [anon_sym_float] = ACTIONS(1036), + [anon_sym_double] = ACTIONS(1036), + [sym_boolean_type] = ACTIONS(1036), + [sym_void_type] = ACTIONS(1036), + [sym_this] = ACTIONS(1036), + [sym_super] = ACTIONS(1036), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [351] = { + [sym_identifier] = ACTIONS(1040), + [sym_decimal_integer_literal] = ACTIONS(1040), + [sym_hex_integer_literal] = ACTIONS(1040), + [sym_octal_integer_literal] = ACTIONS(1042), + [sym_binary_integer_literal] = ACTIONS(1042), + [sym_decimal_floating_point_literal] = ACTIONS(1042), + [sym_hex_floating_point_literal] = ACTIONS(1040), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_character_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(1040), + [sym_text_block] = ACTIONS(1042), + [sym_null_literal] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_final] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_class] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_assert] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_yield] = ACTIONS(1040), + [anon_sym_synchronized] = ACTIONS(1040), + [anon_sym_throw] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1040), + [anon_sym_open] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_package] = ACTIONS(1040), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_public] = ACTIONS(1040), + [anon_sym_protected] = ACTIONS(1040), + [anon_sym_private] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(1040), + [anon_sym_strictfp] = ACTIONS(1040), + [anon_sym_native] = ACTIONS(1040), + [anon_sym_transient] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_sealed] = ACTIONS(1040), + [anon_sym_non_DASHsealed] = ACTIONS(1042), + [anon_sym_record] = ACTIONS(1040), + [anon_sym_ATinterface] = ACTIONS(1042), + [anon_sym_interface] = ACTIONS(1040), + [anon_sym_byte] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [anon_sym_int] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_char] = ACTIONS(1040), + [anon_sym_float] = ACTIONS(1040), + [anon_sym_double] = ACTIONS(1040), + [sym_boolean_type] = ACTIONS(1040), + [sym_void_type] = ACTIONS(1040), + [sym_this] = ACTIONS(1040), + [sym_super] = ACTIONS(1040), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [352] = { + [sym__literal] = STATE(461), + [sym_primary_expression] = STATE(992), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(875), + [sym_array_access] = STATE(461), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_resource] = STATE(1172), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(701), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(706), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [aux_sym_modifiers_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(1016), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_final] = ACTIONS(299), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(299), + [anon_sym_synchronized] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(301), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(299), + [anon_sym_public] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_abstract] = ACTIONS(299), + [anon_sym_strictfp] = ACTIONS(299), + [anon_sym_native] = ACTIONS(299), + [anon_sym_transient] = ACTIONS(299), + [anon_sym_volatile] = ACTIONS(299), + [anon_sym_sealed] = ACTIONS(299), + [anon_sym_non_DASHsealed] = ACTIONS(305), + [anon_sym_record] = ACTIONS(1024), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [353] = { + [sym__literal] = STATE(461), + [sym_primary_expression] = STATE(992), + [sym_array_creation_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_class_literal] = STATE(461), + [sym_object_creation_expression] = STATE(461), + [sym__unqualified_object_creation_expression] = STATE(494), + [sym_field_access] = STATE(875), + [sym_array_access] = STATE(461), + [sym_method_invocation] = STATE(461), + [sym_method_reference] = STATE(461), + [sym_resource] = STATE(1054), + [sym__annotation] = STATE(606), + [sym_marker_annotation] = STATE(606), + [sym_annotation] = STATE(606), + [sym_modifiers] = STATE(701), + [sym__type] = STATE(1201), + [sym__unannotated_type] = STATE(706), + [sym_annotated_type] = STATE(770), + [sym_scoped_type_identifier] = STATE(722), + [sym_generic_type] = STATE(751), + [sym_array_type] = STATE(685), + [sym_integral_type] = STATE(685), + [sym_floating_point_type] = STATE(685), + [aux_sym_array_creation_expression_repeat1] = STATE(661), + [aux_sym_modifiers_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(1016), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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), + [sym_string_literal] = ACTIONS(9), + [sym_text_block] = ACTIONS(11), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_final] = ACTIONS(299), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(299), + [anon_sym_synchronized] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(301), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(299), + [anon_sym_public] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_abstract] = ACTIONS(299), + [anon_sym_strictfp] = ACTIONS(299), + [anon_sym_native] = ACTIONS(299), + [anon_sym_transient] = ACTIONS(299), + [anon_sym_volatile] = ACTIONS(299), + [anon_sym_sealed] = ACTIONS(299), + [anon_sym_non_DASHsealed] = ACTIONS(305), + [anon_sym_record] = ACTIONS(1024), + [anon_sym_byte] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [anon_sym_int] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_char] = ACTIONS(77), + [anon_sym_float] = ACTIONS(79), + [anon_sym_double] = ACTIONS(79), + [sym_boolean_type] = ACTIONS(81), + [sym_void_type] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 28, + ACTIONS(25), 1, + anon_sym_class, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_AT, + ACTIONS(67), 1, + anon_sym_enum, + ACTIONS(69), 1, + anon_sym_non_DASHsealed, + ACTIONS(73), 1, + anon_sym_ATinterface, + ACTIONS(75), 1, + anon_sym_interface, + ACTIONS(1044), 1, + sym_identifier, + ACTIONS(1046), 1, + anon_sym_LT, + ACTIONS(1048), 1, + anon_sym_RBRACE, + ACTIONS(1050), 1, + anon_sym_SEMI, + ACTIONS(1052), 1, + anon_sym_static, + ACTIONS(1054), 1, + anon_sym_record, + STATE(604), 1, + sym_modifiers, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(667), 1, + sym_type_parameters, + STATE(684), 1, + sym_generic_type, + STATE(704), 1, + sym__unannotated_type, + STATE(927), 1, + sym__constructor_declarator, + STATE(983), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, @@ -41530,11 +40637,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -41545,35 +40652,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(354), 11, - 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, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(17), 12, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [118] = 28, - ACTIONS(23), 1, + STATE(355), 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(25), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_AT, @@ -41585,31 +40693,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1028), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(1030), 1, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(1036), 1, + ACTIONS(1052), 1, anon_sym_static, - ACTIONS(1038), 1, + ACTIONS(1054), 1, anon_sym_record, - ACTIONS(1040), 1, + ACTIONS(1056), 1, anon_sym_RBRACE, - ACTIONS(1042), 1, + ACTIONS(1058), 1, anon_sym_SEMI, - STATE(599), 1, + STATE(604), 1, sym_modifiers, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(657), 1, + STATE(667), 1, sym_type_parameters, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(683), 1, + STATE(704), 1, sym__unannotated_type, - STATE(937), 1, + STATE(927), 1, sym__constructor_declarator, - STATE(1059), 1, + STATE(983), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -41620,11 +40728,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -41635,35 +40743,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(352), 11, - 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, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(17), 12, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [236] = 28, - ACTIONS(23), 1, + STATE(358), 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, + [238] = 28, + ACTIONS(25), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_AT, @@ -41675,31 +40784,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1028), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(1030), 1, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(1034), 1, - anon_sym_SEMI, - ACTIONS(1036), 1, + ACTIONS(1052), 1, anon_sym_static, - ACTIONS(1038), 1, + ACTIONS(1054), 1, anon_sym_record, - ACTIONS(1044), 1, + ACTIONS(1058), 1, + anon_sym_SEMI, + ACTIONS(1060), 1, anon_sym_RBRACE, - STATE(599), 1, + STATE(604), 1, sym_modifiers, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(657), 1, + STATE(667), 1, sym_type_parameters, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(683), 1, + STATE(704), 1, sym__unannotated_type, - STATE(937), 1, + STATE(927), 1, sym__constructor_declarator, - STATE(1059), 1, + STATE(983), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -41710,11 +40819,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -41725,35 +40834,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(354), 11, - 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, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(17), 12, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [354] = 28, - ACTIONS(23), 1, + STATE(358), 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, + [357] = 28, + ACTIONS(25), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_AT, @@ -41765,31 +40875,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1028), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(1030), 1, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(1036), 1, + ACTIONS(1052), 1, anon_sym_static, - ACTIONS(1038), 1, + ACTIONS(1054), 1, anon_sym_record, - ACTIONS(1046), 1, + ACTIONS(1062), 1, anon_sym_RBRACE, - ACTIONS(1048), 1, + ACTIONS(1064), 1, anon_sym_SEMI, - STATE(599), 1, + STATE(604), 1, sym_modifiers, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(657), 1, + STATE(667), 1, sym_type_parameters, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(683), 1, + STATE(704), 1, sym__unannotated_type, - STATE(937), 1, + STATE(927), 1, sym__constructor_declarator, - STATE(1059), 1, + STATE(983), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -41800,11 +40910,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -41815,257 +40925,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(350), 11, - 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, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, + ACTIONS(17), 12, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [472] = 28, - ACTIONS(1050), 1, + STATE(356), 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, + [476] = 28, + ACTIONS(1066), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1069), 1, anon_sym_LT, - ACTIONS(1056), 1, + ACTIONS(1075), 1, anon_sym_class, - ACTIONS(1059), 1, + ACTIONS(1078), 1, anon_sym_LBRACE, - ACTIONS(1062), 1, + ACTIONS(1081), 1, anon_sym_RBRACE, - ACTIONS(1067), 1, + ACTIONS(1083), 1, anon_sym_SEMI, - ACTIONS(1070), 1, + ACTIONS(1086), 1, anon_sym_AT, - ACTIONS(1073), 1, + ACTIONS(1089), 1, anon_sym_static, - ACTIONS(1076), 1, + ACTIONS(1092), 1, anon_sym_enum, - ACTIONS(1079), 1, + ACTIONS(1095), 1, anon_sym_non_DASHsealed, - ACTIONS(1082), 1, + ACTIONS(1098), 1, anon_sym_record, - ACTIONS(1085), 1, + ACTIONS(1101), 1, anon_sym_ATinterface, - ACTIONS(1088), 1, + ACTIONS(1104), 1, anon_sym_interface, - STATE(599), 1, + STATE(604), 1, sym_modifiers, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(657), 1, + STATE(667), 1, sym_type_parameters, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(683), 1, + STATE(704), 1, sym__unannotated_type, - STATE(937), 1, + STATE(927), 1, sym__constructor_declarator, - STATE(1059), 1, + STATE(983), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1094), 2, + ACTIONS(1110), 2, anon_sym_float, anon_sym_double, - ACTIONS(1097), 2, + ACTIONS(1113), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1091), 5, + ACTIONS(1107), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(354), 11, - 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, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(1064), 12, + ACTIONS(1072), 12, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [590] = 14, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(1108), 1, - anon_sym_EQ, - ACTIONS(1112), 1, - anon_sym_LT, - ACTIONS(1115), 1, - anon_sym_DASH_GT, - ACTIONS(1120), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_AT, - STATE(454), 1, - sym_argument_list, - STATE(662), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1117), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1100), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, + STATE(358), 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, + [595] = 25, + ACTIONS(1116), 1, sym_identifier, - ACTIONS(1110), 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(1104), 14, - 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, - ACTIONS(1106), 14, - 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, + ACTIONS(1119), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_class, + ACTIONS(1128), 1, anon_sym_RBRACE, + ACTIONS(1130), 1, anon_sym_SEMI, - [674] = 24, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, + ACTIONS(1133), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1136), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1139), 1, anon_sym_non_DASHsealed, - ACTIONS(73), 1, + ACTIONS(1142), 1, + anon_sym_record, + ACTIONS(1145), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(1148), 1, anon_sym_interface, - ACTIONS(1030), 1, - anon_sym_LT, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_RBRACE, - ACTIONS(1130), 1, - anon_sym_SEMI, - STATE(635), 1, + STATE(626), 1, sym_modifiers, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(660), 1, + STATE(659), 1, sym_type_parameters, - STATE(669), 1, - sym_generic_type, STATE(684), 1, + sym_generic_type, + STATE(695), 1, sym__unannotated_type, - STATE(1059), 1, + STATE(983), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(1154), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(1157), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(1151), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(357), 7, + STATE(359), 8, sym_enum_declaration, sym_class_declaration, + sym_record_declaration, sym_annotation_type_declaration, sym_interface_declaration, sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(29), 13, + ACTIONS(1122), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42073,14 +41119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [777] = 24, - ACTIONS(23), 1, + [702] = 25, + ACTIONS(25), 1, anon_sym_class, ACTIONS(57), 1, anon_sym_AT, @@ -42092,25 +41137,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1030), 1, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(1126), 1, + ACTIONS(1054), 1, + anon_sym_record, + ACTIONS(1160), 1, sym_identifier, - ACTIONS(1132), 1, + ACTIONS(1162), 1, anon_sym_RBRACE, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_SEMI, - STATE(635), 1, + STATE(626), 1, sym_modifiers, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(660), 1, + STATE(659), 1, sym_type_parameters, - STATE(669), 1, - sym_generic_type, STATE(684), 1, + sym_generic_type, + STATE(695), 1, sym__unannotated_type, - STATE(1059), 1, + STATE(983), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -42121,11 +41168,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -42136,15 +41183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(358), 7, + STATE(359), 8, sym_enum_declaration, sym_class_declaration, + sym_record_declaration, sym_annotation_type_declaration, sym_interface_declaration, sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(29), 13, + ACTIONS(17), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42152,78 +41201,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [880] = 24, - ACTIONS(1136), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_LT, - ACTIONS(1142), 1, + [809] = 25, + ACTIONS(25), 1, anon_sym_class, - ACTIONS(1145), 1, - anon_sym_RBRACE, - ACTIONS(1150), 1, - anon_sym_SEMI, - ACTIONS(1153), 1, + ACTIONS(57), 1, anon_sym_AT, - ACTIONS(1156), 1, + ACTIONS(67), 1, anon_sym_enum, - ACTIONS(1159), 1, + ACTIONS(69), 1, anon_sym_non_DASHsealed, - ACTIONS(1162), 1, + ACTIONS(73), 1, anon_sym_ATinterface, - ACTIONS(1165), 1, + ACTIONS(75), 1, anon_sym_interface, - STATE(635), 1, + ACTIONS(1046), 1, + anon_sym_LT, + ACTIONS(1054), 1, + anon_sym_record, + ACTIONS(1160), 1, + sym_identifier, + ACTIONS(1166), 1, + anon_sym_RBRACE, + ACTIONS(1168), 1, + anon_sym_SEMI, + STATE(626), 1, sym_modifiers, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(660), 1, + STATE(659), 1, sym_type_parameters, - STATE(669), 1, - sym_generic_type, STATE(684), 1, + sym_generic_type, + STATE(695), 1, sym__unannotated_type, - STATE(1059), 1, + STATE(983), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1171), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(1174), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1168), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(358), 7, + STATE(360), 8, sym_enum_declaration, sym_class_declaration, + sym_record_declaration, sym_annotation_type_declaration, sym_interface_declaration, sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(1147), 13, + ACTIONS(17), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42231,61 +41283,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [983] = 18, - ACTIONS(1102), 1, + [916] = 14, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1108), 1, + ACTIONS(1178), 1, anon_sym_EQ, - ACTIONS(1112), 1, + ACTIONS(1182), 1, anon_sym_LT, - ACTIONS(1115), 1, + ACTIONS(1185), 1, anon_sym_DASH_GT, - ACTIONS(1177), 1, - anon_sym_AMP, - ACTIONS(1180), 1, - anon_sym_RPAREN, - ACTIONS(1184), 1, - anon_sym_COMMA, - ACTIONS(1186), 1, + ACTIONS(1190), 1, anon_sym_DOT, - STATE(454), 1, + ACTIONS(1194), 1, + anon_sym_AT, + STATE(472), 1, sym_argument_list, - STATE(662), 1, + STATE(674), 1, sym_type_arguments, - STATE(1004), 1, - aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1117), 2, + ACTIONS(1187), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1124), 2, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1100), 5, + ACTIONS(1170), 4, anon_sym_open, anon_sym_module, anon_sym_record, - sym_this, sym_identifier, - ACTIONS(1106), 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(1110), 11, + ACTIONS(1180), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42297,7 +41328,8 @@ 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(1104), 12, + ACTIONS(1174), 14, + anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -42310,37 +41342,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1074] = 15, - ACTIONS(1102), 1, + anon_sym_COLON, + ACTIONS(1176), 14, + 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_RBRACE, + anon_sym_SEMI, + [1000] = 18, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1108), 1, + ACTIONS(1178), 1, anon_sym_EQ, - ACTIONS(1112), 1, + ACTIONS(1182), 1, anon_sym_LT, - ACTIONS(1115), 1, + ACTIONS(1185), 1, anon_sym_DASH_GT, - ACTIONS(1120), 1, + ACTIONS(1196), 1, + anon_sym_AMP, + ACTIONS(1199), 1, + anon_sym_RPAREN, + ACTIONS(1203), 1, + anon_sym_COMMA, + ACTIONS(1205), 1, anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_AT, - ACTIONS(1190), 1, - anon_sym_COLON, - STATE(454), 1, + STATE(472), 1, sym_argument_list, - STATE(662), 1, + STATE(674), 1, sym_type_arguments, + STATE(1015), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1117), 2, + ACTIONS(1187), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1100), 4, + ACTIONS(1194), 2, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1170), 5, anon_sym_open, anon_sym_module, anon_sym_record, + sym_this, sym_identifier, - ACTIONS(1106), 10, + ACTIONS(1176), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42350,8 +41406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_SEMI, - ACTIONS(1110), 11, + ACTIONS(1180), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42363,8 +41418,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(1104), 13, - anon_sym_AMP, + ACTIONS(1174), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -42377,37 +41431,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1156] = 15, - ACTIONS(1102), 1, + [1091] = 15, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1108), 1, + ACTIONS(1178), 1, anon_sym_EQ, - ACTIONS(1112), 1, + ACTIONS(1182), 1, anon_sym_LT, - ACTIONS(1115), 1, + ACTIONS(1185), 1, anon_sym_DASH_GT, - ACTIONS(1120), 1, + ACTIONS(1190), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1194), 1, anon_sym_AT, - ACTIONS(1192), 1, + ACTIONS(1209), 1, anon_sym_COLON, - STATE(454), 1, + STATE(472), 1, sym_argument_list, - STATE(662), 1, + STATE(674), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1117), 2, + ACTIONS(1187), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1100), 4, + ACTIONS(1170), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1106), 10, + ACTIONS(1176), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42418,7 +41472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1110), 11, + ACTIONS(1180), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42430,7 +41484,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(1104), 13, + ACTIONS(1174), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -42444,56 +41498,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1238] = 20, + [1173] = 15, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(1182), 1, + anon_sym_LT, + ACTIONS(1185), 1, + anon_sym_DASH_GT, + ACTIONS(1190), 1, + anon_sym_DOT, ACTIONS(1194), 1, + anon_sym_AT, + ACTIONS(1211), 1, + anon_sym_COLON, + STATE(472), 1, + sym_argument_list, + STATE(674), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1187), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1170), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1176), 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(1180), 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(1174), 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, + [1255] = 20, + ACTIONS(1213), 1, sym_identifier, - ACTIONS(1197), 1, + ACTIONS(1219), 1, anon_sym_class, - ACTIONS(1200), 1, + ACTIONS(1222), 1, anon_sym_RBRACE, - ACTIONS(1205), 1, + ACTIONS(1224), 1, anon_sym_AT, - ACTIONS(1208), 1, + ACTIONS(1227), 1, anon_sym_enum, - ACTIONS(1211), 1, + ACTIONS(1230), 1, anon_sym_non_DASHsealed, - ACTIONS(1214), 1, + ACTIONS(1233), 1, anon_sym_ATinterface, - ACTIONS(1217), 1, + ACTIONS(1236), 1, anon_sym_interface, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(664), 1, + STATE(673), 1, sym_modifiers, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(699), 1, + STATE(712), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1223), 2, + ACTIONS(1242), 2, anon_sym_float, anon_sym_double, - ACTIONS(1226), 2, + ACTIONS(1245), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1220), 5, + ACTIONS(1239), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(362), 7, + STATE(366), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -42501,7 +41622,8 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(1202), 13, + ACTIONS(1216), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42509,14 +41631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1329] = 20, - ACTIONS(23), 1, + [1346] = 20, + ACTIONS(25), 1, anon_sym_class, ACTIONS(57), 1, anon_sym_AT, @@ -42528,17 +41649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - ACTIONS(1229), 1, + ACTIONS(1248), 1, anon_sym_RBRACE, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(664), 1, + STATE(673), 1, sym_modifiers, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(699), 1, + STATE(712), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -42549,11 +41670,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -42564,7 +41685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(362), 7, + STATE(368), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -42572,7 +41693,8 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, + ACTIONS(17), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42580,14 +41702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1420] = 20, - ACTIONS(23), 1, + [1437] = 20, + ACTIONS(25), 1, anon_sym_class, ACTIONS(57), 1, anon_sym_AT, @@ -42599,17 +41720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(75), 1, anon_sym_interface, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1250), 1, anon_sym_RBRACE, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(664), 1, + STATE(673), 1, sym_modifiers, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(699), 1, + STATE(712), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -42620,11 +41741,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(424), 4, + STATE(423), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -42635,7 +41756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(363), 7, + STATE(366), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -42643,7 +41764,8 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, + ACTIONS(17), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42651,38 +41773,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1511] = 8, - ACTIONS(1102), 1, + [1528] = 5, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, - anon_sym_EQ, - ACTIONS(1241), 1, - anon_sym_DASH_GT, - STATE(472), 1, + STATE(458), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1239), 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(1233), 14, + ACTIONS(1252), 15, anon_sym_AMP, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, @@ -42696,8 +41802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1235), 18, + ACTIONS(1254), 30, 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, @@ -42705,6 +41822,7 @@ 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, @@ -42715,17 +41833,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1577] = 5, - ACTIONS(1102), 1, + [1588] = 8, + ACTIONS(1172), 1, anon_sym_LPAREN, - STATE(481), 1, + ACTIONS(1260), 1, + anon_sym_EQ, + ACTIONS(1264), 1, + anon_sym_DASH_GT, + STATE(464), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1243), 15, + ACTIONS(1262), 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(1256), 14, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, @@ -42739,19 +41872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1245), 30, + ACTIONS(1258), 18, 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, @@ -42759,7 +41881,6 @@ 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, @@ -42770,32 +41891,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1637] = 5, - ACTIONS(1102), 1, + [1654] = 11, + ACTIONS(1172), 1, anon_sym_LPAREN, - STATE(482), 1, + ACTIONS(1260), 1, + anon_sym_EQ, + ACTIONS(1264), 1, + anon_sym_DASH_GT, + ACTIONS(1266), 1, + sym_identifier, + STATE(464), 1, sym_argument_list, + STATE(1072), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1247), 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(1249), 30, - anon_sym_RPAREN, + ACTIONS(1268), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1262), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42807,33 +41923,44 @@ 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(1258), 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_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_RBRACE, anon_sym_SEMI, - [1697] = 5, - ACTIONS(1102), 1, + ACTIONS(1256), 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_instanceof, + [1726] = 5, + ACTIONS(1172), 1, anon_sym_LPAREN, - STATE(457), 1, + STATE(492), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1251), 15, + ACTIONS(1270), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -42849,7 +41976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1253), 30, + ACTIONS(1272), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -42880,27 +42007,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1757] = 11, - ACTIONS(1102), 1, + [1786] = 5, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, - anon_sym_EQ, - ACTIONS(1241), 1, - anon_sym_DASH_GT, - ACTIONS(1255), 1, - sym_identifier, - STATE(472), 1, + STATE(493), 1, sym_argument_list, - STATE(993), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - ACTIONS(1239), 11, + ACTIONS(1274), 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(1276), 30, + anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42912,44 +42044,33 @@ 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(1235), 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_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_RBRACE, anon_sym_SEMI, - ACTIONS(1233), 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_instanceof, - [1829] = 5, - ACTIONS(1102), 1, + [1846] = 5, + ACTIONS(1172), 1, anon_sym_LPAREN, - STATE(458), 1, + STATE(477), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1259), 15, + ACTIONS(1278), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -42965,7 +42086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1261), 30, + ACTIONS(1280), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -42996,11 +42117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1889] = 3, + [1906] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1247), 15, + ACTIONS(1278), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43016,7 +42137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1249), 30, + ACTIONS(1280), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43047,11 +42168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1943] = 3, + [1960] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1251), 15, + ACTIONS(1274), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43067,7 +42188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1253), 30, + ACTIONS(1276), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43098,11 +42219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1997] = 3, + [2014] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 15, + ACTIONS(1282), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43118,7 +42239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1265), 30, + ACTIONS(1284), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43149,30 +42270,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2051] = 13, - ACTIONS(1102), 1, + [2068] = 13, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_LT, + ACTIONS(1190), 1, + anon_sym_DOT, + ACTIONS(1194), 1, + anon_sym_AT, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(1290), 1, + anon_sym_DASH_GT, + STATE(472), 1, + sym_argument_list, + STATE(674), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1187), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1176), 11, + 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(1288), 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(1174), 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_COLON, + [2142] = 13, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1182), 1, anon_sym_LT, - ACTIONS(1120), 1, + ACTIONS(1185), 1, + anon_sym_DASH_GT, + ACTIONS(1190), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1194), 1, anon_sym_AT, - ACTIONS(1267), 1, + ACTIONS(1293), 1, anon_sym_EQ, - ACTIONS(1271), 1, - anon_sym_DASH_GT, - STATE(454), 1, + STATE(472), 1, sym_argument_list, - STATE(662), 1, + STATE(674), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1117), 2, + ACTIONS(1187), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1106), 11, + ACTIONS(1176), 11, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43180,11 +42363,10 @@ static const uint16_t ts_small_parse_table[] = { 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(1269), 11, + ACTIONS(1180), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43196,7 +42378,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(1104), 13, + ACTIONS(1174), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -43209,26 +42391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - [2125] = 11, - ACTIONS(1102), 1, + [2215] = 11, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1203), 1, anon_sym_COMMA, - ACTIONS(1237), 1, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(1241), 1, + ACTIONS(1264), 1, anon_sym_DASH_GT, - ACTIONS(1274), 1, + ACTIONS(1295), 1, anon_sym_RPAREN, - STATE(472), 1, + STATE(464), 1, sym_argument_list, - STATE(1003), 1, + STATE(1066), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1239), 11, + ACTIONS(1262), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43240,7 +42421,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(1233), 13, + ACTIONS(1256), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43254,7 +42435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(1235), 13, + ACTIONS(1258), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43268,13 +42449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [2194] = 5, - ACTIONS(1108), 1, + [2284] = 5, + ACTIONS(1178), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1110), 11, + ACTIONS(1180), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43286,7 +42467,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(1104), 14, + ACTIONS(1174), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43301,7 +42482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1106), 18, + ACTIONS(1176), 18, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43320,82 +42501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2251] = 13, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LT, - ACTIONS(1115), 1, - anon_sym_DASH_GT, - ACTIONS(1120), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_AT, - ACTIONS(1277), 1, - anon_sym_EQ, - STATE(454), 1, - sym_argument_list, - STATE(662), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1117), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1106), 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(1110), 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(1104), 12, - 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, - [2324] = 7, + [2341] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1283), 1, + ACTIONS(1302), 1, anon_sym_LBRACK, - STATE(380), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, + STATE(824), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1279), 14, + ACTIONS(1298), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43410,7 +42531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1281), 22, + ACTIONS(1300), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43433,19 +42554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2384] = 8, - ACTIONS(1102), 1, + [2401] = 8, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1304), 1, anon_sym_EQ, - ACTIONS(1289), 1, + ACTIONS(1308), 1, anon_sym_DASH_GT, - STATE(472), 1, + STATE(464), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 11, + ACTIONS(1306), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43457,7 +42578,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(1233), 14, + ACTIONS(1256), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43472,7 +42593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1235), 14, + ACTIONS(1258), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43487,74 +42608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [2446] = 7, - ACTIONS(1296), 1, - anon_sym_LBRACK, - ACTIONS(1299), 1, - anon_sym_AT, - STATE(380), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(831), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1292), 14, - 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_COLON, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1294), 22, - 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_RBRACE, - anon_sym_SEMI, - [2506] = 9, - ACTIONS(1102), 1, + [2463] = 9, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(1241), 1, + ACTIONS(1264), 1, anon_sym_DASH_GT, - ACTIONS(1302), 1, + ACTIONS(1311), 1, sym_identifier, - STATE(472), 1, + STATE(464), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1239), 11, + ACTIONS(1262), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43566,7 +42634,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(1235), 13, + ACTIONS(1258), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43580,7 +42648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - ACTIONS(1233), 14, + ACTIONS(1256), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43595,21 +42663,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [2570] = 9, - ACTIONS(1102), 1, + [2527] = 9, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(1241), 1, + ACTIONS(1264), 1, anon_sym_DASH_GT, - ACTIONS(1304), 1, + ACTIONS(1313), 1, anon_sym_module, - STATE(472), 1, + STATE(464), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1239), 11, + ACTIONS(1262), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43621,7 +42689,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(1233), 13, + ACTIONS(1256), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43635,7 +42703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(1235), 14, + ACTIONS(1258), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43650,27 +42718,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - [2634] = 9, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1310), 1, + [2591] = 7, + ACTIONS(1319), 1, anon_sym_LBRACK, - STATE(378), 1, + ACTIONS(1322), 1, + anon_sym_AT, + STATE(386), 1, aux_sym_dimensions_repeat1, - STATE(456), 1, - sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(393), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(824), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1306), 9, + ACTIONS(1315), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43679,8 +42742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, + anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1308), 23, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1317), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43693,7 +42761,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, @@ -43704,24 +42771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2697] = 8, + [2651] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1283), 1, + ACTIONS(1302), 1, anon_sym_LBRACK, - STATE(378), 1, + STATE(382), 1, aux_sym_dimensions_repeat1, - STATE(416), 1, + STATE(422), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, + STATE(824), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1312), 13, + ACTIONS(1325), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43735,7 +42802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1314), 21, + ACTIONS(1327), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43757,24 +42824,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [2758] = 8, + [2712] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1283), 1, + ACTIONS(1302), 1, anon_sym_LBRACK, - STATE(378), 1, + STATE(382), 1, aux_sym_dimensions_repeat1, - STATE(416), 1, + STATE(422), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(831), 4, + STATE(824), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1316), 13, + ACTIONS(1329), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43788,7 +42855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1318), 21, + ACTIONS(1331), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43810,27 +42877,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [2819] = 9, + [2773] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1310), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(378), 1, + STATE(382), 1, aux_sym_dimensions_repeat1, - STATE(467), 1, + STATE(469), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(393), 2, + STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(791), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1320), 9, + ACTIONS(1333), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43840,7 +42907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1322), 23, + ACTIONS(1335), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43864,27 +42931,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2882] = 9, + [2836] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1310), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(378), 1, + STATE(382), 1, aux_sym_dimensions_repeat1, - STATE(485), 1, + STATE(462), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(393), 2, + STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(791), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1324), 9, + ACTIONS(1339), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43894,7 +42961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1326), 23, + ACTIONS(1341), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43918,27 +42985,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2945] = 9, + [2899] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1310), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(378), 1, + STATE(382), 1, aux_sym_dimensions_repeat1, - STATE(461), 1, + STATE(490), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(393), 2, + STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(825), 4, + STATE(791), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1328), 9, + ACTIONS(1343), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43948,7 +43015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1330), 23, + ACTIONS(1345), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43972,76 +43039,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3008] = 19, - ACTIONS(297), 1, - anon_sym_RPAREN, + [2962] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1126), 1, - sym_identifier, - STATE(394), 1, - sym_receiver_parameter, - STATE(525), 1, - aux_sym_modifiers_repeat1, - STATE(643), 1, - aux_sym_array_creation_expression_repeat1, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(691), 1, - sym_modifiers, - STATE(700), 1, - sym__unannotated_type, + ACTIONS(1337), 1, + anon_sym_LBRACK, + STATE(382), 1, + aux_sym_dimensions_repeat1, + STATE(473), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(980), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(590), 3, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(791), 4, sym__annotation, sym_marker_annotation, sym_annotation, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(299), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [3090] = 5, - ACTIONS(1267), 1, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1347), 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(1349), 23, + 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_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [3025] = 5, + ACTIONS(1286), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1269), 11, + ACTIONS(1288), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44053,7 +43111,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(1104), 14, + ACTIONS(1174), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44068,7 +43126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1106), 15, + ACTIONS(1176), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -44084,11 +43142,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [3144] = 3, + [3079] = 19, + ACTIONS(297), 1, + anon_sym_RPAREN, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1160), 1, + sym_identifier, + STATE(398), 1, + sym_receiver_parameter, + STATE(538), 1, + aux_sym_modifiers_repeat1, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(664), 1, + aux_sym_array_creation_expression_repeat1, + STATE(684), 1, + sym_generic_type, + STATE(703), 1, + sym_modifiers, + STATE(715), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(1003), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(606), 3, + sym__annotation, + sym_marker_annotation, + sym_annotation, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(299), 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, + [3161] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 8, + ACTIONS(1353), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -44097,7 +43218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1332), 33, + ACTIONS(1351), 33, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44113,7 +43235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -44131,11 +43252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3194] = 3, + [3211] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1338), 8, + ACTIONS(1357), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -44144,7 +43265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1336), 33, + ACTIONS(1355), 33, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44160,7 +43282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -44178,23 +43299,23 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3244] = 7, - ACTIONS(1344), 1, + [3261] = 7, + ACTIONS(1363), 1, anon_sym_LBRACK, - ACTIONS(1347), 1, + ACTIONS(1366), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(393), 2, + STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(797), 4, + STATE(818), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1340), 9, + ACTIONS(1359), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44204,7 +43325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1342), 23, + ACTIONS(1361), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44228,78 +43349,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3301] = 16, + [3318] = 16, ACTIONS(301), 1, anon_sym_AT, ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - ACTIONS(1350), 1, + ACTIONS(1369), 1, anon_sym_RPAREN, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(691), 1, - sym_modifiers, - STATE(711), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(1019), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(525), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(299), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [3375] = 15, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1126), 1, - sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(691), 1, + STATE(703), 1, sym_modifiers, - STATE(711), 1, + STATE(720), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -44310,14 +43375,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(1084), 2, + STATE(998), 2, sym_formal_parameter, sym_spread_parameter, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(525), 4, + STATE(538), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -44329,63 +43394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_long, anon_sym_char, ACTIONS(299), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [3446] = 16, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1126), 1, - sym_identifier, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(680), 1, - sym_modifiers, - STATE(712), 1, - sym__unannotated_type, - STATE(868), 1, - sym_catch_type, - STATE(1241), 1, - sym_catch_formal_parameter, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(525), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(299), 13, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -44393,152 +43402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3519] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1352), 14, - 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_COLON, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1354), 24, - 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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [3566] = 6, - ACTIONS(1356), 1, - anon_sym_LT, - ACTIONS(1359), 1, - anon_sym_DOT, - STATE(411), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1100), 12, - 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_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1124), 23, - 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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [3619] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(726), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(728), 26, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_open, - anon_sym_module, - 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, - [3666] = 3, + [3392] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(874), 12, + ACTIONS(952), 12, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, @@ -44551,7 +43424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_SEMI, anon_sym_AT, - ACTIONS(876), 26, + ACTIONS(954), 26, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -44578,11 +43451,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [3713] = 3, + [3439] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1292), 14, + ACTIONS(1371), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44597,7 +43470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1294), 24, + ACTIONS(1373), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44622,17 +43495,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3760] = 6, - ACTIONS(1365), 1, + [3486] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(800), 12, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + sym_text_block, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(802), 26, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + sym_string_literal, + sym_null_literal, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_new, + anon_sym_switch, + anon_sym_open, + anon_sym_module, + 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, + [3533] = 6, + ACTIONS(1375), 1, anon_sym_LT, - ACTIONS(1368), 1, + ACTIONS(1378), 1, anon_sym_DOT, - STATE(403), 1, + STATE(412), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 12, + ACTIONS(1170), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -44645,7 +43562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1363), 23, + ACTIONS(1194), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44669,14 +43586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3813] = 3, + [3586] = 6, + ACTIONS(1384), 1, + anon_sym_LT, + ACTIONS(1387), 1, + anon_sym_DOT, + STATE(409), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1370), 13, + ACTIONS(1380), 12, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -44687,7 +43609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1372), 24, + ACTIONS(1382), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44708,15 +43630,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3859] = 3, + [3639] = 16, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1160), 1, + sym_identifier, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(689), 1, + sym_modifiers, + STATE(719), 1, + sym__unannotated_type, + STATE(873), 1, + sym_catch_type, + STATE(1208), 1, + sym_catch_formal_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(538), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(299), 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, + [3712] = 15, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1160), 1, + sym_identifier, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(703), 1, + sym_modifiers, + STATE(720), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(1190), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(538), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(299), 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, + [3783] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1374), 13, + ACTIONS(1315), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44726,11 +43760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_instanceof, + anon_sym_COLON, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1376), 24, + ACTIONS(1317), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44746,20 +43781,20 @@ 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_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3905] = 3, + [3830] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1378), 13, + ACTIONS(1389), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44773,7 +43808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1380), 24, + ACTIONS(1391), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44798,13 +43833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3951] = 4, - ACTIONS(1368), 1, - anon_sym_DOT, + [3876] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 13, + ACTIONS(1393), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44818,7 +43851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1363), 23, + ACTIONS(1395), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44839,70 +43872,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3999] = 6, - ACTIONS(1384), 1, - anon_sym_LPAREN, - ACTIONS(1388), 1, - anon_sym_DOT, - STATE(428), 1, - sym_annotation_argument_list, + [3922] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1386), 3, + ACTIONS(1397), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1382), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, 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_final, - 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, - [4051] = 6, - ACTIONS(1384), 1, + ACTIONS(1399), 24, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [3968] = 6, + ACTIONS(1403), 1, anon_sym_LPAREN, - ACTIONS(1394), 1, + ACTIONS(1407), 1, anon_sym_DOT, - STATE(436), 1, + STATE(453), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 3, + ACTIONS(1405), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1390), 31, + ACTIONS(1401), 31, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -44916,7 +43948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -44934,11 +43965,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4103] = 3, + [4020] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1396), 13, + ACTIONS(1409), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44952,7 +43983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1398), 24, + ACTIONS(1411), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44977,11 +44008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4149] = 3, + [4066] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1400), 13, + ACTIONS(1413), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44995,7 +44026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1402), 24, + ACTIONS(1415), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45020,11 +44051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4195] = 3, + [4112] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 13, + ACTIONS(1417), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45038,7 +44069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1406), 24, + ACTIONS(1419), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45063,11 +44094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4241] = 3, + [4158] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1408), 13, + ACTIONS(1421), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45081,7 +44112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1410), 24, + ACTIONS(1423), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45106,11 +44137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4287] = 3, + [4204] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 13, + ACTIONS(1425), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45124,7 +44155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1414), 24, + ACTIONS(1427), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45149,11 +44180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4333] = 3, + [4250] = 4, + ACTIONS(1387), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 13, + ACTIONS(1380), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45167,7 +44200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1418), 24, + ACTIONS(1382), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45188,15 +44221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4379] = 3, + [4298] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 13, + ACTIONS(1429), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45210,7 +44242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1363), 23, + ACTIONS(1431), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45231,14 +44263,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4424] = 3, + [4344] = 6, + ACTIONS(1403), 1, + anon_sym_LPAREN, + ACTIONS(1437), 1, + anon_sym_DOT, + STATE(454), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1435), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1433), 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, + [4396] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1420), 13, + ACTIONS(1439), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45252,7 +44331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1422), 23, + ACTIONS(1441), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45276,11 +44355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4469] = 3, + [4441] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1424), 13, + ACTIONS(1443), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45294,7 +44373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1426), 23, + ACTIONS(1445), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45318,11 +44397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4514] = 3, + [4486] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1428), 13, + ACTIONS(1380), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45336,7 +44415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1430), 23, + ACTIONS(1382), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45360,15 +44439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4559] = 5, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(476), 1, - sym_class_body, + [4531] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1432), 9, + ACTIONS(1447), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45377,8 +44452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1434), 24, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1449), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45391,27 +44470,71 @@ 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_RBRACE, anon_sym_SEMI, - [4607] = 5, - ACTIONS(1436), 1, + anon_sym_AT, + [4576] = 7, + ACTIONS(57), 1, + anon_sym_AT, + ACTIONS(1457), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1453), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(427), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1455), 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(1451), 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, + [4628] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(477), 1, + STATE(460), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1438), 9, + ACTIONS(1459), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45421,7 +44544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1440), 24, + ACTIONS(1461), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45446,15 +44569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4655] = 5, - ACTIONS(1436), 1, + [4676] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(475), 1, + STATE(480), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 9, + ACTIONS(1465), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45464,7 +44587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1444), 24, + ACTIONS(1467), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45489,15 +44612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4703] = 5, - ACTIONS(1436), 1, + [4724] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(486), 1, + STATE(470), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1446), 9, + ACTIONS(1469), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45507,7 +44630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1448), 24, + ACTIONS(1471), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45532,23 +44655,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4751] = 7, - ACTIONS(1457), 1, + [4772] = 7, + ACTIONS(1480), 1, anon_sym_AT, - ACTIONS(1460), 1, + ACTIONS(1483), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 2, + ACTIONS(1475), 2, anon_sym_LT, anon_sym_ATinterface, - STATE(423), 4, + STATE(427), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1454), 13, + ACTIONS(1477), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -45556,13 +44680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - ACTIONS(1450), 14, + ACTIONS(1473), 14, anon_sym_class, anon_sym_enum, anon_sym_record, @@ -45577,39 +44700,77 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4803] = 7, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(1469), 1, - anon_sym_non_DASHsealed, + [4824] = 5, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(475), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 2, + ACTIONS(1486), 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(1488), 24, + 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_RBRACE, + anon_sym_SEMI, + [4872] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1492), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, anon_sym_ATinterface, - STATE(423), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1467), 13, + ACTIONS(1490), 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_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - ACTIONS(1463), 14, - anon_sym_class, - anon_sym_enum, anon_sym_record, anon_sym_interface, anon_sym_byte, @@ -45622,18 +44783,59 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4855] = 3, + [4915] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1494), 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(1496), 25, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + [4958] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 6, + ACTIONS(1500), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1471), 28, + ACTIONS(1498), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -45644,7 +44846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -45662,29 +44863,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4898] = 3, + [5001] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 3, + ACTIONS(1504), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1475), 31, + ACTIONS(1502), 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, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -45702,11 +44903,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4941] = 3, + [5044] = 5, + ACTIONS(1506), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 9, + ACTIONS(1512), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1508), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45715,8 +44922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1481), 25, + anon_sym_instanceof, + ACTIONS(1510), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45729,42 +44936,38 @@ 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_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4984] = 3, + [5091] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 3, + ACTIONS(1516), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1483), 31, + ACTIONS(1514), 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, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -45782,18 +44985,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5027] = 3, + [5134] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 6, + ACTIONS(1520), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1487), 28, + ACTIONS(1518), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -45804,7 +45008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -45822,18 +45025,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5070] = 3, + [5177] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 6, + ACTIONS(1524), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1491), 28, + ACTIONS(1522), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -45844,7 +45048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -45862,11 +45065,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5113] = 3, + [5220] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 9, + ACTIONS(1526), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45876,7 +45079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1497), 25, + ACTIONS(1528), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45902,11 +45105,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5156] = 3, + [5263] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1532), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1530), 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, + [5306] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1316), 13, + ACTIONS(1534), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45915,12 +45158,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1536), 25, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [5349] = 5, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1544), 3, anon_sym_open, anon_sym_module, anon_sym_record, - sym_identifier, - ACTIONS(1318), 21, + ACTIONS(1540), 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_instanceof, + ACTIONS(1542), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45942,18 +45227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [5199] = 3, + [5396] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 6, + ACTIONS(1548), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1499), 28, + ACTIONS(1546), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -45964,7 +45250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -45982,29 +45267,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5242] = 3, + [5439] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 6, + ACTIONS(1552), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1503), 28, + ACTIONS(1550), 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_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46022,29 +45307,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5285] = 3, + [5482] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 3, + ACTIONS(1556), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1507), 31, + ACTIONS(1554), 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, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46062,29 +45347,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5328] = 3, + [5525] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 3, + ACTIONS(1560), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1511), 31, + ACTIONS(1558), 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, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46102,18 +45387,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5371] = 3, + [5568] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 6, + ACTIONS(1564), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1515), 28, + ACTIONS(1562), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46124,7 +45410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46142,29 +45427,69 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5414] = 3, + [5611] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1521), 3, + ACTIONS(1566), 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(1568), 25, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + [5654] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1572), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1519), 31, + ACTIONS(1570), 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, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46182,18 +45507,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5457] = 3, + [5697] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 6, + ACTIONS(1576), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1523), 28, + ACTIONS(1574), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46204,7 +45530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46222,18 +45547,59 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5500] = 3, + [5740] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 6, + ACTIONS(1329), 13, + 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_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1331), 21, + 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_RBRACE, + anon_sym_SEMI, + [5783] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1580), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1527), 28, + ACTIONS(1578), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46244,7 +45610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46262,18 +45627,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5543] = 3, + [5826] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 6, + ACTIONS(1584), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1531), 28, + ACTIONS(1582), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46284,7 +45650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46302,140 +45667,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5586] = 5, - ACTIONS(1535), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1541), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - ACTIONS(1537), 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_instanceof, - ACTIONS(1539), 21, - 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_RBRACE, - anon_sym_SEMI, - [5633] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1543), 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(1545), 25, - 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_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - [5676] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1547), 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(1549), 25, - 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_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - [5719] = 3, + [5869] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1553), 6, + ACTIONS(1588), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1551), 28, + ACTIONS(1586), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46446,7 +45690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46464,29 +45707,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5762] = 3, + [5912] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1557), 6, + ACTIONS(1592), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1555), 28, + ACTIONS(1590), 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_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46504,29 +45747,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5805] = 3, + [5955] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1561), 6, + ACTIONS(1596), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1559), 28, + ACTIONS(1594), 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_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46544,18 +45787,59 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5848] = 3, + [5998] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1565), 6, + ACTIONS(1598), 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(1600), 25, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + [6041] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1604), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1563), 28, + ACTIONS(1602), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -46566,7 +45850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46584,29 +45867,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5891] = 3, + [6084] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1569), 6, + ACTIONS(1608), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1567), 28, + ACTIONS(1606), 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_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -46624,11 +45907,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5934] = 3, + [6127] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1571), 9, + ACTIONS(1610), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46638,7 +45921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1573), 25, + ACTIONS(1612), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46661,14 +45944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [5977] = 3, + [6169] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1575), 9, + ACTIONS(1614), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46678,7 +45960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1577), 24, + ACTIONS(1616), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46703,11 +45985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6019] = 3, + [6211] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1579), 9, + ACTIONS(1618), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46717,7 +45999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1581), 24, + ACTIONS(1620), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46742,11 +46024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6061] = 3, + [6253] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 9, + ACTIONS(1174), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46756,7 +46038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1585), 24, + ACTIONS(1176), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46781,11 +46063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6103] = 3, + [6295] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1587), 9, + ACTIONS(1622), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46795,7 +46077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1589), 24, + ACTIONS(1624), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46820,11 +46102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6145] = 3, + [6337] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1591), 9, + ACTIONS(1626), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46834,7 +46116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1593), 24, + ACTIONS(1628), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46859,11 +46141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6187] = 3, + [6379] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1595), 9, + ACTIONS(1630), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46873,7 +46155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1597), 24, + ACTIONS(1632), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46898,11 +46180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6229] = 3, + [6421] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 9, + ACTIONS(1634), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46912,7 +46194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1601), 24, + ACTIONS(1636), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46937,11 +46219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6271] = 3, + [6463] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1603), 9, + ACTIONS(1638), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46951,7 +46233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1605), 24, + ACTIONS(1640), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46976,89 +46258,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6313] = 3, + [6505] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1607), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1644), 5, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1609), 24, - 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_RBRACE, anon_sym_SEMI, - [6355] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1642), 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, + [6547] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1611), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1648), 5, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1613), 24, - 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_RBRACE, anon_sym_SEMI, - [6397] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1646), 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, + [6589] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1615), 9, + ACTIONS(1650), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47068,7 +46350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1617), 24, + ACTIONS(1652), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47093,11 +46375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6439] = 3, + [6631] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1619), 9, + ACTIONS(1654), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47107,7 +46389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1621), 24, + ACTIONS(1656), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47132,11 +46414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6481] = 3, + [6673] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1623), 9, + ACTIONS(1658), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47146,7 +46428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1625), 24, + ACTIONS(1660), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47171,11 +46453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6523] = 3, + [6715] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1627), 9, + ACTIONS(1662), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47185,7 +46467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1629), 24, + ACTIONS(1664), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47210,52 +46492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6565] = 5, + [6757] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1636), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1631), 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(1634), 17, - 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_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - [6611] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1640), 9, + ACTIONS(1666), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47265,7 +46506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1642), 24, + ACTIONS(1668), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47290,11 +46531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6653] = 3, + [6799] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1644), 9, + ACTIONS(1670), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47304,7 +46545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1646), 24, + ACTIONS(1672), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47329,11 +46570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6695] = 3, + [6841] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1648), 9, + ACTIONS(1674), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47343,7 +46584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1650), 24, + ACTIONS(1676), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47368,61 +46609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6737] = 6, - ACTIONS(1652), 1, - anon_sym_LBRACK, - ACTIONS(1654), 1, - anon_sym_DOT, - ACTIONS(1656), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(285), 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(287), 21, - 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_RBRACE, - anon_sym_SEMI, - [6785] = 5, - ACTIONS(27), 1, + [6883] = 5, + ACTIONS(29), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(447), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 3, + ACTIONS(1680), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1634), 28, + ACTIONS(1678), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -47433,7 +46633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -47451,50 +46650,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6831] = 3, + [6929] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1658), 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(1660), 24, - 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_RBRACE, - anon_sym_SEMI, - [6873] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1662), 9, + ACTIONS(1682), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47504,7 +46664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1664), 24, + ACTIONS(1684), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47529,11 +46689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6915] = 3, + [6971] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1104), 9, + ACTIONS(1686), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47543,7 +46703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1106), 24, + ACTIONS(1688), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47568,11 +46728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6957] = 3, + [7013] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 9, + ACTIONS(1690), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47582,7 +46742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1668), 24, + ACTIONS(1692), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47607,11 +46767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6999] = 3, + [7055] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 9, + ACTIONS(1694), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47621,7 +46781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1672), 24, + ACTIONS(1696), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47646,11 +46806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7041] = 3, + [7097] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 9, + ACTIONS(1698), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47660,7 +46820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1676), 24, + ACTIONS(1700), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47685,11 +46845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7083] = 3, + [7139] = 6, + ACTIONS(1702), 1, + anon_sym_LBRACK, + ACTIONS(1704), 1, + anon_sym_DOT, + ACTIONS(1706), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 9, + ACTIONS(285), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47699,7 +46865,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1680), 24, + ACTIONS(287), 21, + 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_RBRACE, + anon_sym_SEMI, + [7187] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1708), 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(1710), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47724,11 +46926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7125] = 3, + [7229] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 9, + ACTIONS(1712), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47738,7 +46940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1684), 24, + ACTIONS(1714), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47763,11 +46965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7167] = 3, + [7271] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 9, + ACTIONS(1716), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47777,7 +46979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1688), 24, + ACTIONS(1718), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47802,11 +47004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7209] = 3, + [7313] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 9, + ACTIONS(1720), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47816,7 +47018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1692), 24, + ACTIONS(1722), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47841,11 +47043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7251] = 3, + [7355] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 9, + ACTIONS(1724), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47855,7 +47057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1696), 24, + ACTIONS(1726), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47880,11 +47082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7293] = 3, + [7397] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 9, + ACTIONS(1728), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47894,7 +47096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1700), 24, + ACTIONS(1730), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47919,11 +47121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7335] = 3, + [7439] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1702), 9, + ACTIONS(1732), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47933,7 +47135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1704), 24, + ACTIONS(1734), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47958,11 +47160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7377] = 3, + [7481] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1706), 9, + ACTIONS(1736), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47972,7 +47174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1708), 24, + ACTIONS(1738), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47997,11 +47199,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7419] = 3, + [7523] = 5, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 9, + ACTIONS(1680), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1743), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1740), 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(1678), 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, + [7569] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1745), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48011,7 +47254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1712), 24, + ACTIONS(1747), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48036,11 +47279,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7461] = 3, + [7611] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1714), 9, + ACTIONS(1749), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48050,7 +47293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1716), 24, + ACTIONS(1751), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48075,94 +47318,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7503] = 3, + [7653] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1720), 5, + ACTIONS(1753), 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(1755), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1718), 27, - 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_final, - 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, - [7544] = 3, + [7695] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1724), 5, + ACTIONS(1757), 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(1759), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1722), 27, - 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_final, - 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, - [7585] = 5, + [7737] = 5, ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(1121), 1, + STATE(1134), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 2, + ACTIONS(1680), 2, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1634), 28, + ACTIONS(1678), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48173,7 +47419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48191,11 +47436,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7630] = 3, + [7782] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 12, + ACTIONS(1395), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -48208,7 +47453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1378), 19, + ACTIONS(1393), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -48228,11 +47473,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7670] = 3, + [7822] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1414), 12, + ACTIONS(1423), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -48245,7 +47490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 19, + ACTIONS(1421), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -48265,11 +47510,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7710] = 3, + [7862] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1410), 12, + ACTIONS(1391), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -48282,7 +47527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1408), 19, + ACTIONS(1389), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -48302,15 +47547,16 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7750] = 3, + [7902] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1728), 3, + ACTIONS(1763), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1726), 27, + ACTIONS(1761), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48321,7 +47567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48338,11 +47583,14 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7789] = 3, + [7941] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1730), 8, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1765), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48351,7 +47599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1732), 22, + ACTIONS(1767), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48369,16 +47617,14 @@ 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_RBRACE, anon_sym_SEMI, - [7828] = 3, + [7982] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(285), 8, + ACTIONS(1771), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48387,7 +47633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(287), 22, + ACTIONS(1773), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48410,14 +47656,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7867] = 4, + [8021] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1775), 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(1777), 22, + 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, - ACTIONS(1734), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8060] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1779), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48426,7 +47705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1736), 20, + ACTIONS(1781), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48444,14 +47723,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_RBRACE, anon_sym_SEMI, - [7908] = 3, + [8099] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1730), 8, + ACTIONS(1783), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48460,7 +47741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1732), 22, + ACTIONS(1785), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48483,47 +47764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7947] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1742), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1740), 27, - 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_final, - 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, - [7986] = 3, + [8138] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1744), 8, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1787), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48532,7 +47780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1746), 22, + ACTIONS(1789), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48550,16 +47798,14 @@ 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_RBRACE, anon_sym_SEMI, - [8025] = 3, + [8179] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1748), 8, + ACTIONS(1775), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48568,7 +47814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1750), 22, + ACTIONS(1777), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48591,11 +47837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8064] = 3, + [8218] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1752), 8, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1791), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48604,7 +47853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1754), 22, + ACTIONS(1793), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48622,16 +47871,50 @@ 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_RBRACE, anon_sym_SEMI, - [8103] = 3, + [8259] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1797), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1795), 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, + [8298] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1756), 8, + ACTIONS(285), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48640,7 +47923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1758), 22, + ACTIONS(287), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48663,15 +47946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8142] = 3, + [8337] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1762), 3, + ACTIONS(1801), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1760), 27, + ACTIONS(1799), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48682,7 +47966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48699,15 +47982,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8181] = 3, + [8376] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1766), 3, + ACTIONS(1805), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1764), 27, + ACTIONS(1803), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48718,7 +48002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48735,15 +48018,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8220] = 3, + [8415] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1770), 3, + ACTIONS(1809), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1768), 27, + ACTIONS(1807), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48754,7 +48038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48771,52 +48054,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8259] = 4, + [8454] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1772), 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(1774), 20, - 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_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8300] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1778), 3, + ACTIONS(1813), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1776), 27, + ACTIONS(1811), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48827,7 +48074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48844,14 +48090,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8339] = 4, + [8493] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1780), 8, + ACTIONS(1815), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48860,7 +48103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1782), 20, + ACTIONS(1817), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48878,14 +48121,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_RBRACE, anon_sym_SEMI, - [8380] = 3, + [8532] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1784), 8, + ACTIONS(1819), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48894,7 +48139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1786), 22, + ACTIONS(1821), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48917,15 +48162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8419] = 3, + [8571] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1790), 3, + ACTIONS(1825), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1788), 27, + ACTIONS(1823), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48936,7 +48182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48953,15 +48198,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8458] = 3, + [8610] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1794), 3, + ACTIONS(1829), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1792), 27, + ACTIONS(1827), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -48972,7 +48218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -48989,123 +48234,234 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8497] = 15, - ACTIONS(1796), 1, + [8649] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1831), 8, anon_sym_AMP, - ACTIONS(1808), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1810), 1, anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1833), 22, + 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_RBRACE, + anon_sym_SEMI, + [8688] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1835), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1837), 22, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1814), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 9, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_RBRACE, anon_sym_SEMI, - [8559] = 12, - ACTIONS(1808), 1, + [8727] = 15, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1816), 1, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1804), 2, + ACTIONS(1845), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 12, + ACTIONS(1789), 9, 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_RBRACE, anon_sym_SEMI, - [8615] = 9, - ACTIONS(1808), 1, + [8789] = 6, + ACTIONS(1863), 1, + anon_sym_LPAREN, + ACTIONS(1865), 1, + anon_sym_DOT, + STATE(591), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1405), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1401), 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, + [8833] = 18, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1816), 1, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1804), 2, + ACTIONS(1841), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1843), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1845), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1780), 4, + ACTIONS(1867), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8901] = 6, + ACTIONS(1851), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1849), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(1782), 15, + anon_sym_GT_GT, + ACTIONS(1789), 17, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49114,6 +48470,8 @@ 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, @@ -49121,571 +48479,605 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8665] = 16, - ACTIONS(1796), 1, + [8945] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 8, + ACTIONS(1833), 6, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8729] = 6, - ACTIONS(1808), 1, - anon_sym_SLASH, + [9013] = 5, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(1257), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1806), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1780), 7, + ACTIONS(1174), 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(1782), 17, - anon_sym_RPAREN, + ACTIONS(1176), 19, 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_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_SEMI, - [8773] = 18, - ACTIONS(1796), 1, + [9055] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1786), 6, + ACTIONS(1837), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8841] = 15, - ACTIONS(1780), 1, + [9123] = 6, + ACTIONS(1878), 1, + anon_sym_AT, + ACTIONS(1881), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(528), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1473), 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(1875), 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, + [9167] = 15, + ACTIONS(1787), 1, anon_sym_PIPE, - ACTIONS(1796), 1, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, + anon_sym_SLASH, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, + anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1841), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1843), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1845), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1849), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1789), 9, + 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_RBRACE, + anon_sym_SEMI, + [9229] = 13, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1787), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 9, + ACTIONS(1789), 10, 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_RBRACE, anon_sym_SEMI, - [8903] = 14, - ACTIONS(1780), 1, - anon_sym_PIPE, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, + [9287] = 9, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1802), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 10, + ACTIONS(1787), 4, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + ACTIONS(1789), 15, 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_CARET, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8963] = 18, - ACTIONS(1796), 1, + [9337] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1826), 6, + ACTIONS(1884), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9031] = 18, - ACTIONS(1796), 1, + [9405] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1758), 6, + ACTIONS(1886), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9099] = 7, - ACTIONS(1808), 1, + [9473] = 14, + ACTIONS(1787), 1, + anon_sym_PIPE, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, anon_sym_SLASH, + ACTIONS(1859), 1, + anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1804), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1780), 5, - anon_sym_AMP, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1782), 17, - anon_sym_RPAREN, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1849), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1789), 10, + anon_sym_RPAREN, 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, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9145] = 18, - ACTIONS(1796), 1, + [9533] = 16, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1828), 6, + ACTIONS(1789), 8, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9213] = 13, - ACTIONS(1808), 1, + [9597] = 7, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1816), 1, - anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1849), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 5, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1798), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1789), 17, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1814), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1782), 10, - anon_sym_RPAREN, 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, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9271] = 6, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1832), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(527), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1463), 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(1830), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [9315] = 18, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, + [9643] = 12, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1787), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1834), 6, + ACTIONS(1789), 12, 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_RBRACE, anon_sym_SEMI, - [9383] = 6, - ACTIONS(1839), 1, + [9699] = 6, + ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1842), 1, + ACTIONS(1890), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(527), 4, + STATE(528), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1450), 10, + ACTIONS(1451), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -49696,7 +49088,8 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1836), 13, + ACTIONS(1888), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -49704,27 +49097,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [9427] = 6, - ACTIONS(1845), 1, + [9743] = 6, + ACTIONS(1863), 1, anon_sym_LPAREN, - ACTIONS(1847), 1, + ACTIONS(1892), 1, anon_sym_DOT, - STATE(551), 1, + STATE(592), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1386), 3, + ACTIONS(1435), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1382), 23, + ACTIONS(1433), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -49732,7 +49125,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -49748,92 +49140,94 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9471] = 6, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1849), 1, - anon_sym_DOT, - STATE(552), 1, - sym_annotation_argument_list, + [9787] = 7, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + STATE(541), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1390), 23, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1300), 10, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1298), 11, + anon_sym_COLON, + anon_sym_DOT, anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, sym_identifier, - [9515] = 5, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(1217), 1, - sym_argument_list, + [9832] = 7, + ACTIONS(1322), 1, + anon_sym_AT, + ACTIONS(1896), 1, + anon_sym_LBRACK, + STATE(541), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1104), 8, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1317), 10, anon_sym_AMP, + anon_sym_RPAREN, + 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, - ACTIONS(1106), 19, - 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_LBRACK, - anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, - [9557] = 3, + anon_sym_DOT_DOT_DOT, + ACTIONS(1315), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + [9877] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 5, + ACTIONS(1357), 5, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1332), 23, + ACTIONS(1355), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -49841,7 +49235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -49857,17 +49250,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9594] = 3, + [9914] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1338), 5, + ACTIONS(1353), 5, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1336), 23, + ACTIONS(1351), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -49875,7 +49269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -49891,409 +49284,246 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9631] = 7, - ACTIONS(1299), 1, - anon_sym_AT, - ACTIONS(1851), 1, - anon_sym_LBRACK, - STATE(533), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1294), 10, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1292), 11, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [9676] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1854), 1, - anon_sym_LBRACK, - STATE(533), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1281), 10, + [9951] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(1851), 1, + anon_sym_SLASH, + ACTIONS(1853), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - ACTIONS(1279), 11, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [9721] = 6, - ACTIONS(1652), 1, - anon_sym_LBRACK, - ACTIONS(1656), 1, - anon_sym_COLON_COLON, - ACTIONS(1856), 1, - anon_sym_DOT, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, + anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(285), 8, - anon_sym_AMP, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(287), 16, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1849), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1899), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [9763] = 20, - ACTIONS(1818), 1, + [10017] = 20, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1858), 1, + ACTIONS(1901), 1, anon_sym_AMP, - ACTIONS(1866), 1, + ACTIONS(1909), 1, anon_sym_AMP_AMP, - ACTIONS(1868), 1, + ACTIONS(1911), 1, anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1886), 1, + ACTIONS(1929), 1, anon_sym_COMMA, - ACTIONS(1888), 1, + ACTIONS(1931), 1, anon_sym_QMARK, - STATE(925), 1, + STATE(928), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1884), 2, + ACTIONS(1927), 2, anon_sym_DASH_GT, anon_sym_COLON, - [9833] = 18, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, - anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, - anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, + [10087] = 6, + ACTIONS(1702), 1, + anon_sym_LBRACK, + ACTIONS(1706), 1, + anon_sym_COLON_COLON, + ACTIONS(1933), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(285), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1802), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1814), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1890), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [9899] = 13, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1874), 1, anon_sym_SLASH, - ACTIONS(1882), 1, - anon_sym_GT_GT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1780), 2, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1860), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1862), 2, + anon_sym_GT_GT, + ACTIONS(287), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1872), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1880), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 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, - [9954] = 15, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1892), 1, - anon_sym_GT, - ACTIONS(1894), 1, + anon_sym_instanceof, anon_sym_QMARK, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(686), 1, - sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(1027), 2, - sym_wildcard, - sym__type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(642), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [10013] = 20, - ACTIONS(1796), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [10129] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1884), 1, - anon_sym_COLON, - ACTIONS(1896), 1, - anon_sym_COMMA, - STATE(1039), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10082] = 20, - ACTIONS(1796), 1, + ACTIONS(1935), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [10194] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1898), 1, + ACTIONS(1937), 1, anon_sym_RPAREN, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - STATE(1002), 1, + STATE(1065), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10151] = 3, + [10263] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1521), 3, + ACTIONS(1552), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1519), 23, + ACTIONS(1550), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -50301,7 +49531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -50317,424 +49546,399 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10186] = 18, - ACTIONS(1796), 1, + [10298] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(1941), 1, + anon_sym_RPAREN, + STATE(994), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1902), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [10251] = 20, - ACTIONS(1796), 1, + [10367] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1904), 1, + ACTIONS(1943), 1, anon_sym_RPAREN, - STATE(1013), 1, + STATE(1009), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10320] = 3, + [10436] = 20, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, + anon_sym_SLASH, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, + anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_COMMA, + ACTIONS(1947), 1, + anon_sym_SEMI, + STATE(1070), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1908), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1906), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, - [10355] = 20, - ACTIONS(1796), 1, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1841), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1843), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1845), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1849), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10505] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1910), 1, + ACTIONS(1945), 1, anon_sym_COMMA, - ACTIONS(1912), 1, - anon_sym_RBRACE, - STATE(1020), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(1949), 1, + anon_sym_SEMI, + STATE(1050), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10424] = 9, - ACTIONS(1874), 1, + [10574] = 20, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1882), 1, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, + ACTIONS(1951), 1, + anon_sym_COMMA, + ACTIONS(1953), 1, + anon_sym_RBRACE, + STATE(1077), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1870), 2, + ACTIONS(1841), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1843), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1845), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1780), 4, + [10643] = 18, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1901), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - ACTIONS(1782), 12, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1909), 1, anon_sym_AMP_AMP, + ACTIONS(1911), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [10471] = 20, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1931), 1, anon_sym_QMARK, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1914), 1, - anon_sym_RPAREN, - STATE(965), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10540] = 20, - ACTIONS(1796), 1, + ACTIONS(1884), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10708] = 18, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1901), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1909), 1, + anon_sym_AMP_AMP, + ACTIONS(1911), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1931), 1, anon_sym_QMARK, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1916), 1, - anon_sym_RPAREN, - STATE(1048), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10609] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1920), 3, - anon_sym_RPAREN, + ACTIONS(1935), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10773] = 15, + ACTIONS(344), 1, anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1918), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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, + ACTIONS(1160), 1, sym_identifier, - [10644] = 3, + ACTIONS(1955), 1, + anon_sym_GT, + ACTIONS(1957), 1, + anon_sym_QMARK, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(693), 1, + sym__unannotated_type, + STATE(770), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1483), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - 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(79), 2, anon_sym_float, anon_sym_double, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - sym_identifier, - [10679] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1513), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1511), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, + STATE(971), 2, + sym_wildcard, + sym__type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(650), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 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, - [10714] = 3, + [10832] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1924), 3, - anon_sym_RPAREN, + ACTIONS(1492), 3, + anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1922), 23, + ACTIONS(1490), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -50742,7 +49946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -50758,62 +49961,65 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10749] = 18, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, + [10867] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1866), 1, - anon_sym_AMP_AMP, - ACTIONS(1868), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1888), 1, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, anon_sym_QMARK, + ACTIONS(1927), 1, + anon_sym_COLON, + ACTIONS(1959), 1, + anon_sym_COMMA, + STATE(1040), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1926), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [10814] = 3, + [10936] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 3, + ACTIONS(1608), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1507), 23, + ACTIONS(1606), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -50821,7 +50027,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -50837,585 +50042,727 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10849] = 18, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, + [10971] = 7, + ACTIONS(1917), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1913), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 5, anon_sym_AMP, - ACTIONS(1866), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1789), 14, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + 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, + [11014] = 20, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1888), 1, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, anon_sym_QMARK, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(1961), 1, + anon_sym_RPAREN, + STATE(1032), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1834), 3, + [11083] = 14, + ACTIONS(1787), 1, + anon_sym_PIPE, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1901), 1, + anon_sym_AMP, + ACTIONS(1917), 1, + anon_sym_SLASH, + ACTIONS(1925), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1903), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1905), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1913), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1923), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1789), 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, - [10914] = 20, - ACTIONS(1796), 1, + [11140] = 15, + ACTIONS(1787), 1, + anon_sym_PIPE, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1901), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(1930), 1, - anon_sym_SEMI, - STATE(1049), 1, - aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10983] = 18, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, + ACTIONS(1789), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [11199] = 6, + ACTIONS(1917), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1787), 7, anon_sym_AMP, - ACTIONS(1866), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1789), 14, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + 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, + [11240] = 16, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1901), 1, + anon_sym_AMP, + ACTIONS(1909), 1, + anon_sym_AMP_AMP, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1888), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1786), 3, + ACTIONS(1789), 5, + anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, - [11048] = 20, - ACTIONS(1796), 1, + [11301] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1932), 1, + ACTIONS(1963), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(1061), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11117] = 12, - ACTIONS(1818), 1, + [11370] = 15, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1874), 1, + ACTIONS(1901), 1, + anon_sym_AMP, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1882), 1, + ACTIONS(1919), 1, + anon_sym_PIPE, + ACTIONS(1921), 1, + anon_sym_CARET, + ACTIONS(1925), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1860), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1870), 2, + ACTIONS(1907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 9, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1789), 6, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - [11170] = 20, - ACTIONS(1796), 1, + [11429] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1934), 1, + ACTIONS(1965), 1, anon_sym_RPAREN, - STATE(979), 1, + STATE(1048), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11239] = 18, - ACTIONS(1818), 1, + [11498] = 12, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1858), 1, - anon_sym_AMP, - ACTIONS(1866), 1, - anon_sym_AMP_AMP, - ACTIONS(1868), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1876), 1, - anon_sym_PIPE, - ACTIONS(1878), 1, - anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1888), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1787), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1826), 3, + ACTIONS(1789), 9, + 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, - [11304] = 20, - ACTIONS(1796), 1, + [11551] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1936), 1, + ACTIONS(1967), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(1053), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11373] = 20, - ACTIONS(1796), 1, + [11620] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1959), 1, anon_sym_COMMA, - ACTIONS(1938), 1, + ACTIONS(1969), 1, anon_sym_RPAREN, - STATE(974), 1, - aux_sym_for_statement_repeat2, + STATE(1045), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11442] = 18, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, + [11689] = 9, + ACTIONS(1917), 1, + anon_sym_SLASH, + ACTIONS(1925), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1769), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1913), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1923), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1787), 4, anon_sym_AMP, - ACTIONS(1866), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + ACTIONS(1789), 12, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1868), 1, anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + anon_sym_CARET, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [11736] = 20, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1888), 1, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, anon_sym_QMARK, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(1971), 1, + anon_sym_RPAREN, + STATE(1016), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1758), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11507] = 20, - ACTIONS(1796), 1, + [11805] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1940), 1, + ACTIONS(1973), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(1052), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11576] = 18, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, + [11874] = 13, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1787), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1926), 3, - anon_sym_RPAREN, + ACTIONS(1789), 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, - [11641] = 3, + [11929] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1944), 3, + ACTIONS(1977), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1942), 23, + ACTIONS(1975), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -51423,7 +50770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -51439,176 +50785,116 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11676] = 20, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, - anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, - anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, - ACTIONS(1896), 1, - anon_sym_COMMA, - ACTIONS(1946), 1, - anon_sym_RPAREN, - STATE(1045), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1798), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1802), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1804), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1814), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [11745] = 20, - ACTIONS(1796), 1, + [11964] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1948), 1, + ACTIONS(1979), 1, anon_sym_RPAREN, - STATE(1030), 1, + STATE(1049), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11814] = 15, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1894), 1, - anon_sym_QMARK, - ACTIONS(1950), 1, - anon_sym_GT, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(686), 1, - sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, + [12033] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(1022), 2, - sym_wildcard, - sym__type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(642), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(1983), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1981), 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, - [11873] = 12, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [12068] = 12, ACTIONS(301), 1, anon_sym_AT, ACTIONS(305), 1, anon_sym_non_DASHsealed, - ACTIONS(1952), 1, + ACTIONS(1985), 1, sym_identifier, - ACTIONS(1954), 1, + ACTIONS(1987), 1, anon_sym_COMMA, - ACTIONS(1956), 1, + ACTIONS(1989), 1, anon_sym_RBRACE, - ACTIONS(1958), 1, + ACTIONS(1991), 1, anon_sym_SEMI, - STATE(881), 1, + STATE(897), 1, sym_enum_constant, - STATE(1205), 1, - sym_modifiers, - STATE(1209), 1, + STATE(1202), 1, sym_enum_body_declarations, + STATE(1224), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(525), 4, + STATE(538), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, ACTIONS(299), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -51616,865 +50902,1116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [11926] = 20, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, - anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, - anon_sym_GT_GT, - ACTIONS(1818), 1, + [12121] = 18, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1901), 1, + anon_sym_AMP, + ACTIONS(1909), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1911), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1960), 1, - anon_sym_RPAREN, - STATE(956), 1, - aux_sym_for_statement_repeat2, + ACTIONS(1917), 1, + anon_sym_SLASH, + ACTIONS(1919), 1, + anon_sym_PIPE, + ACTIONS(1921), 1, + anon_sym_CARET, + ACTIONS(1925), 1, + anon_sym_GT_GT, + ACTIONS(1931), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11995] = 20, - ACTIONS(1796), 1, + ACTIONS(1833), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [12186] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1962), 1, + ACTIONS(1993), 1, anon_sym_RPAREN, - STATE(994), 1, + STATE(1046), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12064] = 20, - ACTIONS(1796), 1, + [12255] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1964), 1, + ACTIONS(1995), 1, anon_sym_RPAREN, - STATE(982), 1, + STATE(1043), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12133] = 20, - ACTIONS(1796), 1, + [12324] = 18, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1901), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1909), 1, + anon_sym_AMP_AMP, + ACTIONS(1911), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1931), 1, anon_sym_QMARK, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1966), 1, - anon_sym_RPAREN, - STATE(988), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12202] = 20, - ACTIONS(1796), 1, + ACTIONS(1867), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [12389] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1968), 1, + ACTIONS(1997), 1, anon_sym_RPAREN, - STATE(989), 1, + STATE(1039), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12271] = 18, - ACTIONS(1818), 1, + [12458] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2001), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1999), 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, + [12493] = 18, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1858), 1, + ACTIONS(1901), 1, anon_sym_AMP, - ACTIONS(1866), 1, + ACTIONS(1909), 1, anon_sym_AMP_AMP, - ACTIONS(1868), 1, + ACTIONS(1911), 1, anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, - ACTIONS(1888), 1, + ACTIONS(1931), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1828), 3, + ACTIONS(1837), 3, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, - [12336] = 4, + [12558] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(281), 2, - anon_sym_while, - anon_sym_else, - ACTIONS(285), 8, + ACTIONS(2005), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(2003), 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, + [12593] = 18, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1901), 1, 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(287), 16, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1909), 1, anon_sym_AMP_AMP, + ACTIONS(1911), 1, 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, - [12373] = 15, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, - anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1917), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1919), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1925), 1, anon_sym_GT_GT, + ACTIONS(1931), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1905), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1923), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1886), 3, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - [12432] = 20, - ACTIONS(1796), 1, + [12658] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1900), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1970), 1, + ACTIONS(2007), 1, anon_sym_RPAREN, - STATE(991), 1, + STATE(1028), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12501] = 16, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, + [12727] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1592), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1590), 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, + [12762] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1596), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1594), 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, + [12797] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1866), 1, - anon_sym_AMP_AMP, - ACTIONS(1874), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1876), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1878), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RPAREN, + STATE(1074), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 5, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [12562] = 7, - ACTIONS(1874), 1, - anon_sym_SLASH, + [12866] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1872), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1780), 5, + ACTIONS(281), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(285), 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(1782), 14, + ACTIONS(287), 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_DASH_GT, - anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, - [12605] = 6, - ACTIONS(1874), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [12903] = 15, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1160), 1, + sym_identifier, + ACTIONS(1957), 1, + anon_sym_QMARK, + ACTIONS(2011), 1, + anon_sym_GT, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(693), 1, + sym__unannotated_type, + STATE(770), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(1034), 2, + sym_wildcard, + sym__type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(650), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [12962] = 18, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1851), 1, anon_sym_SLASH, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, + anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1872), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1780), 7, - anon_sym_AMP, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1782), 14, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1849), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, + ACTIONS(2013), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [12646] = 20, - ACTIONS(1796), 1, + anon_sym_SEMI, + [13027] = 20, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1928), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(1972), 1, - anon_sym_SEMI, - STATE(959), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2015), 1, + anon_sym_RPAREN, + STATE(1068), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12715] = 15, - ACTIONS(1780), 1, - anon_sym_PIPE, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, + [13096] = 11, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1985), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_SEMI, + ACTIONS(2017), 1, + anon_sym_RBRACE, + STATE(1000), 1, + sym_enum_constant, + STATE(1224), 1, + sym_modifiers, + STATE(1265), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(538), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(299), 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, + [13146] = 11, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1985), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_SEMI, + ACTIONS(2019), 1, + anon_sym_RBRACE, + STATE(1000), 1, + sym_enum_constant, + STATE(1196), 1, + sym_enum_body_declarations, + STATE(1224), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(538), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(299), 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, + [13196] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1878), 1, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1882), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [12774] = 14, - ACTIONS(1780), 1, - anon_sym_PIPE, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1858), 1, + ACTIONS(2021), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [13260] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1882), 1, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1855), 1, + anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_GT_GT, + ACTIONS(1861), 1, + anon_sym_instanceof, + ACTIONS(1869), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1860), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1862), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1864), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1872), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1880), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1782), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_DASH_GT, + ACTIONS(2023), 2, anon_sym_COMMA, + anon_sym_SEMI, + [13324] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1160), 1, + sym_identifier, + ACTIONS(1957), 1, anon_sym_QMARK, - anon_sym_COLON, - [12831] = 3, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(693), 1, + sym__unannotated_type, + STATE(770), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1475), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(1080), 2, + sym_wildcard, + sym__type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(650), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 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, - [12866] = 18, - ACTIONS(1796), 1, + [13380] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1974), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [12930] = 5, - ACTIONS(1638), 1, - anon_sym_non_DASHsealed, - ACTIONS(1976), 1, - anon_sym_AT, + ACTIONS(2025), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [13444] = 18, + ACTIONS(1046), 1, + anon_sym_LT, + ACTIONS(2027), 1, + sym_identifier, + ACTIONS(2029), 1, + anon_sym_class, + ACTIONS(2031), 1, + anon_sym_enum, + ACTIONS(2033), 1, + anon_sym_record, + ACTIONS(2035), 1, + anon_sym_ATinterface, + ACTIONS(2037), 1, + anon_sym_interface, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(667), 1, + sym_type_parameters, + STATE(684), 1, + sym_generic_type, + STATE(700), 1, + sym__unannotated_type, + STATE(930), 1, + sym__constructor_declarator, + STATE(1047), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1631), 10, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - sym_identifier, - ACTIONS(1634), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12968] = 18, - ACTIONS(1796), 1, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13508] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1979), 2, - anon_sym_RPAREN, + ACTIONS(2039), 2, anon_sym_COMMA, - [13032] = 11, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1952), 1, - sym_identifier, - ACTIONS(1958), 1, - anon_sym_SEMI, - ACTIONS(1981), 1, anon_sym_RBRACE, - STATE(1052), 1, - sym_enum_constant, - STATE(1205), 1, - sym_modifiers, - STATE(1237), 1, - sym_enum_body_declarations, + [13572] = 5, + ACTIONS(1680), 1, + anon_sym_non_DASHsealed, + ACTIONS(2041), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(525), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 13, + ACTIONS(1740), 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(1678), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -52482,518 +52019,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [13082] = 19, - ACTIONS(1796), 1, + [13610] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(1983), 1, - anon_sym_COLON, - ACTIONS(1985), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13148] = 18, - ACTIONS(1796), 1, + ACTIONS(2044), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [13674] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1890), 2, + ACTIONS(1899), 2, anon_sym_RPAREN, anon_sym_COMMA, - [13212] = 18, - ACTIONS(1796), 1, + [13738] = 19, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, + ACTIONS(2046), 1, + anon_sym_COLON, + ACTIONS(2048), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1987), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [13276] = 18, - ACTIONS(1796), 1, + [13804] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, + ACTIONS(2050), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1989), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [13340] = 11, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1952), 1, - sym_identifier, - ACTIONS(1958), 1, - anon_sym_SEMI, - ACTIONS(1991), 1, - anon_sym_RBRACE, - STATE(1052), 1, - sym_enum_constant, - STATE(1205), 1, - sym_modifiers, - STATE(1212), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(525), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [13390] = 14, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1894), 1, - anon_sym_QMARK, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(686), 1, - sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(1073), 2, - sym_wildcard, - sym__type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(642), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13446] = 18, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, - anon_sym_LT, - ACTIONS(1993), 1, - anon_sym_class, - ACTIONS(1995), 1, - anon_sym_enum, - ACTIONS(1997), 1, - anon_sym_record, - ACTIONS(1999), 1, - anon_sym_ATinterface, - ACTIONS(2001), 1, - anon_sym_interface, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(657), 1, - sym_type_parameters, - STATE(669), 1, - sym_generic_type, - STATE(688), 1, - sym__unannotated_type, - STATE(922), 1, - sym__constructor_declarator, - STATE(1009), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13510] = 18, - ACTIONS(1796), 1, + [13867] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, + ACTIONS(2052), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2003), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [13574] = 14, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(686), 1, - sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, - STATE(938), 1, - sym__type, - STATE(1264), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(654), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13629] = 18, - ACTIONS(1796), 1, + [13930] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2005), 1, - anon_sym_SEMI, + ACTIONS(2054), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13692] = 18, - ACTIONS(1796), 1, + [13993] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2007), 1, + ACTIONS(2056), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13755] = 14, + [14056] = 14, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - ACTIONS(2009), 1, - anon_sym_open, - ACTIONS(2011), 1, - anon_sym_module, - ACTIONS(2013), 1, - anon_sym_package, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(678), 1, + STATE(693), 1, sym__unannotated_type, + STATE(770), 1, + sym_annotated_type, + STATE(964), 1, + sym__type, + STATE(1091), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -53003,11 +52369,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(666), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53018,964 +52384,1084 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [13810] = 18, - ACTIONS(1796), 1, + [14111] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2015), 1, - anon_sym_RPAREN, + ACTIONS(2058), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13873] = 18, - ACTIONS(1796), 1, + [14174] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2017), 1, + ACTIONS(2060), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13936] = 18, - ACTIONS(1796), 1, + [14237] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2019), 1, - anon_sym_SEMI, + ACTIONS(2062), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13999] = 14, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(686), 1, - sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, - STATE(938), 1, - sym__type, - STATE(1179), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(654), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14054] = 18, - ACTIONS(1796), 1, + [14300] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2021), 1, - anon_sym_COLON, + ACTIONS(2064), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14117] = 18, - ACTIONS(1796), 1, + [14363] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2023), 1, - anon_sym_RPAREN, + ACTIONS(2066), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14180] = 18, - ACTIONS(1796), 1, + [14426] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2025), 1, - anon_sym_SEMI, + ACTIONS(2068), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14243] = 18, - ACTIONS(1796), 1, + [14489] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2027), 1, - anon_sym_SEMI, + ACTIONS(2070), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14306] = 18, - ACTIONS(1796), 1, + [14552] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2029), 1, + ACTIONS(2072), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14369] = 18, - ACTIONS(1796), 1, + [14615] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2031), 1, + ACTIONS(2074), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14432] = 18, - ACTIONS(1796), 1, + [14678] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2033), 1, - anon_sym_COLON, + ACTIONS(2076), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14495] = 18, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, - anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, - anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, - ACTIONS(2035), 1, - anon_sym_SEMI, + [14741] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2078), 1, + sym_identifier, + ACTIONS(2080), 1, + anon_sym_final, + STATE(388), 1, + sym__unannotated_type, + STATE(403), 1, + sym_scoped_type_identifier, + STATE(416), 1, + sym_generic_type, + STATE(440), 1, + sym__type, + STATE(449), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1798), 2, - anon_sym_GT, + ACTIONS(2084), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2086), 2, + sym_boolean_type, + sym_void_type, + STATE(421), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(663), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2082), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14796] = 17, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(1800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1802), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1804), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1814), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14558] = 18, - ACTIONS(1796), 1, + ACTIONS(1160), 1, + sym_identifier, + ACTIONS(2029), 1, + anon_sym_class, + ACTIONS(2031), 1, + anon_sym_enum, + ACTIONS(2033), 1, + anon_sym_record, + ACTIONS(2035), 1, + anon_sym_ATinterface, + ACTIONS(2037), 1, + anon_sym_interface, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(659), 1, + sym_type_parameters, + STATE(684), 1, + sym_generic_type, + STATE(694), 1, + sym__unannotated_type, + STATE(1047), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14857] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1160), 1, + sym_identifier, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(693), 1, + sym__unannotated_type, + STATE(770), 1, + sym_annotated_type, + STATE(964), 1, + sym__type, + STATE(1185), 1, + sym_type_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(661), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14912] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2037), 1, - anon_sym_RPAREN, + ACTIONS(2088), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14621] = 18, - ACTIONS(1796), 1, + [14975] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1160), 1, + sym_identifier, + ACTIONS(2090), 1, + anon_sym_open, + ACTIONS(2092), 1, + anon_sym_module, + ACTIONS(2094), 1, + anon_sym_package, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(691), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15030] = 14, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1160), 1, + sym_identifier, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(693), 1, + sym__unannotated_type, + STATE(770), 1, + sym_annotated_type, + STATE(964), 1, + sym__type, + STATE(1203), 1, + sym_type_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(661), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15085] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2039), 1, - anon_sym_SEMI, + ACTIONS(2096), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14684] = 18, - ACTIONS(1796), 1, + [15148] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2098), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14747] = 18, - ACTIONS(1796), 1, + [15211] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(2100), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14810] = 18, - ACTIONS(1796), 1, + [15274] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2045), 1, - anon_sym_RBRACK, + ACTIONS(2102), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14873] = 18, - ACTIONS(1796), 1, + [15337] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2047), 1, + ACTIONS(2104), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14936] = 18, - ACTIONS(1796), 1, + [15400] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_RBRACK, + ACTIONS(2106), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14999] = 18, - ACTIONS(1796), 1, + [15463] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2051), 1, + ACTIONS(2108), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15062] = 18, - ACTIONS(1796), 1, + [15526] = 18, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1816), 1, + ACTIONS(1859), 1, anon_sym_GT_GT, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_instanceof, - ACTIONS(1820), 1, + ACTIONS(1869), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, + ACTIONS(1873), 1, anon_sym_QMARK, - ACTIONS(2053), 1, - anon_sym_RBRACK, + ACTIONS(2110), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 2, + ACTIONS(1769), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1798), 2, + ACTIONS(1841), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1800), 2, + ACTIONS(1843), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1802), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1804), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1814), 2, + ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15125] = 14, + [15589] = 13, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(686), 1, + STATE(693), 1, sym__unannotated_type, - STATE(759), 1, + STATE(770), 1, sym_annotated_type, - STATE(938), 1, + STATE(1193), 1, sym__type, - STATE(1168), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -53985,11 +53471,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54000,65 +53486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15180] = 18, - ACTIONS(1796), 1, - anon_sym_AMP, - ACTIONS(1808), 1, - anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, - anon_sym_CARET, - ACTIONS(1816), 1, - anon_sym_GT_GT, - ACTIONS(1818), 1, - anon_sym_instanceof, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1824), 1, - anon_sym_QMARK, - ACTIONS(2055), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1738), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1798), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1802), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1804), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1814), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [15243] = 13, + [15641] = 13, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(686), 1, + STATE(693), 1, sym__unannotated_type, - STATE(759), 1, + STATE(770), 1, sym_annotated_type, - STATE(1042), 1, + STATE(900), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -54069,11 +53510,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54084,20 +53525,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15295] = 13, + [15693] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1371), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1373), 12, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [15725] = 13, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(686), 1, + STATE(693), 1, sym__unannotated_type, - STATE(759), 1, + STATE(770), 1, sym_annotated_type, - STATE(895), 1, + STATE(1001), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -54108,11 +53578,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54123,20 +53593,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15347] = 13, + [15777] = 13, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(686), 1, + STATE(693), 1, sym__unannotated_type, - STATE(759), 1, + STATE(770), 1, sym_annotated_type, - STATE(1062), 1, + STATE(1044), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -54147,11 +53617,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54162,89 +53632,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15399] = 13, + [15829] = 13, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2057), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(385), 1, - sym__unannotated_type, - STATE(402), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(406), 1, + STATE(684), 1, sym_generic_type, - STATE(432), 1, + STATE(693), 1, + sym__unannotated_type, + STATE(770), 1, sym_annotated_type, - STATE(442), 1, + STATE(903), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2061), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2063), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(415), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(645), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2059), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15451] = 13, + [15881] = 13, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(2078), 1, sym_identifier, - STATE(648), 1, + STATE(388), 1, + sym__unannotated_type, + STATE(403), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(416), 1, sym_generic_type, - STATE(686), 1, - sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, - STATE(919), 1, + STATE(433), 1, sym__type, + STATE(449), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(2084), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2086), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(421), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(663), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(2082), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15503] = 3, + [15933] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 11, + ACTIONS(1315), 11, anon_sym_COLON, anon_sym_DOT, anon_sym_default, @@ -54256,7 +53726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - ACTIONS(1354), 12, + ACTIONS(1317), 12, anon_sym_AMP, anon_sym_RPAREN, anon_sym_EQ, @@ -54269,58 +53739,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15535] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1292), 11, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1294), 12, - anon_sym_AMP, - anon_sym_RPAREN, - 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, + [15965] = 13, + ACTIONS(344), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15567] = 16, - ACTIONS(1030), 1, - anon_sym_LT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - ACTIONS(1993), 1, - anon_sym_class, - ACTIONS(1995), 1, - anon_sym_enum, - ACTIONS(1999), 1, - anon_sym_ATinterface, - ACTIONS(2001), 1, - anon_sym_interface, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(660), 1, - sym_type_parameters, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(687), 1, + STATE(693), 1, sym__unannotated_type, - STATE(1009), 1, - sym__method_header, + STATE(770), 1, + sym_annotated_type, + STATE(911), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -54330,30 +53763,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, + STATE(661), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15625] = 13, + [16017] = 13, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(686), 1, + STATE(693), 1, sym__unannotated_type, - STATE(759), 1, + STATE(770), 1, sym_annotated_type, - STATE(894), 1, + STATE(1155), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -54364,11 +53802,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(661), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54379,60 +53817,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15677] = 13, - ACTIONS(344), 1, + [16069] = 8, + ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(305), 1, + anon_sym_non_DASHsealed, + ACTIONS(1985), 1, sym_identifier, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(686), 1, - sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, - STATE(1070), 1, - sym__type, + STATE(1000), 1, + sym_enum_constant, + STATE(1224), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(654), 4, + STATE(538), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15729] = 13, + aux_sym_modifiers_repeat1, + ACTIONS(299), 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, + [16110] = 12, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + ACTIONS(2112), 1, + anon_sym_QMARK, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(686), 1, + STATE(691), 1, sym__unannotated_type, - STATE(759), 1, - sym_annotated_type, - STATE(1087), 1, - sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -54442,11 +53872,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(654), 4, + STATE(687), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54457,24 +53887,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15781] = 6, - ACTIONS(2065), 1, + [16159] = 6, + ACTIONS(2114), 1, anon_sym_LPAREN, - ACTIONS(2067), 1, + ACTIONS(2116), 1, anon_sym_DOT, - STATE(668), 1, + STATE(676), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1386), 6, + ACTIONS(1435), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1382), 13, + ACTIONS(1433), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -54488,24 +53918,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15818] = 6, - ACTIONS(2065), 1, + [16196] = 6, + ACTIONS(2114), 1, anon_sym_LPAREN, - ACTIONS(2069), 1, + ACTIONS(2118), 1, anon_sym_DOT, - STATE(667), 1, + STATE(682), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 6, + ACTIONS(1405), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1390), 13, + ACTIONS(1401), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -54519,51 +53949,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15855] = 8, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1952), 1, - sym_identifier, - STATE(1052), 1, - sym_enum_constant, - STATE(1205), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(525), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [15896] = 12, + [16233] = 11, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(1160), 1, sym_identifier, - ACTIONS(2071), 1, - anon_sym_QMARK, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(678), 1, + STATE(729), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -54574,11 +53969,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(666), 4, + STATE(687), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54589,117 +53984,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [15945] = 11, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1126), 1, - sym_identifier, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(751), 1, - sym__unannotated_type, + [16279] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(666), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15991] = 12, - ACTIONS(87), 1, + ACTIONS(1409), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1411), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, anon_sym_LT, - ACTIONS(344), 1, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(2073), 1, + anon_sym_DOT_DOT_DOT, + [16309] = 14, + ACTIONS(1160), 1, sym_identifier, - STATE(705), 1, + ACTIONS(2029), 1, + anon_sym_class, + ACTIONS(2031), 1, + anon_sym_enum, + ACTIONS(2033), 1, + anon_sym_record, + ACTIONS(2035), 1, + anon_sym_ATinterface, + ACTIONS(2037), 1, + anon_sym_interface, + STATE(658), 1, sym_scoped_type_identifier, - STATE(710), 1, - sym_type_arguments, - STATE(722), 1, + STATE(684), 1, sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2075), 2, - sym_boolean_type, - sym_void_type, - STATE(737), 2, - sym_integral_type, - sym_floating_point_type, - STATE(675), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [16039] = 11, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2057), 1, - sym_identifier, - STATE(384), 1, + STATE(711), 1, sym__unannotated_type, - STATE(402), 1, - sym_scoped_type_identifier, - STATE(406), 1, - sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2061), 2, + ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2063), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(415), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(666), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2059), 5, + ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16085] = 3, + [16361] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1396), 8, + ACTIONS(1425), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -54708,7 +54062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1398), 13, + ACTIONS(1427), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -54722,12 +54076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16115] = 3, + [16391] = 6, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(2120), 1, + anon_sym_DOT, + STATE(674), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1400), 8, - anon_sym_DOT, + ACTIONS(1170), 7, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -54735,12 +54094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1402), 13, - anon_sym_LPAREN, + ACTIONS(1194), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -54749,17 +54106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16145] = 6, - ACTIONS(87), 1, + [16427] = 6, + ACTIONS(91), 1, anon_sym_LT, - ACTIONS(2077), 1, + ACTIONS(2122), 1, anon_sym_DOT, - STATE(665), 1, + STATE(671), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 7, + ACTIONS(1380), 7, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -54767,7 +54124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1363), 11, + ACTIONS(1382), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -54779,59 +54136,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16181] = 3, + [16463] = 11, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1160), 1, + sym_identifier, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(738), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1338), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1336), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(670), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 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, + [16509] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - [16211] = 12, - ACTIONS(87), 1, + ACTIONS(1431), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16539] = 11, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2079), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(702), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(710), 1, - sym_type_arguments, - STATE(728), 1, + STATE(684), 1, sym_generic_type, + STATE(691), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2081), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(733), 2, + STATE(685), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(671), 4, + STATE(687), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54842,31 +54233,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16259] = 11, + [16585] = 12, + ACTIONS(91), 1, + anon_sym_LT, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(2124), 1, sym_identifier, - STATE(648), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(721), 1, + sym_type_arguments, + STATE(726), 1, sym_generic_type, - STATE(714), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2126), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, - sym_array_type, + STATE(748), 2, sym_integral_type, sym_floating_point_type, - STATE(666), 4, + STATE(678), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54877,93 +54269,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16305] = 11, + [16633] = 11, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(2078), 1, sym_identifier, - STATE(648), 1, + STATE(387), 1, + sym__unannotated_type, + STATE(403), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(416), 1, sym_generic_type, - STATE(730), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(2084), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2086), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(421), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(666), 4, + STATE(687), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(2082), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16351] = 3, + [16679] = 11, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(1160), 1, + sym_identifier, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(766), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1332), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(77), 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, - [16381] = 11, + [16725] = 12, + ACTIONS(91), 1, + anon_sym_LT, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(1126), 1, + ACTIONS(2128), 1, sym_identifier, - STATE(648), 1, + STATE(716), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(721), 1, + sym_type_arguments, + STATE(735), 1, sym_generic_type, - STATE(678), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2130), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, - sym_array_type, + STATE(752), 2, sym_integral_type, sym_floating_point_type, - STATE(666), 4, + STATE(686), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -54974,24 +54375,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16427] = 14, - ACTIONS(1126), 1, - sym_identifier, - ACTIONS(1993), 1, - anon_sym_class, - ACTIONS(1995), 1, - anon_sym_enum, - ACTIONS(1997), 1, + [16773] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1417), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, anon_sym_record, - ACTIONS(1999), 1, - anon_sym_ATinterface, - ACTIONS(2001), 1, - anon_sym_interface, - STATE(648), 1, + sym_this, + sym_identifier, + ACTIONS(1419), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16803] = 11, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2132), 1, + sym_identifier, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(703), 1, + STATE(738), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -55002,53 +54422,85 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, + STATE(670), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16479] = 3, + [16849] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1353), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1351), 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, + [16879] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1374), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1376), 13, + ACTIONS(1357), 8, anon_sym_LPAREN, - anon_sym_AMP, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16509] = 11, + ACTIONS(1355), 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, + [16909] = 11, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2083), 1, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(723), 1, + STATE(741), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -55059,11 +54511,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(652), 4, + STATE(687), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -55074,17 +54526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [16555] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2085), 1, - anon_sym_DOT, - STATE(662), 1, - sym_type_arguments, + [16955] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1100), 7, + ACTIONS(1397), 8, + anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -55092,7 +54539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1124), 11, + ACTIONS(1399), 12, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -55104,11 +54552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16591] = 3, + [16984] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 8, + ACTIONS(1439), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55117,12 +54565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1418), 13, + ACTIONS(1441), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -55131,16 +54578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16621] = 11, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1126), 1, + [17013] = 13, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + ACTIONS(2029), 1, + anon_sym_class, + ACTIONS(2031), 1, + anon_sym_enum, + ACTIONS(2035), 1, + anon_sym_ATinterface, + ACTIONS(2037), 1, + anon_sym_interface, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(723), 1, + STATE(713), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -55151,26 +54604,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(652), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16667] = 3, + [17062] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1424), 8, + ACTIONS(1413), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55179,7 +54627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1426), 12, + ACTIONS(1415), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55192,11 +54640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16696] = 3, + [17091] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 8, + ACTIONS(1443), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55205,7 +54653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1406), 12, + ACTIONS(1445), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55218,11 +54666,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16725] = 3, + [17120] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1596), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1594), 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, + [17148] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1428), 8, + ACTIONS(1447), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55231,8 +54704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1430), 12, - anon_sym_LPAREN, + ACTIONS(1449), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -55244,82 +54716,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16754] = 13, - ACTIONS(1126), 1, + [17176] = 10, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2134), 1, sym_identifier, - ACTIONS(1993), 1, - anon_sym_class, - ACTIONS(1995), 1, - anon_sym_enum, - ACTIONS(1999), 1, - anon_sym_ATinterface, - ACTIONS(2001), 1, - anon_sym_interface, - STATE(648), 1, + STATE(737), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(753), 1, sym_generic_type, - STATE(706), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2136), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, - sym_array_type, + STATE(762), 2, sym_integral_type, sym_floating_point_type, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(77), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16803] = 3, + [17218] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1370), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1372), 12, - anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(1608), 6, anon_sym_RPAREN, - 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, - [16832] = 5, - ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2091), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(666), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2087), 13, + ACTIONS(1606), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -55333,18 +54773,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16864] = 3, + [17246] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 6, + ACTIONS(1492), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1511), 13, + ACTIONS(1490), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -55358,18 +54798,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16892] = 3, + [17274] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 6, + ACTIONS(1552), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1483), 13, + ACTIONS(1550), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -55383,105 +54823,73 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16920] = 4, - ACTIONS(2077), 1, - anon_sym_DOT, + [17302] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 7, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1363), 11, - anon_sym_AMP, + ACTIONS(1592), 6, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16950] = 13, + ACTIONS(1590), 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, + [17330] = 13, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2094), 1, + ACTIONS(2138), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2144), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2102), 1, + ACTIONS(2146), 1, sym_this, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(1175), 1, + STATE(1187), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1318), 3, + ACTIONS(1331), 3, anon_sym_AMP, anon_sym_RPAREN, anon_sym_COLON_COLON, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [16998] = 10, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2104), 1, - sym_identifier, - STATE(719), 1, - sym_scoped_type_identifier, - STATE(743), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2106), 2, - sym_boolean_type, - sym_void_type, - STATE(754), 2, - sym_integral_type, - sym_floating_point_type, - STATE(666), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17040] = 3, + [17378] = 4, + ACTIONS(2122), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 8, - anon_sym_DOT, + ACTIONS(1380), 7, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -55489,7 +54897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1363), 11, + ACTIONS(1382), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -55501,64 +54909,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [17068] = 3, + [17408] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1507), 13, + ACTIONS(1380), 8, + anon_sym_DOT, 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, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - [17096] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1477), 6, + ACTIONS(1382), 11, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1475), 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, - [17124] = 10, + anon_sym_DOT_DOT_DOT, + [17436] = 10, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2108), 1, + ACTIONS(2148), 1, sym_identifier, - STATE(720), 1, + STATE(732), 1, sym_scoped_type_identifier, - STATE(749), 1, + STATE(756), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -55566,13 +54949,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2110), 2, + ACTIONS(2150), 2, sym_boolean_type, sym_void_type, - STATE(756), 2, + STATE(765), 2, sym_integral_type, sym_floating_point_type, - STATE(666), 4, + STATE(687), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -55583,43 +54966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17166] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1420), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1422), 11, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, + [17478] = 5, + ACTIONS(2154), 1, + anon_sym_QMARK, + ACTIONS(2156), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [17194] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1521), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1519), 13, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2152), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -55633,76 +54993,49 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17222] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1854), 1, - anon_sym_LBRACK, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(676), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1314), 9, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [17256] = 13, + [17510] = 13, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1318), 1, + ACTIONS(1331), 1, anon_sym_COLON_COLON, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2159), 1, sym_identifier, - ACTIONS(2114), 1, + ACTIONS(2161), 1, anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(941), 1, + STATE(908), 1, sym__variable_declarator_id, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1211), 1, + STATE(1262), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17302] = 10, - ACTIONS(1126), 1, + [17556] = 10, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(712), 1, + STATE(719), 1, sym__unannotated_type, - STATE(851), 1, + STATE(864), 1, sym_catch_type, ACTIONS(3), 2, sym_line_comment, @@ -55713,7 +55046,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -55723,174 +55056,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17342] = 13, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1318), 1, - anon_sym_COLON_COLON, - ACTIONS(1854), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - sym_identifier, - ACTIONS(2114), 1, - anon_sym_DOT, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(676), 1, - sym_dimensions, - STATE(891), 1, - sym__variable_declarator_id, - STATE(1000), 1, - sym_variable_declarator, - STATE(1211), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2098), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [17388] = 13, + [17596] = 13, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1318), 1, + ACTIONS(1331), 1, anon_sym_COLON_COLON, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2159), 1, sym_identifier, - ACTIONS(2114), 1, + ACTIONS(2161), 1, anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, + STATE(905), 1, sym__variable_declarator_id, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1189), 1, + STATE(1225), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17434] = 12, + [17642] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2116), 1, - sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, - sym__variable_declarator_id, - STATE(917), 1, - sym__method_declarator, - STATE(1000), 1, - sym_variable_declarator, - STATE(1187), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17477] = 12, + ACTIONS(1327), 9, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [17676] = 13, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1331), 1, + anon_sym_COLON_COLON, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2116), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(534), 1, + ACTIONS(2161), 1, + anon_sym_DOT, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, + STATE(947), 1, sym__variable_declarator_id, - STATE(917), 1, - sym__method_declarator, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1265), 1, + STATE(1225), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17520] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2122), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(2120), 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, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [17545] = 7, + [17722] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1318), 8, + ACTIONS(1331), 8, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -55899,111 +55175,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [17578] = 12, + [17755] = 12, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2116), 1, + ACTIONS(2163), 1, sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, + STATE(908), 1, sym__variable_declarator_id, - STATE(917), 1, + STATE(950), 1, sym__method_declarator, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1257), 1, + STATE(1238), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 3, + ACTIONS(2165), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17621] = 12, + [17798] = 12, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2116), 1, + ACTIONS(2163), 1, sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, + STATE(908), 1, sym__variable_declarator_id, - STATE(917), 1, + STATE(950), 1, sym__method_declarator, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1204), 1, + STATE(1237), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 3, + ACTIONS(2165), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17664] = 3, + [17841] = 9, + ACTIONS(1160), 1, + sym_identifier, + STATE(658), 1, + sym_scoped_type_identifier, + STATE(684), 1, + sym_generic_type, + STATE(709), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(2124), 13, - anon_sym_extends, - anon_sym_implements, - anon_sym_permits, + ACTIONS(79), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(81), 2, + sym_boolean_type, + sym_void_type, + STATE(685), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(77), 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, - [17689] = 10, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2128), 1, + [17878] = 9, + ACTIONS(1160), 1, sym_identifier, - STATE(710), 1, - sym_type_arguments, - STATE(853), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(995), 1, + STATE(684), 1, sym_generic_type, + STATE(717), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2130), 2, + ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(1144), 2, + STATE(685), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, ACTIONS(77), 5, @@ -56012,26 +55293,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17728] = 9, - ACTIONS(1126), 1, + [17915] = 10, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(2167), 1, sym_identifier, - STATE(648), 1, + STATE(721), 1, + sym_type_arguments, + STATE(868), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(1071), 1, sym_generic_type, - STATE(713), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2169), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, - sym_array_type, + STATE(1112), 2, sym_integral_type, sym_floating_point_type, ACTIONS(77), 5, @@ -56040,14 +55322,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17765] = 9, - ACTIONS(1126), 1, + [17954] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2173), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2171), 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, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [17979] = 12, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(2163), 1, + sym_identifier, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_dimensions, + STATE(908), 1, + sym__variable_declarator_id, + STATE(950), 1, + sym__method_declarator, + STATE(1067), 1, + sym_variable_declarator, + STATE(1246), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2165), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18022] = 9, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(726), 1, + STATE(736), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -56058,7 +55393,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -56068,14 +55403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17802] = 9, - ACTIONS(1126), 1, + [18059] = 9, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(698), 1, + STATE(733), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -56086,7 +55421,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -56096,14 +55431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17839] = 9, - ACTIONS(1126), 1, + [18096] = 9, + ACTIONS(1160), 1, sym_identifier, - STATE(648), 1, + STATE(658), 1, sym_scoped_type_identifier, - STATE(669), 1, + STATE(684), 1, sym_generic_type, - STATE(716), 1, + STATE(723), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -56114,7 +55449,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(672), 3, + STATE(685), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -56124,435 +55459,490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17876] = 9, - ACTIONS(1126), 1, + [18133] = 12, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(2163), 1, sym_identifier, - STATE(648), 1, - sym_scoped_type_identifier, - STATE(669), 1, - sym_generic_type, - STATE(697), 1, - sym__unannotated_type, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_dimensions, + STATE(908), 1, + sym__variable_declarator_id, + STATE(950), 1, + sym__method_declarator, + STATE(1067), 1, + sym_variable_declarator, + STATE(1249), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(672), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(2165), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18176] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2177), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2175), 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, - [17913] = 12, - ACTIONS(87), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [18201] = 11, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1331), 1, + anon_sym_COLON_COLON, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + sym_identifier, + ACTIONS(2161), 1, + anon_sym_DOT, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_dimensions, + STATE(1269), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2142), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18241] = 12, + ACTIONS(91), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2134), 1, + ACTIONS(2181), 1, anon_sym_DOT, - STATE(422), 1, + STATE(425), 1, sym_argument_list, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(662), 1, + STATE(674), 1, sym_type_arguments, - STATE(1164), 1, + STATE(1149), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(388), 2, + STATE(744), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17955] = 11, + [18283] = 12, + ACTIONS(91), 1, + anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, - sym_identifier, - STATE(534), 1, + ACTIONS(2181), 1, + anon_sym_DOT, + STATE(425), 1, + sym_argument_list, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(674), 1, + sym_type_arguments, + STATE(1149), 1, sym_dimensions, - STATE(889), 1, - sym__variable_declarator_id, - STATE(1000), 1, - sym_variable_declarator, - STATE(1197), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(779), 4, + STATE(389), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17995] = 11, + [18325] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(948), 1, + STATE(902), 1, sym__variable_declarator_id, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1197), 1, + STATE(1218), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18035] = 11, + [18365] = 4, + ACTIONS(2183), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1899), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1743), 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, + [18391] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, + STATE(908), 1, sym__variable_declarator_id, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1265), 1, + STATE(1244), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18075] = 11, + [18431] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2094), 1, + ACTIONS(2185), 1, sym_identifier, - ACTIONS(2100), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2102), 1, - sym_this, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(1175), 1, + STATE(908), 1, sym__variable_declarator_id, + STATE(1067), 1, + sym_variable_declarator, + STATE(1237), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18115] = 11, + [18471] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1318), 1, - anon_sym_COLON_COLON, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2187), 1, sym_identifier, - ACTIONS(2114), 1, - anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(1235), 1, + STATE(908), 1, sym__variable_declarator_id, + STATE(1067), 1, + sym_variable_declarator, + STATE(1238), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18155] = 12, - ACTIONS(87), 1, + [18511] = 12, + ACTIONS(91), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, + ACTIONS(2189), 1, anon_sym_DOT, - STATE(420), 1, + STATE(424), 1, sym_argument_list, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(671), 1, sym_type_arguments, - STATE(1166), 1, + STATE(1156), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(387), 2, + STATE(390), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18197] = 11, + [18553] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2138), 1, sym_identifier, - STATE(534), 1, + ACTIONS(2144), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2146), 1, + sym_this, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, + STATE(1187), 1, sym__variable_declarator_id, - STATE(1000), 1, - sym_variable_declarator, - STATE(1238), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18237] = 12, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, - anon_sym_LBRACK, - ACTIONS(2134), 1, - anon_sym_DOT, - STATE(422), 1, - sym_argument_list, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(662), 1, - sym_type_arguments, - STATE(1164), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(738), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18279] = 12, - ACTIONS(87), 1, + [18593] = 12, + ACTIONS(91), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, + ACTIONS(2189), 1, anon_sym_DOT, - STATE(420), 1, + STATE(424), 1, sym_argument_list, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(671), 1, sym_type_arguments, - STATE(1166), 1, + STATE(1156), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(739), 2, + STATE(749), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18321] = 11, + [18635] = 11, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(916), 1, + STATE(962), 1, sym__variable_declarator_id, - STATE(1000), 1, + STATE(1067), 1, sym_variable_declarator, - STATE(1257), 1, + STATE(1218), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18361] = 4, - ACTIONS(2142), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1890), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1636), 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, - [18387] = 10, - ACTIONS(87), 1, + [18675] = 10, + ACTIONS(91), 1, anon_sym_LT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1190), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1194), 1, anon_sym_AT, - STATE(454), 1, + STATE(472), 1, sym_argument_list, - STATE(662), 1, + STATE(674), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1117), 2, + ACTIONS(1187), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(2144), 2, + ACTIONS(2191), 2, anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(1100), 4, + ACTIONS(1170), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - [18424] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2146), 1, - anon_sym_DOT, - STATE(665), 1, - sym_type_arguments, + [18712] = 9, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(2195), 1, + anon_sym_PIPE, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_dimensions, + STATE(851), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 5, + ACTIONS(2193), 4, anon_sym_open, anon_sym_module, anon_sym_record, - sym_this, sym_identifier, - ACTIONS(1363), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18747] = 10, + ACTIONS(301), 1, anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(2144), 1, anon_sym_DOT_DOT_DOT, - [18453] = 8, - ACTIONS(2149), 1, + ACTIONS(2159), 1, + sym_identifier, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_dimensions, + STATE(1187), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2142), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18784] = 8, + ACTIONS(2197), 1, sym_identifier, - STATE(882), 1, + STATE(872), 1, sym_scoped_type_identifier, - STATE(1026), 1, + STATE(1017), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -56560,10 +55950,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(2151), 2, + ACTIONS(2199), 2, sym_boolean_type, sym_void_type, - STATE(1159), 2, + STATE(1143), 2, sym_integral_type, sym_floating_point_type, ACTIONS(77), 5, @@ -56572,1140 +55962,1140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [18486] = 10, + [18817] = 6, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(2201), 1, + anon_sym_DOT, + STATE(671), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1380), 5, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1382), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [18846] = 10, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2100), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2112), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(534), 1, + ACTIONS(2204), 1, + anon_sym_DOT_DOT_DOT, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(1175), 1, + STATE(1136), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18523] = 9, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1854), 1, - anon_sym_LBRACK, - ACTIONS(2155), 1, - anon_sym_PIPE, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(676), 1, - sym_dimensions, - STATE(837), 1, - aux_sym_catch_type_repeat1, + [18883] = 10, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(2181), 1, + anon_sym_DOT, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(448), 1, + sym_block, + STATE(674), 1, + sym_type_arguments, + STATE(1100), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2153), 4, + ACTIONS(1194), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1170), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18558] = 10, + [18919] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, - sym_identifier, - ACTIONS(2157), 1, - anon_sym_DOT_DOT_DOT, - STATE(534), 1, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(758), 1, + sym_formal_parameters, + STATE(881), 1, sym_dimensions, - STATE(1088), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(779), 4, + ACTIONS(2208), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18595] = 9, + [18953] = 10, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - sym_identifier, - ACTIONS(2161), 1, - sym_this, - STATE(534), 1, + ACTIONS(2189), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(1156), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1314), 3, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - STATE(779), 4, + STATE(390), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18629] = 7, + [18989] = 9, + ACTIONS(2210), 1, + anon_sym_RBRACE, + ACTIONS(2212), 1, + anon_sym_requires, + ACTIONS(2215), 1, + anon_sym_exports, + ACTIONS(2218), 1, + anon_sym_opens, + ACTIONS(2221), 1, + anon_sym_uses, + ACTIONS(2224), 1, + anon_sym_provides, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(727), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(825), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [19023] = 10, + ACTIONS(91), 1, + anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(534), 1, + ACTIONS(2181), 1, + anon_sym_DOT, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(865), 1, + STATE(674), 1, + sym_type_arguments, + STATE(1105), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(779), 4, + STATE(747), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2163), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [18659] = 9, + [19059] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2227), 1, sym_identifier, - STATE(534), 1, + ACTIONS(2229), 1, + sym_this, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(1226), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(779), 4, + ACTIONS(1327), 3, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18693] = 9, + [19093] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2165), 1, + ACTIONS(2206), 1, anon_sym_LPAREN, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(747), 1, + STATE(759), 1, sym_formal_parameters, - STATE(865), 1, + STATE(877), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 3, + ACTIONS(2231), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18727] = 9, - ACTIONS(2167), 1, + [19127] = 9, + ACTIONS(2233), 1, anon_sym_RBRACE, - ACTIONS(2169), 1, + ACTIONS(2235), 1, anon_sym_requires, - ACTIONS(2172), 1, + ACTIONS(2237), 1, anon_sym_exports, - ACTIONS(2175), 1, + ACTIONS(2239), 1, anon_sym_opens, - ACTIONS(2178), 1, + ACTIONS(2241), 1, anon_sym_uses, - ACTIONS(2181), 1, + ACTIONS(2243), 1, anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(718), 2, + STATE(743), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(835), 5, + STATE(825), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [18761] = 10, - ACTIONS(87), 1, + [19161] = 10, + ACTIONS(91), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, + ACTIONS(2189), 1, anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, + STATE(671), 1, sym_type_arguments, - STATE(1078), 1, + STATE(1141), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(383), 2, + STATE(745), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18797] = 10, - ACTIONS(87), 1, - anon_sym_LT, + [19197] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, - anon_sym_DOT, - STATE(534), 1, + ACTIONS(2247), 1, + anon_sym_PIPE, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(665), 1, - sym_type_arguments, - STATE(1078), 1, + STATE(677), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(735), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + ACTIONS(2245), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18833] = 10, - ACTIONS(87), 1, + [19229] = 10, + ACTIONS(91), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2134), 1, + ACTIONS(2181), 1, anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(662), 1, + STATE(674), 1, sym_type_arguments, - STATE(1077), 1, + STATE(1105), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 2, + STATE(391), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18869] = 10, + [19265] = 10, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, + ACTIONS(2189), 1, anon_sym_DOT, - STATE(420), 1, + STATE(424), 1, sym_argument_list, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(1166), 1, + STATE(1156), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(739), 2, + STATE(749), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18905] = 9, + [19301] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2184), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, - STATE(898), 1, - sym__method_declarator, + STATE(1212), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18939] = 10, - ACTIONS(87), 1, + [19335] = 10, + ACTIONS(91), 1, anon_sym_LT, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2134), 1, + ACTIONS(2189), 1, anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(662), 1, + STATE(671), 1, sym_type_arguments, - STATE(1077), 1, + STATE(1141), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(386), 2, + STATE(392), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18975] = 9, - ACTIONS(2188), 1, - anon_sym_RBRACE, - ACTIONS(2190), 1, - anon_sym_requires, - ACTIONS(2192), 1, - anon_sym_exports, - ACTIONS(2194), 1, - anon_sym_opens, - ACTIONS(2196), 1, - anon_sym_uses, - ACTIONS(2198), 1, - anon_sym_provides, + [19371] = 9, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(2249), 1, + sym_identifier, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_dimensions, + STATE(963), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(727), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(835), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [19009] = 8, + ACTIONS(2251), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19405] = 7, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(877), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2231), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19435] = 7, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(1894), 1, + anon_sym_LBRACK, + STATE(540), 1, + aux_sym_dimensions_repeat1, + STATE(881), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(790), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2208), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19465] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2202), 1, - anon_sym_PIPE, - STATE(534), 1, + ACTIONS(2249), 1, + sym_identifier, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, + STATE(938), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2200), 4, + ACTIONS(2251), 3, anon_sym_open, anon_sym_module, anon_sym_record, - sym_identifier, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19041] = 9, - ACTIONS(2190), 1, + [19499] = 10, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(2181), 1, + anon_sym_DOT, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(441), 1, + sym_block, + STATE(674), 1, + sym_type_arguments, + STATE(1100), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1194), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1170), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19535] = 9, + ACTIONS(2235), 1, anon_sym_requires, - ACTIONS(2192), 1, + ACTIONS(2237), 1, anon_sym_exports, - ACTIONS(2194), 1, + ACTIONS(2239), 1, anon_sym_opens, - ACTIONS(2196), 1, + ACTIONS(2241), 1, anon_sym_uses, - ACTIONS(2198), 1, + ACTIONS(2243), 1, anon_sym_provides, - ACTIONS(2204), 1, + ACTIONS(2253), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(718), 2, + STATE(727), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(835), 5, + STATE(825), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [19075] = 10, + [19569] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, - anon_sym_DOT, - STATE(420), 1, - sym_argument_list, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(1166), 1, + STATE(469), 1, sym_dimensions, + STATE(540), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(387), 2, + ACTIONS(1335), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19111] = 7, + [19600] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(878), 1, + STATE(473), 1, sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2206), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [19141] = 9, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1854), 1, - anon_sym_LBRACK, - ACTIONS(2184), 1, - sym_identifier, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, - sym_dimensions, - STATE(888), 1, - sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(779), 4, + ACTIONS(1349), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19175] = 9, + [19631] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2165), 1, + ACTIONS(2255), 1, anon_sym_LPAREN, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(746), 1, - sym_formal_parameters, - STATE(878), 1, + STATE(877), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 3, + ACTIONS(2231), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19209] = 8, + [19662] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2208), 1, - anon_sym_LPAREN, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(865), 1, + STATE(490), 1, sym_dimensions, + STATE(540), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(779), 4, + ACTIONS(1345), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19240] = 9, + [19693] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(420), 1, + STATE(424), 1, sym_argument_list, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(1166), 1, + STATE(1156), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(387), 2, + STATE(390), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19273] = 8, + [19726] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(467), 1, + STATE(462), 1, sym_dimensions, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1322), 2, + ACTIONS(1341), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(393), 2, + STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19304] = 8, + [19757] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - STATE(456), 1, - sym_dimensions, - STATE(534), 1, + ACTIONS(2257), 1, + anon_sym_LPAREN, + STATE(540), 1, aux_sym_dimensions_repeat1, + STATE(877), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1308), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(393), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + ACTIONS(2231), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19335] = 4, - ACTIONS(2146), 1, + [19788] = 4, + ACTIONS(2201), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 5, + ACTIONS(1380), 5, anon_sym_open, anon_sym_module, anon_sym_record, sym_this, sym_identifier, - ACTIONS(1363), 6, + ACTIONS(1382), 6, anon_sym_AMP, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [19358] = 9, + [19811] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(420), 1, + STATE(424), 1, sym_argument_list, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(1166), 1, + STATE(1156), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(739), 2, + STATE(749), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19391] = 8, + [19844] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(461), 1, - sym_dimensions, - STATE(534), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1330), 2, + ACTIONS(2189), 1, anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(393), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(785), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19422] = 8, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2132), 1, - anon_sym_LBRACK, - STATE(485), 1, - sym_dimensions, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, + STATE(1141), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1326), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(393), 2, + STATE(392), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19453] = 8, + [19874] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2210), 1, - anon_sym_LPAREN, - STATE(534), 1, + ACTIONS(2259), 1, + anon_sym_default, + ACTIONS(2261), 1, + anon_sym_SEMI, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(865), 1, + STATE(1002), 1, sym_dimensions, + STATE(1198), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19484] = 8, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2165), 1, - anon_sym_LPAREN, - STATE(662), 1, - sym_type_arguments, - STATE(1158), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1124), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1100), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [19514] = 9, + [19906] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2212), 1, - anon_sym_default, - ACTIONS(2214), 1, - anon_sym_SEMI, - STATE(534), 1, + ACTIONS(2263), 1, + anon_sym_DOT, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(990), 1, + STATE(877), 1, sym_dimensions, - STATE(1233), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(779), 4, + ACTIONS(2231), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19546] = 8, + [19936] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, + ACTIONS(2189), 1, anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(1078), 1, + STATE(1141), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(383), 2, + STATE(745), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19576] = 8, + [19966] = 9, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_DOT, - STATE(534), 1, + ACTIONS(2259), 1, + anon_sym_default, + ACTIONS(2265), 1, + anon_sym_SEMI, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(865), 1, + STATE(1038), 1, sym_dimensions, + STATE(1230), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19606] = 8, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2165), 1, - anon_sym_LPAREN, - STATE(662), 1, - sym_type_arguments, - STATE(1151), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1124), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1100), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [19636] = 7, + [19998] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(986), 1, + STATE(1055), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 3, + ACTIONS(2267), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_throws, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19664] = 7, + [20026] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(984), 1, + STATE(1056), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2220), 3, + ACTIONS(2269), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_throws, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19692] = 9, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1854), 1, - anon_sym_LBRACK, - ACTIONS(2212), 1, - anon_sym_default, - ACTIONS(2222), 1, - anon_sym_SEMI, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(1023), 1, - sym_dimensions, - STATE(1224), 1, - sym__default_value, + [20054] = 8, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(2181), 1, + anon_sym_DOT, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(674), 1, + sym_type_arguments, + STATE(1111), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(779), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19724] = 8, + ACTIONS(1194), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1170), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [20084] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(1331), 1, + anon_sym_COLON_COLON, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, + ACTIONS(2161), 1, anon_sym_DOT, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(1078), 1, + STATE(677), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(735), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19754] = 11, - ACTIONS(1030), 1, - anon_sym_LT, - ACTIONS(1436), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_extends, - ACTIONS(2226), 1, - anon_sym_implements, - ACTIONS(2228), 1, - anon_sym_permits, - STATE(150), 1, - sym_class_body, - STATE(766), 1, - sym_type_parameters, - STATE(832), 1, - sym_superclass, - STATE(945), 1, - sym_super_interfaces, - STATE(1108), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [19789] = 8, + [20113] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1854), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - sym_identifier, - ACTIONS(2161), 1, - sym_this, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(1141), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(779), 4, + STATE(392), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19818] = 9, - ACTIONS(87), 1, + [20140] = 9, + ACTIONS(91), 1, anon_sym_LT, - ACTIONS(2230), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2232), 1, + ACTIONS(2273), 1, anon_sym_new, - ACTIONS(2236), 1, + ACTIONS(2277), 1, sym_this, - ACTIONS(2238), 1, + ACTIONS(2279), 1, sym_super, - STATE(471), 1, + STATE(486), 1, sym__unqualified_object_creation_expression, - STATE(929), 1, + STATE(867), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 3, + ACTIONS(2275), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [19849] = 9, - ACTIONS(87), 1, + [20171] = 9, + ACTIONS(91), 1, anon_sym_LT, - ACTIONS(2230), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2232), 1, + ACTIONS(2273), 1, anon_sym_new, - ACTIONS(2236), 1, + ACTIONS(2277), 1, sym_this, - ACTIONS(2240), 1, + ACTIONS(2281), 1, sym_super, - STATE(471), 1, + STATE(486), 1, sym__unqualified_object_creation_expression, - STATE(877), 1, + STATE(949), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 3, + ACTIONS(2275), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [19880] = 7, + [20202] = 7, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(534), 1, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(1078), 1, + STATE(1141), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(383), 2, + STATE(745), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(785), 4, + STATE(850), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19907] = 8, + [20229] = 8, ACTIONS(301), 1, anon_sym_AT, - ACTIONS(1318), 1, - anon_sym_COLON_COLON, - ACTIONS(1854), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2114), 1, - anon_sym_DOT, - STATE(534), 1, + ACTIONS(2227), 1, + sym_identifier, + ACTIONS(2229), 1, + sym_this, + STATE(540), 1, aux_sym_dimensions_repeat1, - STATE(676), 1, + STATE(677), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(779), 4, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19936] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2132), 1, - anon_sym_LBRACK, - STATE(534), 1, - aux_sym_dimensions_repeat1, - STATE(1078), 1, - sym_dimensions, + [20258] = 11, + ACTIONS(1046), 1, + anon_sym_LT, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2283), 1, + anon_sym_extends, + ACTIONS(2285), 1, + anon_sym_implements, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(168), 1, + sym_class_body, + STATE(773), 1, + sym_type_parameters, + STATE(857), 1, + sym_superclass, + STATE(936), 1, + sym_super_interfaces, + STATE(1090), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(735), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(785), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19963] = 11, - ACTIONS(1030), 1, + [20293] = 11, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(1436), 1, + ACTIONS(1463), 1, anon_sym_LBRACE, - ACTIONS(2224), 1, + ACTIONS(2283), 1, anon_sym_extends, - ACTIONS(2226), 1, + ACTIONS(2285), 1, anon_sym_implements, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - STATE(110), 1, + STATE(117), 1, sym_class_body, - STATE(767), 1, + STATE(777), 1, sym_type_parameters, - STATE(795), 1, + STATE(858), 1, sym_superclass, - STATE(923), 1, + STATE(946), 1, sym_super_interfaces, - STATE(1124), 1, + STATE(1120), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19998] = 9, - ACTIONS(2242), 1, + [20328] = 9, + ACTIONS(2289), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2291), 1, anon_sym_open, - ACTIONS(2246), 1, + ACTIONS(2293), 1, anon_sym_module, - ACTIONS(2250), 1, + ACTIONS(2297), 1, anon_sym_record, - STATE(764), 1, + STATE(778), 1, aux_sym_requires_module_directive_repeat1, - STATE(830), 1, + STATE(848), 1, sym_requires_modifier, - STATE(1136), 1, + STATE(1186), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 2, + ACTIONS(2295), 2, anon_sym_transitive, anon_sym_static, - [20028] = 2, + [20358] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1318), 9, + ACTIONS(1331), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -57715,5799 +57105,5862 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [20044] = 8, - ACTIONS(2252), 1, + [20374] = 7, + ACTIONS(2299), 1, + sym_identifier, + STATE(769), 1, + aux_sym_requires_module_directive_repeat1, + STATE(848), 1, + sym_requires_modifier, + STATE(1173), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2295), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2301), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20400] = 8, + ACTIONS(2303), 1, anon_sym_RBRACE, - ACTIONS(2254), 1, + ACTIONS(2305), 1, anon_sym_case, - ACTIONS(2256), 1, + ACTIONS(2307), 1, anon_sym_default, - STATE(3), 1, + STATE(2), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1165), 1, + STATE(1078), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(769), 2, + STATE(788), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - STATE(826), 2, + STATE(855), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [20072] = 7, - ACTIONS(2258), 1, - sym_identifier, - STATE(758), 1, - aux_sym_requires_module_directive_repeat1, - STATE(830), 1, - sym_requires_modifier, - STATE(1104), 1, - sym_scoped_identifier, + [20428] = 9, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2283), 1, + anon_sym_extends, + ACTIONS(2285), 1, + anon_sym_implements, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(112), 1, + sym_class_body, + STATE(845), 1, + sym_superclass, + STATE(955), 1, + sym_super_interfaces, + STATE(1165), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2260), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [20098] = 7, - ACTIONS(87), 1, + [20457] = 7, + ACTIONS(91), 1, anon_sym_LT, - ACTIONS(2230), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(2277), 1, sym_this, - ACTIONS(2238), 1, + ACTIONS(2281), 1, sym_super, - STATE(929), 1, + STATE(949), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 3, + ACTIONS(2275), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20123] = 9, - ACTIONS(1030), 1, + [20482] = 9, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - ACTIONS(2262), 1, + ACTIONS(2309), 1, anon_sym_extends, - ACTIONS(2264), 1, + ACTIONS(2311), 1, anon_sym_LBRACE, - STATE(159), 1, + STATE(149), 1, sym_interface_body, - STATE(811), 1, + STATE(820), 1, sym_type_parameters, - STATE(928), 1, + STATE(951), 1, sym_extends_interfaces, - STATE(1114), 1, + STATE(1168), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20152] = 5, - STATE(764), 1, - aux_sym_requires_module_directive_repeat1, - STATE(830), 1, - sym_requires_modifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2268), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2266), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [20173] = 9, - ACTIONS(1030), 1, + [20511] = 9, + ACTIONS(1046), 1, anon_sym_LT, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - ACTIONS(2262), 1, + ACTIONS(2309), 1, anon_sym_extends, - ACTIONS(2264), 1, + ACTIONS(2311), 1, anon_sym_LBRACE, - STATE(137), 1, + STATE(120), 1, sym_interface_body, - STATE(801), 1, + STATE(847), 1, sym_type_parameters, - STATE(896), 1, + STATE(954), 1, sym_extends_interfaces, - STATE(1085), 1, + STATE(1144), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20202] = 9, - ACTIONS(1436), 1, + [20540] = 9, + ACTIONS(1463), 1, anon_sym_LBRACE, - ACTIONS(2224), 1, + ACTIONS(2283), 1, anon_sym_extends, - ACTIONS(2226), 1, + ACTIONS(2285), 1, anon_sym_implements, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - STATE(146), 1, + STATE(103), 1, sym_class_body, - STATE(822), 1, + STATE(813), 1, sym_superclass, - STATE(934), 1, + STATE(944), 1, sym_super_interfaces, - STATE(1102), 1, + STATE(1135), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20231] = 9, - ACTIONS(1436), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_extends, - ACTIONS(2226), 1, - anon_sym_implements, - ACTIONS(2228), 1, - anon_sym_permits, - STATE(155), 1, - sym_class_body, - STATE(824), 1, - sym_superclass, - STATE(939), 1, - sym_super_interfaces, - STATE(1069), 1, - sym_permits, + [20569] = 5, + STATE(778), 1, + aux_sym_requires_module_directive_repeat1, + STATE(848), 1, + sym_requires_modifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20260] = 7, - ACTIONS(2271), 1, + ACTIONS(2315), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2313), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [20590] = 5, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2318), 1, + sym_identifier, + STATE(1118), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(826), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20610] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2320), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [20624] = 7, + ACTIONS(2322), 1, anon_sym_RBRACE, - ACTIONS(2273), 1, + ACTIONS(2324), 1, anon_sym_case, - ACTIONS(2276), 1, + ACTIONS(2327), 1, anon_sym_default, - STATE(3), 1, + STATE(2), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1219), 1, + STATE(1228), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(768), 2, + STATE(781), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [20284] = 7, - ACTIONS(2256), 1, - anon_sym_default, - ACTIONS(2279), 1, + [20648] = 6, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(886), 1, + sym_argument_list, + STATE(1051), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2330), 3, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2281), 1, - anon_sym_case, - STATE(3), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1219), 1, - sym_switch_label, + anon_sym_SEMI, + [20670] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(768), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [20308] = 6, - ACTIONS(1102), 1, + ACTIONS(2332), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [20684] = 6, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1436), 1, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(885), 1, sym_argument_list, - STATE(1054), 1, + STATE(996), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 3, + ACTIONS(2334), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20330] = 5, + [20706] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2336), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [20720] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2338), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [20734] = 5, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2285), 1, + ACTIONS(2318), 1, sym_identifier, - STATE(1169), 1, + STATE(1035), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(823), 4, + STATE(826), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20350] = 6, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(867), 1, - sym_argument_list, - STATE(1040), 1, - sym_class_body, + [20754] = 7, + ACTIONS(2307), 1, + anon_sym_default, + ACTIONS(2340), 1, + anon_sym_RBRACE, + ACTIONS(2342), 1, + anon_sym_case, + STATE(2), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1228), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2287), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20372] = 6, - ACTIONS(87), 1, + STATE(781), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [20778] = 6, + ACTIONS(91), 1, anon_sym_LT, - ACTIONS(2289), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2293), 1, + ACTIONS(2348), 1, sym_this, - STATE(935), 1, + STATE(941), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2291), 3, + ACTIONS(2346), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20394] = 5, - ACTIONS(344), 1, + [20800] = 4, + ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2285), 1, - sym_identifier, - STATE(1056), 1, - sym_type_parameter, + ACTIONS(2350), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(823), 4, + STATE(795), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20414] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2295), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [20427] = 5, - ACTIONS(2297), 1, - sym_identifier, - ACTIONS(2301), 1, - anon_sym_static, - STATE(1141), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2299), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [20446] = 4, - ACTIONS(344), 1, + [20817] = 4, + ACTIONS(301), 1, anon_sym_AT, - ACTIONS(2303), 1, - sym_identifier, + ACTIONS(2352), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(812), 4, + STATE(795), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20463] = 2, + [20834] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 6, + ACTIONS(2354), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20476] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2307), 1, - anon_sym_LBRACK, + [20847] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20493] = 4, - ACTIONS(344), 1, + ACTIONS(2356), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20860] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2358), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20873] = 4, + ACTIONS(2154), 1, + anon_sym_LBRACK, + ACTIONS(2360), 1, anon_sym_AT, - ACTIONS(2309), 1, - sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(816), 4, + STATE(795), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20510] = 2, + [20890] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 6, + ACTIONS(2363), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20523] = 5, - ACTIONS(2112), 1, - sym_identifier, - STATE(916), 1, - sym__variable_declarator_id, - STATE(1086), 1, - sym_variable_declarator, + [20903] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [20542] = 2, + ACTIONS(2365), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20916] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [20555] = 2, + ACTIONS(2367), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20929] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2313), 6, + ACTIONS(2369), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20568] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2315), 1, - anon_sym_LBRACK, + [20942] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20585] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2317), 1, - sym_identifier, + ACTIONS(2371), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20955] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(666), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20602] = 4, + ACTIONS(2373), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [20968] = 4, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2319), 1, + ACTIONS(2375), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(666), 4, + STATE(811), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20619] = 2, + [20985] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2313), 6, + ACTIONS(2377), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20632] = 2, + [20998] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2313), 6, + ACTIONS(2379), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20645] = 4, - ACTIONS(2089), 1, - anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_AT, + [21011] = 5, + ACTIONS(2159), 1, + sym_identifier, + STATE(908), 1, + sym__variable_declarator_id, + STATE(1096), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20662] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2324), 1, + ACTIONS(2142), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21030] = 5, + ACTIONS(2159), 1, sym_identifier, + STATE(908), 1, + sym__variable_declarator_id, + STATE(1191), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(786), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20679] = 4, + ACTIONS(2142), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21049] = 5, + ACTIONS(2381), 1, + sym_identifier, + ACTIONS(2385), 1, + anon_sym_static, + STATE(1119), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2383), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21068] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2387), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21081] = 4, ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2326), 1, + ACTIONS(2389), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(787), 4, + STATE(822), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20696] = 2, + [21098] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 6, + ACTIONS(2391), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20709] = 2, + [21111] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2393), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21128] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 6, + ACTIONS(2395), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20722] = 7, - ACTIONS(1436), 1, + [21141] = 7, + ACTIONS(1463), 1, anon_sym_LBRACE, - ACTIONS(2226), 1, + ACTIONS(2285), 1, anon_sym_implements, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - STATE(122), 1, + STATE(155), 1, sym_class_body, - STATE(940), 1, + STATE(965), 1, sym_super_interfaces, - STATE(1067), 1, + STATE(1177), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20745] = 6, - ACTIONS(2332), 1, - anon_sym_RBRACE, - ACTIONS(2334), 1, - anon_sym_case, - ACTIONS(2337), 1, - anon_sym_default, - STATE(1215), 1, - sym_switch_label, + [21164] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(796), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [20766] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2340), 1, - anon_sym_LBRACK, + ACTIONS(2397), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21177] = 5, + ACTIONS(2159), 1, + sym_identifier, + STATE(908), 1, + sym__variable_declarator_id, + STATE(1133), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20783] = 2, + ACTIONS(2142), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21196] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2342), 6, + ACTIONS(2399), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20796] = 2, + [21209] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2401), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21222] = 4, + ACTIONS(301), 1, anon_sym_AT, - anon_sym_throws, - [20809] = 2, + ACTIONS(2403), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(795), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21239] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 6, + ACTIONS(2405), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20822] = 7, - ACTIONS(2228), 1, + [21252] = 7, + ACTIONS(2287), 1, anon_sym_permits, - ACTIONS(2262), 1, + ACTIONS(2309), 1, anon_sym_extends, - ACTIONS(2264), 1, + ACTIONS(2311), 1, anon_sym_LBRACE, - STATE(157), 1, + STATE(114), 1, sym_interface_body, - STATE(921), 1, + STATE(907), 1, sym_extends_interfaces, - STATE(1154), 1, + STATE(1194), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20845] = 2, + [21275] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 6, + ACTIONS(2405), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20858] = 2, + [21288] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2407), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2350), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20871] = 2, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21305] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 6, + ACTIONS(2409), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20884] = 2, + [21318] = 4, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(2411), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 6, + STATE(795), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21335] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2413), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20897] = 2, + [21348] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2415), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 6, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21365] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2417), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20910] = 2, + [21378] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2358), 6, + ACTIONS(2405), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20923] = 2, + [21391] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 6, + ACTIONS(2419), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20936] = 2, + [21404] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2362), 6, + ACTIONS(2421), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20949] = 2, + [21417] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 6, + ACTIONS(2423), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20962] = 7, - ACTIONS(2228), 1, - anon_sym_permits, - ACTIONS(2262), 1, - anon_sym_extends, - ACTIONS(2264), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_interface_body, - STATE(949), 1, - sym_extends_interfaces, - STATE(1167), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20985] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2366), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(666), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21002] = 2, + [21430] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 6, + ACTIONS(2425), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21015] = 4, - ACTIONS(2370), 1, + [21443] = 4, + ACTIONS(2427), 1, anon_sym_PIPE, - STATE(814), 1, + STATE(833), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2200), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [21032] = 5, - ACTIONS(2112), 1, - sym_identifier, - STATE(916), 1, - sym__variable_declarator_id, - STATE(1133), 1, - sym_variable_declarator, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2245), 4, anon_sym_open, anon_sym_module, anon_sym_record, - [21051] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2373), 1, sym_identifier, + [21460] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(666), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21068] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2375), 6, + ACTIONS(2430), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21081] = 2, + [21473] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2377), 6, + ACTIONS(2432), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21094] = 5, - ACTIONS(2112), 1, - sym_identifier, - STATE(916), 1, - sym__variable_declarator_id, - STATE(1163), 1, - sym_variable_declarator, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2098), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21113] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2379), 6, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - anon_sym_record, - sym_identifier, - [21126] = 2, + [21486] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2381), 6, + ACTIONS(2434), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21139] = 7, - ACTIONS(1436), 1, - anon_sym_LBRACE, - ACTIONS(2226), 1, - anon_sym_implements, - ACTIONS(2228), 1, - anon_sym_permits, - STATE(133), 1, - sym_class_body, - STATE(942), 1, - sym_super_interfaces, - STATE(1113), 1, - sym_permits, + [21499] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21162] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2383), 1, - sym_identifier, + ACTIONS(2436), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21512] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(666), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21179] = 7, - ACTIONS(1436), 1, - anon_sym_LBRACE, - ACTIONS(2226), 1, - anon_sym_implements, - ACTIONS(2228), 1, - anon_sym_permits, - STATE(123), 1, - sym_class_body, - STATE(912), 1, - sym_super_interfaces, - STATE(1103), 1, - sym_permits, + ACTIONS(2438), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21525] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21202] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2385), 1, - anon_sym_LBRACK, + ACTIONS(2440), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21538] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21219] = 6, - ACTIONS(2254), 1, - anon_sym_case, - ACTIONS(2256), 1, - anon_sym_default, - ACTIONS(2279), 1, + ACTIONS(2442), 6, anon_sym_RBRACE, - STATE(1215), 1, - sym_switch_label, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21551] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(796), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [21240] = 2, + ACTIONS(2444), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21564] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 6, + ACTIONS(2446), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21253] = 2, + [21577] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2389), 6, + ACTIONS(2448), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21266] = 2, + [21590] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2391), 6, + ACTIONS(2434), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21279] = 2, + [21603] = 7, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2285), 1, + anon_sym_implements, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(121), 1, + sym_class_body, + STATE(957), 1, + sym_super_interfaces, + STATE(1145), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 6, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - anon_sym_record, - sym_identifier, - [21292] = 4, - ACTIONS(301), 1, + [21626] = 4, + ACTIONS(344), 1, anon_sym_AT, - ACTIONS(2395), 1, - anon_sym_LBRACK, + ACTIONS(2450), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, + STATE(687), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21309] = 7, - ACTIONS(1436), 1, - anon_sym_LBRACE, - ACTIONS(2226), 1, - anon_sym_implements, - ACTIONS(2228), 1, + [21643] = 7, + ACTIONS(2287), 1, anon_sym_permits, - STATE(149), 1, - sym_class_body, - STATE(927), 1, - sym_super_interfaces, - STATE(1178), 1, + ACTIONS(2309), 1, + anon_sym_extends, + ACTIONS(2311), 1, + anon_sym_LBRACE, + STATE(141), 1, + sym_interface_body, + STATE(939), 1, + sym_extends_interfaces, + STATE(1122), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21332] = 2, + [21666] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2397), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2452), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, + sym_identifier, + [21679] = 4, + ACTIONS(344), 1, anon_sym_AT, - anon_sym_throws, - [21345] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2399), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21358] = 2, + ACTIONS(2454), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2401), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21371] = 2, + STATE(687), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21696] = 4, + ACTIONS(301), 1, + anon_sym_AT, + ACTIONS(2456), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2403), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21384] = 4, - ACTIONS(2155), 1, + STATE(795), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21713] = 4, + ACTIONS(2195), 1, anon_sym_PIPE, - STATE(814), 1, + STATE(833), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2405), 4, + ACTIONS(2458), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - [21401] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2407), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21414] = 2, + [21730] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2460), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2409), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21427] = 2, + STATE(846), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21747] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2411), 6, + ACTIONS(2462), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, + sym_identifier, + [21760] = 6, + ACTIONS(2464), 1, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21440] = 2, + ACTIONS(2466), 1, + anon_sym_case, + ACTIONS(2469), 1, + anon_sym_default, + STATE(1226), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2413), 6, + STATE(854), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [21781] = 6, + ACTIONS(2305), 1, + anon_sym_case, + ACTIONS(2307), 1, + anon_sym_default, + ACTIONS(2340), 1, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21453] = 2, + STATE(1226), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2415), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21466] = 2, + STATE(854), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [21802] = 4, + ACTIONS(344), 1, + anon_sym_AT, + ACTIONS(2472), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2417), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21479] = 2, + STATE(849), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21819] = 7, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2285), 1, + anon_sym_implements, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(111), 1, + sym_class_body, + STATE(935), 1, + sym_super_interfaces, + STATE(1130), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21492] = 2, + [21842] = 7, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2285), 1, + anon_sym_implements, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(136), 1, + sym_class_body, + STATE(914), 1, + sym_super_interfaces, + STATE(1131), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2421), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21505] = 2, + [21865] = 4, + ACTIONS(2474), 1, + sym_identifier, + STATE(410), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21518] = 2, + ACTIONS(2476), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21881] = 4, + STATE(1166), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2425), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21531] = 4, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(997), 1, - sym_class_body, + ACTIONS(2478), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2480), 2, + anon_sym_extends, + sym_super, + [21897] = 4, + ACTIONS(2482), 1, + anon_sym_COMMA, + STATE(861), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2485), 3, + anon_sym_LBRACE, anon_sym_SEMI, - [21547] = 4, - ACTIONS(2429), 1, + anon_sym_permits, + [21913] = 4, + ACTIONS(2487), 1, sym_identifier, - STATE(954), 1, + STATE(1163), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 3, + ACTIONS(2489), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21563] = 4, - ACTIONS(2433), 1, + [21929] = 4, + ACTIONS(2491), 1, sym_identifier, - STATE(1171), 1, + STATE(1013), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2435), 3, + ACTIONS(2493), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21579] = 4, - ACTIONS(2112), 1, + [21945] = 4, + ACTIONS(2159), 1, sym_identifier, - STATE(1242), 1, + STATE(1273), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21595] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(2134), 1, - anon_sym_DOT, - STATE(422), 1, - sym_argument_list, - STATE(662), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21615] = 6, - ACTIONS(87), 1, + [21961] = 6, + ACTIONS(91), 1, anon_sym_LT, - ACTIONS(1102), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2181), 1, anon_sym_DOT, - STATE(420), 1, + STATE(425), 1, sym_argument_list, - STATE(665), 1, + STATE(674), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21635] = 6, - ACTIONS(1958), 1, - anon_sym_SEMI, - ACTIONS(1981), 1, - anon_sym_RBRACE, - ACTIONS(2437), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_enum_body_repeat1, - STATE(1237), 1, - sym_enum_body_declarations, + [21981] = 4, + ACTIONS(2495), 1, + sym_identifier, + STATE(1148), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21655] = 4, - ACTIONS(2439), 1, - anon_sym_COMMA, - STATE(855), 1, - aux_sym_type_list_repeat1, + ACTIONS(2497), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21997] = 4, + ACTIONS(2499), 1, + sym_identifier, + ACTIONS(2503), 1, + sym_super, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_permits, - [21671] = 5, - ACTIONS(2444), 1, - anon_sym_catch, - ACTIONS(2446), 1, - anon_sym_finally, - STATE(242), 1, - sym_finally_clause, + ACTIONS(2501), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22013] = 6, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(2189), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(671), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(90), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [21689] = 4, - ACTIONS(2448), 1, + [22033] = 4, + ACTIONS(2505), 1, sym_identifier, - STATE(1173), 1, + STATE(652), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 3, + ACTIONS(2507), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21705] = 4, - ACTIONS(2452), 1, + [22049] = 4, + ACTIONS(2509), 1, sym_identifier, - STATE(1037), 1, + STATE(1025), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 3, + ACTIONS(2511), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21721] = 4, - ACTIONS(2456), 1, + [22065] = 6, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(2181), 1, + anon_sym_DOT, + STATE(426), 1, + sym_argument_list, + STATE(674), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22085] = 6, + ACTIONS(91), 1, + anon_sym_LT, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(2189), 1, + anon_sym_DOT, + STATE(428), 1, + sym_argument_list, + STATE(671), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22105] = 4, + ACTIONS(2159), 1, sym_identifier, - STATE(1012), 1, - sym_scoped_identifier, + STATE(1270), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2458), 3, + ACTIONS(2142), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21737] = 4, - ACTIONS(2460), 1, + [22121] = 4, + ACTIONS(2513), 1, sym_identifier, - STATE(963), 1, + STATE(1027), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2462), 3, + ACTIONS(2515), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21753] = 4, - ACTIONS(2464), 1, + [22137] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2191), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1176), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [22151] = 4, + ACTIONS(2517), 1, sym_identifier, - STATE(1122), 1, + STATE(1159), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2466), 3, + ACTIONS(2519), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21769] = 4, - STATE(1076), 1, - sym__wildcard_bounds, + [22167] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2468), 2, - anon_sym_GT, + ACTIONS(2521), 5, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(2470), 2, + anon_sym_COLON, + anon_sym_SEMI, + [22179] = 4, + STATE(1082), 1, + sym__wildcard_bounds, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2480), 2, anon_sym_extends, sym_super, - [21785] = 4, - ACTIONS(2472), 1, + ACTIONS(2523), 2, + anon_sym_GT, + anon_sym_COMMA, + [22195] = 4, + ACTIONS(2525), 1, sym_identifier, - STATE(408), 1, + STATE(1020), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2474), 3, + ACTIONS(2527), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21801] = 4, - ACTIONS(2476), 1, + [22211] = 4, + ACTIONS(2529), 1, sym_identifier, - STATE(1016), 1, + STATE(1175), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 3, + ACTIONS(2531), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21817] = 2, + [22227] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 5, + ACTIONS(2533), 5, anon_sym_RPAREN, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_SEMI, - [21829] = 4, - ACTIONS(2482), 1, + [22239] = 4, + ACTIONS(2535), 1, sym_identifier, - STATE(1131), 1, + STATE(968), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 3, + ACTIONS(2537), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21845] = 4, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(1043), 1, - sym_class_body, + [22255] = 6, + ACTIONS(1991), 1, + anon_sym_SEMI, + ACTIONS(2019), 1, + anon_sym_RBRACE, + ACTIONS(2539), 1, + anon_sym_COMMA, + STATE(960), 1, + aux_sym_enum_body_repeat1, + STATE(1196), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2486), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21861] = 4, - ACTIONS(2112), 1, + [22275] = 4, + ACTIONS(2541), 1, sym_identifier, - STATE(1240), 1, - sym__variable_declarator_id, + STATE(1031), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 3, + ACTIONS(2543), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21877] = 3, + [22291] = 4, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(1059), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2144), 2, - anon_sym_RPAREN, + ACTIONS(2545), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1106), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [21891] = 4, - ACTIONS(2488), 1, - sym_identifier, - STATE(911), 1, - sym_scoped_identifier, + [22307] = 4, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(1007), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21907] = 4, - ACTIONS(2492), 1, + ACTIONS(2547), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22323] = 4, + ACTIONS(2549), 1, sym_identifier, - STATE(909), 1, + STATE(522), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 3, + ACTIONS(2551), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21923] = 4, - ACTIONS(2496), 1, + [22339] = 4, + ACTIONS(2553), 1, sym_identifier, - STATE(907), 1, + STATE(1126), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 3, + ACTIONS(2555), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21939] = 4, - ACTIONS(2500), 1, + [22355] = 4, + ACTIONS(2557), 1, sym_identifier, - STATE(905), 1, + STATE(925), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 3, + ACTIONS(2559), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21955] = 4, - ACTIONS(2504), 1, + [22371] = 5, + ACTIONS(2561), 1, + anon_sym_catch, + ACTIONS(2563), 1, + anon_sym_finally, + STATE(237), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(90), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [22389] = 4, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(464), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1258), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [22405] = 4, + ACTIONS(2565), 1, sym_identifier, - STATE(1006), 1, + STATE(923), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 3, + ACTIONS(2567), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21971] = 4, - ACTIONS(2508), 1, + [22421] = 4, + ACTIONS(2569), 1, sym_identifier, - STATE(903), 1, + STATE(921), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2510), 3, + ACTIONS(2571), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21987] = 4, - ACTIONS(2512), 1, + [22437] = 4, + ACTIONS(2573), 1, sym_identifier, - STATE(901), 1, + STATE(919), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2514), 3, + ACTIONS(2575), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22003] = 4, - ACTIONS(2516), 1, + [22453] = 4, + ACTIONS(2577), 1, sym_identifier, - ACTIONS(2520), 1, - sym_super, + STATE(917), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 3, + ACTIONS(2579), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22019] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2522), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [22031] = 4, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(472), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1235), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [22047] = 4, - ACTIONS(2524), 1, + [22469] = 4, + ACTIONS(2581), 1, sym_identifier, - STATE(529), 1, + STATE(915), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 3, + ACTIONS(2583), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22063] = 6, - ACTIONS(1958), 1, + [22485] = 6, + ACTIONS(1991), 1, anon_sym_SEMI, - ACTIONS(2528), 1, + ACTIONS(2585), 1, anon_sym_COMMA, - ACTIONS(2530), 1, + ACTIONS(2587), 1, anon_sym_RBRACE, - STATE(854), 1, + STATE(883), 1, aux_sym_enum_body_repeat1, - STATE(1228), 1, + STATE(1195), 1, sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22083] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, + [22505] = 5, + ACTIONS(1437), 1, anon_sym_DOT, - STATE(421), 1, - sym_argument_list, - STATE(665), 1, - sym_type_arguments, + ACTIONS(2589), 1, + anon_sym_COMMA, + ACTIONS(2591), 1, + anon_sym_SEMI, + STATE(977), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22103] = 6, - ACTIONS(87), 1, - anon_sym_LT, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(2134), 1, - anon_sym_DOT, - STATE(419), 1, - sym_argument_list, - STATE(662), 1, - sym_type_arguments, + [22522] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22123] = 4, - STATE(1081), 1, - sym__wildcard_bounds, + ACTIONS(2593), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22533] = 4, + ACTIONS(2595), 1, + anon_sym_AMP, + STATE(943), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2470), 2, - anon_sym_extends, - sym_super, - ACTIONS(2532), 2, + ACTIONS(2597), 2, anon_sym_GT, anon_sym_COMMA, - [22139] = 4, - ACTIONS(2534), 1, - sym_identifier, - STATE(1095), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2536), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [22155] = 4, - ACTIONS(2538), 1, - sym_identifier, - STATE(640), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2540), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [22171] = 5, - ACTIONS(1656), 1, + [22548] = 5, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(1706), 1, anon_sym_COLON_COLON, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_RPAREN, - STATE(1028), 1, - aux_sym_cast_expression_repeat1, + ACTIONS(2599), 1, + anon_sym_DOT, + STATE(1257), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22188] = 4, - ACTIONS(2548), 1, - anon_sym_throws, - STATE(1111), 1, - sym_throws, + [22565] = 4, + ACTIONS(2601), 1, + anon_sym_EQ, + ACTIONS(2605), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2546), 2, - anon_sym_LBRACE, + ACTIONS(2603), 2, + anon_sym_COMMA, anon_sym_SEMI, - [22203] = 4, - ACTIONS(2550), 1, - anon_sym_EQ, - ACTIONS(2554), 1, - anon_sym_COLON, + [22580] = 4, + ACTIONS(2607), 1, + anon_sym_COMMA, + STATE(933), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 2, - anon_sym_COMMA, + ACTIONS(2609), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [22218] = 2, + [22595] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2556), 4, + ACTIONS(2611), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22229] = 4, - ACTIONS(2550), 1, + [22606] = 4, + ACTIONS(2601), 1, anon_sym_EQ, - ACTIONS(2558), 1, + ACTIONS(2613), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 2, + ACTIONS(2603), 2, anon_sym_COMMA, anon_sym_SEMI, - [22244] = 5, - ACTIONS(2560), 1, - anon_sym_LPAREN, - ACTIONS(2562), 1, + [22621] = 5, + ACTIONS(2285), 1, + anon_sym_implements, + ACTIONS(2615), 1, anon_sym_LBRACE, - STATE(856), 1, - sym_block, - STATE(1126), 1, - sym_resource_specification, + STATE(153), 1, + sym_enum_body, + STATE(1189), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22261] = 5, - ACTIONS(1656), 1, - anon_sym_COLON_COLON, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2564), 1, - anon_sym_RPAREN, - STATE(1007), 1, - aux_sym_cast_expression_repeat1, + [22638] = 5, + ACTIONS(2287), 1, + anon_sym_permits, + ACTIONS(2311), 1, + anon_sym_LBRACE, + STATE(134), 1, + sym_interface_body, + STATE(1142), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22278] = 2, + [22655] = 3, + ACTIONS(2601), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 4, + ACTIONS(2603), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_permits, - [22289] = 4, - ACTIONS(2566), 1, - anon_sym_COMMA, - STATE(947), 1, - aux_sym_type_list_repeat1, + [22668] = 5, + ACTIONS(1046), 1, + anon_sym_LT, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(958), 1, + sym_formal_parameters, + STATE(1192), 1, + sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2568), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22304] = 5, - ACTIONS(2228), 1, - anon_sym_permits, - ACTIONS(2264), 1, + [22685] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(160), 1, - sym_interface_body, - STATE(1064), 1, - sym_permits, + ACTIONS(2285), 1, + anon_sym_implements, + STATE(140), 1, + sym_class_body, + STATE(1123), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22321] = 5, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(1656), 1, - anon_sym_COLON_COLON, - ACTIONS(2570), 1, - anon_sym_DOT, - STATE(1217), 1, - sym_argument_list, + [22702] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22338] = 4, - ACTIONS(2548), 1, - anon_sym_throws, - STATE(1157), 1, - sym_throws, + ACTIONS(2485), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_permits, + [22713] = 4, + ACTIONS(2617), 1, + anon_sym_COMMA, + STATE(912), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22353] = 5, - ACTIONS(2226), 1, - anon_sym_implements, - ACTIONS(2574), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_enum_body, - STATE(1119), 1, - sym_super_interfaces, + ACTIONS(1935), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [22728] = 4, + ACTIONS(2622), 1, + anon_sym_extends, + STATE(1088), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22370] = 5, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2620), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2578), 1, - anon_sym_SEMI, - STATE(966), 1, - aux_sym_exports_module_directive_repeat1, + [22743] = 5, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(158), 1, + sym_class_body, + STATE(1162), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22387] = 5, - ACTIONS(1394), 1, + [22760] = 5, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2580), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - STATE(968), 1, + STATE(979), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22404] = 5, - ACTIONS(1388), 1, + [22777] = 5, + ACTIONS(1437), 1, anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2582), 1, + ACTIONS(2626), 1, anon_sym_SEMI, - STATE(969), 1, + STATE(981), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22421] = 5, - ACTIONS(1394), 1, + [22794] = 5, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2584), 1, + ACTIONS(2628), 1, anon_sym_SEMI, - STATE(971), 1, + STATE(982), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22438] = 5, - ACTIONS(1388), 1, + [22811] = 5, + ACTIONS(1437), 1, anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2586), 1, + ACTIONS(2630), 1, anon_sym_SEMI, - STATE(973), 1, + STATE(984), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22455] = 5, - ACTIONS(1394), 1, + [22828] = 5, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2588), 1, + ACTIONS(2632), 1, anon_sym_SEMI, - STATE(975), 1, + STATE(985), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22472] = 5, - ACTIONS(1388), 1, + [22845] = 5, + ACTIONS(1437), 1, anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2590), 1, + ACTIONS(2634), 1, anon_sym_SEMI, - STATE(977), 1, + STATE(987), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22489] = 5, - ACTIONS(1394), 1, + [22862] = 5, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2576), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2592), 1, + ACTIONS(2636), 1, anon_sym_SEMI, - STATE(978), 1, + STATE(988), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22506] = 5, - ACTIONS(1388), 1, + [22879] = 5, + ACTIONS(1437), 1, anon_sym_DOT, - ACTIONS(2594), 1, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2596), 1, + ACTIONS(2640), 1, anon_sym_SEMI, - STATE(981), 1, + STATE(991), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22523] = 5, - ACTIONS(1394), 1, + [22896] = 5, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2594), 1, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2642), 1, anon_sym_SEMI, - STATE(983), 1, + STATE(993), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22540] = 5, - ACTIONS(1388), 1, + [22913] = 5, + ACTIONS(1437), 1, anon_sym_DOT, - ACTIONS(2594), 1, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2600), 1, + ACTIONS(2644), 1, anon_sym_SEMI, - STATE(985), 1, + STATE(995), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22557] = 5, - ACTIONS(1394), 1, + [22930] = 5, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2594), 1, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2602), 1, + ACTIONS(2646), 1, anon_sym_SEMI, - STATE(987), 1, - aux_sym_provides_module_directive_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22574] = 5, - ACTIONS(1436), 1, - anon_sym_LBRACE, - ACTIONS(2228), 1, - anon_sym_permits, - STATE(108), 1, - sym_class_body, - STATE(1139), 1, - sym_permits, + STATE(997), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22591] = 5, - ACTIONS(1030), 1, - anon_sym_LT, - ACTIONS(2165), 1, - anon_sym_LPAREN, - STATE(1116), 1, - sym_formal_parameters, + [22947] = 4, + ACTIONS(2622), 1, + anon_sym_extends, STATE(1117), 1, - sym_type_parameters, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22608] = 4, - ACTIONS(2566), 1, + ACTIONS(2648), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(855), 1, - aux_sym_type_list_repeat1, + [22962] = 5, + ACTIONS(2650), 1, + anon_sym_LBRACE, + ACTIONS(2652), 1, + anon_sym_throws, + STATE(450), 1, + sym_constructor_body, + STATE(1106), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2604), 2, - anon_sym_LBRACE, - anon_sym_permits, - [22623] = 4, - ACTIONS(87), 1, + [22979] = 4, + ACTIONS(1929), 1, + anon_sym_COMMA, + STATE(912), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2654), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [22994] = 4, + ACTIONS(91), 1, anon_sym_LT, - STATE(1110), 1, + STATE(1081), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2606), 2, + ACTIONS(2656), 2, anon_sym_new, sym_identifier, - [22638] = 3, - ACTIONS(2550), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2552), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [22651] = 4, - ACTIONS(2548), 1, + [23009] = 5, + ACTIONS(2650), 1, + anon_sym_LBRACE, + ACTIONS(2652), 1, anon_sym_throws, - STATE(1109), 1, + STATE(431), 1, + sym_constructor_body, + STATE(1115), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22666] = 3, - ACTIONS(2610), 1, - sym_identifier, + [23026] = 5, + ACTIONS(1046), 1, + anon_sym_LT, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(910), 1, + sym_formal_parameters, + STATE(1138), 1, + sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [22679] = 4, - ACTIONS(2614), 1, - anon_sym_AMP, - STATE(943), 1, - aux_sym_type_bound_repeat1, + [23043] = 5, + ACTIONS(2285), 1, + anon_sym_implements, + ACTIONS(2615), 1, + anon_sym_LBRACE, + STATE(118), 1, + sym_enum_body, + STATE(1137), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2616), 2, - anon_sym_GT, + [23060] = 4, + ACTIONS(2607), 1, anon_sym_COMMA, - [22694] = 2, + STATE(861), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2658), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [22705] = 5, - ACTIONS(2228), 1, - anon_sym_permits, - ACTIONS(2264), 1, + [23075] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(107), 1, - sym_interface_body, - STATE(1170), 1, - sym_permits, + ACTIONS(2285), 1, + anon_sym_implements, + STATE(161), 1, + sym_class_body, + STATE(1158), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22722] = 5, - ACTIONS(2548), 1, - anon_sym_throws, - ACTIONS(2620), 1, + [23092] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(433), 1, - sym_constructor_body, - STATE(1160), 1, - sym_throws, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(124), 1, + sym_class_body, + STATE(1157), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22739] = 5, - ACTIONS(1436), 1, + [23109] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - STATE(173), 1, + STATE(110), 1, sym_class_body, - STATE(1066), 1, + STATE(1128), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22756] = 4, - ACTIONS(2624), 1, - anon_sym_extends, - STATE(1063), 1, - sym_type_bound, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_COMMA, - [22771] = 4, - ACTIONS(1886), 1, - anon_sym_COMMA, - STATE(926), 1, - aux_sym_argument_list_repeat1, + [23126] = 5, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2285), 1, + anon_sym_implements, + STATE(129), 1, + sym_class_body, + STATE(1147), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22786] = 4, - ACTIONS(2628), 1, - anon_sym_COMMA, - STATE(926), 1, - aux_sym_argument_list_repeat1, + [23143] = 4, + ACTIONS(2652), 1, + anon_sym_throws, + STATE(1107), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22801] = 5, - ACTIONS(1436), 1, + ACTIONS(2660), 2, anon_sym_LBRACE, - ACTIONS(2228), 1, + anon_sym_SEMI, + [23158] = 5, + ACTIONS(2287), 1, anon_sym_permits, - STATE(127), 1, - sym_class_body, - STATE(1120), 1, + ACTIONS(2311), 1, + anon_sym_LBRACE, + STATE(164), 1, + sym_interface_body, + STATE(1140), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22818] = 5, - ACTIONS(2228), 1, - anon_sym_permits, - ACTIONS(2264), 1, + [23175] = 5, + ACTIONS(2662), 1, + anon_sym_LPAREN, + ACTIONS(2664), 1, anon_sym_LBRACE, - STATE(162), 1, - sym_interface_body, - STATE(1161), 1, - sym_permits, + STATE(890), 1, + sym_block, + STATE(1132), 1, + sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22835] = 3, - ACTIONS(2516), 1, + [23192] = 3, + ACTIONS(2666), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2668), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [23205] = 3, + ACTIONS(2670), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 3, + ACTIONS(2672), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22848] = 4, - ACTIONS(2631), 1, + [23218] = 4, + ACTIONS(2595), 1, anon_sym_AMP, - STATE(930), 1, + STATE(945), 1, aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2634), 2, + ACTIONS(2674), 2, anon_sym_GT, anon_sym_COMMA, - [22863] = 5, - ACTIONS(2226), 1, - anon_sym_implements, - ACTIONS(2574), 1, + [23233] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(148), 1, - sym_enum_body, - STATE(1107), 1, - sym_super_interfaces, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(156), 1, + sym_class_body, + STATE(1176), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22880] = 5, - ACTIONS(1030), 1, - anon_sym_LT, - ACTIONS(2165), 1, - anon_sym_LPAREN, - STATE(1090), 1, - sym_formal_parameters, - STATE(1091), 1, - sym_type_parameters, + [23250] = 4, + ACTIONS(2676), 1, + anon_sym_AMP, + STATE(945), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22897] = 4, - ACTIONS(2636), 1, + ACTIONS(2679), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(933), 1, - aux_sym_enum_body_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2639), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [22912] = 5, - ACTIONS(1436), 1, + [23265] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - STATE(132), 1, + STATE(137), 1, sym_class_body, - STATE(1115), 1, + STATE(1129), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22929] = 3, - ACTIONS(2641), 1, + [23282] = 4, + ACTIONS(2601), 1, + anon_sym_EQ, + ACTIONS(2681), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2603), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [23297] = 5, + ACTIONS(1706), 1, + anon_sym_COLON_COLON, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_RPAREN, + STATE(1036), 1, + aux_sym_cast_expression_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23314] = 3, + ACTIONS(2499), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 3, + ACTIONS(2501), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22942] = 4, - ACTIONS(2624), 1, - anon_sym_extends, - STATE(1118), 1, - sym_type_bound, + [23327] = 4, + ACTIONS(2652), 1, + anon_sym_throws, + STATE(1094), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 2, - anon_sym_GT, - anon_sym_COMMA, - [22957] = 5, - ACTIONS(2548), 1, - anon_sym_throws, - ACTIONS(2620), 1, + ACTIONS(2687), 2, anon_sym_LBRACE, - STATE(425), 1, - sym_constructor_body, - STATE(1177), 1, - sym_throws, + anon_sym_SEMI, + [23342] = 5, + ACTIONS(2287), 1, + anon_sym_permits, + ACTIONS(2311), 1, + anon_sym_LBRACE, + STATE(105), 1, + sym_interface_body, + STATE(1097), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23359] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22974] = 4, - ACTIONS(2566), 1, + ACTIONS(2689), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(914), 1, - aux_sym_type_list_repeat1, + anon_sym_RBRACE, + anon_sym_SEMI, + [23370] = 4, + ACTIONS(2691), 1, + anon_sym_COMMA, + STATE(953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 2, - anon_sym_LBRACE, + ACTIONS(1935), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [23385] = 5, + ACTIONS(2287), 1, anon_sym_permits, - [22989] = 5, - ACTIONS(1436), 1, + ACTIONS(2311), 1, anon_sym_LBRACE, - ACTIONS(2228), 1, - anon_sym_permits, - STATE(130), 1, - sym_class_body, - STATE(1079), 1, + STATE(143), 1, + sym_interface_body, + STATE(1121), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23006] = 5, - ACTIONS(1436), 1, + [23402] = 5, + ACTIONS(1463), 1, anon_sym_LBRACE, - ACTIONS(2228), 1, + ACTIONS(2287), 1, anon_sym_permits, - STATE(175), 1, + STATE(122), 1, sym_class_body, - STATE(1080), 1, + STATE(1154), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23023] = 4, - ACTIONS(2550), 1, - anon_sym_EQ, - ACTIONS(2649), 1, - anon_sym_COLON, + [23419] = 4, + ACTIONS(2607), 1, + anon_sym_COMMA, + STATE(861), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [23038] = 5, - ACTIONS(1436), 1, + ACTIONS(2694), 2, anon_sym_LBRACE, - ACTIONS(2228), 1, anon_sym_permits, - STATE(121), 1, + [23434] = 5, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(145), 1, sym_class_body, - STATE(1162), 1, + STATE(1092), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23055] = 4, - ACTIONS(2614), 1, - anon_sym_AMP, - STATE(930), 1, - aux_sym_type_bound_repeat1, + [23451] = 5, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2285), 1, + anon_sym_implements, + STATE(108), 1, + sym_class_body, + STATE(1084), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 2, - anon_sym_GT, - anon_sym_COMMA, - [23070] = 2, + [23468] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 4, + ACTIONS(2696), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [23081] = 5, - ACTIONS(1436), 1, - anon_sym_LBRACE, - ACTIONS(2228), 1, - anon_sym_permits, - STATE(153), 1, - sym_class_body, - STATE(1134), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23098] = 2, + [23479] = 4, + ACTIONS(2698), 1, + anon_sym_COMMA, + STATE(960), 1, + aux_sym_enum_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2701), 2, anon_sym_RBRACE, anon_sym_SEMI, - [23109] = 4, - ACTIONS(2566), 1, - anon_sym_COMMA, - STATE(855), 1, - aux_sym_type_list_repeat1, + [23494] = 5, + ACTIONS(1706), 1, + anon_sym_COLON_COLON, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2703), 1, + anon_sym_RPAREN, + STATE(1012), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [23124] = 4, - ACTIONS(2550), 1, + [23511] = 4, + ACTIONS(2601), 1, anon_sym_EQ, - ACTIONS(2659), 1, + ACTIONS(2705), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 2, + ACTIONS(2603), 2, anon_sym_COMMA, anon_sym_SEMI, - [23139] = 5, - ACTIONS(2228), 1, - anon_sym_permits, - ACTIONS(2264), 1, - anon_sym_LBRACE, - STATE(140), 1, - sym_interface_body, - STATE(1075), 1, - sym_permits, + [23526] = 4, + ACTIONS(2652), 1, + anon_sym_throws, + STATE(1104), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23156] = 4, - ACTIONS(2661), 1, + ACTIONS(2707), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23541] = 4, + ACTIONS(2607), 1, anon_sym_COMMA, - STATE(950), 1, - aux_sym_argument_list_repeat1, + STATE(956), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [23171] = 4, - ACTIONS(2664), 1, - anon_sym_GT, - ACTIONS(2666), 1, - anon_sym_COMMA, - STATE(1060), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2709), 2, + anon_sym_LBRACE, + anon_sym_permits, + [23556] = 5, + ACTIONS(1463), 1, + anon_sym_LBRACE, + ACTIONS(2287), 1, + anon_sym_permits, + STATE(176), 1, + sym_class_body, + STATE(1103), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23185] = 4, - ACTIONS(2668), 1, + [23573] = 4, + ACTIONS(2711), 1, anon_sym_RPAREN, - ACTIONS(2670), 1, + ACTIONS(2713), 1, anon_sym_COMMA, - STATE(952), 1, + STATE(966), 1, aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23199] = 4, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(2673), 1, + [23587] = 4, + ACTIONS(2716), 1, anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23213] = 4, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2675), 1, - anon_sym_LBRACE, - STATE(210), 1, - sym_module_body, + ACTIONS(2718), 1, + anon_sym_COMMA, + STATE(967), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23227] = 4, - ACTIONS(1388), 1, + [23601] = 4, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2675), 1, + ACTIONS(2721), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(195), 1, sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23241] = 4, - ACTIONS(1900), 1, + [23615] = 4, + ACTIONS(2723), 1, + anon_sym_GT, + ACTIONS(2725), 1, anon_sym_COMMA, - ACTIONS(2677), 1, - anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23255] = 2, + [23629] = 4, + ACTIONS(2727), 1, + sym_identifier, + ACTIONS(2729), 1, + anon_sym_STAR, + STATE(1254), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [23265] = 4, - ACTIONS(2679), 1, + [23643] = 4, + ACTIONS(2725), 1, anon_sym_COMMA, - ACTIONS(2682), 1, - anon_sym_SEMI, - STATE(958), 1, - aux_sym__variable_declarator_list_repeat1, + ACTIONS(2731), 1, + anon_sym_GT, + STATE(969), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23279] = 4, - ACTIONS(1928), 1, + [23657] = 4, + ACTIONS(2733), 1, anon_sym_COMMA, - ACTIONS(2684), 1, + ACTIONS(2736), 1, anon_sym_SEMI, - STATE(962), 1, - aux_sym_for_statement_repeat1, + STATE(972), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23293] = 4, - ACTIONS(2686), 1, + [23671] = 4, + ACTIONS(2738), 1, + anon_sym_RPAREN, + ACTIONS(2740), 1, anon_sym_COMMA, - ACTIONS(2689), 1, - anon_sym_RBRACE, - STATE(960), 1, - aux_sym_element_value_array_initializer_repeat1, + STATE(1014), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23307] = 2, + [23685] = 4, + ACTIONS(2740), 1, + anon_sym_COMMA, + ACTIONS(2742), 1, + anon_sym_RPAREN, + STATE(967), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [23317] = 4, - ACTIONS(2693), 1, + [23699] = 4, + ACTIONS(2740), 1, anon_sym_COMMA, - ACTIONS(2696), 1, - anon_sym_SEMI, - STATE(962), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2744), 1, + anon_sym_RPAREN, + STATE(974), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23331] = 4, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_SEMI, - ACTIONS(2700), 1, - anon_sym_to, + [23713] = 4, + ACTIONS(2729), 1, + anon_sym_STAR, + ACTIONS(2746), 1, + sym_identifier, + STATE(1240), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23345] = 4, - ACTIONS(1900), 1, + [23727] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2702), 1, - anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2748), 1, + anon_sym_SEMI, + STATE(1022), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23359] = 4, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, + [23741] = 4, + ACTIONS(2750), 1, anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2752), 1, + anon_sym_SEMI, + STATE(978), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23373] = 4, - ACTIONS(2576), 1, + [23755] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2706), 1, + ACTIONS(2755), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1022), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23387] = 4, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(2708), 1, + [23769] = 4, + ACTIONS(2757), 1, anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2759), 1, + anon_sym_COMMA, + STATE(966), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23401] = 4, - ACTIONS(2576), 1, + [23783] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2710), 1, + ACTIONS(2761), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1022), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23415] = 4, - ACTIONS(2576), 1, + [23797] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2712), 1, + ACTIONS(2763), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1022), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23429] = 4, - ACTIONS(2714), 1, - anon_sym_RPAREN, - ACTIONS(2716), 1, - anon_sym_COMMA, - STATE(970), 1, - aux_sym_for_statement_repeat2, + [23811] = 4, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(2765), 1, + anon_sym_SEMI, + STATE(452), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23443] = 4, - ACTIONS(2576), 1, + [23825] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2719), 1, + ACTIONS(2767), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1022), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23457] = 4, - ACTIONS(2721), 1, + [23839] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2723), 1, - anon_sym_RBRACE, - STATE(1025), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2769), 1, + anon_sym_SEMI, + STATE(1022), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23471] = 4, - ACTIONS(2576), 1, - anon_sym_COMMA, - ACTIONS(2725), 1, + [23853] = 4, + ACTIONS(1991), 1, anon_sym_SEMI, - STATE(1008), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2587), 1, + anon_sym_RBRACE, + STATE(1195), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23485] = 4, - ACTIONS(1900), 1, + [23867] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2727), 1, - anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2771), 1, + anon_sym_SEMI, + STATE(1022), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23499] = 4, - ACTIONS(2576), 1, + [23881] = 4, + ACTIONS(2589), 1, anon_sym_COMMA, - ACTIONS(2729), 1, + ACTIONS(2773), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1022), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23513] = 4, - ACTIONS(2731), 1, + [23895] = 4, + ACTIONS(2775), 1, + anon_sym_AMP, + ACTIONS(2778), 1, anon_sym_RPAREN, - ACTIONS(2733), 1, - anon_sym_COMMA, - STATE(1029), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(989), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23527] = 4, - ACTIONS(2576), 1, + [23909] = 4, + ACTIONS(2780), 1, anon_sym_COMMA, - ACTIONS(2735), 1, + ACTIONS(2783), 1, anon_sym_SEMI, - STATE(1008), 1, - aux_sym_exports_module_directive_repeat1, + STATE(990), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23541] = 4, - ACTIONS(2576), 1, + [23923] = 4, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(2785), 1, anon_sym_SEMI, - STATE(1008), 1, - aux_sym_exports_module_directive_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23555] = 4, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + STATE(1033), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23569] = 4, - ACTIONS(1350), 1, - anon_sym_RPAREN, - ACTIONS(2741), 1, - anon_sym_COMMA, - STATE(1014), 1, - aux_sym_formal_parameters_repeat1, + [23937] = 4, + ACTIONS(1702), 1, + anon_sym_LBRACK, + ACTIONS(1704), 1, + anon_sym_DOT, + ACTIONS(1706), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23583] = 4, - ACTIONS(2594), 1, + [23951] = 4, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2743), 1, + ACTIONS(2787), 1, anon_sym_SEMI, - STATE(1018), 1, + STATE(1033), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23597] = 4, - ACTIONS(1900), 1, + [23965] = 4, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(2745), 1, + ACTIONS(2789), 1, anon_sym_RPAREN, - STATE(970), 1, + STATE(1064), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23611] = 4, - ACTIONS(2594), 1, + [23979] = 4, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2747), 1, + ACTIONS(2791), 1, anon_sym_SEMI, - STATE(1018), 1, + STATE(1033), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23625] = 2, + [23993] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 3, - anon_sym_LBRACE, + ACTIONS(2793), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_throws, - [23635] = 4, - ACTIONS(2594), 1, + [24003] = 4, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2751), 1, + ACTIONS(2795), 1, anon_sym_SEMI, - STATE(1018), 1, + STATE(1033), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23649] = 2, + [24017] = 4, + ACTIONS(2759), 1, + anon_sym_COMMA, + ACTIONS(2797), 1, + anon_sym_RPAREN, + STATE(980), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 3, + [24031] = 4, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(2721), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [23659] = 4, - ACTIONS(2594), 1, - anon_sym_COMMA, - ACTIONS(2755), 1, - anon_sym_SEMI, - STATE(1018), 1, - aux_sym_provides_module_directive_repeat1, + STATE(196), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23673] = 4, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(2757), 1, - anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + [24045] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23687] = 4, - ACTIONS(1900), 1, + ACTIONS(2701), 3, anon_sym_COMMA, - ACTIONS(2759), 1, - anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + anon_sym_RBRACE, + anon_sym_SEMI, + [24055] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23701] = 4, - ACTIONS(2212), 1, + ACTIONS(2799), 3, + anon_sym_LBRACE, + anon_sym_implements, + anon_sym_permits, + [24065] = 4, + ACTIONS(2259), 1, anon_sym_default, - ACTIONS(2761), 1, + ACTIONS(2801), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1281), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23715] = 4, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(2763), 1, + [24079] = 4, + ACTIONS(1369), 1, anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2759), 1, + anon_sym_COMMA, + STATE(1004), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23729] = 4, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(2675), 1, - anon_sym_LBRACE, - STATE(243), 1, - sym_module_body, + [24093] = 4, + ACTIONS(2759), 1, + anon_sym_COMMA, + ACTIONS(2797), 1, + anon_sym_RPAREN, + STATE(966), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23743] = 4, - ACTIONS(1394), 1, + [24107] = 4, + ACTIONS(1437), 1, anon_sym_DOT, - ACTIONS(2675), 1, + ACTIONS(2721), 1, anon_sym_LBRACE, - STATE(241), 1, + STATE(222), 1, sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23757] = 4, - ACTIONS(1900), 1, + [24121] = 4, + ACTIONS(2740), 1, anon_sym_COMMA, - ACTIONS(2765), 1, + ACTIONS(2803), 1, anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + STATE(967), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23771] = 4, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_DOT, - STATE(420), 1, - sym_argument_list, + [24135] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23785] = 4, - ACTIONS(2767), 1, - anon_sym_RPAREN, - ACTIONS(2769), 1, + ACTIONS(2805), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(996), 1, - aux_sym_resource_specification_repeat1, + [24145] = 4, + ACTIONS(2807), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_RBRACE, + STATE(1011), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23799] = 2, + [24159] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2811), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [23809] = 4, - ACTIONS(2733), 1, + [24173] = 4, + ACTIONS(2740), 1, anon_sym_COMMA, - ACTIONS(2774), 1, + ACTIONS(2813), 1, anon_sym_RPAREN, - STATE(1029), 1, + STATE(1006), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23823] = 4, - ACTIONS(2733), 1, + [24187] = 4, + ACTIONS(366), 1, + anon_sym_RBRACE, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_RPAREN, - STATE(998), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1069), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23837] = 4, - ACTIONS(2778), 1, - anon_sym_COMMA, - ACTIONS(2780), 1, - anon_sym_SEMI, - STATE(1053), 1, - aux_sym__variable_declarator_list_repeat1, + [24201] = 4, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2817), 1, + anon_sym_RPAREN, + STATE(989), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23851] = 4, - ACTIONS(2782), 1, - anon_sym_GT, - ACTIONS(2784), 1, - anon_sym_COMMA, - STATE(1001), 1, - aux_sym_type_parameters_repeat1, + [24215] = 4, + ACTIONS(1407), 1, + anon_sym_DOT, + ACTIONS(2721), 1, + anon_sym_LBRACE, + STATE(214), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23865] = 4, - ACTIONS(1900), 1, + [24229] = 4, + ACTIONS(2740), 1, anon_sym_COMMA, - ACTIONS(2787), 1, + ACTIONS(2819), 1, anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + STATE(967), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23879] = 4, - ACTIONS(1184), 1, + [24243] = 4, + ACTIONS(1203), 1, anon_sym_COMMA, - ACTIONS(2789), 1, + ACTIONS(2821), 1, anon_sym_RPAREN, - STATE(1055), 1, + STATE(1037), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23893] = 4, - ACTIONS(1184), 1, + [24257] = 4, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(2791), 1, + ACTIONS(2823), 1, anon_sym_RPAREN, - STATE(1055), 1, - aux_sym_inferred_parameters_repeat1, + STATE(1064), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24271] = 4, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(2189), 1, + anon_sym_DOT, + STATE(428), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24285] = 4, + ACTIONS(2725), 1, + anon_sym_COMMA, + ACTIONS(2825), 1, + anon_sym_GT, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23907] = 3, - ACTIONS(1388), 1, + [24299] = 3, + ACTIONS(1437), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2793), 2, + ACTIONS(2827), 2, anon_sym_COMMA, anon_sym_SEMI, - [23919] = 3, - ACTIONS(1394), 1, + [24311] = 3, + ACTIONS(1407), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2795), 2, + ACTIONS(2829), 2, anon_sym_COMMA, anon_sym_SEMI, - [23931] = 4, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2797), 1, - anon_sym_RPAREN, - STATE(1057), 1, - aux_sym_cast_expression_repeat1, + [24323] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23945] = 4, - ACTIONS(2799), 1, + ACTIONS(2013), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2802), 1, anon_sym_SEMI, - STATE(1008), 1, + [24333] = 4, + ACTIONS(2831), 1, + anon_sym_COMMA, + ACTIONS(2834), 1, + anon_sym_SEMI, + STATE(1022), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23959] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2804), 1, + [24347] = 4, + ACTIONS(2729), 1, + anon_sym_STAR, + ACTIONS(2746), 1, + sym_identifier, + STATE(1221), 1, + sym_asterisk, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24361] = 4, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(2836), 1, anon_sym_SEMI, - STATE(439), 1, - sym_block, + ACTIONS(2838), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23973] = 4, - ACTIONS(1388), 1, + [24375] = 4, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2806), 1, + ACTIONS(2840), 1, anon_sym_SEMI, - ACTIONS(2808), 1, + ACTIONS(2842), 1, anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23987] = 4, - ACTIONS(1974), 1, - anon_sym_RBRACE, - ACTIONS(2810), 1, - anon_sym_COMMA, - STATE(1011), 1, - aux_sym_array_initializer_repeat1, + [24389] = 4, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(2844), 1, + anon_sym_SEMI, + ACTIONS(2846), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24001] = 4, - ACTIONS(1394), 1, + [24403] = 4, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2813), 1, + ACTIONS(2848), 1, anon_sym_SEMI, - ACTIONS(2815), 1, + ACTIONS(2850), 1, anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24015] = 4, - ACTIONS(1900), 1, + [24417] = 4, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(2817), 1, + ACTIONS(2852), 1, anon_sym_RPAREN, - STATE(970), 1, + STATE(1064), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24029] = 4, - ACTIONS(2741), 1, - anon_sym_COMMA, - ACTIONS(2819), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_formal_parameters_repeat1, + [24431] = 4, + ACTIONS(2727), 1, + sym_identifier, + ACTIONS(2729), 1, + anon_sym_STAR, + STATE(1232), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24043] = 3, - ACTIONS(1388), 1, + [24445] = 3, + ACTIONS(1437), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 2, + ACTIONS(2854), 2, anon_sym_COMMA, anon_sym_SEMI, - [24055] = 3, - ACTIONS(1394), 1, + [24457] = 3, + ACTIONS(1407), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 2, + ACTIONS(2856), 2, anon_sym_COMMA, anon_sym_SEMI, - [24067] = 4, - ACTIONS(2733), 1, + [24469] = 4, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(2825), 1, + ACTIONS(2858), 1, anon_sym_RPAREN, - STATE(1029), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24081] = 4, - ACTIONS(2827), 1, + [24483] = 4, + ACTIONS(2860), 1, anon_sym_COMMA, - ACTIONS(2830), 1, + ACTIONS(2863), 1, anon_sym_SEMI, - STATE(1018), 1, + STATE(1033), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24095] = 4, - ACTIONS(2741), 1, + [24497] = 4, + ACTIONS(2725), 1, anon_sym_COMMA, - ACTIONS(2819), 1, - anon_sym_RPAREN, - STATE(1061), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2865), 1, + anon_sym_GT, + STATE(1018), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24109] = 4, - ACTIONS(590), 1, - anon_sym_RBRACE, - ACTIONS(2832), 1, + [24511] = 4, + ACTIONS(2867), 1, + anon_sym_GT, + ACTIONS(2869), 1, anon_sym_COMMA, - STATE(1011), 1, - aux_sym_array_initializer_repeat1, + STATE(1062), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24123] = 4, - ACTIONS(2733), 1, - anon_sym_COMMA, - ACTIONS(2834), 1, + [24525] = 4, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2871), 1, anon_sym_RPAREN, - STATE(1017), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(989), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24137] = 4, - ACTIONS(2666), 1, + [24539] = 4, + ACTIONS(2873), 1, + anon_sym_RPAREN, + ACTIONS(2875), 1, anon_sym_COMMA, - ACTIONS(2836), 1, - anon_sym_GT, - STATE(951), 1, - aux_sym_type_arguments_repeat1, + STATE(1037), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24151] = 4, - ACTIONS(2212), 1, + [24553] = 4, + ACTIONS(2259), 1, anon_sym_default, - ACTIONS(2838), 1, + ACTIONS(2878), 1, anon_sym_SEMI, - STATE(1220), 1, + STATE(1276), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24165] = 4, - ACTIONS(2666), 1, + [24567] = 4, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(2840), 1, - anon_sym_GT, - STATE(1060), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2880), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24179] = 4, - ACTIONS(356), 1, - anon_sym_RBRACE, - ACTIONS(2842), 1, + [24581] = 4, + ACTIONS(1959), 1, anon_sym_COMMA, - STATE(960), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2654), 1, + anon_sym_COLON, + STATE(953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24193] = 4, - ACTIONS(1102), 1, + [24595] = 4, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2882), 1, anon_sym_DOT, - STATE(421), 1, + STATE(1239), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24207] = 4, - ACTIONS(2666), 1, + [24609] = 4, + ACTIONS(2039), 1, + anon_sym_RBRACE, + ACTIONS(2884), 1, anon_sym_COMMA, - ACTIONS(2844), 1, - anon_sym_GT, - STATE(1024), 1, - aux_sym_type_arguments_repeat1, + STATE(1042), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24221] = 4, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2846), 1, + [24623] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2887), 1, anon_sym_RPAREN, - STATE(1057), 1, - aux_sym_cast_expression_repeat1, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24235] = 4, - ACTIONS(2848), 1, - anon_sym_RPAREN, - ACTIONS(2850), 1, - anon_sym_COMMA, - STATE(1029), 1, - aux_sym_annotation_argument_list_repeat1, + [24637] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24249] = 4, - ACTIONS(1900), 1, + ACTIONS(2679), 3, + anon_sym_AMP, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2853), 1, + [24647] = 4, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, anon_sym_RPAREN, - STATE(970), 1, - aux_sym_for_statement_repeat2, + STATE(953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24263] = 4, - ACTIONS(1652), 1, - anon_sym_LBRACK, - ACTIONS(1654), 1, - anon_sym_DOT, - ACTIONS(1656), 1, - anon_sym_COLON_COLON, + [24661] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24277] = 4, - ACTIONS(1958), 1, + [24675] = 4, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(2893), 1, anon_sym_SEMI, - ACTIONS(2530), 1, - anon_sym_RBRACE, - STATE(1228), 1, - sym_enum_body_declarations, + STATE(434), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24291] = 4, - ACTIONS(2855), 1, + [24689] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2895), 1, anon_sym_RPAREN, - ACTIONS(2857), 1, - anon_sym_SEMI, - STATE(1051), 1, - aux_sym_resource_specification_repeat1, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24305] = 4, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2861), 1, - anon_sym_STAR, - STATE(1216), 1, - sym_asterisk, + [24703] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2897), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24319] = 4, - ACTIONS(2861), 1, - anon_sym_STAR, - ACTIONS(2863), 1, - sym_identifier, - STATE(1208), 1, - sym_asterisk, + [24717] = 4, + ACTIONS(1945), 1, + anon_sym_COMMA, + ACTIONS(2899), 1, + anon_sym_SEMI, + STATE(990), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24333] = 4, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(2675), 1, - anon_sym_LBRACE, - STATE(185), 1, - sym_module_body, + [24731] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24347] = 4, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2675), 1, - anon_sym_LBRACE, - STATE(186), 1, - sym_module_body, + ACTIONS(2901), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [24741] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2903), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24361] = 4, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2861), 1, - anon_sym_STAR, - STATE(1253), 1, - sym_asterisk, + [24755] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2905), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24375] = 4, - ACTIONS(1896), 1, - anon_sym_COMMA, - ACTIONS(2626), 1, - anon_sym_COLON, - STATE(950), 1, - aux_sym_argument_list_repeat1, + [24769] = 4, + ACTIONS(2907), 1, + anon_sym_RPAREN, + ACTIONS(2909), 1, + anon_sym_SEMI, + STATE(1058), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24389] = 2, + [24783] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2911), 3, + anon_sym_LBRACE, anon_sym_SEMI, - [24399] = 4, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(2867), 1, + anon_sym_throws, + [24793] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 3, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(2869), 1, - anon_sym_to, + anon_sym_throws, + [24803] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24413] = 2, + ACTIONS(2915), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [24813] = 4, + ACTIONS(1030), 1, + anon_sym_RPAREN, + ACTIONS(2917), 1, + anon_sym_SEMI, + STATE(978), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2634), 3, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - [24423] = 2, + [24827] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 3, + ACTIONS(2919), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [24433] = 4, - ACTIONS(2873), 1, - anon_sym_GT, - ACTIONS(2875), 1, + [24837] = 4, + ACTIONS(2921), 1, anon_sym_COMMA, - STATE(1001), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2923), 1, + anon_sym_SEMI, + STATE(972), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24447] = 4, - ACTIONS(1896), 1, + [24851] = 4, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(2877), 1, + ACTIONS(2925), 1, anon_sym_RPAREN, - STATE(950), 1, - aux_sym_argument_list_repeat1, + STATE(1064), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24865] = 4, + ACTIONS(2869), 1, + anon_sym_COMMA, + ACTIONS(2927), 1, + anon_sym_GT, + STATE(1073), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24461] = 4, - ACTIONS(1910), 1, + [24879] = 4, + ACTIONS(1951), 1, anon_sym_COMMA, - ACTIONS(1912), 1, + ACTIONS(1953), 1, anon_sym_RBRACE, - STATE(1020), 1, + STATE(1077), 1, aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24475] = 4, - ACTIONS(2733), 1, - anon_sym_COMMA, - ACTIONS(2879), 1, + [24893] = 4, + ACTIONS(2929), 1, anon_sym_RPAREN, - STATE(976), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2931), 1, + anon_sym_COMMA, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24489] = 4, - ACTIONS(1900), 1, + [24907] = 4, + ACTIONS(1939), 1, anon_sym_COMMA, - ACTIONS(2881), 1, + ACTIONS(2934), 1, anon_sym_RPAREN, - STATE(970), 1, + STATE(1064), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24503] = 4, - ACTIONS(1928), 1, + [24921] = 4, + ACTIONS(1203), 1, anon_sym_COMMA, - ACTIONS(2883), 1, - anon_sym_SEMI, - STATE(962), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2936), 1, + anon_sym_RPAREN, + STATE(1037), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24517] = 4, - ACTIONS(1102), 1, - anon_sym_LPAREN, - ACTIONS(2885), 1, - anon_sym_DOT, - STATE(1206), 1, - sym_argument_list, + [24935] = 4, + ACTIONS(2921), 1, + anon_sym_COMMA, + ACTIONS(2938), 1, + anon_sym_SEMI, + STATE(1060), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24531] = 4, - ACTIONS(1026), 1, + [24949] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2940), 1, anon_sym_RPAREN, - ACTIONS(2887), 1, - anon_sym_SEMI, - STATE(996), 1, - aux_sym_resource_specification_repeat1, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24545] = 2, + [24963] = 4, + ACTIONS(2942), 1, + anon_sym_COMMA, + ACTIONS(2945), 1, + anon_sym_RBRACE, + STATE(1069), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2639), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [24555] = 4, - ACTIONS(2778), 1, + [24977] = 4, + ACTIONS(1945), 1, anon_sym_COMMA, - ACTIONS(2889), 1, + ACTIONS(2947), 1, anon_sym_SEMI, - STATE(958), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(990), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24569] = 2, + [24991] = 4, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(2189), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [24579] = 4, - ACTIONS(2893), 1, - anon_sym_RPAREN, - ACTIONS(2895), 1, - anon_sym_COMMA, - STATE(1055), 1, - aux_sym_inferred_parameters_repeat1, + [25005] = 4, + ACTIONS(1407), 1, + anon_sym_DOT, + ACTIONS(2721), 1, + anon_sym_LBRACE, + STATE(251), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24593] = 4, - ACTIONS(2875), 1, - anon_sym_COMMA, - ACTIONS(2898), 1, + [25019] = 4, + ACTIONS(2949), 1, anon_sym_GT, - STATE(1044), 1, + ACTIONS(2951), 1, + anon_sym_COMMA, + STATE(1073), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24607] = 4, - ACTIONS(2900), 1, - anon_sym_AMP, - ACTIONS(2903), 1, + [25033] = 4, + ACTIONS(1939), 1, + anon_sym_COMMA, + ACTIONS(2954), 1, anon_sym_RPAREN, - STATE(1057), 1, - aux_sym_cast_expression_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24621] = 4, - ACTIONS(2861), 1, - anon_sym_STAR, - ACTIONS(2863), 1, - sym_identifier, - STATE(1225), 1, - sym_asterisk, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24635] = 4, - ACTIONS(27), 1, + [25047] = 4, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(2721), 1, anon_sym_LBRACE, - ACTIONS(2905), 1, - anon_sym_SEMI, - STATE(437), 1, - sym_block, + STATE(250), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24649] = 4, - ACTIONS(2907), 1, + [25061] = 4, + ACTIONS(2956), 1, anon_sym_GT, - ACTIONS(2909), 1, + ACTIONS(2958), 1, anon_sym_COMMA, - STATE(1060), 1, + STATE(1076), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24663] = 4, - ACTIONS(2741), 1, + [25075] = 4, + ACTIONS(528), 1, + anon_sym_RBRACE, + ACTIONS(2961), 1, anon_sym_COMMA, - ACTIONS(2912), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_formal_parameters_repeat1, + STATE(1042), 1, + aux_sym_array_initializer_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25089] = 3, + ACTIONS(2963), 1, + anon_sym_DASH_GT, + ACTIONS(2965), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24677] = 2, + [25100] = 3, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(2967), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 3, - anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [24687] = 2, + [25111] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 2, + ACTIONS(2956), 2, anon_sym_GT, anon_sym_COMMA, - [24696] = 3, - ACTIONS(2264), 1, - anon_sym_LBRACE, - STATE(113), 1, - sym_interface_body, + [25120] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24707] = 2, + ACTIONS(2969), 2, + anon_sym_new, + sym_identifier, + [25129] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [24716] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(172), 1, - sym_class_body, + ACTIONS(2971), 2, + anon_sym_GT, + anon_sym_COMMA, + [25138] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24727] = 3, - ACTIONS(1436), 1, + ACTIONS(2945), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25147] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(174), 1, + STATE(130), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24738] = 3, + [25158] = 3, ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(1112), 1, + STATE(1264), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24749] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(131), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24760] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2920), 2, - anon_sym_GT, - anon_sym_COMMA, - [24769] = 3, + [25169] = 3, ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(22), 1, + STATE(1150), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24780] = 3, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2924), 1, - anon_sym_SEMI, + [25180] = 3, + ACTIONS(1018), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24791] = 2, + [25191] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 2, + ACTIONS(2973), 2, anon_sym_GT, anon_sym_COMMA, - [24800] = 2, + [25200] = 3, + ACTIONS(2664), 1, + anon_sym_LBRACE, + STATE(100), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2689), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [24809] = 3, - ACTIONS(2264), 1, + [25211] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(139), 1, - sym_interface_body, + STATE(109), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24820] = 2, + [25222] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 2, - anon_sym_GT, - anon_sym_COMMA, - [24829] = 3, - ACTIONS(364), 1, + ACTIONS(2975), 2, anon_sym_LBRACE, - STATE(455), 1, - sym_array_initializer, + anon_sym_permits, + [25231] = 3, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(167), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24840] = 3, - ACTIONS(364), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_array_initializer, + [25242] = 3, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24851] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(104), 1, - sym_class_body, + [25253] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24862] = 3, - ACTIONS(1436), 1, + ACTIONS(2981), 2, anon_sym_LBRACE, - STATE(119), 1, - sym_class_body, + anon_sym_SEMI, + [25262] = 3, + ACTIONS(2983), 1, + sym_identifier, + ACTIONS(2985), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24873] = 2, + [25273] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2468), 2, - anon_sym_GT, + ACTIONS(2987), 2, anon_sym_COMMA, - [24882] = 3, - ACTIONS(1436), 1, + anon_sym_SEMI, + [25282] = 3, + ACTIONS(2311), 1, anon_sym_LBRACE, - STATE(134), 1, - sym_class_body, + STATE(135), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24893] = 3, - ACTIONS(2928), 1, - sym_identifier, - ACTIONS(2930), 1, - anon_sym_SEMI, + [25293] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2989), 2, + sym_this, + sym_super, + [25302] = 3, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(484), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25313] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 2, + anon_sym_LBRACE, + anon_sym_throws, + [25322] = 3, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(1248), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24904] = 2, + [25333] = 3, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(485), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [24913] = 3, - ACTIONS(2264), 1, + [25344] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(158), 1, - sym_interface_body, + STATE(170), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24924] = 2, + [25355] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2932), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [24933] = 2, + ACTIONS(2993), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [25364] = 3, + ACTIONS(362), 1, + anon_sym_LBRACE, + STATE(487), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2934), 2, - anon_sym_AMP, - anon_sym_RPAREN, - [24942] = 2, + [25375] = 3, + ACTIONS(2650), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2936), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [24951] = 3, - ACTIONS(1018), 1, - anon_sym_LPAREN, - STATE(17), 1, - sym_parenthesized_expression, + [25386] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24962] = 3, - ACTIONS(1436), 1, + ACTIONS(2995), 2, anon_sym_LBRACE, - STATE(156), 1, - sym_class_body, + anon_sym_SEMI, + [25395] = 3, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(759), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24973] = 3, - ACTIONS(2165), 1, + [25406] = 3, + ACTIONS(2206), 1, anon_sym_LPAREN, - STATE(1145), 1, + STATE(758), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24984] = 3, - ACTIONS(1656), 1, - anon_sym_COLON_COLON, - ACTIONS(2570), 1, - anon_sym_DOT, + [25417] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24995] = 2, + ACTIONS(2039), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25426] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2893), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25004] = 2, + ACTIONS(2997), 2, + anon_sym_LBRACE, + anon_sym_throws, + [25435] = 3, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(424), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25013] = 3, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2940), 1, - anon_sym_SEMI, + [25446] = 3, + ACTIONS(1018), 1, + anon_sym_LPAREN, + STATE(18), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25024] = 3, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(2942), 1, - anon_sym_SEMI, + [25457] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25035] = 3, - ACTIONS(2562), 1, + ACTIONS(2999), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [25466] = 3, + ACTIONS(2650), 1, anon_sym_LBRACE, - STATE(101), 1, - sym_block, + STATE(443), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25046] = 3, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(480), 1, - sym_argument_list, + [25477] = 3, + ACTIONS(3001), 1, + anon_sym_LBRACE, + STATE(150), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25057] = 3, - ACTIONS(2944), 1, - sym_identifier, - STATE(1148), 1, - sym_element_value_pair, + [25488] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25068] = 3, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(484), 1, - sym_argument_list, + ACTIONS(3003), 2, + anon_sym_GT, + anon_sym_COMMA, + [25497] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25079] = 3, - ACTIONS(1388), 1, + ACTIONS(2949), 2, + anon_sym_GT, + anon_sym_COMMA, + [25506] = 3, + ACTIONS(3005), 1, anon_sym_DOT, - ACTIONS(2946), 1, + ACTIONS(3007), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25090] = 3, - ACTIONS(1436), 1, + [25517] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(129), 1, + STATE(138), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25101] = 3, - ACTIONS(1436), 1, + [25528] = 3, + ACTIONS(2311), 1, anon_sym_LBRACE, - STATE(116), 1, - sym_class_body, + STATE(165), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25112] = 3, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2948), 1, - anon_sym_SEMI, + [25539] = 3, + ACTIONS(2311), 1, + anon_sym_LBRACE, + STATE(163), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25123] = 2, + [25550] = 3, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(162), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [25132] = 3, - ACTIONS(2950), 1, + [25561] = 3, + ACTIONS(3001), 1, anon_sym_LBRACE, - STATE(143), 1, + STATE(119), 1, sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25143] = 3, - ACTIONS(2574), 1, - anon_sym_LBRACE, - STATE(103), 1, - sym_enum_body, + [25572] = 3, + ACTIONS(3009), 1, + anon_sym_DOT, + ACTIONS(3011), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25154] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(154), 1, - sym_class_body, + [25583] = 3, + ACTIONS(1407), 1, + anon_sym_DOT, + ACTIONS(3013), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25165] = 2, + [25594] = 3, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(3015), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2952), 2, + [25605] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [25174] = 2, + STATE(126), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2954), 2, - anon_sym_new, - sym_identifier, - [25183] = 2, + [25616] = 3, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(160), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2956), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [25192] = 3, - ACTIONS(2958), 1, + [25627] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(78), 1, - sym_switch_block, + STATE(125), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25203] = 3, - ACTIONS(1436), 1, + [25638] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(106), 1, + STATE(159), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25214] = 3, - ACTIONS(2264), 1, + [25649] = 3, + ACTIONS(2664), 1, anon_sym_LBRACE, - STATE(164), 1, - sym_interface_body, + STATE(88), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25225] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(118), 1, - sym_class_body, + [25660] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25236] = 3, - ACTIONS(1436), 1, + ACTIONS(3017), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25669] = 3, + ACTIONS(29), 1, anon_sym_LBRACE, - STATE(168), 1, - sym_class_body, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25247] = 3, - ACTIONS(2165), 1, - anon_sym_LPAREN, - STATE(1082), 1, - sym_formal_parameters, + [25680] = 3, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(157), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25258] = 2, + [25691] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2960), 2, - anon_sym_GT, + ACTIONS(3019), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [25267] = 3, - ACTIONS(2574), 1, + [25700] = 3, + ACTIONS(2615), 1, anon_sym_LBRACE, - STATE(169), 1, + STATE(139), 1, sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25278] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(128), 1, - sym_class_body, + [25711] = 3, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(934), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25289] = 3, - ACTIONS(27), 1, + [25722] = 3, + ACTIONS(29), 1, anon_sym_LBRACE, - STATE(231), 1, + STATE(190), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25300] = 3, - ACTIONS(2962), 1, - anon_sym_DOT, - ACTIONS(2964), 1, - anon_sym_SEMI, + [25733] = 3, + ACTIONS(2311), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25311] = 3, - ACTIONS(2966), 1, - anon_sym_DOT, - ACTIONS(2968), 1, - anon_sym_SEMI, + [25744] = 3, + ACTIONS(362), 1, + anon_sym_LBRACE, + STATE(471), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25322] = 3, - ACTIONS(1436), 1, + [25755] = 3, + ACTIONS(2311), 1, anon_sym_LBRACE, - STATE(171), 1, - sym_class_body, + STATE(154), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25333] = 3, - ACTIONS(1102), 1, + [25766] = 3, + ACTIONS(1172), 1, anon_sym_LPAREN, - STATE(1244), 1, + STATE(428), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25344] = 3, - ACTIONS(2562), 1, + [25777] = 3, + ACTIONS(2311), 1, anon_sym_LBRACE, - STATE(89), 1, - sym_block, + STATE(142), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25355] = 2, + [25788] = 3, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(146), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 2, - sym_this, - sym_super, - [25364] = 3, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(1214), 1, - sym_argument_list, + [25799] = 3, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(3021), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25375] = 3, - ACTIONS(27), 1, + [25810] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(182), 1, - sym_block, + STATE(152), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25386] = 3, - ACTIONS(1388), 1, + [25821] = 3, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2972), 1, + ACTIONS(3023), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25397] = 3, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2974), 1, - anon_sym_SEMI, + [25832] = 3, + ACTIONS(362), 1, + anon_sym_LBRACE, + STATE(459), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25408] = 3, - ACTIONS(902), 1, - anon_sym_while, - ACTIONS(2976), 1, - anon_sym_else, + [25843] = 3, + ACTIONS(3025), 1, + anon_sym_LBRACE, + STATE(81), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25419] = 2, + [25854] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 2, + ACTIONS(3027), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_SEMI, - [25428] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(105), 1, - sym_class_body, + [25863] = 3, + ACTIONS(882), 1, + anon_sym_while, + ACTIONS(3029), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25439] = 3, - ACTIONS(1018), 1, - anon_sym_LPAREN, - STATE(1239), 1, - sym_parenthesized_expression, + [25874] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25450] = 3, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2980), 1, - anon_sym_SEMI, + ACTIONS(2873), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25883] = 3, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(147), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25461] = 3, - ACTIONS(2982), 1, - anon_sym_DOT, - ACTIONS(2984), 1, - anon_sym_SEMI, + [25894] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25472] = 3, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(2986), 1, - anon_sym_SEMI, + ACTIONS(3031), 2, + anon_sym_GT, + anon_sym_COMMA, + [25903] = 3, + ACTIONS(362), 1, + anon_sym_LBRACE, + STATE(479), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25483] = 3, - ACTIONS(1436), 1, + [25914] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(148), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25494] = 3, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_SEMI, + [25925] = 3, + ACTIONS(1463), 1, + anon_sym_LBRACE, + STATE(104), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25505] = 3, - ACTIONS(2990), 1, + [25936] = 3, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(2992), 1, - anon_sym_SEMI, + ACTIONS(3033), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25516] = 3, - ACTIONS(1388), 1, + [25947] = 3, + ACTIONS(1437), 1, anon_sym_DOT, - ACTIONS(2994), 1, - anon_sym_SEMI, + ACTIONS(3035), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25527] = 3, - ACTIONS(1388), 1, + [25958] = 3, + ACTIONS(3037), 1, anon_sym_DOT, - ACTIONS(2996), 1, + ACTIONS(3039), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25538] = 3, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(420), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25549] = 3, - ACTIONS(1436), 1, + [25969] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(120), 1, + STATE(169), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25560] = 3, - ACTIONS(2165), 1, - anon_sym_LPAREN, - STATE(747), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25571] = 3, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(464), 1, - sym_argument_list, + [25980] = 3, + ACTIONS(1407), 1, + anon_sym_DOT, + ACTIONS(3041), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25582] = 2, + [25991] = 3, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(3043), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2848), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25591] = 3, - ACTIONS(2950), 1, + [26002] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(147), 1, - sym_annotation_type_body, + STATE(123), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25602] = 3, - ACTIONS(2165), 1, - anon_sym_LPAREN, - STATE(746), 1, - sym_formal_parameters, + [26013] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25613] = 2, + ACTIONS(2523), 2, + anon_sym_GT, + anon_sym_COMMA, + [26022] = 3, + ACTIONS(1407), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 2, + [26033] = 3, + ACTIONS(2311), 1, anon_sym_LBRACE, - anon_sym_throws, - [25622] = 2, + STATE(113), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3000), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25631] = 3, + [26044] = 3, ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(28), 1, + STATE(60), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25642] = 3, - ACTIONS(2264), 1, - anon_sym_LBRACE, - STATE(109), 1, - sym_interface_body, + [26055] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25653] = 3, + ACTIONS(3047), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26064] = 3, ACTIONS(1018), 1, anon_sym_LPAREN, - STATE(16), 1, + STATE(58), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25664] = 3, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(462), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25675] = 2, + [26075] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 2, - anon_sym_LBRACE, + ACTIONS(2750), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [26084] = 3, + ACTIONS(1407), 1, + anon_sym_DOT, + ACTIONS(3049), 1, anon_sym_SEMI, - [25684] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3004), 2, - anon_sym_LBRACE, - anon_sym_throws, - [25693] = 3, - ACTIONS(1102), 1, - anon_sym_LPAREN, - STATE(421), 1, - sym_argument_list, + [26095] = 3, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(3051), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25704] = 3, - ACTIONS(2620), 1, - anon_sym_LBRACE, - STATE(445), 1, - sym_constructor_body, + [26106] = 3, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3055), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25715] = 3, - ACTIONS(2264), 1, + [26117] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(141), 1, - sym_interface_body, + STATE(171), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25726] = 3, - ACTIONS(1436), 1, + [26128] = 3, + ACTIONS(1463), 1, anon_sym_LBRACE, - STATE(161), 1, + STATE(175), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25737] = 2, + [26139] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 2, + ACTIONS(2716), 2, anon_sym_RPAREN, anon_sym_COMMA, - [25746] = 3, - ACTIONS(364), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_array_initializer, + [26148] = 3, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(478), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25757] = 3, - ACTIONS(3008), 1, - anon_sym_DASH_GT, - ACTIONS(3010), 1, - anon_sym_COLON, + [26159] = 3, + ACTIONS(1706), 1, + anon_sym_COLON_COLON, + ACTIONS(2599), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25768] = 3, - ACTIONS(364), 1, - anon_sym_LBRACE, - STATE(479), 1, - sym_array_initializer, + [26170] = 3, + ACTIONS(3057), 1, + sym_identifier, + STATE(1178), 1, + sym_element_value_pair, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25779] = 3, - ACTIONS(2264), 1, - anon_sym_LBRACE, - STATE(138), 1, - sym_interface_body, + [26181] = 3, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25790] = 2, + [26192] = 3, + ACTIONS(1437), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3012), 2, - anon_sym_LBRACE, - anon_sym_permits, - [25799] = 2, + [26203] = 3, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(466), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 2, - anon_sym_GT, - anon_sym_COMMA, - [25808] = 3, - ACTIONS(2264), 1, - anon_sym_LBRACE, - STATE(112), 1, - sym_interface_body, + [26214] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25819] = 3, - ACTIONS(1394), 1, + ACTIONS(3063), 2, + anon_sym_LBRACE, + anon_sym_permits, + [26223] = 3, + ACTIONS(1407), 1, anon_sym_DOT, - ACTIONS(3014), 1, - anon_sym_with, + ACTIONS(3065), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25830] = 3, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(3016), 1, - anon_sym_with, + [26234] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25841] = 3, - ACTIONS(1394), 1, - anon_sym_DOT, - ACTIONS(3018), 1, - anon_sym_SEMI, + ACTIONS(3067), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26243] = 3, + ACTIONS(1172), 1, + anon_sym_LPAREN, + STATE(1279), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25852] = 3, - ACTIONS(1388), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SEMI, + [26254] = 3, + ACTIONS(2615), 1, + anon_sym_LBRACE, + STATE(116), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25863] = 2, + [26265] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 2, + ACTIONS(2711), 2, anon_sym_RPAREN, anon_sym_COMMA, - [25872] = 2, + [26274] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(3069), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [25881] = 3, - ACTIONS(2620), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_constructor_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25892] = 3, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(125), 1, - sym_class_body, + [26283] = 3, + ACTIONS(2206), 1, + anon_sym_LPAREN, + STATE(937), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25903] = 2, + [26294] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3024), 2, + ACTIONS(3071), 2, + anon_sym_AMP, + anon_sym_RPAREN, + [26303] = 3, + ACTIONS(2311), 1, anon_sym_LBRACE, - anon_sym_permits, - [25912] = 2, - ACTIONS(2863), 1, - sym_identifier, + STATE(133), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25920] = 2, - ACTIONS(3026), 1, - anon_sym_DASH_GT, + [26314] = 2, + ACTIONS(2019), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25928] = 2, - ACTIONS(3028), 1, - anon_sym_DASH_GT, + [26322] = 2, + ACTIONS(2017), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25936] = 2, - ACTIONS(2834), 1, + [26330] = 2, + ACTIONS(3073), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25944] = 2, - ACTIONS(3030), 1, - anon_sym_module, + [26338] = 2, + ACTIONS(3075), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25952] = 2, - ACTIONS(2859), 1, - sym_identifier, + [26346] = 2, + ACTIONS(3077), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25960] = 2, - ACTIONS(3032), 1, - anon_sym_SEMI, + [26354] = 2, + ACTIONS(988), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25968] = 2, - ACTIONS(3034), 1, - anon_sym_SEMI, + [26362] = 2, + ACTIONS(1706), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25976] = 2, - ACTIONS(970), 1, - anon_sym_RBRACK, + [26370] = 2, + ACTIONS(2587), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25984] = 2, - ACTIONS(3036), 1, - anon_sym_SEMI, + [26378] = 2, + ACTIONS(3079), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25992] = 2, - ACTIONS(3038), 1, - anon_sym_class, + [26386] = 2, + ACTIONS(2809), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26000] = 2, - ACTIONS(962), 1, - anon_sym_RBRACK, + [26394] = 2, + ACTIONS(3081), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26008] = 2, - ACTIONS(3040), 1, - sym_identifier, + [26402] = 2, + ACTIONS(1185), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26016] = 2, - ACTIONS(3042), 1, - sym_identifier, + [26410] = 2, + ACTIONS(2813), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26024] = 2, - ACTIONS(3044), 1, - sym_identifier, + [26418] = 2, + ACTIONS(3083), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26032] = 2, - ACTIONS(3046), 1, - sym_identifier, + [26426] = 2, + ACTIONS(3085), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26040] = 2, - ACTIONS(3048), 1, - sym_identifier, + [26434] = 2, + ACTIONS(3087), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26048] = 2, - ACTIONS(3050), 1, + [26442] = 2, + ACTIONS(3089), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26056] = 2, - ACTIONS(3052), 1, - sym_identifier, + [26450] = 2, + ACTIONS(3091), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26064] = 2, - ACTIONS(3054), 1, - sym_identifier, + [26458] = 2, + ACTIONS(3093), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26072] = 2, - ACTIONS(3056), 1, + [26466] = 2, + ACTIONS(3095), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26080] = 2, - ACTIONS(3058), 1, + [26474] = 2, + ACTIONS(3097), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26088] = 2, - ACTIONS(2776), 1, - anon_sym_RPAREN, + [26482] = 2, + ACTIONS(980), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26096] = 2, - ACTIONS(3060), 1, - sym_identifier, + [26490] = 2, + ACTIONS(2744), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26104] = 2, - ACTIONS(3062), 1, + [26498] = 2, + ACTIONS(3099), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26112] = 2, - ACTIONS(3064), 1, + [26506] = 2, + ACTIONS(3101), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26120] = 2, - ACTIONS(3066), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [26128] = 2, - ACTIONS(3068), 1, - anon_sym_RPAREN, + [26514] = 2, + ACTIONS(3103), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26136] = 2, - ACTIONS(3070), 1, + [26522] = 2, + ACTIONS(3105), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26144] = 2, - ACTIONS(2530), 1, - anon_sym_RBRACE, + [26530] = 2, + ACTIONS(3107), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26152] = 2, - ACTIONS(3072), 1, - anon_sym_EQ, + [26538] = 2, + ACTIONS(3109), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26160] = 2, - ACTIONS(3074), 1, - anon_sym_SEMI, + [26546] = 2, + ACTIONS(3111), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26168] = 2, - ACTIONS(3076), 1, - anon_sym_RBRACE, + [26554] = 2, + ACTIONS(3113), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26176] = 2, - ACTIONS(984), 1, - anon_sym_RBRACK, + [26562] = 2, + ACTIONS(2963), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26184] = 2, - ACTIONS(3078), 1, - anon_sym_SEMI, + [26570] = 2, + ACTIONS(3115), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26192] = 2, - ACTIONS(3008), 1, - anon_sym_DASH_GT, + [26578] = 2, + ACTIONS(2965), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26200] = 2, - ACTIONS(3080), 1, - anon_sym_SEMI, + [26586] = 2, + ACTIONS(956), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26208] = 2, - ACTIONS(3082), 1, + [26594] = 2, + ACTIONS(3117), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26216] = 2, - ACTIONS(3084), 1, + [26602] = 2, + ACTIONS(3119), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26224] = 2, - ACTIONS(3010), 1, - anon_sym_COLON, + [26610] = 2, + ACTIONS(3121), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26232] = 2, - ACTIONS(3086), 1, - anon_sym_SEMI, + [26618] = 2, + ACTIONS(2882), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26240] = 2, - ACTIONS(3088), 1, - anon_sym_LPAREN, + [26626] = 2, + ACTIONS(3123), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26248] = 2, - ACTIONS(3090), 1, - anon_sym_SEMI, + [26634] = 2, + ACTIONS(3125), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26256] = 2, - ACTIONS(3092), 1, - anon_sym_LBRACE, + [26642] = 2, + ACTIONS(3127), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26264] = 2, - ACTIONS(3094), 1, + [26650] = 2, + ACTIONS(3129), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26272] = 2, - ACTIONS(3096), 1, + [26658] = 2, + ACTIONS(3131), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26280] = 2, - ACTIONS(3098), 1, - anon_sym_EQ, + [26666] = 2, + ACTIONS(3133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26288] = 2, - ACTIONS(3100), 1, + [26674] = 2, + ACTIONS(3135), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26296] = 2, - ACTIONS(1981), 1, - anon_sym_RBRACE, + [26682] = 2, + ACTIONS(3137), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26304] = 2, - ACTIONS(3102), 1, + [26690] = 2, + ACTIONS(3139), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26312] = 2, - ACTIONS(3104), 1, - anon_sym_SEMI, + [26698] = 2, + ACTIONS(3141), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26320] = 2, - ACTIONS(3106), 1, - anon_sym_while, + [26706] = 2, + ACTIONS(3143), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26328] = 2, - ACTIONS(2885), 1, - anon_sym_DOT, + [26714] = 2, + ACTIONS(3145), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26336] = 2, - ACTIONS(3108), 1, + [26722] = 2, + ACTIONS(3147), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26344] = 2, - ACTIONS(2879), 1, + [26730] = 2, + ACTIONS(2738), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26352] = 2, - ACTIONS(3110), 1, - anon_sym_EQ, + [26738] = 2, + ACTIONS(3149), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26360] = 2, - ACTIONS(3112), 1, - anon_sym_LBRACE, + [26746] = 2, + ACTIONS(3151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26368] = 2, - ACTIONS(1991), 1, - anon_sym_RBRACE, + [26754] = 2, + ACTIONS(3153), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26376] = 2, - ACTIONS(3114), 1, - anon_sym_SEMI, + [26762] = 2, + ACTIONS(3155), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26384] = 2, - ACTIONS(3116), 1, - anon_sym_SEMI, + [26770] = 2, + ACTIONS(3157), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26392] = 2, - ACTIONS(3118), 1, - anon_sym_RPAREN, + [26778] = 2, + ACTIONS(3159), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26400] = 2, - ACTIONS(3120), 1, - anon_sym_RPAREN, + [26786] = 2, + ACTIONS(3161), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26408] = 2, - ACTIONS(3122), 1, - anon_sym_RPAREN, + [26794] = 2, + ACTIONS(3163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26416] = 2, - ACTIONS(988), 1, - anon_sym_RBRACK, + [26802] = 2, + ACTIONS(3165), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26424] = 2, - ACTIONS(3124), 1, + [26810] = 2, + ACTIONS(3167), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26432] = 2, - ACTIONS(2723), 1, - anon_sym_RBRACE, + [26818] = 2, + ACTIONS(3169), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26440] = 2, - ACTIONS(1656), 1, - anon_sym_COLON_COLON, + [26826] = 2, + ACTIONS(1002), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26448] = 2, - ACTIONS(1115), 1, - anon_sym_DASH_GT, + [26834] = 2, + ACTIONS(3171), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26456] = 2, - ACTIONS(3126), 1, - ts_builtin_sym_end, + [26842] = 2, + ACTIONS(3173), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26464] = 2, - ACTIONS(3128), 1, - anon_sym_DASH_GT, + [26850] = 2, + ACTIONS(3175), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26472] = 2, - ACTIONS(3130), 1, + [26858] = 2, + ACTIONS(2746), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26480] = 2, - ACTIONS(3132), 1, - sym_identifier, + [26866] = 2, + ACTIONS(3177), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26488] = 2, - ACTIONS(3134), 1, - sym_identifier, + [26874] = 2, + ACTIONS(3179), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26496] = 2, - ACTIONS(3136), 1, - anon_sym_SEMI, + [26882] = 2, + ACTIONS(3181), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26504] = 2, - ACTIONS(3138), 1, + [26890] = 2, + ACTIONS(3183), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26512] = 2, - ACTIONS(3140), 1, - anon_sym_DASH_GT, + [26898] = 2, + ACTIONS(3185), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26520] = 2, - ACTIONS(3142), 1, - anon_sym_LPAREN, + [26906] = 2, + ACTIONS(3187), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26528] = 2, - ACTIONS(3144), 1, - anon_sym_SEMI, + [26914] = 2, + ACTIONS(3189), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26536] = 2, - ACTIONS(3146), 1, + [26922] = 2, + ACTIONS(3191), 1, sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26544] = 2, - ACTIONS(3148), 1, - anon_sym_RPAREN, + [26930] = 2, + ACTIONS(3193), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26552] = 2, - ACTIONS(3150), 1, - anon_sym_DOT, + [26938] = 2, + ACTIONS(3195), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26560] = 2, - ACTIONS(1912), 1, + [26946] = 2, + ACTIONS(1953), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26568] = 2, - ACTIONS(3152), 1, + [26954] = 2, + ACTIONS(2727), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26576] = 2, - ACTIONS(3154), 1, - anon_sym_LPAREN, + [26962] = 2, + ACTIONS(3197), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26584] = 2, - ACTIONS(3156), 1, - anon_sym_LBRACE, + [26970] = 2, + ACTIONS(3199), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26978] = 2, + ACTIONS(3201), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26592] = 2, - ACTIONS(3158), 1, + [26986] = 2, + ACTIONS(3203), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26600] = 2, - ACTIONS(3160), 1, - sym_this, + [26994] = 2, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27002] = 2, + ACTIONS(3207), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(350)] = 0, - [SMALL_STATE(351)] = 118, - [SMALL_STATE(352)] = 236, - [SMALL_STATE(353)] = 354, - [SMALL_STATE(354)] = 472, - [SMALL_STATE(355)] = 590, - [SMALL_STATE(356)] = 674, - [SMALL_STATE(357)] = 777, - [SMALL_STATE(358)] = 880, - [SMALL_STATE(359)] = 983, - [SMALL_STATE(360)] = 1074, - [SMALL_STATE(361)] = 1156, - [SMALL_STATE(362)] = 1238, - [SMALL_STATE(363)] = 1329, - [SMALL_STATE(364)] = 1420, - [SMALL_STATE(365)] = 1511, - [SMALL_STATE(366)] = 1577, - [SMALL_STATE(367)] = 1637, - [SMALL_STATE(368)] = 1697, - [SMALL_STATE(369)] = 1757, - [SMALL_STATE(370)] = 1829, - [SMALL_STATE(371)] = 1889, - [SMALL_STATE(372)] = 1943, - [SMALL_STATE(373)] = 1997, - [SMALL_STATE(374)] = 2051, - [SMALL_STATE(375)] = 2125, - [SMALL_STATE(376)] = 2194, - [SMALL_STATE(377)] = 2251, - [SMALL_STATE(378)] = 2324, - [SMALL_STATE(379)] = 2384, - [SMALL_STATE(380)] = 2446, - [SMALL_STATE(381)] = 2506, - [SMALL_STATE(382)] = 2570, - [SMALL_STATE(383)] = 2634, - [SMALL_STATE(384)] = 2697, - [SMALL_STATE(385)] = 2758, - [SMALL_STATE(386)] = 2819, - [SMALL_STATE(387)] = 2882, - [SMALL_STATE(388)] = 2945, - [SMALL_STATE(389)] = 3008, - [SMALL_STATE(390)] = 3090, - [SMALL_STATE(391)] = 3144, - [SMALL_STATE(392)] = 3194, - [SMALL_STATE(393)] = 3244, - [SMALL_STATE(394)] = 3301, - [SMALL_STATE(395)] = 3375, - [SMALL_STATE(396)] = 3446, - [SMALL_STATE(397)] = 3519, - [SMALL_STATE(398)] = 3566, - [SMALL_STATE(399)] = 3619, - [SMALL_STATE(400)] = 3666, - [SMALL_STATE(401)] = 3713, - [SMALL_STATE(402)] = 3760, - [SMALL_STATE(403)] = 3813, - [SMALL_STATE(404)] = 3859, - [SMALL_STATE(405)] = 3905, - [SMALL_STATE(406)] = 3951, - [SMALL_STATE(407)] = 3999, - [SMALL_STATE(408)] = 4051, - [SMALL_STATE(409)] = 4103, - [SMALL_STATE(410)] = 4149, - [SMALL_STATE(411)] = 4195, - [SMALL_STATE(412)] = 4241, - [SMALL_STATE(413)] = 4287, - [SMALL_STATE(414)] = 4333, - [SMALL_STATE(415)] = 4379, - [SMALL_STATE(416)] = 4424, - [SMALL_STATE(417)] = 4469, - [SMALL_STATE(418)] = 4514, - [SMALL_STATE(419)] = 4559, - [SMALL_STATE(420)] = 4607, - [SMALL_STATE(421)] = 4655, - [SMALL_STATE(422)] = 4703, - [SMALL_STATE(423)] = 4751, - [SMALL_STATE(424)] = 4803, - [SMALL_STATE(425)] = 4855, - [SMALL_STATE(426)] = 4898, - [SMALL_STATE(427)] = 4941, - [SMALL_STATE(428)] = 4984, - [SMALL_STATE(429)] = 5027, - [SMALL_STATE(430)] = 5070, - [SMALL_STATE(431)] = 5113, - [SMALL_STATE(432)] = 5156, - [SMALL_STATE(433)] = 5199, - [SMALL_STATE(434)] = 5242, - [SMALL_STATE(435)] = 5285, - [SMALL_STATE(436)] = 5328, - [SMALL_STATE(437)] = 5371, - [SMALL_STATE(438)] = 5414, - [SMALL_STATE(439)] = 5457, - [SMALL_STATE(440)] = 5500, - [SMALL_STATE(441)] = 5543, - [SMALL_STATE(442)] = 5586, - [SMALL_STATE(443)] = 5633, - [SMALL_STATE(444)] = 5676, - [SMALL_STATE(445)] = 5719, - [SMALL_STATE(446)] = 5762, - [SMALL_STATE(447)] = 5805, - [SMALL_STATE(448)] = 5848, - [SMALL_STATE(449)] = 5891, - [SMALL_STATE(450)] = 5934, - [SMALL_STATE(451)] = 5977, - [SMALL_STATE(452)] = 6019, - [SMALL_STATE(453)] = 6061, - [SMALL_STATE(454)] = 6103, - [SMALL_STATE(455)] = 6145, - [SMALL_STATE(456)] = 6187, - [SMALL_STATE(457)] = 6229, - [SMALL_STATE(458)] = 6271, - [SMALL_STATE(459)] = 6313, - [SMALL_STATE(460)] = 6355, - [SMALL_STATE(461)] = 6397, - [SMALL_STATE(462)] = 6439, - [SMALL_STATE(463)] = 6481, - [SMALL_STATE(464)] = 6523, - [SMALL_STATE(465)] = 6565, - [SMALL_STATE(466)] = 6611, - [SMALL_STATE(467)] = 6653, - [SMALL_STATE(468)] = 6695, - [SMALL_STATE(469)] = 6737, - [SMALL_STATE(470)] = 6785, - [SMALL_STATE(471)] = 6831, - [SMALL_STATE(472)] = 6873, - [SMALL_STATE(473)] = 6915, - [SMALL_STATE(474)] = 6957, - [SMALL_STATE(475)] = 6999, - [SMALL_STATE(476)] = 7041, - [SMALL_STATE(477)] = 7083, - [SMALL_STATE(478)] = 7125, - [SMALL_STATE(479)] = 7167, - [SMALL_STATE(480)] = 7209, - [SMALL_STATE(481)] = 7251, - [SMALL_STATE(482)] = 7293, - [SMALL_STATE(483)] = 7335, - [SMALL_STATE(484)] = 7377, - [SMALL_STATE(485)] = 7419, - [SMALL_STATE(486)] = 7461, - [SMALL_STATE(487)] = 7503, - [SMALL_STATE(488)] = 7544, - [SMALL_STATE(489)] = 7585, - [SMALL_STATE(490)] = 7630, - [SMALL_STATE(491)] = 7670, - [SMALL_STATE(492)] = 7710, - [SMALL_STATE(493)] = 7750, - [SMALL_STATE(494)] = 7789, - [SMALL_STATE(495)] = 7828, - [SMALL_STATE(496)] = 7867, - [SMALL_STATE(497)] = 7908, - [SMALL_STATE(498)] = 7947, - [SMALL_STATE(499)] = 7986, - [SMALL_STATE(500)] = 8025, - [SMALL_STATE(501)] = 8064, - [SMALL_STATE(502)] = 8103, - [SMALL_STATE(503)] = 8142, - [SMALL_STATE(504)] = 8181, - [SMALL_STATE(505)] = 8220, - [SMALL_STATE(506)] = 8259, - [SMALL_STATE(507)] = 8300, - [SMALL_STATE(508)] = 8339, - [SMALL_STATE(509)] = 8380, - [SMALL_STATE(510)] = 8419, - [SMALL_STATE(511)] = 8458, - [SMALL_STATE(512)] = 8497, - [SMALL_STATE(513)] = 8559, - [SMALL_STATE(514)] = 8615, - [SMALL_STATE(515)] = 8665, - [SMALL_STATE(516)] = 8729, - [SMALL_STATE(517)] = 8773, - [SMALL_STATE(518)] = 8841, - [SMALL_STATE(519)] = 8903, - [SMALL_STATE(520)] = 8963, - [SMALL_STATE(521)] = 9031, - [SMALL_STATE(522)] = 9099, - [SMALL_STATE(523)] = 9145, - [SMALL_STATE(524)] = 9213, - [SMALL_STATE(525)] = 9271, - [SMALL_STATE(526)] = 9315, - [SMALL_STATE(527)] = 9383, - [SMALL_STATE(528)] = 9427, - [SMALL_STATE(529)] = 9471, - [SMALL_STATE(530)] = 9515, - [SMALL_STATE(531)] = 9557, - [SMALL_STATE(532)] = 9594, - [SMALL_STATE(533)] = 9631, - [SMALL_STATE(534)] = 9676, - [SMALL_STATE(535)] = 9721, - [SMALL_STATE(536)] = 9763, - [SMALL_STATE(537)] = 9833, - [SMALL_STATE(538)] = 9899, - [SMALL_STATE(539)] = 9954, - [SMALL_STATE(540)] = 10013, - [SMALL_STATE(541)] = 10082, - [SMALL_STATE(542)] = 10151, - [SMALL_STATE(543)] = 10186, - [SMALL_STATE(544)] = 10251, - [SMALL_STATE(545)] = 10320, - [SMALL_STATE(546)] = 10355, - [SMALL_STATE(547)] = 10424, - [SMALL_STATE(548)] = 10471, - [SMALL_STATE(549)] = 10540, - [SMALL_STATE(550)] = 10609, - [SMALL_STATE(551)] = 10644, - [SMALL_STATE(552)] = 10679, - [SMALL_STATE(553)] = 10714, - [SMALL_STATE(554)] = 10749, - [SMALL_STATE(555)] = 10814, - [SMALL_STATE(556)] = 10849, - [SMALL_STATE(557)] = 10914, - [SMALL_STATE(558)] = 10983, - [SMALL_STATE(559)] = 11048, - [SMALL_STATE(560)] = 11117, - [SMALL_STATE(561)] = 11170, - [SMALL_STATE(562)] = 11239, - [SMALL_STATE(563)] = 11304, - [SMALL_STATE(564)] = 11373, - [SMALL_STATE(565)] = 11442, - [SMALL_STATE(566)] = 11507, - [SMALL_STATE(567)] = 11576, - [SMALL_STATE(568)] = 11641, - [SMALL_STATE(569)] = 11676, - [SMALL_STATE(570)] = 11745, - [SMALL_STATE(571)] = 11814, - [SMALL_STATE(572)] = 11873, - [SMALL_STATE(573)] = 11926, - [SMALL_STATE(574)] = 11995, - [SMALL_STATE(575)] = 12064, - [SMALL_STATE(576)] = 12133, - [SMALL_STATE(577)] = 12202, - [SMALL_STATE(578)] = 12271, - [SMALL_STATE(579)] = 12336, - [SMALL_STATE(580)] = 12373, - [SMALL_STATE(581)] = 12432, - [SMALL_STATE(582)] = 12501, - [SMALL_STATE(583)] = 12562, - [SMALL_STATE(584)] = 12605, - [SMALL_STATE(585)] = 12646, - [SMALL_STATE(586)] = 12715, - [SMALL_STATE(587)] = 12774, - [SMALL_STATE(588)] = 12831, - [SMALL_STATE(589)] = 12866, - [SMALL_STATE(590)] = 12930, - [SMALL_STATE(591)] = 12968, - [SMALL_STATE(592)] = 13032, - [SMALL_STATE(593)] = 13082, - [SMALL_STATE(594)] = 13148, - [SMALL_STATE(595)] = 13212, - [SMALL_STATE(596)] = 13276, - [SMALL_STATE(597)] = 13340, - [SMALL_STATE(598)] = 13390, - [SMALL_STATE(599)] = 13446, - [SMALL_STATE(600)] = 13510, - [SMALL_STATE(601)] = 13574, - [SMALL_STATE(602)] = 13629, - [SMALL_STATE(603)] = 13692, - [SMALL_STATE(604)] = 13755, - [SMALL_STATE(605)] = 13810, - [SMALL_STATE(606)] = 13873, - [SMALL_STATE(607)] = 13936, - [SMALL_STATE(608)] = 13999, - [SMALL_STATE(609)] = 14054, - [SMALL_STATE(610)] = 14117, - [SMALL_STATE(611)] = 14180, - [SMALL_STATE(612)] = 14243, - [SMALL_STATE(613)] = 14306, - [SMALL_STATE(614)] = 14369, - [SMALL_STATE(615)] = 14432, - [SMALL_STATE(616)] = 14495, - [SMALL_STATE(617)] = 14558, - [SMALL_STATE(618)] = 14621, - [SMALL_STATE(619)] = 14684, - [SMALL_STATE(620)] = 14747, - [SMALL_STATE(621)] = 14810, - [SMALL_STATE(622)] = 14873, - [SMALL_STATE(623)] = 14936, - [SMALL_STATE(624)] = 14999, - [SMALL_STATE(625)] = 15062, - [SMALL_STATE(626)] = 15125, - [SMALL_STATE(627)] = 15180, - [SMALL_STATE(628)] = 15243, - [SMALL_STATE(629)] = 15295, - [SMALL_STATE(630)] = 15347, - [SMALL_STATE(631)] = 15399, - [SMALL_STATE(632)] = 15451, - [SMALL_STATE(633)] = 15503, - [SMALL_STATE(634)] = 15535, - [SMALL_STATE(635)] = 15567, - [SMALL_STATE(636)] = 15625, - [SMALL_STATE(637)] = 15677, - [SMALL_STATE(638)] = 15729, - [SMALL_STATE(639)] = 15781, - [SMALL_STATE(640)] = 15818, - [SMALL_STATE(641)] = 15855, - [SMALL_STATE(642)] = 15896, - [SMALL_STATE(643)] = 15945, - [SMALL_STATE(644)] = 15991, - [SMALL_STATE(645)] = 16039, - [SMALL_STATE(646)] = 16085, - [SMALL_STATE(647)] = 16115, - [SMALL_STATE(648)] = 16145, - [SMALL_STATE(649)] = 16181, - [SMALL_STATE(650)] = 16211, - [SMALL_STATE(651)] = 16259, - [SMALL_STATE(652)] = 16305, - [SMALL_STATE(653)] = 16351, - [SMALL_STATE(654)] = 16381, - [SMALL_STATE(655)] = 16427, - [SMALL_STATE(656)] = 16479, - [SMALL_STATE(657)] = 16509, - [SMALL_STATE(658)] = 16555, - [SMALL_STATE(659)] = 16591, - [SMALL_STATE(660)] = 16621, - [SMALL_STATE(661)] = 16667, - [SMALL_STATE(662)] = 16696, - [SMALL_STATE(663)] = 16725, - [SMALL_STATE(664)] = 16754, - [SMALL_STATE(665)] = 16803, - [SMALL_STATE(666)] = 16832, - [SMALL_STATE(667)] = 16864, - [SMALL_STATE(668)] = 16892, - [SMALL_STATE(669)] = 16920, - [SMALL_STATE(670)] = 16950, - [SMALL_STATE(671)] = 16998, - [SMALL_STATE(672)] = 17040, - [SMALL_STATE(673)] = 17068, - [SMALL_STATE(674)] = 17096, - [SMALL_STATE(675)] = 17124, - [SMALL_STATE(676)] = 17166, - [SMALL_STATE(677)] = 17194, - [SMALL_STATE(678)] = 17222, - [SMALL_STATE(679)] = 17256, - [SMALL_STATE(680)] = 17302, - [SMALL_STATE(681)] = 17342, - [SMALL_STATE(682)] = 17388, - [SMALL_STATE(683)] = 17434, - [SMALL_STATE(684)] = 17477, - [SMALL_STATE(685)] = 17520, - [SMALL_STATE(686)] = 17545, - [SMALL_STATE(687)] = 17578, - [SMALL_STATE(688)] = 17621, - [SMALL_STATE(689)] = 17664, - [SMALL_STATE(690)] = 17689, - [SMALL_STATE(691)] = 17728, - [SMALL_STATE(692)] = 17765, - [SMALL_STATE(693)] = 17802, - [SMALL_STATE(694)] = 17839, - [SMALL_STATE(695)] = 17876, - [SMALL_STATE(696)] = 17913, - [SMALL_STATE(697)] = 17955, - [SMALL_STATE(698)] = 17995, - [SMALL_STATE(699)] = 18035, - [SMALL_STATE(700)] = 18075, - [SMALL_STATE(701)] = 18115, - [SMALL_STATE(702)] = 18155, - [SMALL_STATE(703)] = 18197, - [SMALL_STATE(704)] = 18237, - [SMALL_STATE(705)] = 18279, - [SMALL_STATE(706)] = 18321, - [SMALL_STATE(707)] = 18361, - [SMALL_STATE(708)] = 18387, - [SMALL_STATE(709)] = 18424, - [SMALL_STATE(710)] = 18453, - [SMALL_STATE(711)] = 18486, - [SMALL_STATE(712)] = 18523, - [SMALL_STATE(713)] = 18558, - [SMALL_STATE(714)] = 18595, - [SMALL_STATE(715)] = 18629, - [SMALL_STATE(716)] = 18659, - [SMALL_STATE(717)] = 18693, - [SMALL_STATE(718)] = 18727, - [SMALL_STATE(719)] = 18761, - [SMALL_STATE(720)] = 18797, - [SMALL_STATE(721)] = 18833, - [SMALL_STATE(722)] = 18869, - [SMALL_STATE(723)] = 18905, - [SMALL_STATE(724)] = 18939, - [SMALL_STATE(725)] = 18975, - [SMALL_STATE(726)] = 19009, - [SMALL_STATE(727)] = 19041, - [SMALL_STATE(728)] = 19075, - [SMALL_STATE(729)] = 19111, - [SMALL_STATE(730)] = 19141, - [SMALL_STATE(731)] = 19175, - [SMALL_STATE(732)] = 19209, - [SMALL_STATE(733)] = 19240, - [SMALL_STATE(734)] = 19273, - [SMALL_STATE(735)] = 19304, - [SMALL_STATE(736)] = 19335, - [SMALL_STATE(737)] = 19358, - [SMALL_STATE(738)] = 19391, - [SMALL_STATE(739)] = 19422, - [SMALL_STATE(740)] = 19453, - [SMALL_STATE(741)] = 19484, - [SMALL_STATE(742)] = 19514, - [SMALL_STATE(743)] = 19546, - [SMALL_STATE(744)] = 19576, - [SMALL_STATE(745)] = 19606, - [SMALL_STATE(746)] = 19636, - [SMALL_STATE(747)] = 19664, - [SMALL_STATE(748)] = 19692, - [SMALL_STATE(749)] = 19724, - [SMALL_STATE(750)] = 19754, - [SMALL_STATE(751)] = 19789, - [SMALL_STATE(752)] = 19818, - [SMALL_STATE(753)] = 19849, - [SMALL_STATE(754)] = 19880, - [SMALL_STATE(755)] = 19907, + [SMALL_STATE(354)] = 0, + [SMALL_STATE(355)] = 119, + [SMALL_STATE(356)] = 238, + [SMALL_STATE(357)] = 357, + [SMALL_STATE(358)] = 476, + [SMALL_STATE(359)] = 595, + [SMALL_STATE(360)] = 702, + [SMALL_STATE(361)] = 809, + [SMALL_STATE(362)] = 916, + [SMALL_STATE(363)] = 1000, + [SMALL_STATE(364)] = 1091, + [SMALL_STATE(365)] = 1173, + [SMALL_STATE(366)] = 1255, + [SMALL_STATE(367)] = 1346, + [SMALL_STATE(368)] = 1437, + [SMALL_STATE(369)] = 1528, + [SMALL_STATE(370)] = 1588, + [SMALL_STATE(371)] = 1654, + [SMALL_STATE(372)] = 1726, + [SMALL_STATE(373)] = 1786, + [SMALL_STATE(374)] = 1846, + [SMALL_STATE(375)] = 1906, + [SMALL_STATE(376)] = 1960, + [SMALL_STATE(377)] = 2014, + [SMALL_STATE(378)] = 2068, + [SMALL_STATE(379)] = 2142, + [SMALL_STATE(380)] = 2215, + [SMALL_STATE(381)] = 2284, + [SMALL_STATE(382)] = 2341, + [SMALL_STATE(383)] = 2401, + [SMALL_STATE(384)] = 2463, + [SMALL_STATE(385)] = 2527, + [SMALL_STATE(386)] = 2591, + [SMALL_STATE(387)] = 2651, + [SMALL_STATE(388)] = 2712, + [SMALL_STATE(389)] = 2773, + [SMALL_STATE(390)] = 2836, + [SMALL_STATE(391)] = 2899, + [SMALL_STATE(392)] = 2962, + [SMALL_STATE(393)] = 3025, + [SMALL_STATE(394)] = 3079, + [SMALL_STATE(395)] = 3161, + [SMALL_STATE(396)] = 3211, + [SMALL_STATE(397)] = 3261, + [SMALL_STATE(398)] = 3318, + [SMALL_STATE(399)] = 3392, + [SMALL_STATE(400)] = 3439, + [SMALL_STATE(401)] = 3486, + [SMALL_STATE(402)] = 3533, + [SMALL_STATE(403)] = 3586, + [SMALL_STATE(404)] = 3639, + [SMALL_STATE(405)] = 3712, + [SMALL_STATE(406)] = 3783, + [SMALL_STATE(407)] = 3830, + [SMALL_STATE(408)] = 3876, + [SMALL_STATE(409)] = 3922, + [SMALL_STATE(410)] = 3968, + [SMALL_STATE(411)] = 4020, + [SMALL_STATE(412)] = 4066, + [SMALL_STATE(413)] = 4112, + [SMALL_STATE(414)] = 4158, + [SMALL_STATE(415)] = 4204, + [SMALL_STATE(416)] = 4250, + [SMALL_STATE(417)] = 4298, + [SMALL_STATE(418)] = 4344, + [SMALL_STATE(419)] = 4396, + [SMALL_STATE(420)] = 4441, + [SMALL_STATE(421)] = 4486, + [SMALL_STATE(422)] = 4531, + [SMALL_STATE(423)] = 4576, + [SMALL_STATE(424)] = 4628, + [SMALL_STATE(425)] = 4676, + [SMALL_STATE(426)] = 4724, + [SMALL_STATE(427)] = 4772, + [SMALL_STATE(428)] = 4824, + [SMALL_STATE(429)] = 4872, + [SMALL_STATE(430)] = 4915, + [SMALL_STATE(431)] = 4958, + [SMALL_STATE(432)] = 5001, + [SMALL_STATE(433)] = 5044, + [SMALL_STATE(434)] = 5091, + [SMALL_STATE(435)] = 5134, + [SMALL_STATE(436)] = 5177, + [SMALL_STATE(437)] = 5220, + [SMALL_STATE(438)] = 5263, + [SMALL_STATE(439)] = 5306, + [SMALL_STATE(440)] = 5349, + [SMALL_STATE(441)] = 5396, + [SMALL_STATE(442)] = 5439, + [SMALL_STATE(443)] = 5482, + [SMALL_STATE(444)] = 5525, + [SMALL_STATE(445)] = 5568, + [SMALL_STATE(446)] = 5611, + [SMALL_STATE(447)] = 5654, + [SMALL_STATE(448)] = 5697, + [SMALL_STATE(449)] = 5740, + [SMALL_STATE(450)] = 5783, + [SMALL_STATE(451)] = 5826, + [SMALL_STATE(452)] = 5869, + [SMALL_STATE(453)] = 5912, + [SMALL_STATE(454)] = 5955, + [SMALL_STATE(455)] = 5998, + [SMALL_STATE(456)] = 6041, + [SMALL_STATE(457)] = 6084, + [SMALL_STATE(458)] = 6127, + [SMALL_STATE(459)] = 6169, + [SMALL_STATE(460)] = 6211, + [SMALL_STATE(461)] = 6253, + [SMALL_STATE(462)] = 6295, + [SMALL_STATE(463)] = 6337, + [SMALL_STATE(464)] = 6379, + [SMALL_STATE(465)] = 6421, + [SMALL_STATE(466)] = 6463, + [SMALL_STATE(467)] = 6505, + [SMALL_STATE(468)] = 6547, + [SMALL_STATE(469)] = 6589, + [SMALL_STATE(470)] = 6631, + [SMALL_STATE(471)] = 6673, + [SMALL_STATE(472)] = 6715, + [SMALL_STATE(473)] = 6757, + [SMALL_STATE(474)] = 6799, + [SMALL_STATE(475)] = 6841, + [SMALL_STATE(476)] = 6883, + [SMALL_STATE(477)] = 6929, + [SMALL_STATE(478)] = 6971, + [SMALL_STATE(479)] = 7013, + [SMALL_STATE(480)] = 7055, + [SMALL_STATE(481)] = 7097, + [SMALL_STATE(482)] = 7139, + [SMALL_STATE(483)] = 7187, + [SMALL_STATE(484)] = 7229, + [SMALL_STATE(485)] = 7271, + [SMALL_STATE(486)] = 7313, + [SMALL_STATE(487)] = 7355, + [SMALL_STATE(488)] = 7397, + [SMALL_STATE(489)] = 7439, + [SMALL_STATE(490)] = 7481, + [SMALL_STATE(491)] = 7523, + [SMALL_STATE(492)] = 7569, + [SMALL_STATE(493)] = 7611, + [SMALL_STATE(494)] = 7653, + [SMALL_STATE(495)] = 7695, + [SMALL_STATE(496)] = 7737, + [SMALL_STATE(497)] = 7782, + [SMALL_STATE(498)] = 7822, + [SMALL_STATE(499)] = 7862, + [SMALL_STATE(500)] = 7902, + [SMALL_STATE(501)] = 7941, + [SMALL_STATE(502)] = 7982, + [SMALL_STATE(503)] = 8021, + [SMALL_STATE(504)] = 8060, + [SMALL_STATE(505)] = 8099, + [SMALL_STATE(506)] = 8138, + [SMALL_STATE(507)] = 8179, + [SMALL_STATE(508)] = 8218, + [SMALL_STATE(509)] = 8259, + [SMALL_STATE(510)] = 8298, + [SMALL_STATE(511)] = 8337, + [SMALL_STATE(512)] = 8376, + [SMALL_STATE(513)] = 8415, + [SMALL_STATE(514)] = 8454, + [SMALL_STATE(515)] = 8493, + [SMALL_STATE(516)] = 8532, + [SMALL_STATE(517)] = 8571, + [SMALL_STATE(518)] = 8610, + [SMALL_STATE(519)] = 8649, + [SMALL_STATE(520)] = 8688, + [SMALL_STATE(521)] = 8727, + [SMALL_STATE(522)] = 8789, + [SMALL_STATE(523)] = 8833, + [SMALL_STATE(524)] = 8901, + [SMALL_STATE(525)] = 8945, + [SMALL_STATE(526)] = 9013, + [SMALL_STATE(527)] = 9055, + [SMALL_STATE(528)] = 9123, + [SMALL_STATE(529)] = 9167, + [SMALL_STATE(530)] = 9229, + [SMALL_STATE(531)] = 9287, + [SMALL_STATE(532)] = 9337, + [SMALL_STATE(533)] = 9405, + [SMALL_STATE(534)] = 9473, + [SMALL_STATE(535)] = 9533, + [SMALL_STATE(536)] = 9597, + [SMALL_STATE(537)] = 9643, + [SMALL_STATE(538)] = 9699, + [SMALL_STATE(539)] = 9743, + [SMALL_STATE(540)] = 9787, + [SMALL_STATE(541)] = 9832, + [SMALL_STATE(542)] = 9877, + [SMALL_STATE(543)] = 9914, + [SMALL_STATE(544)] = 9951, + [SMALL_STATE(545)] = 10017, + [SMALL_STATE(546)] = 10087, + [SMALL_STATE(547)] = 10129, + [SMALL_STATE(548)] = 10194, + [SMALL_STATE(549)] = 10263, + [SMALL_STATE(550)] = 10298, + [SMALL_STATE(551)] = 10367, + [SMALL_STATE(552)] = 10436, + [SMALL_STATE(553)] = 10505, + [SMALL_STATE(554)] = 10574, + [SMALL_STATE(555)] = 10643, + [SMALL_STATE(556)] = 10708, + [SMALL_STATE(557)] = 10773, + [SMALL_STATE(558)] = 10832, + [SMALL_STATE(559)] = 10867, + [SMALL_STATE(560)] = 10936, + [SMALL_STATE(561)] = 10971, + [SMALL_STATE(562)] = 11014, + [SMALL_STATE(563)] = 11083, + [SMALL_STATE(564)] = 11140, + [SMALL_STATE(565)] = 11199, + [SMALL_STATE(566)] = 11240, + [SMALL_STATE(567)] = 11301, + [SMALL_STATE(568)] = 11370, + [SMALL_STATE(569)] = 11429, + [SMALL_STATE(570)] = 11498, + [SMALL_STATE(571)] = 11551, + [SMALL_STATE(572)] = 11620, + [SMALL_STATE(573)] = 11689, + [SMALL_STATE(574)] = 11736, + [SMALL_STATE(575)] = 11805, + [SMALL_STATE(576)] = 11874, + [SMALL_STATE(577)] = 11929, + [SMALL_STATE(578)] = 11964, + [SMALL_STATE(579)] = 12033, + [SMALL_STATE(580)] = 12068, + [SMALL_STATE(581)] = 12121, + [SMALL_STATE(582)] = 12186, + [SMALL_STATE(583)] = 12255, + [SMALL_STATE(584)] = 12324, + [SMALL_STATE(585)] = 12389, + [SMALL_STATE(586)] = 12458, + [SMALL_STATE(587)] = 12493, + [SMALL_STATE(588)] = 12558, + [SMALL_STATE(589)] = 12593, + [SMALL_STATE(590)] = 12658, + [SMALL_STATE(591)] = 12727, + [SMALL_STATE(592)] = 12762, + [SMALL_STATE(593)] = 12797, + [SMALL_STATE(594)] = 12866, + [SMALL_STATE(595)] = 12903, + [SMALL_STATE(596)] = 12962, + [SMALL_STATE(597)] = 13027, + [SMALL_STATE(598)] = 13096, + [SMALL_STATE(599)] = 13146, + [SMALL_STATE(600)] = 13196, + [SMALL_STATE(601)] = 13260, + [SMALL_STATE(602)] = 13324, + [SMALL_STATE(603)] = 13380, + [SMALL_STATE(604)] = 13444, + [SMALL_STATE(605)] = 13508, + [SMALL_STATE(606)] = 13572, + [SMALL_STATE(607)] = 13610, + [SMALL_STATE(608)] = 13674, + [SMALL_STATE(609)] = 13738, + [SMALL_STATE(610)] = 13804, + [SMALL_STATE(611)] = 13867, + [SMALL_STATE(612)] = 13930, + [SMALL_STATE(613)] = 13993, + [SMALL_STATE(614)] = 14056, + [SMALL_STATE(615)] = 14111, + [SMALL_STATE(616)] = 14174, + [SMALL_STATE(617)] = 14237, + [SMALL_STATE(618)] = 14300, + [SMALL_STATE(619)] = 14363, + [SMALL_STATE(620)] = 14426, + [SMALL_STATE(621)] = 14489, + [SMALL_STATE(622)] = 14552, + [SMALL_STATE(623)] = 14615, + [SMALL_STATE(624)] = 14678, + [SMALL_STATE(625)] = 14741, + [SMALL_STATE(626)] = 14796, + [SMALL_STATE(627)] = 14857, + [SMALL_STATE(628)] = 14912, + [SMALL_STATE(629)] = 14975, + [SMALL_STATE(630)] = 15030, + [SMALL_STATE(631)] = 15085, + [SMALL_STATE(632)] = 15148, + [SMALL_STATE(633)] = 15211, + [SMALL_STATE(634)] = 15274, + [SMALL_STATE(635)] = 15337, + [SMALL_STATE(636)] = 15400, + [SMALL_STATE(637)] = 15463, + [SMALL_STATE(638)] = 15526, + [SMALL_STATE(639)] = 15589, + [SMALL_STATE(640)] = 15641, + [SMALL_STATE(641)] = 15693, + [SMALL_STATE(642)] = 15725, + [SMALL_STATE(643)] = 15777, + [SMALL_STATE(644)] = 15829, + [SMALL_STATE(645)] = 15881, + [SMALL_STATE(646)] = 15933, + [SMALL_STATE(647)] = 15965, + [SMALL_STATE(648)] = 16017, + [SMALL_STATE(649)] = 16069, + [SMALL_STATE(650)] = 16110, + [SMALL_STATE(651)] = 16159, + [SMALL_STATE(652)] = 16196, + [SMALL_STATE(653)] = 16233, + [SMALL_STATE(654)] = 16279, + [SMALL_STATE(655)] = 16309, + [SMALL_STATE(656)] = 16361, + [SMALL_STATE(657)] = 16391, + [SMALL_STATE(658)] = 16427, + [SMALL_STATE(659)] = 16463, + [SMALL_STATE(660)] = 16509, + [SMALL_STATE(661)] = 16539, + [SMALL_STATE(662)] = 16585, + [SMALL_STATE(663)] = 16633, + [SMALL_STATE(664)] = 16679, + [SMALL_STATE(665)] = 16725, + [SMALL_STATE(666)] = 16773, + [SMALL_STATE(667)] = 16803, + [SMALL_STATE(668)] = 16849, + [SMALL_STATE(669)] = 16879, + [SMALL_STATE(670)] = 16909, + [SMALL_STATE(671)] = 16955, + [SMALL_STATE(672)] = 16984, + [SMALL_STATE(673)] = 17013, + [SMALL_STATE(674)] = 17062, + [SMALL_STATE(675)] = 17091, + [SMALL_STATE(676)] = 17120, + [SMALL_STATE(677)] = 17148, + [SMALL_STATE(678)] = 17176, + [SMALL_STATE(679)] = 17218, + [SMALL_STATE(680)] = 17246, + [SMALL_STATE(681)] = 17274, + [SMALL_STATE(682)] = 17302, + [SMALL_STATE(683)] = 17330, + [SMALL_STATE(684)] = 17378, + [SMALL_STATE(685)] = 17408, + [SMALL_STATE(686)] = 17436, + [SMALL_STATE(687)] = 17478, + [SMALL_STATE(688)] = 17510, + [SMALL_STATE(689)] = 17556, + [SMALL_STATE(690)] = 17596, + [SMALL_STATE(691)] = 17642, + [SMALL_STATE(692)] = 17676, + [SMALL_STATE(693)] = 17722, + [SMALL_STATE(694)] = 17755, + [SMALL_STATE(695)] = 17798, + [SMALL_STATE(696)] = 17841, + [SMALL_STATE(697)] = 17878, + [SMALL_STATE(698)] = 17915, + [SMALL_STATE(699)] = 17954, + [SMALL_STATE(700)] = 17979, + [SMALL_STATE(701)] = 18022, + [SMALL_STATE(702)] = 18059, + [SMALL_STATE(703)] = 18096, + [SMALL_STATE(704)] = 18133, + [SMALL_STATE(705)] = 18176, + [SMALL_STATE(706)] = 18201, + [SMALL_STATE(707)] = 18241, + [SMALL_STATE(708)] = 18283, + [SMALL_STATE(709)] = 18325, + [SMALL_STATE(710)] = 18365, + [SMALL_STATE(711)] = 18391, + [SMALL_STATE(712)] = 18431, + [SMALL_STATE(713)] = 18471, + [SMALL_STATE(714)] = 18511, + [SMALL_STATE(715)] = 18553, + [SMALL_STATE(716)] = 18593, + [SMALL_STATE(717)] = 18635, + [SMALL_STATE(718)] = 18675, + [SMALL_STATE(719)] = 18712, + [SMALL_STATE(720)] = 18747, + [SMALL_STATE(721)] = 18784, + [SMALL_STATE(722)] = 18817, + [SMALL_STATE(723)] = 18846, + [SMALL_STATE(724)] = 18883, + [SMALL_STATE(725)] = 18919, + [SMALL_STATE(726)] = 18953, + [SMALL_STATE(727)] = 18989, + [SMALL_STATE(728)] = 19023, + [SMALL_STATE(729)] = 19059, + [SMALL_STATE(730)] = 19093, + [SMALL_STATE(731)] = 19127, + [SMALL_STATE(732)] = 19161, + [SMALL_STATE(733)] = 19197, + [SMALL_STATE(734)] = 19229, + [SMALL_STATE(735)] = 19265, + [SMALL_STATE(736)] = 19301, + [SMALL_STATE(737)] = 19335, + [SMALL_STATE(738)] = 19371, + [SMALL_STATE(739)] = 19405, + [SMALL_STATE(740)] = 19435, + [SMALL_STATE(741)] = 19465, + [SMALL_STATE(742)] = 19499, + [SMALL_STATE(743)] = 19535, + [SMALL_STATE(744)] = 19569, + [SMALL_STATE(745)] = 19600, + [SMALL_STATE(746)] = 19631, + [SMALL_STATE(747)] = 19662, + [SMALL_STATE(748)] = 19693, + [SMALL_STATE(749)] = 19726, + [SMALL_STATE(750)] = 19757, + [SMALL_STATE(751)] = 19788, + [SMALL_STATE(752)] = 19811, + [SMALL_STATE(753)] = 19844, + [SMALL_STATE(754)] = 19874, + [SMALL_STATE(755)] = 19906, [SMALL_STATE(756)] = 19936, - [SMALL_STATE(757)] = 19963, + [SMALL_STATE(757)] = 19966, [SMALL_STATE(758)] = 19998, - [SMALL_STATE(759)] = 20028, - [SMALL_STATE(760)] = 20044, - [SMALL_STATE(761)] = 20072, - [SMALL_STATE(762)] = 20098, - [SMALL_STATE(763)] = 20123, - [SMALL_STATE(764)] = 20152, - [SMALL_STATE(765)] = 20173, - [SMALL_STATE(766)] = 20202, - [SMALL_STATE(767)] = 20231, - [SMALL_STATE(768)] = 20260, - [SMALL_STATE(769)] = 20284, - [SMALL_STATE(770)] = 20308, - [SMALL_STATE(771)] = 20330, - [SMALL_STATE(772)] = 20350, - [SMALL_STATE(773)] = 20372, - [SMALL_STATE(774)] = 20394, - [SMALL_STATE(775)] = 20414, - [SMALL_STATE(776)] = 20427, - [SMALL_STATE(777)] = 20446, - [SMALL_STATE(778)] = 20463, - [SMALL_STATE(779)] = 20476, - [SMALL_STATE(780)] = 20493, - [SMALL_STATE(781)] = 20510, - [SMALL_STATE(782)] = 20523, - [SMALL_STATE(783)] = 20542, - [SMALL_STATE(784)] = 20555, - [SMALL_STATE(785)] = 20568, - [SMALL_STATE(786)] = 20585, - [SMALL_STATE(787)] = 20602, - [SMALL_STATE(788)] = 20619, - [SMALL_STATE(789)] = 20632, - [SMALL_STATE(790)] = 20645, - [SMALL_STATE(791)] = 20662, - [SMALL_STATE(792)] = 20679, - [SMALL_STATE(793)] = 20696, - [SMALL_STATE(794)] = 20709, - [SMALL_STATE(795)] = 20722, - [SMALL_STATE(796)] = 20745, - [SMALL_STATE(797)] = 20766, - [SMALL_STATE(798)] = 20783, - [SMALL_STATE(799)] = 20796, - [SMALL_STATE(800)] = 20809, - [SMALL_STATE(801)] = 20822, - [SMALL_STATE(802)] = 20845, - [SMALL_STATE(803)] = 20858, - [SMALL_STATE(804)] = 20871, - [SMALL_STATE(805)] = 20884, - [SMALL_STATE(806)] = 20897, - [SMALL_STATE(807)] = 20910, - [SMALL_STATE(808)] = 20923, - [SMALL_STATE(809)] = 20936, - [SMALL_STATE(810)] = 20949, - [SMALL_STATE(811)] = 20962, - [SMALL_STATE(812)] = 20985, - [SMALL_STATE(813)] = 21002, - [SMALL_STATE(814)] = 21015, - [SMALL_STATE(815)] = 21032, - [SMALL_STATE(816)] = 21051, - [SMALL_STATE(817)] = 21068, - [SMALL_STATE(818)] = 21081, - [SMALL_STATE(819)] = 21094, - [SMALL_STATE(820)] = 21113, - [SMALL_STATE(821)] = 21126, - [SMALL_STATE(822)] = 21139, - [SMALL_STATE(823)] = 21162, - [SMALL_STATE(824)] = 21179, - [SMALL_STATE(825)] = 21202, - [SMALL_STATE(826)] = 21219, - [SMALL_STATE(827)] = 21240, - [SMALL_STATE(828)] = 21253, - [SMALL_STATE(829)] = 21266, - [SMALL_STATE(830)] = 21279, - [SMALL_STATE(831)] = 21292, - [SMALL_STATE(832)] = 21309, - [SMALL_STATE(833)] = 21332, - [SMALL_STATE(834)] = 21345, - [SMALL_STATE(835)] = 21358, - [SMALL_STATE(836)] = 21371, - [SMALL_STATE(837)] = 21384, - [SMALL_STATE(838)] = 21401, - [SMALL_STATE(839)] = 21414, - [SMALL_STATE(840)] = 21427, - [SMALL_STATE(841)] = 21440, - [SMALL_STATE(842)] = 21453, - [SMALL_STATE(843)] = 21466, - [SMALL_STATE(844)] = 21479, - [SMALL_STATE(845)] = 21492, - [SMALL_STATE(846)] = 21505, - [SMALL_STATE(847)] = 21518, - [SMALL_STATE(848)] = 21531, - [SMALL_STATE(849)] = 21547, - [SMALL_STATE(850)] = 21563, - [SMALL_STATE(851)] = 21579, - [SMALL_STATE(852)] = 21595, - [SMALL_STATE(853)] = 21615, - [SMALL_STATE(854)] = 21635, - [SMALL_STATE(855)] = 21655, - [SMALL_STATE(856)] = 21671, - [SMALL_STATE(857)] = 21689, - [SMALL_STATE(858)] = 21705, - [SMALL_STATE(859)] = 21721, - [SMALL_STATE(860)] = 21737, - [SMALL_STATE(861)] = 21753, - [SMALL_STATE(862)] = 21769, - [SMALL_STATE(863)] = 21785, - [SMALL_STATE(864)] = 21801, - [SMALL_STATE(865)] = 21817, - [SMALL_STATE(866)] = 21829, - [SMALL_STATE(867)] = 21845, - [SMALL_STATE(868)] = 21861, - [SMALL_STATE(869)] = 21877, - [SMALL_STATE(870)] = 21891, - [SMALL_STATE(871)] = 21907, - [SMALL_STATE(872)] = 21923, - [SMALL_STATE(873)] = 21939, - [SMALL_STATE(874)] = 21955, - [SMALL_STATE(875)] = 21971, - [SMALL_STATE(876)] = 21987, - [SMALL_STATE(877)] = 22003, - [SMALL_STATE(878)] = 22019, - [SMALL_STATE(879)] = 22031, - [SMALL_STATE(880)] = 22047, - [SMALL_STATE(881)] = 22063, - [SMALL_STATE(882)] = 22083, - [SMALL_STATE(883)] = 22103, - [SMALL_STATE(884)] = 22123, - [SMALL_STATE(885)] = 22139, - [SMALL_STATE(886)] = 22155, - [SMALL_STATE(887)] = 22171, - [SMALL_STATE(888)] = 22188, - [SMALL_STATE(889)] = 22203, - [SMALL_STATE(890)] = 22218, - [SMALL_STATE(891)] = 22229, - [SMALL_STATE(892)] = 22244, - [SMALL_STATE(893)] = 22261, - [SMALL_STATE(894)] = 22278, - [SMALL_STATE(895)] = 22289, - [SMALL_STATE(896)] = 22304, - [SMALL_STATE(897)] = 22321, - [SMALL_STATE(898)] = 22338, - [SMALL_STATE(899)] = 22353, - [SMALL_STATE(900)] = 22370, - [SMALL_STATE(901)] = 22387, - [SMALL_STATE(902)] = 22404, - [SMALL_STATE(903)] = 22421, - [SMALL_STATE(904)] = 22438, - [SMALL_STATE(905)] = 22455, - [SMALL_STATE(906)] = 22472, - [SMALL_STATE(907)] = 22489, - [SMALL_STATE(908)] = 22506, - [SMALL_STATE(909)] = 22523, - [SMALL_STATE(910)] = 22540, - [SMALL_STATE(911)] = 22557, - [SMALL_STATE(912)] = 22574, - [SMALL_STATE(913)] = 22591, - [SMALL_STATE(914)] = 22608, - [SMALL_STATE(915)] = 22623, - [SMALL_STATE(916)] = 22638, - [SMALL_STATE(917)] = 22651, - [SMALL_STATE(918)] = 22666, - [SMALL_STATE(919)] = 22679, - [SMALL_STATE(920)] = 22694, - [SMALL_STATE(921)] = 22705, - [SMALL_STATE(922)] = 22722, - [SMALL_STATE(923)] = 22739, - [SMALL_STATE(924)] = 22756, - [SMALL_STATE(925)] = 22771, - [SMALL_STATE(926)] = 22786, - [SMALL_STATE(927)] = 22801, - [SMALL_STATE(928)] = 22818, - [SMALL_STATE(929)] = 22835, - [SMALL_STATE(930)] = 22848, - [SMALL_STATE(931)] = 22863, - [SMALL_STATE(932)] = 22880, - [SMALL_STATE(933)] = 22897, - [SMALL_STATE(934)] = 22912, - [SMALL_STATE(935)] = 22929, - [SMALL_STATE(936)] = 22942, - [SMALL_STATE(937)] = 22957, - [SMALL_STATE(938)] = 22974, - [SMALL_STATE(939)] = 22989, - [SMALL_STATE(940)] = 23006, - [SMALL_STATE(941)] = 23023, - [SMALL_STATE(942)] = 23038, - [SMALL_STATE(943)] = 23055, - [SMALL_STATE(944)] = 23070, - [SMALL_STATE(945)] = 23081, - [SMALL_STATE(946)] = 23098, - [SMALL_STATE(947)] = 23109, - [SMALL_STATE(948)] = 23124, - [SMALL_STATE(949)] = 23139, - [SMALL_STATE(950)] = 23156, - [SMALL_STATE(951)] = 23171, - [SMALL_STATE(952)] = 23185, - [SMALL_STATE(953)] = 23199, - [SMALL_STATE(954)] = 23213, - [SMALL_STATE(955)] = 23227, - [SMALL_STATE(956)] = 23241, - [SMALL_STATE(957)] = 23255, - [SMALL_STATE(958)] = 23265, - [SMALL_STATE(959)] = 23279, - [SMALL_STATE(960)] = 23293, - [SMALL_STATE(961)] = 23307, - [SMALL_STATE(962)] = 23317, - [SMALL_STATE(963)] = 23331, - [SMALL_STATE(964)] = 23345, - [SMALL_STATE(965)] = 23359, - [SMALL_STATE(966)] = 23373, - [SMALL_STATE(967)] = 23387, - [SMALL_STATE(968)] = 23401, - [SMALL_STATE(969)] = 23415, - [SMALL_STATE(970)] = 23429, - [SMALL_STATE(971)] = 23443, - [SMALL_STATE(972)] = 23457, - [SMALL_STATE(973)] = 23471, - [SMALL_STATE(974)] = 23485, - [SMALL_STATE(975)] = 23499, - [SMALL_STATE(976)] = 23513, - [SMALL_STATE(977)] = 23527, - [SMALL_STATE(978)] = 23541, - [SMALL_STATE(979)] = 23555, - [SMALL_STATE(980)] = 23569, - [SMALL_STATE(981)] = 23583, - [SMALL_STATE(982)] = 23597, - [SMALL_STATE(983)] = 23611, - [SMALL_STATE(984)] = 23625, - [SMALL_STATE(985)] = 23635, - [SMALL_STATE(986)] = 23649, - [SMALL_STATE(987)] = 23659, - [SMALL_STATE(988)] = 23673, - [SMALL_STATE(989)] = 23687, - [SMALL_STATE(990)] = 23701, - [SMALL_STATE(991)] = 23715, - [SMALL_STATE(992)] = 23729, - [SMALL_STATE(993)] = 23743, - [SMALL_STATE(994)] = 23757, - [SMALL_STATE(995)] = 23771, - [SMALL_STATE(996)] = 23785, - [SMALL_STATE(997)] = 23799, - [SMALL_STATE(998)] = 23809, - [SMALL_STATE(999)] = 23823, - [SMALL_STATE(1000)] = 23837, - [SMALL_STATE(1001)] = 23851, - [SMALL_STATE(1002)] = 23865, - [SMALL_STATE(1003)] = 23879, - [SMALL_STATE(1004)] = 23893, - [SMALL_STATE(1005)] = 23907, - [SMALL_STATE(1006)] = 23919, - [SMALL_STATE(1007)] = 23931, - [SMALL_STATE(1008)] = 23945, - [SMALL_STATE(1009)] = 23959, - [SMALL_STATE(1010)] = 23973, - [SMALL_STATE(1011)] = 23987, - [SMALL_STATE(1012)] = 24001, - [SMALL_STATE(1013)] = 24015, - [SMALL_STATE(1014)] = 24029, - [SMALL_STATE(1015)] = 24043, - [SMALL_STATE(1016)] = 24055, - [SMALL_STATE(1017)] = 24067, - [SMALL_STATE(1018)] = 24081, - [SMALL_STATE(1019)] = 24095, - [SMALL_STATE(1020)] = 24109, - [SMALL_STATE(1021)] = 24123, - [SMALL_STATE(1022)] = 24137, - [SMALL_STATE(1023)] = 24151, - [SMALL_STATE(1024)] = 24165, - [SMALL_STATE(1025)] = 24179, - [SMALL_STATE(1026)] = 24193, - [SMALL_STATE(1027)] = 24207, - [SMALL_STATE(1028)] = 24221, - [SMALL_STATE(1029)] = 24235, - [SMALL_STATE(1030)] = 24249, - [SMALL_STATE(1031)] = 24263, - [SMALL_STATE(1032)] = 24277, - [SMALL_STATE(1033)] = 24291, - [SMALL_STATE(1034)] = 24305, - [SMALL_STATE(1035)] = 24319, - [SMALL_STATE(1036)] = 24333, - [SMALL_STATE(1037)] = 24347, - [SMALL_STATE(1038)] = 24361, - [SMALL_STATE(1039)] = 24375, - [SMALL_STATE(1040)] = 24389, - [SMALL_STATE(1041)] = 24399, - [SMALL_STATE(1042)] = 24413, - [SMALL_STATE(1043)] = 24423, - [SMALL_STATE(1044)] = 24433, - [SMALL_STATE(1045)] = 24447, - [SMALL_STATE(1046)] = 24461, - [SMALL_STATE(1047)] = 24475, - [SMALL_STATE(1048)] = 24489, - [SMALL_STATE(1049)] = 24503, - [SMALL_STATE(1050)] = 24517, - [SMALL_STATE(1051)] = 24531, - [SMALL_STATE(1052)] = 24545, - [SMALL_STATE(1053)] = 24555, - [SMALL_STATE(1054)] = 24569, - [SMALL_STATE(1055)] = 24579, - [SMALL_STATE(1056)] = 24593, - [SMALL_STATE(1057)] = 24607, - [SMALL_STATE(1058)] = 24621, - [SMALL_STATE(1059)] = 24635, - [SMALL_STATE(1060)] = 24649, - [SMALL_STATE(1061)] = 24663, - [SMALL_STATE(1062)] = 24677, - [SMALL_STATE(1063)] = 24687, - [SMALL_STATE(1064)] = 24696, - [SMALL_STATE(1065)] = 24707, - [SMALL_STATE(1066)] = 24716, - [SMALL_STATE(1067)] = 24727, - [SMALL_STATE(1068)] = 24738, - [SMALL_STATE(1069)] = 24749, - [SMALL_STATE(1070)] = 24760, - [SMALL_STATE(1071)] = 24769, - [SMALL_STATE(1072)] = 24780, - [SMALL_STATE(1073)] = 24791, - [SMALL_STATE(1074)] = 24800, - [SMALL_STATE(1075)] = 24809, - [SMALL_STATE(1076)] = 24820, - [SMALL_STATE(1077)] = 24829, - [SMALL_STATE(1078)] = 24840, - [SMALL_STATE(1079)] = 24851, - [SMALL_STATE(1080)] = 24862, - [SMALL_STATE(1081)] = 24873, - [SMALL_STATE(1082)] = 24882, - [SMALL_STATE(1083)] = 24893, - [SMALL_STATE(1084)] = 24904, - [SMALL_STATE(1085)] = 24913, - [SMALL_STATE(1086)] = 24924, - [SMALL_STATE(1087)] = 24933, - [SMALL_STATE(1088)] = 24942, - [SMALL_STATE(1089)] = 24951, - [SMALL_STATE(1090)] = 24962, - [SMALL_STATE(1091)] = 24973, - [SMALL_STATE(1092)] = 24984, - [SMALL_STATE(1093)] = 24995, - [SMALL_STATE(1094)] = 25004, - [SMALL_STATE(1095)] = 25013, - [SMALL_STATE(1096)] = 25024, - [SMALL_STATE(1097)] = 25035, - [SMALL_STATE(1098)] = 25046, - [SMALL_STATE(1099)] = 25057, - [SMALL_STATE(1100)] = 25068, - [SMALL_STATE(1101)] = 25079, - [SMALL_STATE(1102)] = 25090, - [SMALL_STATE(1103)] = 25101, - [SMALL_STATE(1104)] = 25112, - [SMALL_STATE(1105)] = 25123, - [SMALL_STATE(1106)] = 25132, - [SMALL_STATE(1107)] = 25143, - [SMALL_STATE(1108)] = 25154, - [SMALL_STATE(1109)] = 25165, - [SMALL_STATE(1110)] = 25174, - [SMALL_STATE(1111)] = 25183, - [SMALL_STATE(1112)] = 25192, - [SMALL_STATE(1113)] = 25203, - [SMALL_STATE(1114)] = 25214, - [SMALL_STATE(1115)] = 25225, - [SMALL_STATE(1116)] = 25236, - [SMALL_STATE(1117)] = 25247, - [SMALL_STATE(1118)] = 25258, - [SMALL_STATE(1119)] = 25267, - [SMALL_STATE(1120)] = 25278, - [SMALL_STATE(1121)] = 25289, - [SMALL_STATE(1122)] = 25300, - [SMALL_STATE(1123)] = 25311, - [SMALL_STATE(1124)] = 25322, - [SMALL_STATE(1125)] = 25333, - [SMALL_STATE(1126)] = 25344, - [SMALL_STATE(1127)] = 25355, - [SMALL_STATE(1128)] = 25364, - [SMALL_STATE(1129)] = 25375, - [SMALL_STATE(1130)] = 25386, - [SMALL_STATE(1131)] = 25397, - [SMALL_STATE(1132)] = 25408, - [SMALL_STATE(1133)] = 25419, - [SMALL_STATE(1134)] = 25428, - [SMALL_STATE(1135)] = 25439, - [SMALL_STATE(1136)] = 25450, - [SMALL_STATE(1137)] = 25461, - [SMALL_STATE(1138)] = 25472, - [SMALL_STATE(1139)] = 25483, - [SMALL_STATE(1140)] = 25494, - [SMALL_STATE(1141)] = 25505, - [SMALL_STATE(1142)] = 25516, - [SMALL_STATE(1143)] = 25527, - [SMALL_STATE(1144)] = 25538, - [SMALL_STATE(1145)] = 25549, - [SMALL_STATE(1146)] = 25560, - [SMALL_STATE(1147)] = 25571, - [SMALL_STATE(1148)] = 25582, - [SMALL_STATE(1149)] = 25591, - [SMALL_STATE(1150)] = 25602, - [SMALL_STATE(1151)] = 25613, - [SMALL_STATE(1152)] = 25622, - [SMALL_STATE(1153)] = 25631, - [SMALL_STATE(1154)] = 25642, - [SMALL_STATE(1155)] = 25653, - [SMALL_STATE(1156)] = 25664, - [SMALL_STATE(1157)] = 25675, - [SMALL_STATE(1158)] = 25684, - [SMALL_STATE(1159)] = 25693, - [SMALL_STATE(1160)] = 25704, - [SMALL_STATE(1161)] = 25715, - [SMALL_STATE(1162)] = 25726, - [SMALL_STATE(1163)] = 25737, - [SMALL_STATE(1164)] = 25746, - [SMALL_STATE(1165)] = 25757, - [SMALL_STATE(1166)] = 25768, - [SMALL_STATE(1167)] = 25779, - [SMALL_STATE(1168)] = 25790, - [SMALL_STATE(1169)] = 25799, - [SMALL_STATE(1170)] = 25808, - [SMALL_STATE(1171)] = 25819, - [SMALL_STATE(1172)] = 25830, - [SMALL_STATE(1173)] = 25841, - [SMALL_STATE(1174)] = 25852, - [SMALL_STATE(1175)] = 25863, - [SMALL_STATE(1176)] = 25872, - [SMALL_STATE(1177)] = 25881, - [SMALL_STATE(1178)] = 25892, - [SMALL_STATE(1179)] = 25903, - [SMALL_STATE(1180)] = 25912, - [SMALL_STATE(1181)] = 25920, - [SMALL_STATE(1182)] = 25928, - [SMALL_STATE(1183)] = 25936, - [SMALL_STATE(1184)] = 25944, - [SMALL_STATE(1185)] = 25952, - [SMALL_STATE(1186)] = 25960, - [SMALL_STATE(1187)] = 25968, - [SMALL_STATE(1188)] = 25976, - [SMALL_STATE(1189)] = 25984, - [SMALL_STATE(1190)] = 25992, - [SMALL_STATE(1191)] = 26000, - [SMALL_STATE(1192)] = 26008, - [SMALL_STATE(1193)] = 26016, - [SMALL_STATE(1194)] = 26024, - [SMALL_STATE(1195)] = 26032, - [SMALL_STATE(1196)] = 26040, - [SMALL_STATE(1197)] = 26048, - [SMALL_STATE(1198)] = 26056, - [SMALL_STATE(1199)] = 26064, - [SMALL_STATE(1200)] = 26072, - [SMALL_STATE(1201)] = 26080, - [SMALL_STATE(1202)] = 26088, - [SMALL_STATE(1203)] = 26096, - [SMALL_STATE(1204)] = 26104, - [SMALL_STATE(1205)] = 26112, - [SMALL_STATE(1206)] = 26120, - [SMALL_STATE(1207)] = 26128, - [SMALL_STATE(1208)] = 26136, - [SMALL_STATE(1209)] = 26144, - [SMALL_STATE(1210)] = 26152, - [SMALL_STATE(1211)] = 26160, - [SMALL_STATE(1212)] = 26168, - [SMALL_STATE(1213)] = 26176, - [SMALL_STATE(1214)] = 26184, - [SMALL_STATE(1215)] = 26192, - [SMALL_STATE(1216)] = 26200, - [SMALL_STATE(1217)] = 26208, - [SMALL_STATE(1218)] = 26216, - [SMALL_STATE(1219)] = 26224, - [SMALL_STATE(1220)] = 26232, - [SMALL_STATE(1221)] = 26240, - [SMALL_STATE(1222)] = 26248, - [SMALL_STATE(1223)] = 26256, - [SMALL_STATE(1224)] = 26264, - [SMALL_STATE(1225)] = 26272, - [SMALL_STATE(1226)] = 26280, - [SMALL_STATE(1227)] = 26288, - [SMALL_STATE(1228)] = 26296, - [SMALL_STATE(1229)] = 26304, - [SMALL_STATE(1230)] = 26312, - [SMALL_STATE(1231)] = 26320, - [SMALL_STATE(1232)] = 26328, - [SMALL_STATE(1233)] = 26336, - [SMALL_STATE(1234)] = 26344, - [SMALL_STATE(1235)] = 26352, - [SMALL_STATE(1236)] = 26360, - [SMALL_STATE(1237)] = 26368, - [SMALL_STATE(1238)] = 26376, - [SMALL_STATE(1239)] = 26384, - [SMALL_STATE(1240)] = 26392, - [SMALL_STATE(1241)] = 26400, - [SMALL_STATE(1242)] = 26408, - [SMALL_STATE(1243)] = 26416, - [SMALL_STATE(1244)] = 26424, - [SMALL_STATE(1245)] = 26432, - [SMALL_STATE(1246)] = 26440, - [SMALL_STATE(1247)] = 26448, - [SMALL_STATE(1248)] = 26456, - [SMALL_STATE(1249)] = 26464, - [SMALL_STATE(1250)] = 26472, - [SMALL_STATE(1251)] = 26480, - [SMALL_STATE(1252)] = 26488, - [SMALL_STATE(1253)] = 26496, - [SMALL_STATE(1254)] = 26504, - [SMALL_STATE(1255)] = 26512, - [SMALL_STATE(1256)] = 26520, - [SMALL_STATE(1257)] = 26528, - [SMALL_STATE(1258)] = 26536, - [SMALL_STATE(1259)] = 26544, - [SMALL_STATE(1260)] = 26552, - [SMALL_STATE(1261)] = 26560, - [SMALL_STATE(1262)] = 26568, - [SMALL_STATE(1263)] = 26576, - [SMALL_STATE(1264)] = 26584, - [SMALL_STATE(1265)] = 26592, - [SMALL_STATE(1266)] = 26600, + [SMALL_STATE(759)] = 20026, + [SMALL_STATE(760)] = 20054, + [SMALL_STATE(761)] = 20084, + [SMALL_STATE(762)] = 20113, + [SMALL_STATE(763)] = 20140, + [SMALL_STATE(764)] = 20171, + [SMALL_STATE(765)] = 20202, + [SMALL_STATE(766)] = 20229, + [SMALL_STATE(767)] = 20258, + [SMALL_STATE(768)] = 20293, + [SMALL_STATE(769)] = 20328, + [SMALL_STATE(770)] = 20358, + [SMALL_STATE(771)] = 20374, + [SMALL_STATE(772)] = 20400, + [SMALL_STATE(773)] = 20428, + [SMALL_STATE(774)] = 20457, + [SMALL_STATE(775)] = 20482, + [SMALL_STATE(776)] = 20511, + [SMALL_STATE(777)] = 20540, + [SMALL_STATE(778)] = 20569, + [SMALL_STATE(779)] = 20590, + [SMALL_STATE(780)] = 20610, + [SMALL_STATE(781)] = 20624, + [SMALL_STATE(782)] = 20648, + [SMALL_STATE(783)] = 20670, + [SMALL_STATE(784)] = 20684, + [SMALL_STATE(785)] = 20706, + [SMALL_STATE(786)] = 20720, + [SMALL_STATE(787)] = 20734, + [SMALL_STATE(788)] = 20754, + [SMALL_STATE(789)] = 20778, + [SMALL_STATE(790)] = 20800, + [SMALL_STATE(791)] = 20817, + [SMALL_STATE(792)] = 20834, + [SMALL_STATE(793)] = 20847, + [SMALL_STATE(794)] = 20860, + [SMALL_STATE(795)] = 20873, + [SMALL_STATE(796)] = 20890, + [SMALL_STATE(797)] = 20903, + [SMALL_STATE(798)] = 20916, + [SMALL_STATE(799)] = 20929, + [SMALL_STATE(800)] = 20942, + [SMALL_STATE(801)] = 20955, + [SMALL_STATE(802)] = 20968, + [SMALL_STATE(803)] = 20985, + [SMALL_STATE(804)] = 20998, + [SMALL_STATE(805)] = 21011, + [SMALL_STATE(806)] = 21030, + [SMALL_STATE(807)] = 21049, + [SMALL_STATE(808)] = 21068, + [SMALL_STATE(809)] = 21081, + [SMALL_STATE(810)] = 21098, + [SMALL_STATE(811)] = 21111, + [SMALL_STATE(812)] = 21128, + [SMALL_STATE(813)] = 21141, + [SMALL_STATE(814)] = 21164, + [SMALL_STATE(815)] = 21177, + [SMALL_STATE(816)] = 21196, + [SMALL_STATE(817)] = 21209, + [SMALL_STATE(818)] = 21222, + [SMALL_STATE(819)] = 21239, + [SMALL_STATE(820)] = 21252, + [SMALL_STATE(821)] = 21275, + [SMALL_STATE(822)] = 21288, + [SMALL_STATE(823)] = 21305, + [SMALL_STATE(824)] = 21318, + [SMALL_STATE(825)] = 21335, + [SMALL_STATE(826)] = 21348, + [SMALL_STATE(827)] = 21365, + [SMALL_STATE(828)] = 21378, + [SMALL_STATE(829)] = 21391, + [SMALL_STATE(830)] = 21404, + [SMALL_STATE(831)] = 21417, + [SMALL_STATE(832)] = 21430, + [SMALL_STATE(833)] = 21443, + [SMALL_STATE(834)] = 21460, + [SMALL_STATE(835)] = 21473, + [SMALL_STATE(836)] = 21486, + [SMALL_STATE(837)] = 21499, + [SMALL_STATE(838)] = 21512, + [SMALL_STATE(839)] = 21525, + [SMALL_STATE(840)] = 21538, + [SMALL_STATE(841)] = 21551, + [SMALL_STATE(842)] = 21564, + [SMALL_STATE(843)] = 21577, + [SMALL_STATE(844)] = 21590, + [SMALL_STATE(845)] = 21603, + [SMALL_STATE(846)] = 21626, + [SMALL_STATE(847)] = 21643, + [SMALL_STATE(848)] = 21666, + [SMALL_STATE(849)] = 21679, + [SMALL_STATE(850)] = 21696, + [SMALL_STATE(851)] = 21713, + [SMALL_STATE(852)] = 21730, + [SMALL_STATE(853)] = 21747, + [SMALL_STATE(854)] = 21760, + [SMALL_STATE(855)] = 21781, + [SMALL_STATE(856)] = 21802, + [SMALL_STATE(857)] = 21819, + [SMALL_STATE(858)] = 21842, + [SMALL_STATE(859)] = 21865, + [SMALL_STATE(860)] = 21881, + [SMALL_STATE(861)] = 21897, + [SMALL_STATE(862)] = 21913, + [SMALL_STATE(863)] = 21929, + [SMALL_STATE(864)] = 21945, + [SMALL_STATE(865)] = 21961, + [SMALL_STATE(866)] = 21981, + [SMALL_STATE(867)] = 21997, + [SMALL_STATE(868)] = 22013, + [SMALL_STATE(869)] = 22033, + [SMALL_STATE(870)] = 22049, + [SMALL_STATE(871)] = 22065, + [SMALL_STATE(872)] = 22085, + [SMALL_STATE(873)] = 22105, + [SMALL_STATE(874)] = 22121, + [SMALL_STATE(875)] = 22137, + [SMALL_STATE(876)] = 22151, + [SMALL_STATE(877)] = 22167, + [SMALL_STATE(878)] = 22179, + [SMALL_STATE(879)] = 22195, + [SMALL_STATE(880)] = 22211, + [SMALL_STATE(881)] = 22227, + [SMALL_STATE(882)] = 22239, + [SMALL_STATE(883)] = 22255, + [SMALL_STATE(884)] = 22275, + [SMALL_STATE(885)] = 22291, + [SMALL_STATE(886)] = 22307, + [SMALL_STATE(887)] = 22323, + [SMALL_STATE(888)] = 22339, + [SMALL_STATE(889)] = 22355, + [SMALL_STATE(890)] = 22371, + [SMALL_STATE(891)] = 22389, + [SMALL_STATE(892)] = 22405, + [SMALL_STATE(893)] = 22421, + [SMALL_STATE(894)] = 22437, + [SMALL_STATE(895)] = 22453, + [SMALL_STATE(896)] = 22469, + [SMALL_STATE(897)] = 22485, + [SMALL_STATE(898)] = 22505, + [SMALL_STATE(899)] = 22522, + [SMALL_STATE(900)] = 22533, + [SMALL_STATE(901)] = 22548, + [SMALL_STATE(902)] = 22565, + [SMALL_STATE(903)] = 22580, + [SMALL_STATE(904)] = 22595, + [SMALL_STATE(905)] = 22606, + [SMALL_STATE(906)] = 22621, + [SMALL_STATE(907)] = 22638, + [SMALL_STATE(908)] = 22655, + [SMALL_STATE(909)] = 22668, + [SMALL_STATE(910)] = 22685, + [SMALL_STATE(911)] = 22702, + [SMALL_STATE(912)] = 22713, + [SMALL_STATE(913)] = 22728, + [SMALL_STATE(914)] = 22743, + [SMALL_STATE(915)] = 22760, + [SMALL_STATE(916)] = 22777, + [SMALL_STATE(917)] = 22794, + [SMALL_STATE(918)] = 22811, + [SMALL_STATE(919)] = 22828, + [SMALL_STATE(920)] = 22845, + [SMALL_STATE(921)] = 22862, + [SMALL_STATE(922)] = 22879, + [SMALL_STATE(923)] = 22896, + [SMALL_STATE(924)] = 22913, + [SMALL_STATE(925)] = 22930, + [SMALL_STATE(926)] = 22947, + [SMALL_STATE(927)] = 22962, + [SMALL_STATE(928)] = 22979, + [SMALL_STATE(929)] = 22994, + [SMALL_STATE(930)] = 23009, + [SMALL_STATE(931)] = 23026, + [SMALL_STATE(932)] = 23043, + [SMALL_STATE(933)] = 23060, + [SMALL_STATE(934)] = 23075, + [SMALL_STATE(935)] = 23092, + [SMALL_STATE(936)] = 23109, + [SMALL_STATE(937)] = 23126, + [SMALL_STATE(938)] = 23143, + [SMALL_STATE(939)] = 23158, + [SMALL_STATE(940)] = 23175, + [SMALL_STATE(941)] = 23192, + [SMALL_STATE(942)] = 23205, + [SMALL_STATE(943)] = 23218, + [SMALL_STATE(944)] = 23233, + [SMALL_STATE(945)] = 23250, + [SMALL_STATE(946)] = 23265, + [SMALL_STATE(947)] = 23282, + [SMALL_STATE(948)] = 23297, + [SMALL_STATE(949)] = 23314, + [SMALL_STATE(950)] = 23327, + [SMALL_STATE(951)] = 23342, + [SMALL_STATE(952)] = 23359, + [SMALL_STATE(953)] = 23370, + [SMALL_STATE(954)] = 23385, + [SMALL_STATE(955)] = 23402, + [SMALL_STATE(956)] = 23419, + [SMALL_STATE(957)] = 23434, + [SMALL_STATE(958)] = 23451, + [SMALL_STATE(959)] = 23468, + [SMALL_STATE(960)] = 23479, + [SMALL_STATE(961)] = 23494, + [SMALL_STATE(962)] = 23511, + [SMALL_STATE(963)] = 23526, + [SMALL_STATE(964)] = 23541, + [SMALL_STATE(965)] = 23556, + [SMALL_STATE(966)] = 23573, + [SMALL_STATE(967)] = 23587, + [SMALL_STATE(968)] = 23601, + [SMALL_STATE(969)] = 23615, + [SMALL_STATE(970)] = 23629, + [SMALL_STATE(971)] = 23643, + [SMALL_STATE(972)] = 23657, + [SMALL_STATE(973)] = 23671, + [SMALL_STATE(974)] = 23685, + [SMALL_STATE(975)] = 23699, + [SMALL_STATE(976)] = 23713, + [SMALL_STATE(977)] = 23727, + [SMALL_STATE(978)] = 23741, + [SMALL_STATE(979)] = 23755, + [SMALL_STATE(980)] = 23769, + [SMALL_STATE(981)] = 23783, + [SMALL_STATE(982)] = 23797, + [SMALL_STATE(983)] = 23811, + [SMALL_STATE(984)] = 23825, + [SMALL_STATE(985)] = 23839, + [SMALL_STATE(986)] = 23853, + [SMALL_STATE(987)] = 23867, + [SMALL_STATE(988)] = 23881, + [SMALL_STATE(989)] = 23895, + [SMALL_STATE(990)] = 23909, + [SMALL_STATE(991)] = 23923, + [SMALL_STATE(992)] = 23937, + [SMALL_STATE(993)] = 23951, + [SMALL_STATE(994)] = 23965, + [SMALL_STATE(995)] = 23979, + [SMALL_STATE(996)] = 23993, + [SMALL_STATE(997)] = 24003, + [SMALL_STATE(998)] = 24017, + [SMALL_STATE(999)] = 24031, + [SMALL_STATE(1000)] = 24045, + [SMALL_STATE(1001)] = 24055, + [SMALL_STATE(1002)] = 24065, + [SMALL_STATE(1003)] = 24079, + [SMALL_STATE(1004)] = 24093, + [SMALL_STATE(1005)] = 24107, + [SMALL_STATE(1006)] = 24121, + [SMALL_STATE(1007)] = 24135, + [SMALL_STATE(1008)] = 24145, + [SMALL_STATE(1009)] = 24159, + [SMALL_STATE(1010)] = 24173, + [SMALL_STATE(1011)] = 24187, + [SMALL_STATE(1012)] = 24201, + [SMALL_STATE(1013)] = 24215, + [SMALL_STATE(1014)] = 24229, + [SMALL_STATE(1015)] = 24243, + [SMALL_STATE(1016)] = 24257, + [SMALL_STATE(1017)] = 24271, + [SMALL_STATE(1018)] = 24285, + [SMALL_STATE(1019)] = 24299, + [SMALL_STATE(1020)] = 24311, + [SMALL_STATE(1021)] = 24323, + [SMALL_STATE(1022)] = 24333, + [SMALL_STATE(1023)] = 24347, + [SMALL_STATE(1024)] = 24361, + [SMALL_STATE(1025)] = 24375, + [SMALL_STATE(1026)] = 24389, + [SMALL_STATE(1027)] = 24403, + [SMALL_STATE(1028)] = 24417, + [SMALL_STATE(1029)] = 24431, + [SMALL_STATE(1030)] = 24445, + [SMALL_STATE(1031)] = 24457, + [SMALL_STATE(1032)] = 24469, + [SMALL_STATE(1033)] = 24483, + [SMALL_STATE(1034)] = 24497, + [SMALL_STATE(1035)] = 24511, + [SMALL_STATE(1036)] = 24525, + [SMALL_STATE(1037)] = 24539, + [SMALL_STATE(1038)] = 24553, + [SMALL_STATE(1039)] = 24567, + [SMALL_STATE(1040)] = 24581, + [SMALL_STATE(1041)] = 24595, + [SMALL_STATE(1042)] = 24609, + [SMALL_STATE(1043)] = 24623, + [SMALL_STATE(1044)] = 24637, + [SMALL_STATE(1045)] = 24647, + [SMALL_STATE(1046)] = 24661, + [SMALL_STATE(1047)] = 24675, + [SMALL_STATE(1048)] = 24689, + [SMALL_STATE(1049)] = 24703, + [SMALL_STATE(1050)] = 24717, + [SMALL_STATE(1051)] = 24731, + [SMALL_STATE(1052)] = 24741, + [SMALL_STATE(1053)] = 24755, + [SMALL_STATE(1054)] = 24769, + [SMALL_STATE(1055)] = 24783, + [SMALL_STATE(1056)] = 24793, + [SMALL_STATE(1057)] = 24803, + [SMALL_STATE(1058)] = 24813, + [SMALL_STATE(1059)] = 24827, + [SMALL_STATE(1060)] = 24837, + [SMALL_STATE(1061)] = 24851, + [SMALL_STATE(1062)] = 24865, + [SMALL_STATE(1063)] = 24879, + [SMALL_STATE(1064)] = 24893, + [SMALL_STATE(1065)] = 24907, + [SMALL_STATE(1066)] = 24921, + [SMALL_STATE(1067)] = 24935, + [SMALL_STATE(1068)] = 24949, + [SMALL_STATE(1069)] = 24963, + [SMALL_STATE(1070)] = 24977, + [SMALL_STATE(1071)] = 24991, + [SMALL_STATE(1072)] = 25005, + [SMALL_STATE(1073)] = 25019, + [SMALL_STATE(1074)] = 25033, + [SMALL_STATE(1075)] = 25047, + [SMALL_STATE(1076)] = 25061, + [SMALL_STATE(1077)] = 25075, + [SMALL_STATE(1078)] = 25089, + [SMALL_STATE(1079)] = 25100, + [SMALL_STATE(1080)] = 25111, + [SMALL_STATE(1081)] = 25120, + [SMALL_STATE(1082)] = 25129, + [SMALL_STATE(1083)] = 25138, + [SMALL_STATE(1084)] = 25147, + [SMALL_STATE(1085)] = 25158, + [SMALL_STATE(1086)] = 25169, + [SMALL_STATE(1087)] = 25180, + [SMALL_STATE(1088)] = 25191, + [SMALL_STATE(1089)] = 25200, + [SMALL_STATE(1090)] = 25211, + [SMALL_STATE(1091)] = 25222, + [SMALL_STATE(1092)] = 25231, + [SMALL_STATE(1093)] = 25242, + [SMALL_STATE(1094)] = 25253, + [SMALL_STATE(1095)] = 25262, + [SMALL_STATE(1096)] = 25273, + [SMALL_STATE(1097)] = 25282, + [SMALL_STATE(1098)] = 25293, + [SMALL_STATE(1099)] = 25302, + [SMALL_STATE(1100)] = 25313, + [SMALL_STATE(1101)] = 25322, + [SMALL_STATE(1102)] = 25333, + [SMALL_STATE(1103)] = 25344, + [SMALL_STATE(1104)] = 25355, + [SMALL_STATE(1105)] = 25364, + [SMALL_STATE(1106)] = 25375, + [SMALL_STATE(1107)] = 25386, + [SMALL_STATE(1108)] = 25395, + [SMALL_STATE(1109)] = 25406, + [SMALL_STATE(1110)] = 25417, + [SMALL_STATE(1111)] = 25426, + [SMALL_STATE(1112)] = 25435, + [SMALL_STATE(1113)] = 25446, + [SMALL_STATE(1114)] = 25457, + [SMALL_STATE(1115)] = 25466, + [SMALL_STATE(1116)] = 25477, + [SMALL_STATE(1117)] = 25488, + [SMALL_STATE(1118)] = 25497, + [SMALL_STATE(1119)] = 25506, + [SMALL_STATE(1120)] = 25517, + [SMALL_STATE(1121)] = 25528, + [SMALL_STATE(1122)] = 25539, + [SMALL_STATE(1123)] = 25550, + [SMALL_STATE(1124)] = 25561, + [SMALL_STATE(1125)] = 25572, + [SMALL_STATE(1126)] = 25583, + [SMALL_STATE(1127)] = 25594, + [SMALL_STATE(1128)] = 25605, + [SMALL_STATE(1129)] = 25616, + [SMALL_STATE(1130)] = 25627, + [SMALL_STATE(1131)] = 25638, + [SMALL_STATE(1132)] = 25649, + [SMALL_STATE(1133)] = 25660, + [SMALL_STATE(1134)] = 25669, + [SMALL_STATE(1135)] = 25680, + [SMALL_STATE(1136)] = 25691, + [SMALL_STATE(1137)] = 25700, + [SMALL_STATE(1138)] = 25711, + [SMALL_STATE(1139)] = 25722, + [SMALL_STATE(1140)] = 25733, + [SMALL_STATE(1141)] = 25744, + [SMALL_STATE(1142)] = 25755, + [SMALL_STATE(1143)] = 25766, + [SMALL_STATE(1144)] = 25777, + [SMALL_STATE(1145)] = 25788, + [SMALL_STATE(1146)] = 25799, + [SMALL_STATE(1147)] = 25810, + [SMALL_STATE(1148)] = 25821, + [SMALL_STATE(1149)] = 25832, + [SMALL_STATE(1150)] = 25843, + [SMALL_STATE(1151)] = 25854, + [SMALL_STATE(1152)] = 25863, + [SMALL_STATE(1153)] = 25874, + [SMALL_STATE(1154)] = 25883, + [SMALL_STATE(1155)] = 25894, + [SMALL_STATE(1156)] = 25903, + [SMALL_STATE(1157)] = 25914, + [SMALL_STATE(1158)] = 25925, + [SMALL_STATE(1159)] = 25936, + [SMALL_STATE(1160)] = 25947, + [SMALL_STATE(1161)] = 25958, + [SMALL_STATE(1162)] = 25969, + [SMALL_STATE(1163)] = 25980, + [SMALL_STATE(1164)] = 25991, + [SMALL_STATE(1165)] = 26002, + [SMALL_STATE(1166)] = 26013, + [SMALL_STATE(1167)] = 26022, + [SMALL_STATE(1168)] = 26033, + [SMALL_STATE(1169)] = 26044, + [SMALL_STATE(1170)] = 26055, + [SMALL_STATE(1171)] = 26064, + [SMALL_STATE(1172)] = 26075, + [SMALL_STATE(1173)] = 26084, + [SMALL_STATE(1174)] = 26095, + [SMALL_STATE(1175)] = 26106, + [SMALL_STATE(1176)] = 26117, + [SMALL_STATE(1177)] = 26128, + [SMALL_STATE(1178)] = 26139, + [SMALL_STATE(1179)] = 26148, + [SMALL_STATE(1180)] = 26159, + [SMALL_STATE(1181)] = 26170, + [SMALL_STATE(1182)] = 26181, + [SMALL_STATE(1183)] = 26192, + [SMALL_STATE(1184)] = 26203, + [SMALL_STATE(1185)] = 26214, + [SMALL_STATE(1186)] = 26223, + [SMALL_STATE(1187)] = 26234, + [SMALL_STATE(1188)] = 26243, + [SMALL_STATE(1189)] = 26254, + [SMALL_STATE(1190)] = 26265, + [SMALL_STATE(1191)] = 26274, + [SMALL_STATE(1192)] = 26283, + [SMALL_STATE(1193)] = 26294, + [SMALL_STATE(1194)] = 26303, + [SMALL_STATE(1195)] = 26314, + [SMALL_STATE(1196)] = 26322, + [SMALL_STATE(1197)] = 26330, + [SMALL_STATE(1198)] = 26338, + [SMALL_STATE(1199)] = 26346, + [SMALL_STATE(1200)] = 26354, + [SMALL_STATE(1201)] = 26362, + [SMALL_STATE(1202)] = 26370, + [SMALL_STATE(1203)] = 26378, + [SMALL_STATE(1204)] = 26386, + [SMALL_STATE(1205)] = 26394, + [SMALL_STATE(1206)] = 26402, + [SMALL_STATE(1207)] = 26410, + [SMALL_STATE(1208)] = 26418, + [SMALL_STATE(1209)] = 26426, + [SMALL_STATE(1210)] = 26434, + [SMALL_STATE(1211)] = 26442, + [SMALL_STATE(1212)] = 26450, + [SMALL_STATE(1213)] = 26458, + [SMALL_STATE(1214)] = 26466, + [SMALL_STATE(1215)] = 26474, + [SMALL_STATE(1216)] = 26482, + [SMALL_STATE(1217)] = 26490, + [SMALL_STATE(1218)] = 26498, + [SMALL_STATE(1219)] = 26506, + [SMALL_STATE(1220)] = 26514, + [SMALL_STATE(1221)] = 26522, + [SMALL_STATE(1222)] = 26530, + [SMALL_STATE(1223)] = 26538, + [SMALL_STATE(1224)] = 26546, + [SMALL_STATE(1225)] = 26554, + [SMALL_STATE(1226)] = 26562, + [SMALL_STATE(1227)] = 26570, + [SMALL_STATE(1228)] = 26578, + [SMALL_STATE(1229)] = 26586, + [SMALL_STATE(1230)] = 26594, + [SMALL_STATE(1231)] = 26602, + [SMALL_STATE(1232)] = 26610, + [SMALL_STATE(1233)] = 26618, + [SMALL_STATE(1234)] = 26626, + [SMALL_STATE(1235)] = 26634, + [SMALL_STATE(1236)] = 26642, + [SMALL_STATE(1237)] = 26650, + [SMALL_STATE(1238)] = 26658, + [SMALL_STATE(1239)] = 26666, + [SMALL_STATE(1240)] = 26674, + [SMALL_STATE(1241)] = 26682, + [SMALL_STATE(1242)] = 26690, + [SMALL_STATE(1243)] = 26698, + [SMALL_STATE(1244)] = 26706, + [SMALL_STATE(1245)] = 26714, + [SMALL_STATE(1246)] = 26722, + [SMALL_STATE(1247)] = 26730, + [SMALL_STATE(1248)] = 26738, + [SMALL_STATE(1249)] = 26746, + [SMALL_STATE(1250)] = 26754, + [SMALL_STATE(1251)] = 26762, + [SMALL_STATE(1252)] = 26770, + [SMALL_STATE(1253)] = 26778, + [SMALL_STATE(1254)] = 26786, + [SMALL_STATE(1255)] = 26794, + [SMALL_STATE(1256)] = 26802, + [SMALL_STATE(1257)] = 26810, + [SMALL_STATE(1258)] = 26818, + [SMALL_STATE(1259)] = 26826, + [SMALL_STATE(1260)] = 26834, + [SMALL_STATE(1261)] = 26842, + [SMALL_STATE(1262)] = 26850, + [SMALL_STATE(1263)] = 26858, + [SMALL_STATE(1264)] = 26866, + [SMALL_STATE(1265)] = 26874, + [SMALL_STATE(1266)] = 26882, + [SMALL_STATE(1267)] = 26890, + [SMALL_STATE(1268)] = 26898, + [SMALL_STATE(1269)] = 26906, + [SMALL_STATE(1270)] = 26914, + [SMALL_STATE(1271)] = 26922, + [SMALL_STATE(1272)] = 26930, + [SMALL_STATE(1273)] = 26938, + [SMALL_STATE(1274)] = 26946, + [SMALL_STATE(1275)] = 26954, + [SMALL_STATE(1276)] = 26962, + [SMALL_STATE(1277)] = 26970, + [SMALL_STATE(1278)] = 26978, + [SMALL_STATE(1279)] = 26986, + [SMALL_STATE(1280)] = 26994, + [SMALL_STATE(1281)] = 27002, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -63515,1511 +62968,1534 @@ 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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), - [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), + [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(360), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(459), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(459), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(85), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(310), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(310), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(341), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(650), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1198), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1068), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(424), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(179), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(291), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1071), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1072), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1083), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(255), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(301), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(489), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(308), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(892), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1089), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1256), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(863), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(382), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(369), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(866), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(776), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1252), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(424), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(381), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1251), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1250), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(661), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(663), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(672), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(473), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1092), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(364), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(489), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(489), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(84), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(423), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(662), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1272), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1086), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(204), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(340), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1093), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1095), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(262), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(312), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(496), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(327), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(940), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1113), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1245), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(859), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(385), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(371), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(888), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(807), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1236), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(423), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1235), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1227), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(675), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(672), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(685), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(461), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1180), [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 21), - [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 21), - [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 23), [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 23), [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1221), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 157), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 157), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 125), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 125), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 172), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 172), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 123), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 123), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 20), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 20), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 175), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 175), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 150), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 150), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 124), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 124), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 155), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 155), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 126), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 126), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 148), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 148), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 171), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 171), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 144), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 144), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 142), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 142), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 100), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 100), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 139), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 109), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 109), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 111), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 111), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 112), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 112), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 111), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 111), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 113), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 113), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 194), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 194), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 64), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 64), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 129), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 129), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 23), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 23), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 162), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 162), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 94), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 94), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(320), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1065), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 95), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 95), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 229), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 229), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 164), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 164), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 224), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 224), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 163), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 163), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 223), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 223), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 222), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 222), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 202), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 202), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 201), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 201), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 200), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 200), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 130), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 130), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 115), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 115), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 114), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 114), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 199), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 199), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 198), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 198), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 197), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 197), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 159), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 159), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 196), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 196), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 183), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 183), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 21), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 21), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 182), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 182), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 14), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 14), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 72), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 72), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 14), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 14), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 14), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 14), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 20), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 20), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 30), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 30), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 25), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 25), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 181), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 181), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 180), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 180), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 179), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 179), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 177), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 177), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 178), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 178), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1280), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 163), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 163), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, .production_id = 181), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, .production_id = 181), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 101), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 101), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 102), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 102), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 113), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 113), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 114), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 114), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 116), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 116), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 127), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 127), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 129), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 129), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 130), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 130), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 143), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 143), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 148), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 148), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 150), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 150), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 153), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 153), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 154), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 154), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 201), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 201), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 179), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 179), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 209), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 209), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 133), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 133), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 207), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 207), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 206), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 206), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 205), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 205), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 204), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 204), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 203), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 203), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 188), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 188), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 134), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 134), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 187), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 187), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 186), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 186), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 119), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 119), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 185), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 185), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 118), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 118), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 170), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 170), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(330), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1114), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 96), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 96), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 168), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 168), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 97), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 97), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 229), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 229), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 230), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 230), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 231), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 231), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 236), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 236), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 221), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 221), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 176), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 176), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 195), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 195), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 228), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 228), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(741), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(774), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1198), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(424), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(354), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(863), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(470), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1252), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(424), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1262), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1251), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1250), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(661), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(663), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(672), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(571), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1120] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(777), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(658), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(774), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1198), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(424), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(358), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(863), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1252), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(424), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1251), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1250), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(661), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(663), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(672), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1180] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1181), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1186] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(777), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(658), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1198), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(424), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(863), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1252), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(424), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1251), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1250), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(661), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(663), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(672), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 104), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 104), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 103), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 103), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 71), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 71), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(178), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1182), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(180), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1213), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(880), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(339), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(880), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(539), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(539), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 76), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 76), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(423), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(863), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(423), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 84), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 84), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 116), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 117), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 117), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 27), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 27), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 87), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 87), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 118), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 118), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 86), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 86), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 151), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 151), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 72), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 72), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 121), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 121), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 141), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 141), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 140), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 140), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 78), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 105), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 105), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 106), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 106), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 169), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 169), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 67), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 67), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 170), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 170), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 72), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 72), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 227), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 227), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 220), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 220), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 217), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 217), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 230), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 230), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 226), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 226), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 77), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 77), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 193), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 193), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 225), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 225), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 219), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 219), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 107), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(527), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(880), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(527), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1191), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 75), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 160), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 156), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 96), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 127), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(886), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(780), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(761), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(860), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(859), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(857), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(850), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 122), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 83), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 134), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 134), SHIFT_REPEAT(820), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(320), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1065), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 167), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 166), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(880), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 132), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 133), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(302), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1065), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 135), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 136), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 135), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 185), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 136), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 186), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 137), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 187), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 188), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 185), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 186), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(692), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 187), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 188), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 189), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 190), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 191), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 192), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 98), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 205), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 207), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 208), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 216), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 215), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 214), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 212), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 209), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 208), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 207), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 205), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 209), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 27), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(636), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 152), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 120), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 85), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 82), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(300), - [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(628), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(641), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(334), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(395), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), SHIFT_REPEAT(815), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(144), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 97), SHIFT_REPEAT(338), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 97), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 161), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 161), SHIFT_REPEAT(335), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 154), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 153), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(349), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 168), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(771), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 203), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 204), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 206), SHIFT_REPEAT(874), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 206), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(248), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 210), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 211), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 213), SHIFT_REPEAT(864), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 213), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1099), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 99), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 138), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 20), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(918), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(638), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(598), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 82), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, .production_id = 14), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 85), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 152), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 73), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 119), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 131), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 120), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 83), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 15), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, .production_id = 14), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 218), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 128), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 158), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3126] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, .production_id = 14), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(724), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(787), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(423), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1272), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(10), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(358), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(859), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(476), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1236), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(423), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1243), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1235), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1227), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(675), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(672), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(685), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(657), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(787), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(423), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1272), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(359), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(859), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1236), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(423), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1243), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1235), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1227), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(675), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(672), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(685), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(557), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1190] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(856), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1199] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1210), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1205] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(856), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(657), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(423), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1272), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(859), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1236), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(423), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1235), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1227), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(675), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(672), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(685), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 72), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 72), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(203), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1277), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(221), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1229), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(887), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(291), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(887), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(595), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(595), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(859), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 121), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 121), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 73), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 73), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 88), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 88), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 89), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 89), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 145), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 145), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 175), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 175), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 146), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 146), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 176), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 176), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 107), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 107), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 108), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 108), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 78), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 78), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(528), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(887), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(528), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 111), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1259), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 76), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 162), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 98), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 131), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 166), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(869), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(852), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(771), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(870), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(874), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(862), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(876), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 126), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 85), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), SHIFT_REPEAT(853), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(330), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1114), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 219), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 216), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 215), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(887), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 214), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 212), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 216), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 215), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 214), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 212), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 136), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 137), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 139), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 140), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 139), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 140), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 141), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 172), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 222), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 199), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 198), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 197), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 223), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 196), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(702), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 195), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 194), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 173), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 193), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 192), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 195), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 194), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 193), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 221), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 192), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 100), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(338), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1114), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(647), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 27), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(344), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 83), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 158), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(643), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 87), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(323), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(649), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 124), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(405), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1181), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), SHIFT_REPEAT(805), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(352), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(639), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), + [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), SHIFT_REPEAT(321), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 20), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 142), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 210), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 211), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), SHIFT_REPEAT(879), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 217), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 218), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), SHIFT_REPEAT(884), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(942), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(218), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 84), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 159), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 160), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 174), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), + [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), SHIFT_REPEAT(299), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(174), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(779), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(602), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 87), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 85), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 124), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 158), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 123), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 83), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, .production_id = 14), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 135), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 15), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3085] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 225), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, .production_id = 14), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 132), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 164), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, .production_id = 14), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), }; #ifdef __cplusplus @@ -65057,7 +64533,6 @@ extern const TSLanguage *tree_sitter_java(void) { .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, - .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac104..cbbc7b4ee 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -123,7 +123,6 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; - const TSStateId *primary_state_ids; }; /* diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 4660a1f5a..1044d90d7 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -706,6 +706,81 @@ public class Usecase { arguments: (argument_list (string_literal))))))))))) +====================================== +record declaration inside an interface +====================================== + +interface I { record R(int a) {} } + +--- + +(program + (interface_declaration + (identifier) + (interface_body + (record_declaration + (identifier) + (formal_parameters + (formal_parameter + (integral_type) + (identifier))) + (class_body))))) + + +=========================================== +record declaration with compact constructor +=========================================== + +record Person(int age) { + public Person { + if (age < 0) throw new IllegalArgumentException("invalid age"); + } +} + +--- + +(program + (record_declaration + (identifier) + (formal_parameters + (formal_parameter + (integral_type) + (identifier))) + (class_body + (compact_constructor_declaration + (modifiers) + (identifier) + (block + (if_statement + (parenthesized_expression + (binary_expression + (identifier) + (decimal_integer_literal))) + (throw_statement + (object_creation_expression + (type_identifier) + (argument_list + (string_literal)))))))))) + + +============================================ +record declaration that implements interface +============================================ + +record R() implements I {} + +--- + +(program + (record_declaration + (identifier) + (formal_parameters) + (super_interfaces + (type_list + (type_identifier))) + (class_body))) + + ============================================== class declaration with dollar-sign identifiers ============================================== diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 322819de0..74f3d4031 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -66,6 +66,7 @@ a instanceof C.D; a instanceof List; c instanceof C[]; c instanceof C foo; +d instanceof final D bar; --- @@ -79,6 +80,10 @@ c instanceof C foo; (expression_statement (instanceof_expression (identifier) (array_type (type_identifier) (dimensions)))) + (expression_statement (instanceof_expression + (identifier) + (type_identifier) + (identifier))) (expression_statement (instanceof_expression (identifier) (type_identifier) From 4708c4f24ff9cbee63a874cf25fdcaea3e8dd255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Mah=C3=A9?= Date: Thu, 26 Jan 2023 17:28:35 -0800 Subject: [PATCH 14/23] Parse text blocks which may contain " (double quotes) --- grammar.js | 10 +- src/grammar.json | 45 +- src/parser.c | 2626 ++++++++++++++++++++++++++++---------- src/tree_sitter/parser.h | 1 + test/corpus/literals.txt | 20 + 5 files changed, 1994 insertions(+), 708 deletions(-) diff --git a/grammar.js b/grammar.js index 666eea37f..412fb80a4 100644 --- a/grammar.js +++ b/grammar.js @@ -159,9 +159,13 @@ module.exports = grammar({ // seq('"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/)), '"', '+', /\n/, '"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/))) )), - text_block: $ => token(choice( - seq('"""', /\s*\n/, optional(repeat(choice(/[^\\"]/, /\\(.)/))), '"""'), - )), + text_block: $ => token( + seq( + /"""\s*\n/, + optional(/([^"]|("[^"])|(""[^"]))+/), + '"""' + ) + ), null_literal: $ => 'null', diff --git a/src/grammar.json b/src/grammar.json index 806b27afe..0ef333f58 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1104,48 +1104,27 @@ "text_block": { "type": "TOKEN", "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "PATTERN", + "value": "\"\"\"\\s*\\n" + }, + { + "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "\"\"\"" - }, { "type": "PATTERN", - "value": "\\s*\\n" + "value": "([^\"]|(\"[^\"])|(\"\"[^\"]))+" }, { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^\\\\\"]" - }, - { - "type": "PATTERN", - "value": "\\\\(.)" - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "\"\"\"" + "type": "BLANK" } ] + }, + { + "type": "STRING", + "value": "\"\"\"" } ] } diff --git a/src/parser.c b/src/parser.c index a2bd6a9c9..97636cc6c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,7 +5,7 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 +#define LANGUAGE_VERSION 14 #define STATE_COUNT 1282 #define LARGE_STATE_COUNT 354 #define SYMBOL_COUNT 292 @@ -3312,6 +3312,1291 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 7, + [10] = 8, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 19, + [35] = 20, + [36] = 21, + [37] = 37, + [38] = 22, + [39] = 30, + [40] = 31, + [41] = 32, + [42] = 33, + [43] = 37, + [44] = 15, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 46, + [55] = 55, + [56] = 48, + [57] = 47, + [58] = 45, + [59] = 55, + [60] = 18, + [61] = 29, + [62] = 28, + [63] = 27, + [64] = 26, + [65] = 53, + [66] = 25, + [67] = 52, + [68] = 51, + [69] = 24, + [70] = 23, + [71] = 50, + [72] = 14, + [73] = 16, + [74] = 49, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 84, + [86] = 86, + [87] = 86, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 92, + [94] = 94, + [95] = 92, + [96] = 96, + [97] = 97, + [98] = 79, + [99] = 82, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 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, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 202, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 203, + [226] = 226, + [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] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 261, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 266, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 265, + [273] = 273, + [274] = 274, + [275] = 271, + [276] = 270, + [277] = 264, + [278] = 269, + [279] = 279, + [280] = 279, + [281] = 281, + [282] = 259, + [283] = 273, + [284] = 284, + [285] = 267, + [286] = 284, + [287] = 260, + [288] = 281, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 295, + [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] = 305, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 307, + [317] = 317, + [318] = 292, + [319] = 319, + [320] = 308, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 300, + [325] = 319, + [326] = 317, + [327] = 327, + [328] = 314, + [329] = 329, + [330] = 330, + [331] = 313, + [332] = 297, + [333] = 310, + [334] = 306, + [335] = 289, + [336] = 336, + [337] = 304, + [338] = 330, + [339] = 290, + [340] = 340, + [341] = 294, + [342] = 336, + [343] = 293, + [344] = 323, + [345] = 296, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 364, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 362, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 370, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 381, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 258, + [400] = 400, + [401] = 217, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 408, + [498] = 414, + [499] = 407, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 410, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 427, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 423, + [539] = 418, + [540] = 382, + [541] = 386, + [542] = 396, + [543] = 395, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 442, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 552, + [554] = 554, + [555] = 532, + [556] = 547, + [557] = 557, + [558] = 429, + [559] = 545, + [560] = 457, + [561] = 536, + [562] = 562, + [563] = 534, + [564] = 529, + [565] = 524, + [566] = 535, + [567] = 567, + [568] = 521, + [569] = 569, + [570] = 537, + [571] = 550, + [572] = 572, + [573] = 531, + [574] = 567, + [575] = 551, + [576] = 530, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 525, + [582] = 582, + [583] = 548, + [584] = 523, + [585] = 562, + [586] = 586, + [587] = 527, + [588] = 588, + [589] = 533, + [590] = 569, + [591] = 453, + [592] = 454, + [593] = 578, + [594] = 83, + [595] = 557, + [596] = 596, + [597] = 582, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 491, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 615, + [619] = 619, + [620] = 610, + [621] = 621, + [622] = 622, + [623] = 617, + [624] = 613, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 611, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 632, + [634] = 634, + [635] = 634, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 400, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 406, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 418, + [652] = 410, + [653] = 653, + [654] = 411, + [655] = 655, + [656] = 415, + [657] = 402, + [658] = 403, + [659] = 659, + [660] = 417, + [661] = 661, + [662] = 662, + [663] = 661, + [664] = 664, + [665] = 662, + [666] = 413, + [667] = 667, + [668] = 395, + [669] = 396, + [670] = 670, + [671] = 409, + [672] = 419, + [673] = 673, + [674] = 412, + [675] = 420, + [676] = 454, + [677] = 422, + [678] = 678, + [679] = 457, + [680] = 429, + [681] = 442, + [682] = 453, + [683] = 683, + [684] = 416, + [685] = 421, + [686] = 678, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 387, + [692] = 690, + [693] = 388, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 696, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 707, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 714, + [717] = 709, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 403, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 728, + [735] = 726, + [736] = 736, + [737] = 732, + [738] = 738, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 389, + [745] = 392, + [746] = 746, + [747] = 391, + [748] = 748, + [749] = 390, + [750] = 750, + [751] = 416, + [752] = 748, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 753, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 762, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 449, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, + [795] = 687, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 801, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 790, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 811, + [847] = 847, + [848] = 848, + [849] = 822, + [850] = 791, + [851] = 851, + [852] = 802, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 809, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 859, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 859, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 905, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 912, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 948, + [962] = 902, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 973, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 974, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 973, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 974, + [1015] = 1015, + [1016] = 1016, + [1017] = 1017, + [1018] = 969, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 971, + [1035] = 1035, + [1036] = 1012, + [1037] = 1037, + [1038] = 1038, + [1039] = 1032, + [1040] = 928, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1028, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1009, + [1053] = 994, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1016, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 1043, + [1066] = 1066, + [1067] = 1067, + [1068] = 1046, + [1069] = 1069, + [1070] = 1050, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1049, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 240, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1113, + [1170] = 1170, + [1171] = 1087, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1200, + [1217] = 1207, + [1218] = 1218, + [1219] = 1215, + [1220] = 1214, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1206, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1218, + [1245] = 1245, + [1246] = 1246, + [1247] = 1207, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1253, + [1254] = 1254, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1229, + [1260] = 1260, + [1261] = 1261, + [1262] = 1225, + [1263] = 1215, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1214, + [1276] = 1276, + [1277] = 1277, + [1278] = 1245, + [1279] = 1279, + [1280] = 1280, + [1281] = 1281, +}; + static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 6656 ? (c < 2979 @@ -4859,47 +6144,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(61); - if (lookahead == '!') ADVANCE(145); + if (eof) ADVANCE(60); + if (lookahead == '!') ADVANCE(144); if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(132); - if (lookahead == '&') ADVANCE(90); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(89); if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(123); - if (lookahead == '+') ADVANCE(118); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(153); - if (lookahead == '/') ADVANCE(125); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(160); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(130); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(122); + if (lookahead == '+') ADVANCE(117); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '-') ADVANCE(119); + if (lookahead == '.') ADVANCE(152); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(62); + if (lookahead == ':') ADVANCE(142); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(140); + if (lookahead == '@') ADVANCE(159); + if (lookahead == '[') ADVANCE(148); + if (lookahead == ']') ADVANCE(149); + if (lookahead == '^') ADVANCE(129); + if (lookahead == 'n') ADVANCE(165); + if (lookahead == '{') ADVANCE(155); + if (lookahead == '|') ADVANCE(126); + if (lookahead == '}') ADVANCE(156); + if (lookahead == '~') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(1); if (lookahead == '"') ADVANCE(11); - if (lookahead == '\\') ADVANCE(56); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') ADVANCE(1); @@ -4912,220 +6196,221 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(2); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(145); + if (lookahead == '!') ADVANCE(144); if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '&') ADVANCE(88); if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '+') ADVANCE(116); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '-') ADVANCE(120); if (lookahead == '.') ADVANCE(19); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); + if (lookahead == '/') ADVANCE(123); + if (lookahead == '0') ADVANCE(62); + if (lookahead == ':') ADVANCE(142); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(109); if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '>') ADVANCE(106); + if (lookahead == '?') ADVANCE(140); + if (lookahead == '@') ADVANCE(158); + if (lookahead == '[') ADVANCE(148); + if (lookahead == ']') ADVANCE(149); + if (lookahead == '^') ADVANCE(128); + if (lookahead == '{') ADVANCE(155); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(156); + if (lookahead == '~') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(144); + if (lookahead == '!') ADVANCE(143); if (lookahead == '"') ADVANCE(7); - if (lookahead == '&') ADVANCE(88); + if (lookahead == '&') ADVANCE(87); if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(119); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '+') ADVANCE(116); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '-') ADVANCE(118); if (lookahead == '.') ADVANCE(51); if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(105); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '0') ADVANCE(62); + if (lookahead == ':') ADVANCE(141); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '=') ADVANCE(91); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(158); + if (lookahead == '[') ADVANCE(148); + if (lookahead == 'n') ADVANCE(165); + if (lookahead == '}') ADVANCE(156); + if (lookahead == '~') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 5: if (lookahead == '!') ADVANCE(23); - if (lookahead == '%') ADVANCE(132); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(123); - if (lookahead == '+') ADVANCE(118); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(152); - if (lookahead == '/') ADVANCE(125); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(157); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(89); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(122); + if (lookahead == '+') ADVANCE(117); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '-') ADVANCE(119); + if (lookahead == '.') ADVANCE(151); + if (lookahead == '/') ADVANCE(124); + if (lookahead == ':') ADVANCE(142); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(140); + if (lookahead == '@') ADVANCE(158); + if (lookahead == '[') ADVANCE(148); + if (lookahead == ']') ADVANCE(149); + if (lookahead == '^') ADVANCE(129); + if (lookahead == '{') ADVANCE(155); + if (lookahead == '|') ADVANCE(126); + if (lookahead == '}') ADVANCE(156); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 6: if (lookahead == '!') ADVANCE(23); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); - if (lookahead == '.') ADVANCE(151); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '&') ADVANCE(88); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '+') ADVANCE(116); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '-') ADVANCE(120); + if (lookahead == '.') ADVANCE(150); + if (lookahead == '/') ADVANCE(123); + if (lookahead == ':') ADVANCE(142); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(109); if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); + if (lookahead == '>') ADVANCE(106); + if (lookahead == '?') ADVANCE(140); + if (lookahead == '@') ADVANCE(158); + if (lookahead == '[') ADVANCE(148); + if (lookahead == ']') ADVANCE(149); + if (lookahead == '^') ADVANCE(128); + if (lookahead == '{') ADVANCE(155); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(156); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(85); - if (lookahead == '\\') ADVANCE(58); + if (lookahead == '"') ADVANCE(84); + if (lookahead == '\\') ADVANCE(57); if (lookahead != 0 && lookahead != '\n') ADVANCE(8); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(84); - if (lookahead == '\\') ADVANCE(58); + if (lookahead == '"') ADVANCE(83); + if (lookahead == '\\') ADVANCE(57); if (lookahead != 0 && lookahead != '\n') ADVANCE(8); END_STATE(); case 9: if (lookahead == '"') ADVANCE(11); - if (lookahead == '\\') ADVANCE(56); if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(86); + if (lookahead == '"') ADVANCE(85); + if (lookahead != 0) ADVANCE(9); END_STATE(); case 11: if (lookahead == '"') ADVANCE(10); + if (lookahead != 0) ADVANCE(9); END_STATE(); case 12: - if (lookahead == '&') ADVANCE(88); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '.') ADVANCE(152); + if (lookahead == '&') ADVANCE(87); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '.') ADVANCE(151); if (lookahead == '/') ADVANCE(16); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(105); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(126); + if (lookahead == ':') ADVANCE(142); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(91); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '?') ADVANCE(140); + if (lookahead == '@') ADVANCE(158); + if (lookahead == '[') ADVANCE(148); + if (lookahead == '{') ADVANCE(155); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 13: - if (lookahead == '\'') ADVANCE(83); - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '\'') ADVANCE(82); + if (lookahead == '\\') ADVANCE(56); if (lookahead != 0 && lookahead != '\n') ADVANCE(13); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(87); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '.') ADVANCE(151); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '.') ADVANCE(150); if (lookahead == '/') ADVANCE(16); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '@') ADVANCE(160); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '@') ADVANCE(159); + if (lookahead == 'n') ADVANCE(165); + if (lookahead == '{') ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(87); - if (lookahead == '.') ADVANCE(151); + if (lookahead == '(') ADVANCE(86); + if (lookahead == '.') ADVANCE(150); if (lookahead == '/') ADVANCE(16); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == 'n') ADVANCE(166); + if (lookahead == '@') ADVANCE(158); + if (lookahead == '[') ADVANCE(148); + if (lookahead == 'n') ADVANCE(165); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(15) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 16: if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(168); + if (lookahead == '/') ADVANCE(167); END_STATE(); case 17: if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(169); + if (lookahead == '/') ADVANCE(168); if (lookahead != 0) ADVANCE(18); END_STATE(); case 18: @@ -5134,66 +6419,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 19: if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(163); + if (lookahead == '.') ADVANCE(162); END_STATE(); case 21: if (lookahead == '.') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 22: if (lookahead == '/') ADVANCE(16); - if (lookahead == '<') ADVANCE(108); + if (lookahead == '<') ADVANCE(107); if (lookahead == '@') ADVANCE(41); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(114); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(113); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 25: - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '\\') ADVANCE(56); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'') ADVANCE(13); END_STATE(); case 26: if (lookahead == '_') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); END_STATE(); case 27: if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); case 28: if (lookahead == '_') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); END_STATE(); case 29: if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(65); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 30: if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); case 31: if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); END_STATE(); case 32: if (lookahead == 'a') ADVANCE(42); @@ -5205,7 +6490,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(39); END_STATE(); case 35: - if (lookahead == 'd') ADVANCE(161); + if (lookahead == 'd') ADVANCE(160); END_STATE(); case 36: if (lookahead == 'e') ADVANCE(44); @@ -5217,7 +6502,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(35); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 40: if (lookahead == 'f') ADVANCE(33); @@ -5243,137 +6528,133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 47: if (lookahead == '+' || lookahead == '-') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); END_STATE(); case 48: if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); case 49: if (lookahead == '0' || - lookahead == '1') ADVANCE(72); + lookahead == '1') ADVANCE(71); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(69); END_STATE(); case 51: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); case 54: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); END_STATE(); case 56: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(9); - END_STATE(); - case 57: if (lookahead != 0) ADVANCE(13); END_STATE(); - case 58: + case 57: if (lookahead != 0) ADVANCE(8); END_STATE(); - case 59: - if (eof) ADVANCE(61); - if (lookahead == '!') ADVANCE(145); + case 58: + if (eof) ADVANCE(60); + if (lookahead == '!') ADVANCE(144); if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '&') ADVANCE(88); if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); - if (lookahead == '.') ADVANCE(154); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '+') ADVANCE(116); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '-') ADVANCE(120); + if (lookahead == '.') ADVANCE(153); + if (lookahead == '/') ADVANCE(123); + if (lookahead == '0') ADVANCE(62); + if (lookahead == ':') ADVANCE(142); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(109); if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(160); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '>') ADVANCE(106); + if (lookahead == '?') ADVANCE(140); + if (lookahead == '@') ADVANCE(159); + if (lookahead == '[') ADVANCE(148); + if (lookahead == ']') ADVANCE(149); + if (lookahead == '^') ADVANCE(128); + if (lookahead == 'n') ADVANCE(165); + if (lookahead == '{') ADVANCE(155); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(156); + if (lookahead == '~') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + lookahead == ' ') SKIP(58) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); - case 60: - if (eof) ADVANCE(61); - if (lookahead == '!') ADVANCE(145); + case 59: + if (eof) ADVANCE(60); + if (lookahead == '!') ADVANCE(144); if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '&') ADVANCE(88); if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '+') ADVANCE(116); + if (lookahead == ',') ADVANCE(139); + if (lookahead == '-') ADVANCE(120); if (lookahead == '.') ADVANCE(51); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); + if (lookahead == '/') ADVANCE(123); + if (lookahead == '0') ADVANCE(62); + if (lookahead == ':') ADVANCE(141); + if (lookahead == ';') ADVANCE(157); + if (lookahead == '<') ADVANCE(109); if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(160); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '>') ADVANCE(106); + if (lookahead == '?') ADVANCE(140); + if (lookahead == '@') ADVANCE(159); + if (lookahead == ']') ADVANCE(149); + if (lookahead == '^') ADVANCE(128); + if (lookahead == 'n') ADVANCE(165); + if (lookahead == '{') ADVANCE(155); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(156); + if (lookahead == '~') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(60) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + lookahead == ' ') SKIP(59) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); - case 61: + case 60: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 62: + case 61: ACCEPT_TOKEN(sym_decimal_integer_literal); END_STATE(); - case 63: + case 62: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(76); + if (lookahead == '.') ADVANCE(75); if (lookahead == 'B' || lookahead == 'b') ADVANCE(49); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(62); + lookahead == 'l') ADVANCE(61); if (lookahead == 'O' || lookahead == 'o') ADVANCE(50); if (lookahead == 'X' || @@ -5384,494 +6665,494 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'P' || lookahead == 'p') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); END_STATE(); - case 64: + case 63: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(76); + if (lookahead == '.') ADVANCE(75); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(62); + lookahead == 'l') ADVANCE(61); if (lookahead == '_') ADVANCE(26); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (lookahead == 'P' || lookahead == 'p') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); END_STATE(); - case 65: + case 64: ACCEPT_TOKEN(sym_hex_integer_literal); END_STATE(); - case 66: + case 65: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(82); + if (lookahead == '.') ADVANCE(81); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); + lookahead == 'l') ADVANCE(64); if (lookahead == '_') ADVANCE(29); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + lookahead == 'e') ADVANCE(67); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(66); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(65); END_STATE(); - case 67: + case 66: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(82); + if (lookahead == '.') ADVANCE(81); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); + lookahead == 'l') ADVANCE(64); if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + lookahead == 'e') ADVANCE(67); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); - case 68: + case 67: ACCEPT_TOKEN(sym_hex_integer_literal); if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (lookahead == '.') ADVANCE(82); + if (lookahead == '.') ADVANCE(81); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); + lookahead == 'l') ADVANCE(64); if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + lookahead == 'e') ADVANCE(67); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(65); END_STATE(); - case 69: + case 68: ACCEPT_TOKEN(sym_octal_integer_literal); END_STATE(); - case 70: + case 69: ACCEPT_TOKEN(sym_octal_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(69); + lookahead == 'l') ADVANCE(68); if (lookahead == '_') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(69); END_STATE(); - case 71: + case 70: ACCEPT_TOKEN(sym_binary_integer_literal); END_STATE(); - case 72: + case 71: ACCEPT_TOKEN(sym_binary_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(71); + lookahead == 'l') ADVANCE(70); if (lookahead == '_') ADVANCE(49); if (lookahead == '0' || - lookahead == '1') ADVANCE(72); + lookahead == '1') ADVANCE(71); END_STATE(); - case 73: + case 72: ACCEPT_TOKEN(sym_decimal_floating_point_literal); END_STATE(); - case 74: + case 73: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == '_') ADVANCE(27); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); - case 75: + case 74: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == '_') ADVANCE(28); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + lookahead == 'f') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); END_STATE(); - case 76: + case 75: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); - case 77: + case 76: ACCEPT_TOKEN(sym_hex_floating_point_literal); END_STATE(); - case 78: + case 77: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == '_') ADVANCE(55); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(80); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); END_STATE(); - case 79: + case 78: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == '_') ADVANCE(31); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(80); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(77); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); - case 80: + case 79: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == '_') ADVANCE(30); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + lookahead == 'f') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); - case 81: + case 80: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == '+' || lookahead == '-') ADVANCE(53); if (lookahead == '_') ADVANCE(55); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(80); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); - case 82: + case 81: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(80); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); END_STATE(); - case 83: + case 82: ACCEPT_TOKEN(sym_character_literal); END_STATE(); - case 84: + case 83: ACCEPT_TOKEN(sym_string_literal); END_STATE(); - case 85: + case 84: ACCEPT_TOKEN(sym_string_literal); if (lookahead == '"') ADVANCE(2); END_STATE(); - case 86: + case 85: ACCEPT_TOKEN(sym_text_block); END_STATE(); - case 87: + case 86: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); case 88: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(114); END_STATE(); case 89: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(115); + if (lookahead == '&') ADVANCE(114); + if (lookahead == '=') ADVANCE(97); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '=') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(113); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 105: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(110); + if (lookahead == '>') ADVANCE(134); END_STATE(); case 106: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); + if (lookahead == '=') ADVANCE(110); if (lookahead == '>') ADVANCE(135); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 108: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(133); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 109: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(146); END_STATE(); case 117: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); + if (lookahead == '+') ADVANCE(146); + if (lookahead == '=') ADVANCE(93); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); - if (lookahead == '=') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(147); END_STATE(); case 119: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); + if (lookahead == '-') ADVANCE(147); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(138); END_STATE(); case 120: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(139); + if (lookahead == '-') ADVANCE(147); + if (lookahead == '>') ADVANCE(138); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '>') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(95); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(167); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(168); + if (lookahead == '/') ADVANCE(167); + if (lookahead == '=') ADVANCE(96); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(168); - if (lookahead == '=') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 126: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '|') ADVANCE(115); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(99); - if (lookahead == '|') ADVANCE(116); + if (lookahead == '|') ADVANCE(115); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(99); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(100); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 131: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(100); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 133: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(101); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '=') ADVANCE(102); + if (lookahead == '>') ADVANCE(137); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(138); + if (lookahead == '>') ADVANCE(136); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 137: ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(103); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 142: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(154); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(20); END_STATE(); case 152: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(20); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); case 153: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'i') ADVANCE(43); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'i') ADVANCE(43); + ACCEPT_TOKEN(anon_sym_non_DASHsealed); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_non_DASHsealed); + ACCEPT_TOKEN(anon_sym_ATinterface); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_ATinterface); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(45); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(45); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); + if (lookahead == 'n') ADVANCE(163); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(164); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); + if (lookahead == 'o') ADVANCE(164); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(165); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); END_STATE(); case 167: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); - END_STATE(); - case 168: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + lookahead != '\n') ADVANCE(167); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(sym_block_comment); END_STATE(); default: @@ -6846,264 +8127,264 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 60}, - [2] = {.lex_state = 60}, - [3] = {.lex_state = 60}, - [4] = {.lex_state = 60}, - [5] = {.lex_state = 60}, - [6] = {.lex_state = 60}, - [7] = {.lex_state = 60}, - [8] = {.lex_state = 60}, - [9] = {.lex_state = 60}, - [10] = {.lex_state = 60}, - [11] = {.lex_state = 60}, - [12] = {.lex_state = 60}, - [13] = {.lex_state = 60}, - [14] = {.lex_state = 60}, - [15] = {.lex_state = 60}, - [16] = {.lex_state = 60}, - [17] = {.lex_state = 60}, - [18] = {.lex_state = 60}, - [19] = {.lex_state = 60}, - [20] = {.lex_state = 60}, - [21] = {.lex_state = 60}, - [22] = {.lex_state = 60}, - [23] = {.lex_state = 60}, - [24] = {.lex_state = 60}, - [25] = {.lex_state = 60}, - [26] = {.lex_state = 60}, - [27] = {.lex_state = 60}, - [28] = {.lex_state = 60}, - [29] = {.lex_state = 60}, - [30] = {.lex_state = 60}, - [31] = {.lex_state = 60}, - [32] = {.lex_state = 60}, - [33] = {.lex_state = 60}, - [34] = {.lex_state = 60}, - [35] = {.lex_state = 60}, - [36] = {.lex_state = 60}, - [37] = {.lex_state = 60}, - [38] = {.lex_state = 60}, - [39] = {.lex_state = 60}, - [40] = {.lex_state = 60}, - [41] = {.lex_state = 60}, - [42] = {.lex_state = 60}, - [43] = {.lex_state = 60}, - [44] = {.lex_state = 60}, - [45] = {.lex_state = 60}, - [46] = {.lex_state = 60}, - [47] = {.lex_state = 60}, - [48] = {.lex_state = 60}, - [49] = {.lex_state = 60}, - [50] = {.lex_state = 60}, - [51] = {.lex_state = 60}, - [52] = {.lex_state = 60}, - [53] = {.lex_state = 60}, - [54] = {.lex_state = 60}, - [55] = {.lex_state = 60}, - [56] = {.lex_state = 60}, - [57] = {.lex_state = 60}, - [58] = {.lex_state = 60}, - [59] = {.lex_state = 60}, - [60] = {.lex_state = 60}, - [61] = {.lex_state = 60}, - [62] = {.lex_state = 60}, - [63] = {.lex_state = 60}, - [64] = {.lex_state = 60}, - [65] = {.lex_state = 60}, - [66] = {.lex_state = 60}, - [67] = {.lex_state = 60}, - [68] = {.lex_state = 60}, - [69] = {.lex_state = 60}, - [70] = {.lex_state = 60}, - [71] = {.lex_state = 60}, - [72] = {.lex_state = 60}, - [73] = {.lex_state = 60}, - [74] = {.lex_state = 60}, - [75] = {.lex_state = 59}, - [76] = {.lex_state = 59}, - [77] = {.lex_state = 59}, - [78] = {.lex_state = 60}, - [79] = {.lex_state = 60}, - [80] = {.lex_state = 60}, - [81] = {.lex_state = 60}, - [82] = {.lex_state = 60}, - [83] = {.lex_state = 60}, + [1] = {.lex_state = 59}, + [2] = {.lex_state = 59}, + [3] = {.lex_state = 59}, + [4] = {.lex_state = 59}, + [5] = {.lex_state = 59}, + [6] = {.lex_state = 59}, + [7] = {.lex_state = 59}, + [8] = {.lex_state = 59}, + [9] = {.lex_state = 59}, + [10] = {.lex_state = 59}, + [11] = {.lex_state = 59}, + [12] = {.lex_state = 59}, + [13] = {.lex_state = 59}, + [14] = {.lex_state = 59}, + [15] = {.lex_state = 59}, + [16] = {.lex_state = 59}, + [17] = {.lex_state = 59}, + [18] = {.lex_state = 59}, + [19] = {.lex_state = 59}, + [20] = {.lex_state = 59}, + [21] = {.lex_state = 59}, + [22] = {.lex_state = 59}, + [23] = {.lex_state = 59}, + [24] = {.lex_state = 59}, + [25] = {.lex_state = 59}, + [26] = {.lex_state = 59}, + [27] = {.lex_state = 59}, + [28] = {.lex_state = 59}, + [29] = {.lex_state = 59}, + [30] = {.lex_state = 59}, + [31] = {.lex_state = 59}, + [32] = {.lex_state = 59}, + [33] = {.lex_state = 59}, + [34] = {.lex_state = 59}, + [35] = {.lex_state = 59}, + [36] = {.lex_state = 59}, + [37] = {.lex_state = 59}, + [38] = {.lex_state = 59}, + [39] = {.lex_state = 59}, + [40] = {.lex_state = 59}, + [41] = {.lex_state = 59}, + [42] = {.lex_state = 59}, + [43] = {.lex_state = 59}, + [44] = {.lex_state = 59}, + [45] = {.lex_state = 59}, + [46] = {.lex_state = 59}, + [47] = {.lex_state = 59}, + [48] = {.lex_state = 59}, + [49] = {.lex_state = 59}, + [50] = {.lex_state = 59}, + [51] = {.lex_state = 59}, + [52] = {.lex_state = 59}, + [53] = {.lex_state = 59}, + [54] = {.lex_state = 59}, + [55] = {.lex_state = 59}, + [56] = {.lex_state = 59}, + [57] = {.lex_state = 59}, + [58] = {.lex_state = 59}, + [59] = {.lex_state = 59}, + [60] = {.lex_state = 59}, + [61] = {.lex_state = 59}, + [62] = {.lex_state = 59}, + [63] = {.lex_state = 59}, + [64] = {.lex_state = 59}, + [65] = {.lex_state = 59}, + [66] = {.lex_state = 59}, + [67] = {.lex_state = 59}, + [68] = {.lex_state = 59}, + [69] = {.lex_state = 59}, + [70] = {.lex_state = 59}, + [71] = {.lex_state = 59}, + [72] = {.lex_state = 59}, + [73] = {.lex_state = 59}, + [74] = {.lex_state = 59}, + [75] = {.lex_state = 58}, + [76] = {.lex_state = 58}, + [77] = {.lex_state = 58}, + [78] = {.lex_state = 59}, + [79] = {.lex_state = 59}, + [80] = {.lex_state = 59}, + [81] = {.lex_state = 59}, + [82] = {.lex_state = 59}, + [83] = {.lex_state = 59}, [84] = {.lex_state = 4}, [85] = {.lex_state = 4}, [86] = {.lex_state = 4}, [87] = {.lex_state = 4}, - [88] = {.lex_state = 60}, - [89] = {.lex_state = 60}, - [90] = {.lex_state = 60}, - [91] = {.lex_state = 60}, + [88] = {.lex_state = 59}, + [89] = {.lex_state = 59}, + [90] = {.lex_state = 59}, + [91] = {.lex_state = 59}, [92] = {.lex_state = 3}, [93] = {.lex_state = 3}, [94] = {.lex_state = 3}, [95] = {.lex_state = 3}, [96] = {.lex_state = 3}, [97] = {.lex_state = 3}, - [98] = {.lex_state = 60}, - [99] = {.lex_state = 60}, - [100] = {.lex_state = 60}, + [98] = {.lex_state = 59}, + [99] = {.lex_state = 59}, + [100] = {.lex_state = 59}, [101] = {.lex_state = 3}, [102] = {.lex_state = 3}, - [103] = {.lex_state = 60}, - [104] = {.lex_state = 60}, - [105] = {.lex_state = 60}, - [106] = {.lex_state = 60}, - [107] = {.lex_state = 60}, - [108] = {.lex_state = 60}, - [109] = {.lex_state = 60}, - [110] = {.lex_state = 60}, - [111] = {.lex_state = 60}, - [112] = {.lex_state = 60}, - [113] = {.lex_state = 60}, - [114] = {.lex_state = 60}, - [115] = {.lex_state = 60}, - [116] = {.lex_state = 60}, - [117] = {.lex_state = 60}, - [118] = {.lex_state = 60}, - [119] = {.lex_state = 60}, - [120] = {.lex_state = 60}, - [121] = {.lex_state = 60}, - [122] = {.lex_state = 60}, - [123] = {.lex_state = 60}, - [124] = {.lex_state = 60}, - [125] = {.lex_state = 60}, - [126] = {.lex_state = 60}, + [103] = {.lex_state = 59}, + [104] = {.lex_state = 59}, + [105] = {.lex_state = 59}, + [106] = {.lex_state = 59}, + [107] = {.lex_state = 59}, + [108] = {.lex_state = 59}, + [109] = {.lex_state = 59}, + [110] = {.lex_state = 59}, + [111] = {.lex_state = 59}, + [112] = {.lex_state = 59}, + [113] = {.lex_state = 59}, + [114] = {.lex_state = 59}, + [115] = {.lex_state = 59}, + [116] = {.lex_state = 59}, + [117] = {.lex_state = 59}, + [118] = {.lex_state = 59}, + [119] = {.lex_state = 59}, + [120] = {.lex_state = 59}, + [121] = {.lex_state = 59}, + [122] = {.lex_state = 59}, + [123] = {.lex_state = 59}, + [124] = {.lex_state = 59}, + [125] = {.lex_state = 59}, + [126] = {.lex_state = 59}, [127] = {.lex_state = 3}, - [128] = {.lex_state = 60}, - [129] = {.lex_state = 60}, - [130] = {.lex_state = 60}, - [131] = {.lex_state = 60}, - [132] = {.lex_state = 60}, - [133] = {.lex_state = 60}, - [134] = {.lex_state = 60}, - [135] = {.lex_state = 60}, - [136] = {.lex_state = 60}, - [137] = {.lex_state = 60}, - [138] = {.lex_state = 60}, - [139] = {.lex_state = 60}, - [140] = {.lex_state = 60}, - [141] = {.lex_state = 60}, - [142] = {.lex_state = 60}, - [143] = {.lex_state = 60}, + [128] = {.lex_state = 59}, + [129] = {.lex_state = 59}, + [130] = {.lex_state = 59}, + [131] = {.lex_state = 59}, + [132] = {.lex_state = 59}, + [133] = {.lex_state = 59}, + [134] = {.lex_state = 59}, + [135] = {.lex_state = 59}, + [136] = {.lex_state = 59}, + [137] = {.lex_state = 59}, + [138] = {.lex_state = 59}, + [139] = {.lex_state = 59}, + [140] = {.lex_state = 59}, + [141] = {.lex_state = 59}, + [142] = {.lex_state = 59}, + [143] = {.lex_state = 59}, [144] = {.lex_state = 3}, - [145] = {.lex_state = 60}, - [146] = {.lex_state = 60}, - [147] = {.lex_state = 60}, - [148] = {.lex_state = 60}, - [149] = {.lex_state = 60}, - [150] = {.lex_state = 60}, - [151] = {.lex_state = 60}, - [152] = {.lex_state = 60}, - [153] = {.lex_state = 60}, - [154] = {.lex_state = 60}, - [155] = {.lex_state = 60}, - [156] = {.lex_state = 60}, - [157] = {.lex_state = 60}, - [158] = {.lex_state = 60}, - [159] = {.lex_state = 60}, - [160] = {.lex_state = 60}, - [161] = {.lex_state = 60}, - [162] = {.lex_state = 60}, - [163] = {.lex_state = 60}, - [164] = {.lex_state = 60}, - [165] = {.lex_state = 60}, + [145] = {.lex_state = 59}, + [146] = {.lex_state = 59}, + [147] = {.lex_state = 59}, + [148] = {.lex_state = 59}, + [149] = {.lex_state = 59}, + [150] = {.lex_state = 59}, + [151] = {.lex_state = 59}, + [152] = {.lex_state = 59}, + [153] = {.lex_state = 59}, + [154] = {.lex_state = 59}, + [155] = {.lex_state = 59}, + [156] = {.lex_state = 59}, + [157] = {.lex_state = 59}, + [158] = {.lex_state = 59}, + [159] = {.lex_state = 59}, + [160] = {.lex_state = 59}, + [161] = {.lex_state = 59}, + [162] = {.lex_state = 59}, + [163] = {.lex_state = 59}, + [164] = {.lex_state = 59}, + [165] = {.lex_state = 59}, [166] = {.lex_state = 3}, - [167] = {.lex_state = 60}, - [168] = {.lex_state = 60}, - [169] = {.lex_state = 60}, - [170] = {.lex_state = 60}, - [171] = {.lex_state = 60}, + [167] = {.lex_state = 59}, + [168] = {.lex_state = 59}, + [169] = {.lex_state = 59}, + [170] = {.lex_state = 59}, + [171] = {.lex_state = 59}, [172] = {.lex_state = 3}, - [173] = {.lex_state = 60}, + [173] = {.lex_state = 59}, [174] = {.lex_state = 3}, - [175] = {.lex_state = 60}, - [176] = {.lex_state = 60}, - [177] = {.lex_state = 60}, + [175] = {.lex_state = 59}, + [176] = {.lex_state = 59}, + [177] = {.lex_state = 59}, [178] = {.lex_state = 3}, - [179] = {.lex_state = 60}, - [180] = {.lex_state = 60}, - [181] = {.lex_state = 60}, - [182] = {.lex_state = 60}, - [183] = {.lex_state = 60}, - [184] = {.lex_state = 60}, - [185] = {.lex_state = 60}, - [186] = {.lex_state = 60}, - [187] = {.lex_state = 60}, - [188] = {.lex_state = 60}, - [189] = {.lex_state = 60}, - [190] = {.lex_state = 60}, - [191] = {.lex_state = 60}, - [192] = {.lex_state = 60}, - [193] = {.lex_state = 60}, - [194] = {.lex_state = 60}, - [195] = {.lex_state = 60}, - [196] = {.lex_state = 60}, - [197] = {.lex_state = 60}, - [198] = {.lex_state = 60}, - [199] = {.lex_state = 60}, - [200] = {.lex_state = 60}, - [201] = {.lex_state = 60}, + [179] = {.lex_state = 59}, + [180] = {.lex_state = 59}, + [181] = {.lex_state = 59}, + [182] = {.lex_state = 59}, + [183] = {.lex_state = 59}, + [184] = {.lex_state = 59}, + [185] = {.lex_state = 59}, + [186] = {.lex_state = 59}, + [187] = {.lex_state = 59}, + [188] = {.lex_state = 59}, + [189] = {.lex_state = 59}, + [190] = {.lex_state = 59}, + [191] = {.lex_state = 59}, + [192] = {.lex_state = 59}, + [193] = {.lex_state = 59}, + [194] = {.lex_state = 59}, + [195] = {.lex_state = 59}, + [196] = {.lex_state = 59}, + [197] = {.lex_state = 59}, + [198] = {.lex_state = 59}, + [199] = {.lex_state = 59}, + [200] = {.lex_state = 59}, + [201] = {.lex_state = 59}, [202] = {.lex_state = 3}, [203] = {.lex_state = 3}, - [204] = {.lex_state = 60}, - [205] = {.lex_state = 60}, - [206] = {.lex_state = 60}, - [207] = {.lex_state = 60}, - [208] = {.lex_state = 60}, - [209] = {.lex_state = 60}, - [210] = {.lex_state = 60}, - [211] = {.lex_state = 60}, - [212] = {.lex_state = 60}, - [213] = {.lex_state = 60}, - [214] = {.lex_state = 60}, - [215] = {.lex_state = 60}, - [216] = {.lex_state = 60}, - [217] = {.lex_state = 60}, + [204] = {.lex_state = 59}, + [205] = {.lex_state = 59}, + [206] = {.lex_state = 59}, + [207] = {.lex_state = 59}, + [208] = {.lex_state = 59}, + [209] = {.lex_state = 59}, + [210] = {.lex_state = 59}, + [211] = {.lex_state = 59}, + [212] = {.lex_state = 59}, + [213] = {.lex_state = 59}, + [214] = {.lex_state = 59}, + [215] = {.lex_state = 59}, + [216] = {.lex_state = 59}, + [217] = {.lex_state = 59}, [218] = {.lex_state = 3}, - [219] = {.lex_state = 60}, - [220] = {.lex_state = 60}, + [219] = {.lex_state = 59}, + [220] = {.lex_state = 59}, [221] = {.lex_state = 3}, - [222] = {.lex_state = 60}, - [223] = {.lex_state = 60}, - [224] = {.lex_state = 60}, + [222] = {.lex_state = 59}, + [223] = {.lex_state = 59}, + [224] = {.lex_state = 59}, [225] = {.lex_state = 3}, - [226] = {.lex_state = 60}, - [227] = {.lex_state = 60}, - [228] = {.lex_state = 60}, - [229] = {.lex_state = 60}, - [230] = {.lex_state = 60}, - [231] = {.lex_state = 60}, - [232] = {.lex_state = 60}, - [233] = {.lex_state = 60}, - [234] = {.lex_state = 60}, - [235] = {.lex_state = 60}, - [236] = {.lex_state = 60}, - [237] = {.lex_state = 60}, - [238] = {.lex_state = 60}, - [239] = {.lex_state = 60}, - [240] = {.lex_state = 60}, - [241] = {.lex_state = 60}, - [242] = {.lex_state = 60}, - [243] = {.lex_state = 60}, - [244] = {.lex_state = 60}, - [245] = {.lex_state = 60}, - [246] = {.lex_state = 60}, - [247] = {.lex_state = 60}, - [248] = {.lex_state = 60}, - [249] = {.lex_state = 60}, - [250] = {.lex_state = 60}, - [251] = {.lex_state = 60}, - [252] = {.lex_state = 60}, - [253] = {.lex_state = 60}, - [254] = {.lex_state = 60}, - [255] = {.lex_state = 60}, - [256] = {.lex_state = 60}, + [226] = {.lex_state = 59}, + [227] = {.lex_state = 59}, + [228] = {.lex_state = 59}, + [229] = {.lex_state = 59}, + [230] = {.lex_state = 59}, + [231] = {.lex_state = 59}, + [232] = {.lex_state = 59}, + [233] = {.lex_state = 59}, + [234] = {.lex_state = 59}, + [235] = {.lex_state = 59}, + [236] = {.lex_state = 59}, + [237] = {.lex_state = 59}, + [238] = {.lex_state = 59}, + [239] = {.lex_state = 59}, + [240] = {.lex_state = 59}, + [241] = {.lex_state = 59}, + [242] = {.lex_state = 59}, + [243] = {.lex_state = 59}, + [244] = {.lex_state = 59}, + [245] = {.lex_state = 59}, + [246] = {.lex_state = 59}, + [247] = {.lex_state = 59}, + [248] = {.lex_state = 59}, + [249] = {.lex_state = 59}, + [250] = {.lex_state = 59}, + [251] = {.lex_state = 59}, + [252] = {.lex_state = 59}, + [253] = {.lex_state = 59}, + [254] = {.lex_state = 59}, + [255] = {.lex_state = 59}, + [256] = {.lex_state = 59}, [257] = {.lex_state = 3}, - [258] = {.lex_state = 60}, + [258] = {.lex_state = 59}, [259] = {.lex_state = 3}, [260] = {.lex_state = 3}, [261] = {.lex_state = 3}, @@ -7167,7 +8448,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [319] = {.lex_state = 3}, [320] = {.lex_state = 3}, [321] = {.lex_state = 3}, - [322] = {.lex_state = 60}, + [322] = {.lex_state = 59}, [323] = {.lex_state = 3}, [324] = {.lex_state = 3}, [325] = {.lex_state = 3}, @@ -7192,11 +8473,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 3}, [345] = {.lex_state = 3}, [346] = {.lex_state = 4}, - [347] = {.lex_state = 60}, + [347] = {.lex_state = 59}, [348] = {.lex_state = 4}, - [349] = {.lex_state = 60}, - [350] = {.lex_state = 60}, - [351] = {.lex_state = 60}, + [349] = {.lex_state = 59}, + [350] = {.lex_state = 59}, + [351] = {.lex_state = 59}, [352] = {.lex_state = 4}, [353] = {.lex_state = 4}, [354] = {.lex_state = 0}, @@ -64533,6 +65814,7 @@ extern const TSLanguage *tree_sitter_java(void) { .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, + .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index cbbc7b4ee..2b14ac104 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /* diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index ef9a48130..de607ed2f 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -169,9 +169,29 @@ Closing token at new line """; +""" +{ + "foo": 4 +} +"""; +""" +"this is single double quotes" +""this is double quotes"" +"" """; +""" +" +"""; +""" +\\ +"""; + --- (program + (expression_statement (text_block)) + (expression_statement (text_block)) + (expression_statement (text_block)) + (expression_statement (text_block)) (expression_statement (text_block)) (expression_statement (text_block)) (expression_statement (text_block)) From 00965c2c0994b9061d0d6bce043be3c59a4930d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Mah=C3=A9?= Date: Thu, 26 Jan 2023 17:29:20 -0800 Subject: [PATCH 15/23] Update the versions of the repositories used for `script/parse-examples` --- script/parse-examples | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/parse-examples b/script/parse-examples index b714ae3ae..32fd23b1b 100755 --- a/script/parse-examples +++ b/script/parse-examples @@ -27,10 +27,10 @@ function clone_repo { clone_repo elastic elasticsearch 4d62640bf116af7e825d89c7319a39c3f2f325b4 clone_repo google guava v31.1 -clone_repo ReactiveX RxJava v3.1.5 -clone_repo apache flink release-1.15.1 -clone_repo apache logging-log4j2 rel/2.17.2 -clone_repo apache cassandra cassandra-4.0.5 +clone_repo ReactiveX RxJava v3.1.6 +clone_repo apache flink release-1.16.0 +clone_repo apache logging-log4j2 rel/2.19.0 +clone_repo apache cassandra cassandra-4.1.0 known_failures="$(cat script/known-failures.txt)" From f172ab8787681c9c072e94a7f4c6e2184167a97b Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 31 Jan 2023 06:26:03 -0500 Subject: [PATCH 16/23] feat: make escape sequences distinguishable, fix multiline strings --- README.md | 3 ++- grammar.js | 60 ++++++++++++++++++++++++++++++++++++++++-------------- 2 files changed, 47 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index e4bc50656..0fc33bd85 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ tree-sitter-java ================ -[![Build/test](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml) +[![CI](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml) +[![Discord](https://img.shields.io/discord/1063097320771698699?logo=discord)](https://discord.gg/w7nTvsVJhm) Java grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). diff --git a/grammar.js b/grammar.js index 412fb80a4..dd5e8faf5 100644 --- a/grammar.js +++ b/grammar.js @@ -144,28 +144,58 @@ module.exports = grammar({ false: $ => 'false', character_literal: $ => token(seq( - "'", + '\'', repeat1(choice( /[^\\'\n]/, /\\./, /\\\n/ )), - "'" + '\'' )), - string_literal: $ => token(choice( - seq('"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/)), '"'), - // TODO: support multiline string literals by debugging the following: - // seq('"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/)), '"', '+', /\n/, '"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/))) - )), - - text_block: $ => token( - seq( - /"""\s*\n/, - optional(/([^"]|("[^"])|(""[^"]))+/), - '"""' - ) + string_literal: $ => choice($._string_literal, $._multiline_string_literal), + _string_literal: $ => seq( + '"', + repeat(choice( + $.string_fragment, + $.escape_sequence, + )), + '"' ), + _multiline_string_literal: $ => seq( + '"""', + repeat(choice( + alias($._multiline_string_fragment, $.multiline_string_fragment), + $._escape_sequence, + )), + '"""' + ), + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + string_fragment: $ => + token.immediate(prec(1, /[^"\\]+/)), + _multiline_string_fragment: () => + prec.right(choice( + /[^"]+/, + seq(/"[^"]*/, repeat(/[^"]+/)) + )), + + _escape_sequence: $ => + choice( + prec(2, token.immediate(seq('\\', /[^abfnrtvxu'\"\\\?]/))), + prec(1, $.escape_sequence) + ), + escape_sequence: () => token.immediate(seq( + '\\', + choice( + /[^xu0-7]/, + /[0-7]{1,3}/, + /x[0-9a-fA-F]{2}/, + /u[0-9a-fA-F]{4}/, + /u{[0-9a-fA-F]+}/ + ))), null_literal: $ => 'null', @@ -444,7 +474,7 @@ module.exports = grammar({ $.continue_statement, $.return_statement, $.yield_statement, - $.switch_expression, //switch statements and expressions are identical + $.switch_expression, // switch statements and expressions are identical $.synchronized_statement, $.local_variable_declaration, $.throw_statement, From eede9a00c41c92b19e1273f089b910f83279749f Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 31 Jan 2023 06:26:20 -0500 Subject: [PATCH 17/23] chore: update tests --- test/corpus/declarations.txt | 12 ++++---- test/corpus/expressions.txt | 25 +++++++++------ test/corpus/literals.txt | 60 ++++++++++++++++++++++++++++-------- 3 files changed, 68 insertions(+), 29 deletions(-) diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 1044d90d7..f2a75c09f 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -100,9 +100,9 @@ module com.foo { } (identifier) (annotation_argument_list (element_value_pair (identifier) (decimal_integer_literal)) - (element_value_pair (identifier) (string_literal)) - (element_value_pair (identifier) (string_literal)) - (element_value_pair (identifier) (string_literal)))) + (element_value_pair (identifier) (string_literal (string_fragment))) + (element_value_pair (identifier) (string_literal (string_fragment))) + (element_value_pair (identifier) (string_literal (string_fragment))))) (scoped_identifier (identifier) (identifier)) (module_body))) @@ -138,7 +138,7 @@ module com.foo {} (module_declaration (annotation (identifier) - (annotation_argument_list (string_literal))) + (annotation_argument_list (string_literal (string_fragment)))) (scoped_identifier (identifier) (identifier)) @@ -760,8 +760,8 @@ record Person(int age) { (object_creation_expression (type_identifier) (argument_list - (string_literal)))))))))) - + (string_literal + (string_fragment))))))))))) ============================================ record declaration that implements interface diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 74f3d4031..aba0a2978 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -236,7 +236,7 @@ for (j.init(i); j.check(); j.update()) { field: (identifier)) name: (identifier) arguments: (argument_list (binary_expression - left: (string_literal) + left: (string_literal (string_fragment)) right: (identifier))))))) (for_statement init: (method_invocation @@ -327,7 +327,7 @@ class WhileDemo { field: (identifier)) name: (identifier) arguments: (argument_list - (binary_expression left: (string_literal) right: (identifier))))) + (binary_expression left: (string_literal (string_fragment)) right: (identifier))))) (expression_statement (update_expression (identifier)))))))))) ================================== @@ -348,7 +348,7 @@ try (FileInputStream input = new FileInputStream("file.txt")) { name: (identifier) value: (object_creation_expression type: (type_identifier) - arguments: (argument_list (string_literal))))) + arguments: (argument_list (string_literal (string_fragment)))))) body: (block (local_variable_declaration type: (integral_type) @@ -396,7 +396,7 @@ class Duck { (annotation_argument_list (element_value_pair (identifier) - (string_literal)))) + (string_literal (string_fragment))))) (annotation (identifier) (annotation_argument_list @@ -448,7 +448,7 @@ class Quack { (class_declaration (modifiers (annotation (identifier) (annotation_argument_list (field_access (identifier) (identifier)))) - (annotation (identifier) (annotation_argument_list (string_literal)))) + (annotation (identifier) (annotation_argument_list (string_literal (string_fragment))))) (identifier) (class_body))) @@ -562,7 +562,8 @@ public class SwitchDemo { (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)) (switch_block_statement_group (switch_label @@ -570,7 +571,8 @@ public class SwitchDemo { (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)) (switch_block_statement_group (switch_label @@ -578,14 +580,16 @@ public class SwitchDemo { (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)) (switch_block_statement_group (switch_label) (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)))) (expression_statement (method_invocation @@ -741,7 +745,8 @@ class Test { field: (identifier)) name: (identifier) arguments: (argument_list - (string_literal)))) + (string_literal + (string_fragment))))) (yield_statement (decimal_integer_literal)))))))))))) diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index de607ed2f..f38812f34 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -147,10 +147,17 @@ string literals --- (program - (expression_statement (string_literal)) - (expression_statement (string_literal)) - (expression_statement (string_literal)) - (expression_statement (string_literal))) + (expression_statement + (string_literal)) + (expression_statement + (string_literal + (escape_sequence))) + (expression_statement + (string_literal + (string_fragment))) + (expression_statement + (string_literal + (string_fragment)))) =============== text block @@ -179,7 +186,7 @@ at new line ""this is double quotes"" "" """; """ -" +"hi """; """ \\ @@ -188,14 +195,41 @@ at new line --- (program - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block))) + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment) + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment)))) ============= null literals From 2cef895282c116211325218c0f29db307cfb198a Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 31 Jan 2023 06:26:39 -0500 Subject: [PATCH 18/23] feat(queries): escape_sequence = @string.escape --- queries/highlights.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/queries/highlights.scm b/queries/highlights.scm index b6259be12..abe278835 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -73,6 +73,7 @@ (character_literal) (string_literal) ] @string +(escape_sequence) @string.escape [ (true) From 2eb92f6af29264c33b895f98991475bc9cf11957 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 31 Jan 2023 06:26:42 -0500 Subject: [PATCH 19/23] chore: generate --- src/grammar.json | 181 +- src/node-types.json | 50 +- src/parser.c | 88880 +++++++++++++++++++++--------------------- 3 files changed, 45563 insertions(+), 43548 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 0ef333f58..ac49b90e5 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -52,10 +52,6 @@ "type": "SYMBOL", "name": "string_literal" }, - { - "type": "SYMBOL", - "name": "text_block" - }, { "type": "SYMBOL", "name": "null_literal" @@ -1065,66 +1061,187 @@ } }, "string_literal": { - "type": "TOKEN", + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_string_literal" + }, + { + "type": "SYMBOL", + "name": "_multiline_string_literal" + } + ] + }, + "_string_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "_multiline_string_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"\"\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_multiline_string_fragment" + }, + "named": true, + "value": "multiline_string_fragment" + }, + { + "type": "SYMBOL", + "name": "_escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"\"\"" + } + ] + }, + "string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\]+" + } + } + }, + "_multiline_string_fragment": { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "CHOICE", "members": [ + { + "type": "PATTERN", + "value": "[^\"]+" + }, { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "\"" + "type": "PATTERN", + "value": "\"[^\"]*" }, { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^\\\\\"\\n]" - }, - { - "type": "PATTERN", - "value": "\\\\(.|\\n)" - } - ] + "type": "PATTERN", + "value": "[^\"]+" } - }, - { - "type": "STRING", - "value": "\"" } ] } ] } }, - "text_block": { - "type": "TOKEN", + "_escape_sequence": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 2, + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "[^abfnrtvxu'\\\"\\\\\\?]" + } + ] + } + } + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "escape_sequence" + } + } + ] + }, + "escape_sequence": { + "type": "IMMEDIATE_TOKEN", "content": { "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "\"\"\"\\s*\\n" + "type": "STRING", + "value": "\\" }, { "type": "CHOICE", "members": [ { "type": "PATTERN", - "value": "([^\"]|(\"[^\"])|(\"\"[^\"]))+" + "value": "[^xu0-7]" }, { - "type": "BLANK" + "type": "PATTERN", + "value": "[0-7]{1,3}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{2}" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "u{[0-9a-fA-F]+}" } ] - }, - { - "type": "STRING", - "value": "\"\"\"" } ] } diff --git a/src/node-types.json b/src/node-types.json index f643a30cb..299298e73 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -43,10 +43,6 @@ "type": "string_literal", "named": true }, - { - "type": "text_block", - "named": true - }, { "type": "true", "named": true @@ -2708,6 +2704,11 @@ ] } }, + { + "type": "multiline_string_fragment", + "named": true, + "fields": {} + }, { "type": "object_creation_expression", "named": true, @@ -3237,6 +3238,29 @@ ] } }, + { + "type": "string_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "multiline_string_fragment", + "named": true + }, + { + "type": "string_fragment", + "named": true + } + ] + } + }, { "type": "super_interfaces", "named": true, @@ -3815,6 +3839,14 @@ "type": "!=", "named": false }, + { + "type": "\"", + "named": false + }, + { + "type": "\"\"\"", + "named": false + }, { "type": "%", "named": false @@ -4067,6 +4099,10 @@ "type": "enum", "named": false }, + { + "type": "escape_sequence", + "named": true + }, { "type": "exports", "named": false @@ -4224,7 +4260,7 @@ "named": false }, { - "type": "string_literal", + "type": "string_fragment", "named": true }, { @@ -4239,10 +4275,6 @@ "type": "synchronized", "named": false }, - { - "type": "text_block", - "named": true - }, { "type": "this", "named": true diff --git a/src/parser.c b/src/parser.c index 97636cc6c..321012d5a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1282 +#define STATE_COUNT 1297 #define LARGE_STATE_COUNT 354 -#define SYMBOL_COUNT 292 +#define SYMBOL_COUNT 305 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 130 +#define TOKEN_COUNT 135 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 11 @@ -27,288 +27,301 @@ enum { sym_true = 8, sym_false = 9, sym_character_literal = 10, - sym_string_literal = 11, - sym_text_block = 12, - sym_null_literal = 13, - anon_sym_LPAREN = 14, - anon_sym_AMP = 15, - anon_sym_RPAREN = 16, - anon_sym_EQ = 17, - anon_sym_PLUS_EQ = 18, - anon_sym_DASH_EQ = 19, - anon_sym_STAR_EQ = 20, - anon_sym_SLASH_EQ = 21, - anon_sym_AMP_EQ = 22, - anon_sym_PIPE_EQ = 23, - anon_sym_CARET_EQ = 24, - anon_sym_PERCENT_EQ = 25, - anon_sym_LT_LT_EQ = 26, - anon_sym_GT_GT_EQ = 27, - anon_sym_GT_GT_GT_EQ = 28, - anon_sym_GT = 29, - anon_sym_LT = 30, - anon_sym_GT_EQ = 31, - anon_sym_LT_EQ = 32, - anon_sym_EQ_EQ = 33, - anon_sym_BANG_EQ = 34, - anon_sym_AMP_AMP = 35, - anon_sym_PIPE_PIPE = 36, - anon_sym_PLUS = 37, - anon_sym_DASH = 38, - anon_sym_STAR = 39, - anon_sym_SLASH = 40, - anon_sym_PIPE = 41, - anon_sym_CARET = 42, - anon_sym_PERCENT = 43, - anon_sym_LT_LT = 44, - anon_sym_GT_GT = 45, - anon_sym_GT_GT_GT = 46, - anon_sym_instanceof = 47, - anon_sym_final = 48, - anon_sym_DASH_GT = 49, - anon_sym_COMMA = 50, - anon_sym_QMARK = 51, - anon_sym_COLON = 52, - anon_sym_BANG = 53, - anon_sym_TILDE = 54, - anon_sym_PLUS_PLUS = 55, - anon_sym_DASH_DASH = 56, - anon_sym_new = 57, - anon_sym_LBRACK = 58, - anon_sym_RBRACK = 59, - anon_sym_DOT = 60, - anon_sym_class = 61, - anon_sym_COLON_COLON = 62, - anon_sym_extends = 63, - anon_sym_switch = 64, - anon_sym_LBRACE = 65, - anon_sym_RBRACE = 66, - anon_sym_case = 67, - anon_sym_default = 68, - anon_sym_SEMI = 69, - anon_sym_assert = 70, - anon_sym_do = 71, - anon_sym_while = 72, - anon_sym_break = 73, - anon_sym_continue = 74, - anon_sym_return = 75, - anon_sym_yield = 76, - anon_sym_synchronized = 77, - anon_sym_throw = 78, - anon_sym_try = 79, - anon_sym_catch = 80, - anon_sym_finally = 81, - anon_sym_if = 82, - anon_sym_else = 83, - anon_sym_for = 84, - anon_sym_AT = 85, - anon_sym_open = 86, - anon_sym_module = 87, - anon_sym_requires = 88, - anon_sym_transitive = 89, - anon_sym_static = 90, - anon_sym_exports = 91, - anon_sym_to = 92, - anon_sym_opens = 93, - anon_sym_uses = 94, - anon_sym_provides = 95, - anon_sym_with = 96, - anon_sym_package = 97, - anon_sym_import = 98, - anon_sym_enum = 99, - anon_sym_public = 100, - anon_sym_protected = 101, - anon_sym_private = 102, - anon_sym_abstract = 103, - anon_sym_strictfp = 104, - anon_sym_native = 105, - anon_sym_transient = 106, - anon_sym_volatile = 107, - anon_sym_sealed = 108, - anon_sym_non_DASHsealed = 109, - anon_sym_implements = 110, - anon_sym_permits = 111, - anon_sym_record = 112, - anon_sym_ATinterface = 113, - anon_sym_interface = 114, - anon_sym_byte = 115, - anon_sym_short = 116, - anon_sym_int = 117, - anon_sym_long = 118, - anon_sym_char = 119, - anon_sym_float = 120, - anon_sym_double = 121, - sym_boolean_type = 122, - sym_void_type = 123, - anon_sym_DOT_DOT_DOT = 124, - anon_sym_throws = 125, - sym_this = 126, - sym_super = 127, - sym_line_comment = 128, - sym_block_comment = 129, - sym_program = 130, - sym__literal = 131, - sym_expression = 132, - sym_cast_expression = 133, - sym_assignment_expression = 134, - sym_binary_expression = 135, - sym_instanceof_expression = 136, - sym_lambda_expression = 137, - sym_inferred_parameters = 138, - sym_ternary_expression = 139, - sym_unary_expression = 140, - sym_update_expression = 141, - sym_primary_expression = 142, - sym_array_creation_expression = 143, - sym_dimensions_expr = 144, - sym_parenthesized_expression = 145, - sym_class_literal = 146, - sym_object_creation_expression = 147, - sym__unqualified_object_creation_expression = 148, - sym_field_access = 149, - sym_array_access = 150, - sym_method_invocation = 151, - sym_argument_list = 152, - sym_method_reference = 153, - sym_type_arguments = 154, - sym_wildcard = 155, - sym__wildcard_bounds = 156, - sym_dimensions = 157, - sym_switch_expression = 158, - sym_switch_block = 159, - sym_switch_block_statement_group = 160, - sym_switch_rule = 161, - sym_switch_label = 162, - sym_statement = 163, - sym_block = 164, - sym_expression_statement = 165, - sym_labeled_statement = 166, - sym_assert_statement = 167, - sym_do_statement = 168, - sym_break_statement = 169, - sym_continue_statement = 170, - sym_return_statement = 171, - sym_yield_statement = 172, - sym_synchronized_statement = 173, - sym_throw_statement = 174, - sym_try_statement = 175, - sym_catch_clause = 176, - sym_catch_formal_parameter = 177, - sym_catch_type = 178, - sym_finally_clause = 179, - sym_try_with_resources_statement = 180, - sym_resource_specification = 181, - sym_resource = 182, - sym_if_statement = 183, - sym_while_statement = 184, - sym_for_statement = 185, - sym_enhanced_for_statement = 186, - sym__annotation = 187, - sym_marker_annotation = 188, - sym_annotation = 189, - sym_annotation_argument_list = 190, - sym_element_value_pair = 191, - sym__element_value = 192, - sym_element_value_array_initializer = 193, - sym_declaration = 194, - sym_module_declaration = 195, - sym_module_body = 196, - sym_module_directive = 197, - sym_requires_module_directive = 198, - sym_requires_modifier = 199, - sym_exports_module_directive = 200, - sym_opens_module_directive = 201, - sym_uses_module_directive = 202, - sym_provides_module_directive = 203, - sym_package_declaration = 204, - sym_import_declaration = 205, - sym_asterisk = 206, - sym_enum_declaration = 207, - sym_enum_body = 208, - sym_enum_body_declarations = 209, - sym_enum_constant = 210, - sym_class_declaration = 211, - sym_modifiers = 212, - sym_type_parameters = 213, - sym_type_parameter = 214, - sym_type_bound = 215, - sym_superclass = 216, - sym_super_interfaces = 217, - sym_type_list = 218, - sym_permits = 219, - sym_class_body = 220, - sym_static_initializer = 221, - sym_constructor_declaration = 222, - sym__constructor_declarator = 223, - sym_constructor_body = 224, - sym_explicit_constructor_invocation = 225, - sym_scoped_identifier = 226, - sym_field_declaration = 227, - sym_record_declaration = 228, - sym_annotation_type_declaration = 229, - sym_annotation_type_body = 230, - sym_annotation_type_element_declaration = 231, - sym__default_value = 232, - sym_interface_declaration = 233, - sym_extends_interfaces = 234, - sym_interface_body = 235, - sym_constant_declaration = 236, - sym__variable_declarator_list = 237, - sym_variable_declarator = 238, - sym__variable_declarator_id = 239, - sym_array_initializer = 240, - sym__type = 241, - sym__unannotated_type = 242, - sym_annotated_type = 243, - sym_scoped_type_identifier = 244, - sym_generic_type = 245, - sym_array_type = 246, - sym_integral_type = 247, - sym_floating_point_type = 248, - sym__method_header = 249, - sym__method_declarator = 250, - sym_formal_parameters = 251, - sym_formal_parameter = 252, - sym_receiver_parameter = 253, - sym_spread_parameter = 254, - sym_throws = 255, - sym_local_variable_declaration = 256, - sym_method_declaration = 257, - sym_compact_constructor_declaration = 258, - aux_sym_program_repeat1 = 259, - aux_sym_cast_expression_repeat1 = 260, - aux_sym_inferred_parameters_repeat1 = 261, - aux_sym_array_creation_expression_repeat1 = 262, - aux_sym_array_creation_expression_repeat2 = 263, - aux_sym_argument_list_repeat1 = 264, - aux_sym_type_arguments_repeat1 = 265, - aux_sym_dimensions_repeat1 = 266, - aux_sym_switch_block_repeat1 = 267, - aux_sym_switch_block_repeat2 = 268, - aux_sym_switch_block_statement_group_repeat1 = 269, - aux_sym_try_statement_repeat1 = 270, - aux_sym_catch_type_repeat1 = 271, - aux_sym_resource_specification_repeat1 = 272, - aux_sym_for_statement_repeat1 = 273, - aux_sym_for_statement_repeat2 = 274, - aux_sym_annotation_argument_list_repeat1 = 275, - aux_sym_element_value_array_initializer_repeat1 = 276, - aux_sym_module_body_repeat1 = 277, - aux_sym_requires_module_directive_repeat1 = 278, - aux_sym_exports_module_directive_repeat1 = 279, - aux_sym_provides_module_directive_repeat1 = 280, - aux_sym_enum_body_repeat1 = 281, - aux_sym_enum_body_declarations_repeat1 = 282, - aux_sym_modifiers_repeat1 = 283, - aux_sym_type_parameters_repeat1 = 284, - aux_sym_type_bound_repeat1 = 285, - aux_sym_type_list_repeat1 = 286, - aux_sym_annotation_type_body_repeat1 = 287, - aux_sym_interface_body_repeat1 = 288, - aux_sym__variable_declarator_list_repeat1 = 289, - aux_sym_array_initializer_repeat1 = 290, - aux_sym_formal_parameters_repeat1 = 291, - alias_sym_type_identifier = 292, + anon_sym_DQUOTE = 11, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 12, + sym_string_fragment = 13, + aux_sym__multiline_string_fragment_token1 = 14, + aux_sym__multiline_string_fragment_token2 = 15, + aux_sym__escape_sequence_token1 = 16, + sym_escape_sequence = 17, + sym_null_literal = 18, + anon_sym_LPAREN = 19, + anon_sym_AMP = 20, + anon_sym_RPAREN = 21, + anon_sym_EQ = 22, + anon_sym_PLUS_EQ = 23, + anon_sym_DASH_EQ = 24, + anon_sym_STAR_EQ = 25, + anon_sym_SLASH_EQ = 26, + anon_sym_AMP_EQ = 27, + anon_sym_PIPE_EQ = 28, + anon_sym_CARET_EQ = 29, + anon_sym_PERCENT_EQ = 30, + anon_sym_LT_LT_EQ = 31, + anon_sym_GT_GT_EQ = 32, + anon_sym_GT_GT_GT_EQ = 33, + anon_sym_GT = 34, + anon_sym_LT = 35, + anon_sym_GT_EQ = 36, + anon_sym_LT_EQ = 37, + anon_sym_EQ_EQ = 38, + anon_sym_BANG_EQ = 39, + anon_sym_AMP_AMP = 40, + anon_sym_PIPE_PIPE = 41, + anon_sym_PLUS = 42, + anon_sym_DASH = 43, + anon_sym_STAR = 44, + anon_sym_SLASH = 45, + anon_sym_PIPE = 46, + anon_sym_CARET = 47, + anon_sym_PERCENT = 48, + anon_sym_LT_LT = 49, + anon_sym_GT_GT = 50, + anon_sym_GT_GT_GT = 51, + anon_sym_instanceof = 52, + anon_sym_final = 53, + anon_sym_DASH_GT = 54, + anon_sym_COMMA = 55, + anon_sym_QMARK = 56, + anon_sym_COLON = 57, + anon_sym_BANG = 58, + anon_sym_TILDE = 59, + anon_sym_PLUS_PLUS = 60, + anon_sym_DASH_DASH = 61, + anon_sym_new = 62, + anon_sym_LBRACK = 63, + anon_sym_RBRACK = 64, + anon_sym_DOT = 65, + anon_sym_class = 66, + anon_sym_COLON_COLON = 67, + anon_sym_extends = 68, + anon_sym_switch = 69, + anon_sym_LBRACE = 70, + anon_sym_RBRACE = 71, + anon_sym_case = 72, + anon_sym_default = 73, + anon_sym_SEMI = 74, + anon_sym_assert = 75, + anon_sym_do = 76, + anon_sym_while = 77, + anon_sym_break = 78, + anon_sym_continue = 79, + anon_sym_return = 80, + anon_sym_yield = 81, + anon_sym_synchronized = 82, + anon_sym_throw = 83, + anon_sym_try = 84, + anon_sym_catch = 85, + anon_sym_finally = 86, + anon_sym_if = 87, + anon_sym_else = 88, + anon_sym_for = 89, + anon_sym_AT = 90, + anon_sym_open = 91, + anon_sym_module = 92, + anon_sym_requires = 93, + anon_sym_transitive = 94, + anon_sym_static = 95, + anon_sym_exports = 96, + anon_sym_to = 97, + anon_sym_opens = 98, + anon_sym_uses = 99, + anon_sym_provides = 100, + anon_sym_with = 101, + anon_sym_package = 102, + anon_sym_import = 103, + anon_sym_enum = 104, + anon_sym_public = 105, + anon_sym_protected = 106, + anon_sym_private = 107, + anon_sym_abstract = 108, + anon_sym_strictfp = 109, + anon_sym_native = 110, + anon_sym_transient = 111, + anon_sym_volatile = 112, + anon_sym_sealed = 113, + anon_sym_non_DASHsealed = 114, + anon_sym_implements = 115, + anon_sym_permits = 116, + anon_sym_record = 117, + anon_sym_ATinterface = 118, + anon_sym_interface = 119, + anon_sym_byte = 120, + anon_sym_short = 121, + anon_sym_int = 122, + anon_sym_long = 123, + anon_sym_char = 124, + anon_sym_float = 125, + anon_sym_double = 126, + sym_boolean_type = 127, + sym_void_type = 128, + anon_sym_DOT_DOT_DOT = 129, + anon_sym_throws = 130, + sym_this = 131, + sym_super = 132, + sym_line_comment = 133, + sym_block_comment = 134, + sym_program = 135, + sym__literal = 136, + sym_string_literal = 137, + sym__string_literal = 138, + sym__multiline_string_literal = 139, + sym__multiline_string_fragment = 140, + sym__escape_sequence = 141, + sym_expression = 142, + sym_cast_expression = 143, + sym_assignment_expression = 144, + sym_binary_expression = 145, + sym_instanceof_expression = 146, + sym_lambda_expression = 147, + sym_inferred_parameters = 148, + sym_ternary_expression = 149, + sym_unary_expression = 150, + sym_update_expression = 151, + sym_primary_expression = 152, + sym_array_creation_expression = 153, + sym_dimensions_expr = 154, + sym_parenthesized_expression = 155, + sym_class_literal = 156, + sym_object_creation_expression = 157, + sym__unqualified_object_creation_expression = 158, + sym_field_access = 159, + sym_array_access = 160, + sym_method_invocation = 161, + sym_argument_list = 162, + sym_method_reference = 163, + sym_type_arguments = 164, + sym_wildcard = 165, + sym__wildcard_bounds = 166, + sym_dimensions = 167, + sym_switch_expression = 168, + sym_switch_block = 169, + sym_switch_block_statement_group = 170, + sym_switch_rule = 171, + sym_switch_label = 172, + sym_statement = 173, + sym_block = 174, + sym_expression_statement = 175, + sym_labeled_statement = 176, + sym_assert_statement = 177, + sym_do_statement = 178, + sym_break_statement = 179, + sym_continue_statement = 180, + sym_return_statement = 181, + sym_yield_statement = 182, + sym_synchronized_statement = 183, + sym_throw_statement = 184, + sym_try_statement = 185, + sym_catch_clause = 186, + sym_catch_formal_parameter = 187, + sym_catch_type = 188, + sym_finally_clause = 189, + sym_try_with_resources_statement = 190, + sym_resource_specification = 191, + sym_resource = 192, + sym_if_statement = 193, + sym_while_statement = 194, + sym_for_statement = 195, + sym_enhanced_for_statement = 196, + sym__annotation = 197, + sym_marker_annotation = 198, + sym_annotation = 199, + sym_annotation_argument_list = 200, + sym_element_value_pair = 201, + sym__element_value = 202, + sym_element_value_array_initializer = 203, + sym_declaration = 204, + sym_module_declaration = 205, + sym_module_body = 206, + sym_module_directive = 207, + sym_requires_module_directive = 208, + sym_requires_modifier = 209, + sym_exports_module_directive = 210, + sym_opens_module_directive = 211, + sym_uses_module_directive = 212, + sym_provides_module_directive = 213, + sym_package_declaration = 214, + sym_import_declaration = 215, + sym_asterisk = 216, + sym_enum_declaration = 217, + sym_enum_body = 218, + sym_enum_body_declarations = 219, + sym_enum_constant = 220, + sym_class_declaration = 221, + sym_modifiers = 222, + sym_type_parameters = 223, + sym_type_parameter = 224, + sym_type_bound = 225, + sym_superclass = 226, + sym_super_interfaces = 227, + sym_type_list = 228, + sym_permits = 229, + sym_class_body = 230, + sym_static_initializer = 231, + sym_constructor_declaration = 232, + sym__constructor_declarator = 233, + sym_constructor_body = 234, + sym_explicit_constructor_invocation = 235, + sym_scoped_identifier = 236, + sym_field_declaration = 237, + sym_record_declaration = 238, + sym_annotation_type_declaration = 239, + sym_annotation_type_body = 240, + sym_annotation_type_element_declaration = 241, + sym__default_value = 242, + sym_interface_declaration = 243, + sym_extends_interfaces = 244, + sym_interface_body = 245, + sym_constant_declaration = 246, + sym__variable_declarator_list = 247, + sym_variable_declarator = 248, + sym__variable_declarator_id = 249, + sym_array_initializer = 250, + sym__type = 251, + sym__unannotated_type = 252, + sym_annotated_type = 253, + sym_scoped_type_identifier = 254, + sym_generic_type = 255, + sym_array_type = 256, + sym_integral_type = 257, + sym_floating_point_type = 258, + sym__method_header = 259, + sym__method_declarator = 260, + sym_formal_parameters = 261, + sym_formal_parameter = 262, + sym_receiver_parameter = 263, + sym_spread_parameter = 264, + sym_throws = 265, + sym_local_variable_declaration = 266, + sym_method_declaration = 267, + sym_compact_constructor_declaration = 268, + aux_sym_program_repeat1 = 269, + aux_sym__string_literal_repeat1 = 270, + aux_sym__multiline_string_literal_repeat1 = 271, + aux_sym__multiline_string_fragment_repeat1 = 272, + aux_sym_cast_expression_repeat1 = 273, + aux_sym_inferred_parameters_repeat1 = 274, + aux_sym_array_creation_expression_repeat1 = 275, + aux_sym_array_creation_expression_repeat2 = 276, + aux_sym_argument_list_repeat1 = 277, + aux_sym_type_arguments_repeat1 = 278, + aux_sym_dimensions_repeat1 = 279, + aux_sym_switch_block_repeat1 = 280, + aux_sym_switch_block_repeat2 = 281, + aux_sym_switch_block_statement_group_repeat1 = 282, + aux_sym_try_statement_repeat1 = 283, + aux_sym_catch_type_repeat1 = 284, + aux_sym_resource_specification_repeat1 = 285, + aux_sym_for_statement_repeat1 = 286, + aux_sym_for_statement_repeat2 = 287, + aux_sym_annotation_argument_list_repeat1 = 288, + aux_sym_element_value_array_initializer_repeat1 = 289, + aux_sym_module_body_repeat1 = 290, + aux_sym_requires_module_directive_repeat1 = 291, + aux_sym_exports_module_directive_repeat1 = 292, + aux_sym_provides_module_directive_repeat1 = 293, + aux_sym_enum_body_repeat1 = 294, + aux_sym_enum_body_declarations_repeat1 = 295, + aux_sym_modifiers_repeat1 = 296, + aux_sym_type_parameters_repeat1 = 297, + aux_sym_type_bound_repeat1 = 298, + aux_sym_type_list_repeat1 = 299, + aux_sym_annotation_type_body_repeat1 = 300, + aux_sym_interface_body_repeat1 = 301, + aux_sym__variable_declarator_list_repeat1 = 302, + aux_sym_array_initializer_repeat1 = 303, + aux_sym_formal_parameters_repeat1 = 304, + alias_sym_type_identifier = 305, }; static const char * const ts_symbol_names[] = { @@ -323,8 +336,13 @@ static const char * const ts_symbol_names[] = { [sym_true] = "true", [sym_false] = "false", [sym_character_literal] = "character_literal", - [sym_string_literal] = "string_literal", - [sym_text_block] = "text_block", + [anon_sym_DQUOTE] = "\"", + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = "\"\"\"", + [sym_string_fragment] = "string_fragment", + [aux_sym__multiline_string_fragment_token1] = "_multiline_string_fragment_token1", + [aux_sym__multiline_string_fragment_token2] = "_multiline_string_fragment_token2", + [aux_sym__escape_sequence_token1] = "_escape_sequence_token1", + [sym_escape_sequence] = "escape_sequence", [sym_null_literal] = "null_literal", [anon_sym_LPAREN] = "(", [anon_sym_AMP] = "&", @@ -444,6 +462,11 @@ static const char * const ts_symbol_names[] = { [sym_block_comment] = "block_comment", [sym_program] = "program", [sym__literal] = "_literal", + [sym_string_literal] = "string_literal", + [sym__string_literal] = "_string_literal", + [sym__multiline_string_literal] = "_multiline_string_literal", + [sym__multiline_string_fragment] = "multiline_string_fragment", + [sym__escape_sequence] = "_escape_sequence", [sym_expression] = "expression", [sym_cast_expression] = "cast_expression", [sym_assignment_expression] = "assignment_expression", @@ -572,6 +595,9 @@ static const char * const ts_symbol_names[] = { [sym_method_declaration] = "method_declaration", [sym_compact_constructor_declaration] = "compact_constructor_declaration", [aux_sym_program_repeat1] = "program_repeat1", + [aux_sym__string_literal_repeat1] = "_string_literal_repeat1", + [aux_sym__multiline_string_literal_repeat1] = "_multiline_string_literal_repeat1", + [aux_sym__multiline_string_fragment_repeat1] = "_multiline_string_fragment_repeat1", [aux_sym_cast_expression_repeat1] = "cast_expression_repeat1", [aux_sym_inferred_parameters_repeat1] = "inferred_parameters_repeat1", [aux_sym_array_creation_expression_repeat1] = "array_creation_expression_repeat1", @@ -619,8 +645,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_true] = sym_true, [sym_false] = sym_false, [sym_character_literal] = sym_character_literal, - [sym_string_literal] = sym_string_literal, - [sym_text_block] = sym_text_block, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE_DQUOTE, + [sym_string_fragment] = sym_string_fragment, + [aux_sym__multiline_string_fragment_token1] = aux_sym__multiline_string_fragment_token1, + [aux_sym__multiline_string_fragment_token2] = aux_sym__multiline_string_fragment_token2, + [aux_sym__escape_sequence_token1] = aux_sym__escape_sequence_token1, + [sym_escape_sequence] = sym_escape_sequence, [sym_null_literal] = sym_null_literal, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_AMP] = anon_sym_AMP, @@ -740,6 +771,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_block_comment] = sym_block_comment, [sym_program] = sym_program, [sym__literal] = sym__literal, + [sym_string_literal] = sym_string_literal, + [sym__string_literal] = sym__string_literal, + [sym__multiline_string_literal] = sym__multiline_string_literal, + [sym__multiline_string_fragment] = sym__multiline_string_fragment, + [sym__escape_sequence] = sym__escape_sequence, [sym_expression] = sym_expression, [sym_cast_expression] = sym_cast_expression, [sym_assignment_expression] = sym_assignment_expression, @@ -868,6 +904,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_method_declaration] = sym_method_declaration, [sym_compact_constructor_declaration] = sym_compact_constructor_declaration, [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, + [aux_sym__multiline_string_fragment_repeat1] = aux_sym__multiline_string_fragment_repeat1, [aux_sym_cast_expression_repeat1] = aux_sym_cast_expression_repeat1, [aux_sym_inferred_parameters_repeat1] = aux_sym_inferred_parameters_repeat1, [aux_sym_array_creation_expression_repeat1] = aux_sym_array_creation_expression_repeat1, @@ -948,11 +987,31 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_string_literal] = { + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = { + .visible = true, + .named = false, + }, + [sym_string_fragment] = { .visible = true, .named = true, }, - [sym_text_block] = { + [aux_sym__multiline_string_fragment_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiline_string_fragment_token2] = { + .visible = false, + .named = false, + }, + [aux_sym__escape_sequence_token1] = { + .visible = false, + .named = false, + }, + [sym_escape_sequence] = { .visible = true, .named = true, }, @@ -1433,6 +1492,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym__string_literal] = { + .visible = false, + .named = true, + }, + [sym__multiline_string_literal] = { + .visible = false, + .named = true, + }, + [sym__multiline_string_fragment] = { + .visible = true, + .named = true, + }, + [sym__escape_sequence] = { + .visible = false, + .named = true, + }, [sym_expression] = { .visible = false, .named = true, @@ -1952,6 +2031,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__string_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiline_string_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiline_string_fragment_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_cast_expression_repeat1] = { .visible = false, .named = false, @@ -3322,11 +3413,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 7, - [10] = 8, - [11] = 11, + [9] = 9, + [10] = 10, + [11] = 6, [12] = 12, - [13] = 13, + [13] = 9, [14] = 14, [15] = 15, [16] = 16, @@ -3345,49 +3436,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 31, - [32] = 32, + [32] = 14, [33] = 33, - [34] = 19, - [35] = 20, - [36] = 21, + [34] = 34, + [35] = 35, + [36] = 33, [37] = 37, - [38] = 22, - [39] = 30, - [40] = 31, - [41] = 32, - [42] = 33, - [43] = 37, - [44] = 15, + [38] = 38, + [39] = 35, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, [45] = 45, - [46] = 46, - [47] = 47, - [48] = 48, - [49] = 49, - [50] = 50, - [51] = 51, + [46] = 23, + [47] = 22, + [48] = 21, + [49] = 19, + [50] = 18, + [51] = 45, [52] = 52, - [53] = 53, - [54] = 46, - [55] = 55, - [56] = 48, - [57] = 47, - [58] = 45, - [59] = 55, - [60] = 18, - [61] = 29, - [62] = 28, - [63] = 27, + [53] = 44, + [54] = 43, + [55] = 16, + [56] = 20, + [57] = 52, + [58] = 42, + [59] = 41, + [60] = 40, + [61] = 61, + [62] = 24, + [63] = 25, [64] = 26, - [65] = 53, - [66] = 25, - [67] = 52, - [68] = 51, - [69] = 24, - [70] = 23, - [71] = 50, - [72] = 14, - [73] = 16, - [74] = 49, + [65] = 27, + [66] = 38, + [67] = 37, + [68] = 28, + [69] = 29, + [70] = 30, + [71] = 31, + [72] = 61, + [73] = 15, + [74] = 34, [75] = 75, [76] = 76, [77] = 77, @@ -3397,22 +3488,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [81] = 81, [82] = 82, [83] = 83, - [84] = 84, - [85] = 84, + [84] = 83, + [85] = 85, [86] = 86, - [87] = 86, + [87] = 85, [88] = 88, [89] = 89, - [90] = 90, + [90] = 88, [91] = 91, - [92] = 92, - [93] = 92, + [92] = 88, + [93] = 93, [94] = 94, - [95] = 92, + [95] = 95, [96] = 96, [97] = 97, - [98] = 79, - [99] = 82, + [98] = 98, + [99] = 99, [100] = 100, [101] = 101, [102] = 102, @@ -3421,10 +3512,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [105] = 105, [106] = 106, [107] = 107, - [108] = 108, + [108] = 107, [109] = 109, [110] = 110, - [111] = 111, + [111] = 109, [112] = 112, [113] = 113, [114] = 114, @@ -3435,29 +3526,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [119] = 119, [120] = 120, [121] = 121, - [122] = 122, + [122] = 115, [123] = 123, [124] = 124, [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, + [126] = 119, + [127] = 120, + [128] = 123, + [129] = 112, [130] = 130, - [131] = 131, + [131] = 121, [132] = 132, [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, + [134] = 82, + [135] = 133, + [136] = 117, + [137] = 116, [138] = 138, - [139] = 139, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 144, + [139] = 138, + [140] = 81, + [141] = 113, + [142] = 124, + [143] = 118, + [144] = 125, [145] = 145, [146] = 146, [147] = 147, @@ -3477,7 +3568,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [161] = 161, [162] = 162, [163] = 163, - [164] = 164, + [164] = 155, [165] = 165, [166] = 166, [167] = 167, @@ -3491,12 +3582,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [175] = 175, [176] = 176, [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 183, + [178] = 145, + [179] = 151, + [180] = 150, + [181] = 149, + [182] = 148, + [183] = 147, [184] = 184, [185] = 185, [186] = 186, @@ -3505,19 +3596,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [189] = 189, [190] = 190, [191] = 191, - [192] = 192, + [192] = 187, [193] = 193, [194] = 194, - [195] = 195, + [195] = 168, [196] = 196, [197] = 197, [198] = 198, [199] = 199, - [200] = 200, + [200] = 165, [201] = 201, [202] = 202, [203] = 203, - [204] = 204, + [204] = 166, [205] = 205, [206] = 206, [207] = 207, @@ -3534,15 +3625,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [218] = 218, [219] = 219, [220] = 220, - [221] = 202, + [221] = 221, [222] = 222, [223] = 223, [224] = 224, - [225] = 203, + [225] = 225, [226] = 226, [227] = 227, - [228] = 228, - [229] = 229, + [228] = 171, + [229] = 167, [230] = 230, [231] = 231, [232] = 232, @@ -3550,7 +3641,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [234] = 234, [235] = 235, [236] = 236, - [237] = 237, + [237] = 184, [238] = 238, [239] = 239, [240] = 240, @@ -3559,7 +3650,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [243] = 243, [244] = 244, [245] = 245, - [246] = 246, + [246] = 152, [247] = 247, [248] = 248, [249] = 249, @@ -3571,37 +3662,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [255] = 255, [256] = 256, [257] = 257, - [258] = 258, + [258] = 146, [259] = 259, - [260] = 260, + [260] = 189, [261] = 261, - [262] = 262, - [263] = 261, - [264] = 264, + [262] = 194, + [263] = 218, + [264] = 188, [265] = 265, [266] = 266, [267] = 267, - [268] = 266, - [269] = 269, + [268] = 268, + [269] = 154, [270] = 270, - [271] = 271, - [272] = 265, + [271] = 212, + [272] = 272, [273] = 273, [274] = 274, - [275] = 271, - [276] = 270, - [277] = 264, - [278] = 269, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, [279] = 279, - [280] = 279, + [280] = 280, [281] = 281, - [282] = 259, - [283] = 273, + [282] = 282, + [283] = 283, [284] = 284, - [285] = 267, - [286] = 284, - [287] = 260, - [288] = 281, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, [289] = 289, [290] = 290, [291] = 291, @@ -3611,7 +3702,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [295] = 295, [296] = 296, [297] = 297, - [298] = 295, + [298] = 298, [299] = 299, [300] = 300, [301] = 301, @@ -3624,41 +3715,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [308] = 308, [309] = 309, [310] = 310, - [311] = 305, + [311] = 311, [312] = 312, [313] = 313, [314] = 314, [315] = 315, - [316] = 307, + [316] = 316, [317] = 317, - [318] = 292, + [318] = 318, [319] = 319, - [320] = 308, + [320] = 320, [321] = 321, [322] = 322, [323] = 323, - [324] = 300, - [325] = 319, - [326] = 317, + [324] = 324, + [325] = 325, + [326] = 326, [327] = 327, - [328] = 314, + [328] = 328, [329] = 329, [330] = 330, - [331] = 313, - [332] = 297, - [333] = 310, - [334] = 306, - [335] = 289, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, [336] = 336, - [337] = 304, - [338] = 330, - [339] = 290, + [337] = 337, + [338] = 338, + [339] = 339, [340] = 340, - [341] = 294, - [342] = 336, - [343] = 293, - [344] = 323, - [345] = 296, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, [346] = 346, [347] = 347, [348] = 348, @@ -3690,13 +3781,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [374] = 374, [375] = 375, [376] = 376, - [377] = 377, - [378] = 362, + [377] = 362, + [378] = 378, [379] = 379, [380] = 380, [381] = 381, - [382] = 382, - [383] = 370, + [382] = 372, + [383] = 383, [384] = 384, [385] = 385, [386] = 386, @@ -3706,19 +3797,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [390] = 390, [391] = 391, [392] = 392, - [393] = 381, - [394] = 394, + [393] = 393, + [394] = 381, [395] = 395, [396] = 396, [397] = 397, [398] = 398, - [399] = 258, - [400] = 400, - [401] = 217, + [399] = 399, + [400] = 310, + [401] = 401, [402] = 402, [403] = 403, [404] = 404, - [405] = 405, + [405] = 341, [406] = 406, [407] = 407, [408] = 408, @@ -3810,14 +3901,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [494] = 494, [495] = 495, [496] = 496, - [497] = 408, - [498] = 414, - [499] = 407, + [497] = 497, + [498] = 498, + [499] = 499, [500] = 500, [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, + [502] = 411, + [503] = 408, + [504] = 413, [505] = 505, [506] = 506, [507] = 507, @@ -3835,95 +3926,95 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [519] = 519, [520] = 520, [521] = 521, - [522] = 410, + [522] = 522, [523] = 523, [524] = 524, [525] = 525, [526] = 526, [527] = 527, - [528] = 427, + [528] = 528, [529] = 529, [530] = 530, [531] = 531, - [532] = 532, + [532] = 414, [533] = 533, [534] = 534, - [535] = 535, + [535] = 410, [536] = 536, [537] = 537, - [538] = 423, - [539] = 418, - [540] = 382, - [541] = 386, - [542] = 396, - [543] = 395, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 442, + [538] = 538, + [539] = 428, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 427, + [545] = 383, + [546] = 393, + [547] = 386, + [548] = 396, + [549] = 549, [550] = 550, [551] = 551, - [552] = 552, - [553] = 552, + [552] = 528, + [553] = 553, [554] = 554, - [555] = 532, - [556] = 547, - [557] = 557, - [558] = 429, - [559] = 545, - [560] = 457, - [561] = 536, - [562] = 562, - [563] = 534, - [564] = 529, - [565] = 524, - [566] = 535, + [555] = 555, + [556] = 439, + [557] = 543, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 451, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 86, [567] = 567, - [568] = 521, + [568] = 568, [569] = 569, - [570] = 537, - [571] = 550, - [572] = 572, - [573] = 531, - [574] = 567, - [575] = 551, - [576] = 530, + [570] = 570, + [571] = 571, + [572] = 559, + [573] = 453, + [574] = 561, + [575] = 563, + [576] = 576, [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 525, - [582] = 582, - [583] = 548, - [584] = 523, - [585] = 562, - [586] = 586, - [587] = 527, - [588] = 588, - [589] = 533, - [590] = 569, - [591] = 453, - [592] = 454, - [593] = 578, - [594] = 83, - [595] = 557, - [596] = 596, - [597] = 582, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, + [578] = 433, + [579] = 431, + [580] = 537, + [581] = 567, + [582] = 538, + [583] = 583, + [584] = 558, + [585] = 585, + [586] = 529, + [587] = 576, + [588] = 570, + [589] = 551, + [590] = 533, + [591] = 542, + [592] = 553, + [593] = 530, + [594] = 531, + [595] = 526, + [596] = 554, + [597] = 534, + [598] = 569, + [599] = 568, + [600] = 536, + [601] = 527, + [602] = 540, [603] = 603, [604] = 604, [605] = 605, - [606] = 491, + [606] = 606, [607] = 607, [608] = 608, [609] = 609, - [610] = 610, + [610] = 488, [611] = 611, [612] = 612, [613] = 613, @@ -3931,88 +4022,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [615] = 615, [616] = 616, [617] = 617, - [618] = 615, + [618] = 618, [619] = 619, - [620] = 610, + [620] = 620, [621] = 621, - [622] = 622, - [623] = 617, - [624] = 613, + [622] = 617, + [623] = 623, + [624] = 624, [625] = 625, - [626] = 626, + [626] = 621, [627] = 627, - [628] = 611, + [628] = 628, [629] = 629, [630] = 630, [631] = 631, [632] = 632, - [633] = 632, - [634] = 634, - [635] = 634, - [636] = 636, - [637] = 637, + [633] = 633, + [634] = 623, + [635] = 635, + [636] = 628, + [637] = 629, [638] = 638, - [639] = 639, + [639] = 633, [640] = 640, - [641] = 400, + [641] = 640, [642] = 642, [643] = 643, [644] = 644, [645] = 645, - [646] = 406, + [646] = 646, [647] = 647, [648] = 648, - [649] = 649, - [650] = 650, - [651] = 418, - [652] = 410, + [649] = 404, + [650] = 403, + [651] = 651, + [652] = 652, [653] = 653, - [654] = 411, - [655] = 655, - [656] = 415, - [657] = 402, - [658] = 403, - [659] = 659, - [660] = 417, + [654] = 654, + [655] = 410, + [656] = 656, + [657] = 414, + [658] = 658, + [659] = 412, + [660] = 409, [661] = 661, [662] = 662, - [663] = 661, - [664] = 664, - [665] = 662, - [666] = 413, - [667] = 667, - [668] = 395, - [669] = 396, + [663] = 406, + [664] = 417, + [665] = 665, + [666] = 666, + [667] = 662, + [668] = 393, + [669] = 402, [670] = 670, - [671] = 409, - [672] = 419, - [673] = 673, - [674] = 412, - [675] = 420, - [676] = 454, - [677] = 422, - [678] = 678, - [679] = 457, - [680] = 429, - [681] = 442, - [682] = 453, - [683] = 683, - [684] = 416, - [685] = 421, - [686] = 678, - [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 387, - [692] = 690, - [693] = 388, + [671] = 415, + [672] = 672, + [673] = 396, + [674] = 666, + [675] = 675, + [676] = 420, + [677] = 416, + [678] = 407, + [679] = 679, + [680] = 421, + [681] = 418, + [682] = 682, + [683] = 419, + [684] = 684, + [685] = 685, + [686] = 433, + [687] = 422, + [688] = 439, + [689] = 431, + [690] = 684, + [691] = 453, + [692] = 451, + [693] = 693, [694] = 694, - [695] = 695, + [695] = 389, [696] = 696, - [697] = 696, + [697] = 693, [698] = 698, - [699] = 699, + [699] = 392, [700] = 700, [701] = 701, [702] = 702, @@ -4021,75 +4112,75 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [705] = 705, [706] = 706, [707] = 707, - [708] = 707, - [709] = 709, + [708] = 708, + [709] = 706, [710] = 710, [711] = 711, [712] = 712, [713] = 713, [714] = 714, [715] = 715, - [716] = 714, - [717] = 709, - [718] = 718, - [719] = 719, - [720] = 720, + [716] = 716, + [717] = 717, + [718] = 715, + [719] = 712, + [720] = 716, [721] = 721, - [722] = 403, + [722] = 722, [723] = 723, [724] = 724, [725] = 725, [726] = 726, [727] = 727, - [728] = 728, + [728] = 406, [729] = 729, [730] = 730, [731] = 731, [732] = 732, - [733] = 733, - [734] = 728, - [735] = 726, + [733] = 729, + [734] = 734, + [735] = 735, [736] = 736, - [737] = 732, + [737] = 731, [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, - [743] = 743, - [744] = 389, - [745] = 392, + [743] = 730, + [744] = 744, + [745] = 745, [746] = 746, - [747] = 391, + [747] = 747, [748] = 748, - [749] = 390, - [750] = 750, - [751] = 416, - [752] = 748, - [753] = 753, + [749] = 749, + [750] = 387, + [751] = 391, + [752] = 418, + [753] = 388, [754] = 754, [755] = 755, - [756] = 753, - [757] = 757, + [756] = 754, + [757] = 390, [758] = 758, [759] = 759, - [760] = 760, + [760] = 759, [761] = 761, [762] = 762, [763] = 763, [764] = 764, - [765] = 762, + [765] = 765, [766] = 766, [767] = 767, [768] = 768, [769] = 769, - [770] = 449, + [770] = 770, [771] = 771, [772] = 772, - [773] = 773, + [773] = 770, [774] = 774, [775] = 775, - [776] = 776, + [776] = 432, [777] = 777, [778] = 778, [779] = 779, @@ -4108,7 +4199,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [792] = 792, [793] = 793, [794] = 794, - [795] = 687, + [795] = 795, [796] = 796, [797] = 797, [798] = 798, @@ -4117,7 +4208,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [801] = 801, [802] = 802, [803] = 803, - [804] = 804, + [804] = 685, [805] = 805, [806] = 806, [807] = 807, @@ -4137,7 +4228,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [821] = 821, [822] = 822, [823] = 823, - [824] = 790, + [824] = 824, [825] = 825, [826] = 826, [827] = 827, @@ -4159,30 +4250,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [843] = 843, [844] = 844, [845] = 845, - [846] = 811, + [846] = 846, [847] = 847, [848] = 848, - [849] = 822, - [850] = 791, + [849] = 849, + [850] = 850, [851] = 851, - [852] = 802, + [852] = 852, [853] = 853, [854] = 854, [855] = 855, - [856] = 809, - [857] = 857, - [858] = 858, + [856] = 798, + [857] = 813, + [858] = 807, [859] = 859, [860] = 860, - [861] = 861, + [861] = 828, [862] = 862, [863] = 863, - [864] = 864, - [865] = 865, + [864] = 805, + [865] = 863, [866] = 866, [867] = 867, [868] = 868, - [869] = 859, + [869] = 869, [870] = 870, [871] = 871, [872] = 872, @@ -4200,7 +4291,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [884] = 884, [885] = 885, [886] = 886, - [887] = 859, + [887] = 887, [888] = 888, [889] = 889, [890] = 890, @@ -4214,13 +4305,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [898] = 898, [899] = 899, [900] = 900, - [901] = 901, + [901] = 893, [902] = 902, [903] = 903, [904] = 904, [905] = 905, [906] = 906, - [907] = 907, + [907] = 893, [908] = 908, [909] = 909, [910] = 910, @@ -4260,13 +4351,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [944] = 944, [945] = 945, [946] = 946, - [947] = 905, + [947] = 947, [948] = 948, [949] = 949, [950] = 950, [951] = 951, [952] = 952, - [953] = 912, + [953] = 953, [954] = 954, [955] = 955, [956] = 956, @@ -4274,21 +4365,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [958] = 958, [959] = 959, [960] = 960, - [961] = 948, - [962] = 902, - [963] = 963, - [964] = 964, + [961] = 961, + [962] = 962, + [963] = 942, + [964] = 916, [965] = 965, [966] = 966, - [967] = 967, + [967] = 920, [968] = 968, [969] = 969, [970] = 970, [971] = 971, - [972] = 972, + [972] = 921, [973] = 973, [974] = 974, - [975] = 973, + [975] = 975, [976] = 976, [977] = 977, [978] = 978, @@ -4319,24 +4410,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1003] = 1003, [1004] = 1004, [1005] = 1005, - [1006] = 974, + [1006] = 1006, [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 973, + [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 974, + [1014] = 1014, [1015] = 1015, - [1016] = 1016, + [1016] = 988, [1017] = 1017, - [1018] = 969, - [1019] = 1019, + [1018] = 985, + [1019] = 1004, [1020] = 1020, - [1021] = 1021, + [1021] = 1005, [1022] = 1022, - [1023] = 1023, + [1023] = 1007, [1024] = 1024, [1025] = 1025, [1026] = 1026, @@ -4344,16 +4435,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 1031, + [1031] = 1015, [1032] = 1032, [1033] = 1033, - [1034] = 971, + [1034] = 1034, [1035] = 1035, - [1036] = 1012, + [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 1032, - [1040] = 928, + [1039] = 1039, + [1040] = 1040, [1041] = 1041, [1042] = 1042, [1043] = 1043, @@ -4361,33 +4452,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1045] = 1045, [1046] = 1046, [1047] = 1047, - [1048] = 1028, + [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 1051, - [1052] = 1009, - [1053] = 994, + [1051] = 1039, + [1052] = 1041, + [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1016, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, - [1065] = 1043, + [1058] = 1050, + [1059] = 1024, + [1060] = 1011, + [1061] = 996, + [1062] = 983, + [1063] = 1041, + [1064] = 1027, + [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 1046, + [1068] = 1068, [1069] = 1069, - [1070] = 1050, + [1070] = 969, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1049, + [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, @@ -4402,7 +4493,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 1089, + [1089] = 1039, [1090] = 1090, [1091] = 1091, [1092] = 1092, @@ -4465,7 +4556,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 240, + [1152] = 1152, [1153] = 1153, [1154] = 1154, [1155] = 1155, @@ -4482,11 +4573,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 1113, + [1169] = 1169, [1170] = 1170, - [1171] = 1087, + [1171] = 1171, [1172] = 1172, - [1173] = 1173, + [1173] = 284, [1174] = 1174, [1175] = 1175, [1176] = 1176, @@ -4500,7 +4591,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1184] = 1184, [1185] = 1185, [1186] = 1186, - [1187] = 1187, + [1187] = 1165, [1188] = 1188, [1189] = 1189, [1190] = 1190, @@ -4522,18 +4613,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1206] = 1206, [1207] = 1207, [1208] = 1208, - [1209] = 1209, + [1209] = 1186, [1210] = 1210, [1211] = 1211, [1212] = 1212, [1213] = 1213, [1214] = 1214, [1215] = 1215, - [1216] = 1200, - [1217] = 1207, + [1216] = 1216, + [1217] = 1217, [1218] = 1218, - [1219] = 1215, - [1220] = 1214, + [1219] = 1219, + [1220] = 1220, [1221] = 1221, [1222] = 1222, [1223] = 1223, @@ -4545,38 +4636,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1232, + [1232] = 1221, [1233] = 1233, - [1234] = 1206, + [1234] = 1228, [1235] = 1235, - [1236] = 1236, + [1236] = 1230, [1237] = 1237, - [1238] = 1238, - [1239] = 1239, + [1238] = 1231, + [1239] = 1229, [1240] = 1240, [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 1218, + [1244] = 1244, [1245] = 1245, [1246] = 1246, - [1247] = 1207, + [1247] = 1247, [1248] = 1248, [1249] = 1249, [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, + [1253] = 1214, + [1254] = 1221, + [1255] = 1230, + [1256] = 1229, [1257] = 1257, [1258] = 1258, - [1259] = 1229, + [1259] = 1259, [1260] = 1260, [1261] = 1261, - [1262] = 1225, - [1263] = 1215, + [1262] = 1262, + [1263] = 1263, [1264] = 1264, [1265] = 1265, [1266] = 1266, @@ -4588,16 +4679,559 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1272] = 1272, [1273] = 1273, [1274] = 1274, - [1275] = 1214, + [1275] = 1275, [1276] = 1276, [1277] = 1277, - [1278] = 1245, + [1278] = 1278, [1279] = 1279, [1280] = 1280, [1281] = 1281, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, + [1288] = 1243, + [1289] = 1289, + [1290] = 1290, + [1291] = 1246, + [1292] = 1292, + [1293] = 1224, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, }; +static inline bool sym_escape_sequence_character_set_1(int32_t c) { + return (c < 'a' + ? (c < '?' + ? (c < '\'' + ? c == '"' + : c <= '\'') + : (c <= '?' || c == '\\')) + : (c <= 'b' || (c < 'r' + ? (c < 'n' + ? c == 'f' + : c <= 'n') + : (c <= 'r' || (c >= 't' && c <= 'v'))))); +} + static inline bool sym_identifier_character_set_1(int32_t c) { + return (c < 6688 + ? (c < 2984 + ? (c < 2365 + ? (c < 1488 + ? (c < 886 + ? (c < 216 + ? (c < 181 + ? (c < 'a' + ? (c >= '$' && c <= '_') + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 192 + ? c == 186 + : c <= 214))) + : (c <= 246 || (c < 748 + ? (c < 710 + ? (c >= 248 && c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))) + : (c <= 748 || (c < 880 + ? c == 750 + : c <= 884))))) + : (c <= 887 || (c < 931 + ? (c < 904 + ? (c < 895 + ? (c >= 890 && c <= 893) + : (c <= 895 || c == 902)) + : (c <= 906 || (c < 910 + ? c == 908 + : c <= 929))) + : (c <= 1013 || (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))))))) + : (c <= 1514 || (c < 1994 + ? (c < 1774 + ? (c < 1649 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))) + : (c <= 1747 || (c < 1765 + ? c == 1749 + : c <= 1766))) + : (c <= 1775 || (c < 1810 + ? (c < 1791 + ? (c >= 1786 && c <= 1788) + : (c <= 1791 || c == 1808)) + : (c <= 1839 || (c < 1969 + ? (c >= 1869 && c <= 1957) + : c <= 1969))))) + : (c <= 2026 || (c < 2112 + ? (c < 2074 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c < 2308 + ? (c >= 2208 && c <= 2249) + : c <= 2361))))))))) + : (c <= 2365 || (c < 2703 + ? (c < 2544 + ? (c < 2474 + ? (c < 2437 + ? (c < 2392 + ? c == 2384 + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))) + : (c <= 2480 || (c < 2510 + ? (c < 2486 + ? c == 2482 + : (c <= 2489 || c == 2493)) + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))))) + : (c <= 2545 || (c < 2613 + ? (c < 2579 + ? (c < 2565 + ? c == 2556 + : (c <= 2570 || (c >= 2575 && c <= 2576))) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2654 + ? (c < 2649 + ? (c >= 2616 && c <= 2617) + : c <= 2652) + : (c <= 2654 || (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701))))))) + : (c <= 2705 || (c < 2869 + ? (c < 2784 + ? (c < 2741 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : (c <= 2736 || (c >= 2738 && c <= 2739))) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2835 + ? (c < 2821 + ? c == 2809 + : (c <= 2828 || (c >= 2831 && c <= 2832))) + : (c <= 2856 || (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867))))) + : (c <= 2873 || (c < 2958 + ? (c < 2929 + ? (c < 2908 + ? c == 2877 + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2949 + ? c == 2947 + : c <= 2954))) + : (c <= 2960 || (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))))))))))) + : (c <= 2986 || (c < 4176 + ? (c < 3423 + ? (c < 3218 + ? (c < 3133 + ? (c < 3086 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : (c <= 3024 || (c >= 3077 && c <= 3084))) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3133 || (c < 3200 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : (c <= 3165 || (c >= 3168 && c <= 3169))) + : (c <= 3200 || (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216))))) + : (c <= 3240 || (c < 3332 + ? (c < 3293 + ? (c < 3253 + ? (c >= 3242 && c <= 3251) + : (c <= 3257 || c == 3261)) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || (c < 3412 + ? c == 3406 + : c <= 3414))))))) + : (c <= 3425 || (c < 3749 + ? (c < 3585 + ? (c < 3507 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))) + : (c <= 3632 || (c < 3716 + ? (c < 3648 + ? (c >= 3634 && c <= 3635) + : (c <= 3654 || (c >= 3713 && c <= 3714))) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))))) + : (c <= 3749 || (c < 3840 + ? (c < 3776 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : (c <= 3763 || c == 3773)) + : (c <= 3780 || (c < 3804 + ? c == 3782 + : c <= 3807))) + : (c <= 3840 || (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159))))))))) + : (c <= 4181 || (c < 4992 + ? (c < 4696 + ? (c < 4256 + ? (c < 4206 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))) + : (c <= 4208 || (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238))) + : (c <= 4293 || (c < 4348 + ? (c < 4301 + ? c == 4295 + : (c <= 4301 || (c >= 4304 && c <= 4346))) + : (c <= 4680 || (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694))))) + : (c <= 4696 || (c < 4800 + ? (c < 4752 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954))))))) + : (c <= 5007 || (c < 6103 + ? (c < 5873 + ? (c < 5743 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : (c <= 5117 || (c >= 5121 && c <= 5740))) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5984 + ? (c < 5919 + ? (c >= 5888 && c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067))))) + : (c <= 6103 || (c < 6400 + ? (c < 6279 + ? (c < 6176 + ? c == 6108 + : (c <= 6264 || (c >= 6272 && c <= 6276))) + : (c <= 6312 || (c < 6320 + ? c == 6314 + : c <= 6389))) + : (c <= 6430 || (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678))))))))))))) + : (c <= 6740 || (c < 43261 + ? (c < 11264 + ? (c < 8064 + ? (c < 7406 + ? (c < 7168 + ? (c < 7043 + ? (c < 6917 + ? c == 6823 + : (c <= 6963 || (c >= 6981 && c <= 6988))) + : (c <= 7072 || (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141))) + : (c <= 7203 || (c < 7312 + ? (c < 7258 + ? (c >= 7245 && c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))) + : (c <= 7354 || (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404))))) + : (c <= 7411 || (c < 8008 + ? (c < 7680 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : (c <= 7418 || (c >= 7424 && c <= 7615))) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))) + : (c <= 8116 || (c < 8455 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8319 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : (c <= 8188 || c == 8305)) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))))) + : (c <= 8455 || (c < 8490 + ? (c < 8484 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : (c <= 8469 || (c >= 8473 && c <= 8477))) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))) + : (c <= 8493 || (c < 8517 + ? (c < 8508 + ? (c >= 8495 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8579 + ? c == 8526 + : c <= 8580))))))))) + : (c <= 11492 || (c < 12704 + ? (c < 11720 + ? (c < 11631 + ? (c < 11559 + ? (c < 11506 + ? (c >= 11499 && c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))) + : (c <= 11631 || (c < 11696 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : (c <= 11686 || (c >= 11688 && c <= 11694))) + : (c <= 11702 || (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718))))) + : (c <= 11726 || (c < 12353 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : (c <= 11742 || c == 11823)) + : (c <= 12294 || (c < 12347 + ? (c >= 12337 && c <= 12341) + : c <= 12348))) + : (c <= 12438 || (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686))))))) + : (c <= 12735 || (c < 42786 + ? (c < 42240 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : (c <= 13312 || c == 19903)) + : (c <= 19968 || (c < 42192 + ? (c >= 40959 && c <= 42124) + : c <= 42237))) + : (c <= 42508 || (c < 42623 + ? (c < 42538 + ? (c >= 42512 && c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))) + : (c <= 42653 || (c < 42775 + ? (c >= 42656 && c <= 42725) + : c <= 42783))))) + : (c <= 42888 || (c < 43015 + ? (c < 42965 + ? (c < 42960 + ? (c >= 42891 && c <= 42954) + : (c <= 42961 || c == 42963)) + : (c <= 42969 || (c < 43011 + ? (c >= 42994 && c <= 43009) + : c <= 43013))) + : (c <= 43018 || (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c < 43259 + ? (c >= 43250 && c <= 43255) + : c <= 43259))))))))))) + : (c <= 43262 || (c < 65345 + ? (c < 43816 + ? (c < 43646 + ? (c < 43494 + ? (c < 43396 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))) + : (c <= 43442 || (c < 43488 + ? c == 43471 + : c <= 43492))) + : (c <= 43503 || (c < 43588 + ? (c < 43520 + ? (c >= 43514 && c <= 43518) + : (c <= 43560 || (c >= 43584 && c <= 43586))) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))))) + : (c <= 43695 || (c < 43744 + ? (c < 43712 + ? (c < 43701 + ? c == 43697 + : (c <= 43702 || (c >= 43705 && c <= 43709))) + : (c <= 43712 || (c < 43739 + ? c == 43714 + : c <= 43741))) + : (c <= 43754 || (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43764) + : c <= 43782) + : (c <= 43790 || (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814))))))) + : (c <= 43822 || (c < 64298 + ? (c < 55243 + ? (c < 44032 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : (c <= 43881 || (c >= 43888 && c <= 44002))) + : (c <= 44032 || (c < 55216 + ? c == 55203 + : c <= 55238))) + : (c <= 55291 || (c < 64275 + ? (c < 64112 + ? (c >= 63744 && c <= 64109) + : (c <= 64217 || (c >= 64256 && c <= 64262))) + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))))) + : (c <= 64310 || (c < 64848 + ? (c < 64323 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64829))) + : (c <= 64911 || (c < 65136 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65019) + : (c <= 65140 || (c < 65313 + ? (c >= 65142 && c <= 65276) + : c <= 65338))))))))) + : (c <= 65370 || (c < 66928 + ? (c < 66208 + ? (c < 65549 + ? (c < 65490 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : (c <= 65479 || (c >= 65482 && c <= 65487))) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))) + : (c <= 65574 || (c < 65616 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c >= 65664 && c <= 65786) + : c <= 66204))))) + : (c <= 66256 || (c < 66504 + ? (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : (c <= 66368 || (c >= 66370 && c <= 66377))) + : (c <= 66421 || (c < 66464 + ? (c >= 66432 && c <= 66461) + : c <= 66499))) + : (c <= 66511 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67506 + ? (c < 67003 + ? (c < 66967 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001))) + : (c <= 67004 || (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504))))) + : (c <= 67514 || (c < 67680 + ? (c < 67639 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))) + : (c <= 67640 || (c < 67647 + ? c == 67644 + : c <= 67669))) + : (c <= 67702 || (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67880))))))))))))))); +} + +static inline bool sym_identifier_character_set_2(int32_t c) { return (c < 6656 ? (c < 2979 ? (c < 2308 @@ -5108,10 +5742,10 @@ static inline bool sym_identifier_character_set_1(int32_t c) { : c <= 67826) : (c <= 67829 || (c < 67872 ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); + : c <= 67880))))))))))))))); } -static inline bool sym_identifier_character_set_2(int32_t c) { +static inline bool sym_identifier_character_set_3(int32_t c) { return (c < 6656 ? (c < 2979 ? (c < 2308 @@ -5622,10 +6256,10 @@ static inline bool sym_identifier_character_set_2(int32_t c) { : c <= 67826) : (c <= 67829 || (c < 67872 ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); + : c <= 67880))))))))))))))); } -static inline bool sym_identifier_character_set_3(int32_t c) { +static inline bool sym_identifier_character_set_4(int32_t c) { return (c < 6400 ? (c < 2979 ? (c < 2365 @@ -6136,7 +6770,7 @@ static inline bool sym_identifier_character_set_3(int32_t c) { : (c <= 67742 || (c >= 67808 && c <= 67826))) : (c <= 67829 || (c < 67872 ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); + : c <= 67880))))))))))))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -6144,1057 +6778,1328 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(60); - if (lookahead == '!') ADVANCE(144); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(152); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(62); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(105); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(148); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(129); - if (lookahead == 'n') ADVANCE(165); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(156); - if (lookahead == '~') ADVANCE(145); + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(165); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(139); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == '[') ADVANCE(182); + if (lookahead == '\\') ADVANCE(43); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(163); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(160); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(61) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(200); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1); - if (lookahead == '"') ADVANCE(11); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(15); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (lookahead != 0) ADVANCE(9); + lookahead == ' ') SKIP(1) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(1); + if (lookahead == '!') ADVANCE(177); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '&') ADVANCE(121); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '.') ADVANCE(51); + if (lookahead == '/') ADVANCE(12); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(175); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '=') ADVANCE(125); + if (lookahead == '>') ADVANCE(138); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(2); + lookahead == ' ') SKIP(2) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(144); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(19); - if (lookahead == '/') ADVANCE(123); - if (lookahead == '0') ADVANCE(62); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '@') ADVANCE(158); - if (lookahead == '[') ADVANCE(148); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(128); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(156); - if (lookahead == '~') ADVANCE(145); + if (lookahead == '!') ADVANCE(19); + if (lookahead == '%') ADVANCE(165); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(185); + if (lookahead == '/') ADVANCE(158); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(139); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(163); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(160); + if (lookahead == '}') ADVANCE(190); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '&') ADVANCE(87); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(51); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(62); - if (lookahead == ':') ADVANCE(141); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(104); - if (lookahead == '@') ADVANCE(158); - if (lookahead == '[') ADVANCE(148); - if (lookahead == 'n') ADVANCE(165); - if (lookahead == '}') ADVANCE(156); - if (lookahead == '~') ADVANCE(145); + if (lookahead == '!') ADVANCE(19); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(184); + if (lookahead == '/') ADVANCE(157); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(23); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(151); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(105); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '@') ADVANCE(158); - if (lookahead == '[') ADVANCE(148); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(156); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(89); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(23); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(150); - if (lookahead == '/') ADVANCE(123); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '@') ADVANCE(158); - if (lookahead == '[') ADVANCE(148); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(128); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(156); + if (lookahead == '"') ADVANCE(109); + if (lookahead == '/') ADVANCE(100); + if (lookahead == '\\') ADVANCE(99); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + lookahead == ' ') ADVANCE(101); + if (lookahead != 0) ADVANCE(108); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(84); - if (lookahead == '\\') ADVANCE(57); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(8); + if (lookahead == '"') ADVANCE(87); + if (lookahead == '/') ADVANCE(91); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(94); + if (lookahead != 0) ADVANCE(95); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(83); - if (lookahead == '\\') ADVANCE(57); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(8); + if (lookahead == '&') ADVANCE(121); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '.') ADVANCE(185); + if (lookahead == '/') ADVANCE(12); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(125); + if (lookahead == '>') ADVANCE(138); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(159); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(11); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '\\') ADVANCE(60); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(9); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(85); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '.') ADVANCE(184); + if (lookahead == '/') ADVANCE(12); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '@') ADVANCE(193); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(10); - if (lookahead != 0) ADVANCE(9); - END_STATE(); - case 12: - if (lookahead == '&') ADVANCE(87); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '.') ADVANCE(151); - if (lookahead == '/') ADVANCE(16); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(104); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '@') ADVANCE(158); - if (lookahead == '[') ADVANCE(148); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '(') ADVANCE(120); + if (lookahead == '.') ADVANCE(184); + if (lookahead == '/') ADVANCE(12); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == 'n') ADVANCE(199); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(12) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(11) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); + END_STATE(); + case 12: + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(201); END_STATE(); case 13: - if (lookahead == '\'') ADVANCE(82); - if (lookahead == '\\') ADVANCE(56); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(13); + if (lookahead == '*') ADVANCE(13); + if (lookahead == '/') ADVANCE(202); + if (lookahead != 0) ADVANCE(14); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(86); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '.') ADVANCE(150); - if (lookahead == '/') ADVANCE(16); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '@') ADVANCE(159); - if (lookahead == 'n') ADVANCE(165); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (lookahead == '*') ADVANCE(13); + if (lookahead != 0) ADVANCE(14); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(86); - if (lookahead == '.') ADVANCE(150); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '@') ADVANCE(158); - if (lookahead == '[') ADVANCE(148); - if (lookahead == 'n') ADVANCE(165); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(15) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 16: - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(167); + if (lookahead == '.') ADVANCE(196); END_STATE(); case 17: - if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(168); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '.') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(17); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '/') ADVANCE(12); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '@') ADVANCE(37); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(162); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + if (lookahead == '\\') ADVANCE(60); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'') ADVANCE(9); END_STATE(); case 22: - if (lookahead == '/') ADVANCE(16); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '@') ADVANCE(41); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (lookahead == '_') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(113); + if (lookahead == '_') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(112); + if (lookahead == '_') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); case 25: - if (lookahead == '\\') ADVANCE(56); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\'') ADVANCE(13); + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 26: if (lookahead == '_') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 27: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); case 28: - if (lookahead == '_') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (lookahead == 'a') ADVANCE(38); END_STATE(); case 29: - if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(65); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + if (lookahead == 'a') ADVANCE(30); END_STATE(); case 30: - if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + if (lookahead == 'c') ADVANCE(35); END_STATE(); case 31: - if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); + if (lookahead == 'd') ADVANCE(194); END_STATE(); case 32: - if (lookahead == 'a') ADVANCE(42); + if (lookahead == 'e') ADVANCE(40); END_STATE(); case 33: - if (lookahead == 'a') ADVANCE(34); + if (lookahead == 'e') ADVANCE(28); END_STATE(); case 34: - if (lookahead == 'c') ADVANCE(39); + if (lookahead == 'e') ADVANCE(31); END_STATE(); case 35: - if (lookahead == 'd') ADVANCE(160); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(44); + if (lookahead == 'f') ADVANCE(29); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'i') ADVANCE(39); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == 'l') ADVANCE(34); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(161); + if (lookahead == 'n') ADVANCE(42); END_STATE(); case 40: - if (lookahead == 'f') ADVANCE(33); + if (lookahead == 'r') ADVANCE(36); END_STATE(); case 41: - if (lookahead == 'i') ADVANCE(43); + if (lookahead == 's') ADVANCE(33); END_STATE(); case 42: - if (lookahead == 'l') ADVANCE(38); + if (lookahead == 't') ADVANCE(32); END_STATE(); case 43: - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'u') ADVANCE(45); + if (lookahead == 'x') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(115); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 44: - if (lookahead == 'r') ADVANCE(40); + if (lookahead == 'u') ADVANCE(45); + if (lookahead == 'x') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + if (lookahead != 0) ADVANCE(115); END_STATE(); case 45: - if (lookahead == 's') ADVANCE(37); + if (lookahead == '{') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 46: - if (lookahead == 't') ADVANCE(36); + if (lookahead == '}') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 47: if (lookahead == '+' || lookahead == '-') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); case 48: if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 49: if (lookahead == '0' || - lookahead == '1') ADVANCE(71); + lookahead == '1') ADVANCE(75); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(69); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(73); END_STATE(); case 51: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 54: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); END_STATE(); case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 56: - if (lookahead != 0) ADVANCE(13); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 57: - if (lookahead != 0) ADVANCE(8); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); case 58: - if (eof) ADVANCE(60); - if (lookahead == '!') ADVANCE(144); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(153); - if (lookahead == '/') ADVANCE(123); - if (lookahead == '0') ADVANCE(62); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(148); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(128); - if (lookahead == 'n') ADVANCE(165); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(156); - if (lookahead == '~') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 59: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); + END_STATE(); + case 60: + if (lookahead != 0) ADVANCE(9); + END_STATE(); + case 61: + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(165); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(139); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(163); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(160); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(58) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(61) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); END_STATE(); - case 59: - if (eof) ADVANCE(60); - if (lookahead == '!') ADVANCE(144); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(90); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(139); - if (lookahead == '-') ADVANCE(120); + case 62: + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(62) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); + END_STATE(); + case 63: + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); if (lookahead == '.') ADVANCE(51); - if (lookahead == '/') ADVANCE(123); - if (lookahead == '0') ADVANCE(62); - if (lookahead == ':') ADVANCE(141); - if (lookahead == ';') ADVANCE(157); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '@') ADVANCE(159); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(128); - if (lookahead == 'n') ADVANCE(165); - if (lookahead == '{') ADVANCE(155); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(156); - if (lookahead == '~') ADVANCE(145); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(175); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(63) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); END_STATE(); - case 60: + case 64: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 61: + case 65: ACCEPT_TOKEN(sym_decimal_integer_literal); END_STATE(); - case 62: + case 66: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(75); + if (lookahead == '.') ADVANCE(79); if (lookahead == 'B' || lookahead == 'b') ADVANCE(49); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(61); + lookahead == 'l') ADVANCE(65); if (lookahead == 'O' || lookahead == 'o') ADVANCE(50); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(21); - if (lookahead == '_') ADVANCE(26); + lookahead == 'x') ADVANCE(17); + if (lookahead == '_') ADVANCE(22); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (lookahead == 'P' || lookahead == 'p') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); - case 63: + case 67: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(75); + if (lookahead == '.') ADVANCE(79); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(61); - if (lookahead == '_') ADVANCE(26); + lookahead == 'l') ADVANCE(65); + if (lookahead == '_') ADVANCE(22); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (lookahead == 'P' || lookahead == 'p') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); - case 64: + case 68: ACCEPT_TOKEN(sym_hex_integer_literal); END_STATE(); - case 65: + case 69: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(81); + if (lookahead == '.') ADVANCE(85); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(64); - if (lookahead == '_') ADVANCE(29); + lookahead == 'l') ADVANCE(68); + if (lookahead == '_') ADVANCE(25); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(67); + lookahead == 'e') ADVANCE(71); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(70); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); END_STATE(); - case 66: + case 70: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(81); + if (lookahead == '.') ADVANCE(85); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(64); - if (lookahead == '_') ADVANCE(54); + lookahead == 'l') ADVANCE(68); + if (lookahead == '_') ADVANCE(56); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(67); + lookahead == 'e') ADVANCE(71); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); - case 67: + case 71: ACCEPT_TOKEN(sym_hex_integer_literal); if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (lookahead == '.') ADVANCE(81); + if (lookahead == '.') ADVANCE(85); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(64); - if (lookahead == '_') ADVANCE(54); + lookahead == 'l') ADVANCE(68); + if (lookahead == '_') ADVANCE(56); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(67); + lookahead == 'e') ADVANCE(71); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); END_STATE(); - case 68: + case 72: ACCEPT_TOKEN(sym_octal_integer_literal); END_STATE(); - case 69: + case 73: ACCEPT_TOKEN(sym_octal_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(68); + lookahead == 'l') ADVANCE(72); if (lookahead == '_') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(69); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(73); END_STATE(); - case 70: + case 74: ACCEPT_TOKEN(sym_binary_integer_literal); END_STATE(); - case 71: + case 75: ACCEPT_TOKEN(sym_binary_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(70); + lookahead == 'l') ADVANCE(74); if (lookahead == '_') ADVANCE(49); if (lookahead == '0' || - lookahead == '1') ADVANCE(71); + lookahead == '1') ADVANCE(75); END_STATE(); - case 72: + case 76: ACCEPT_TOKEN(sym_decimal_floating_point_literal); END_STATE(); - case 73: + case 77: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(27); + if (lookahead == '_') ADVANCE(23); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); - case 74: + case 78: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(28); + if (lookahead == '_') ADVANCE(24); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + lookahead == 'f') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); - case 75: + case 79: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); - case 76: + case 80: ACCEPT_TOKEN(sym_hex_floating_point_literal); END_STATE(); - case 77: + case 81: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(80); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); - case 78: + case 82: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(31); + if (lookahead == '_') ADVANCE(27); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(80); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(77); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(81); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); - case 79: + case 83: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(30); + if (lookahead == '_') ADVANCE(26); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + lookahead == 'f') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); - case 80: + case 84: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(80); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); - case 81: + case 85: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(80); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); - END_STATE(); - case 82: - ACCEPT_TOKEN(sym_character_literal); - END_STATE(); - case 83: - ACCEPT_TOKEN(sym_string_literal); - END_STATE(); - case 84: - ACCEPT_TOKEN(sym_string_literal); - if (lookahead == '"') ADVANCE(2); - END_STATE(); - case 85: - ACCEPT_TOKEN(sym_text_block); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(sym_character_literal); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(5); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(114); - if (lookahead == '=') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '\n') ADVANCE(95); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(90); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '*') ADVANCE(93); + if (lookahead == '/') ADVANCE(90); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(95); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(112); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '*') ADVANCE(92); + if (lookahead == '/') ADVANCE(95); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(93); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '*') ADVANCE(92); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(93); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '/') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(94); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(95); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(95); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '\n') ADVANCE(108); + if (lookahead == '"') ADVANCE(201); + if (lookahead != 0) ADVANCE(96); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '"') ADVANCE(14); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '/') ADVANCE(108); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '"') ADVANCE(14); + if (lookahead == '*') ADVANCE(97); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '"') ADVANCE(115); + if (lookahead == 'u') ADVANCE(102); + if (lookahead == 'x') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(113); + if (lookahead == '\'' || + lookahead == '?' || + lookahead == '\\' || + lookahead == 'a' || + lookahead == 'b' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(119); + if (lookahead != 0) ADVANCE(114); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '*') ADVANCE(98); + if (lookahead == '/') ADVANCE(96); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '/') ADVANCE(100); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(101); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '{') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '}') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(110); - if (lookahead == '>') ADVANCE(134); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(110); - if (lookahead == '>') ADVANCE(135); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(111); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(111); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); + if (lookahead == '"') ADVANCE(5); + if (lookahead != 0) ADVANCE(110); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); + if (lookahead != 0 && + lookahead != '"') ADVANCE(110); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(118); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(146); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(146); - if (lookahead == '=') ADVANCE(93); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(147); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(147); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(138); + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(147); - if (lookahead == '>') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(148); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(148); + if (lookahead == '=') ADVANCE(131); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(167); - if (lookahead == '=') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(98); - if (lookahead == '|') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(100); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(168); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(169); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(167); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(166); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(113); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(180); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(20); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(180); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(181); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(181); + if (lookahead == '=') ADVANCE(128); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(181); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(129); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(201); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '=') ADVANCE(130); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'i') ADVANCE(43); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_non_DASHsealed); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '|') ADVANCE(149); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_ATinterface); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(149); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 163: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(45); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(133); END_STATE(); case 164: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(163); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 165: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(164); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(134); END_STATE(); case 166: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 167: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(135); END_STATE(); case 168: - ACCEPT_TOKEN(sym_block_comment); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(136); + if (lookahead == '>') ADVANCE(171); END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'a') ADVANCE(1); - if (lookahead == 'b') ADVANCE(2); - if (lookahead == 'c') ADVANCE(3); - if (lookahead == 'd') ADVANCE(4); - if (lookahead == 'e') ADVANCE(5); - if (lookahead == 'f') ADVANCE(6); - if (lookahead == 'i') ADVANCE(7); - if (lookahead == 'l') ADVANCE(8); - if (lookahead == 'm') ADVANCE(9); - if (lookahead == 'n') ADVANCE(10); - if (lookahead == 'o') ADVANCE(11); - if (lookahead == 'p') ADVANCE(12); - if (lookahead == 'r') ADVANCE(13); - if (lookahead == 's') ADVANCE(14); - if (lookahead == 't') ADVANCE(15); - if (lookahead == 'u') ADVANCE(16); - if (lookahead == 'v') ADVANCE(17); - if (lookahead == 'w') ADVANCE(18); - if (lookahead == 'y') ADVANCE(19); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) + case 169: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(170); END_STATE(); - case 1: - if (lookahead == 'b') ADVANCE(20); - if (lookahead == 's') ADVANCE(21); + case 170: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 2: - if (lookahead == 'o') ADVANCE(22); + case 171: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(137); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(188); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(147); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(16); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'i') ADVANCE(39); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_non_DASHsealed); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_ATinterface); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(41); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(197); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 199: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(198); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 201: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(201); + END_STATE(); + case 202: + ACCEPT_TOKEN(sym_block_comment); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'a') ADVANCE(1); + if (lookahead == 'b') ADVANCE(2); + if (lookahead == 'c') ADVANCE(3); + if (lookahead == 'd') ADVANCE(4); + if (lookahead == 'e') ADVANCE(5); + if (lookahead == 'f') ADVANCE(6); + if (lookahead == 'i') ADVANCE(7); + if (lookahead == 'l') ADVANCE(8); + if (lookahead == 'm') ADVANCE(9); + if (lookahead == 'n') ADVANCE(10); + if (lookahead == 'o') ADVANCE(11); + if (lookahead == 'p') ADVANCE(12); + if (lookahead == 'r') ADVANCE(13); + if (lookahead == 's') ADVANCE(14); + if (lookahead == 't') ADVANCE(15); + if (lookahead == 'u') ADVANCE(16); + if (lookahead == 'v') ADVANCE(17); + if (lookahead == 'w') ADVANCE(18); + if (lookahead == 'y') ADVANCE(19); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'b') ADVANCE(20); + if (lookahead == 's') ADVANCE(21); + END_STATE(); + case 2: + if (lookahead == 'o') ADVANCE(22); if (lookahead == 'r') ADVANCE(23); if (lookahead == 'y') ADVANCE(24); END_STATE(); @@ -8127,359 +9032,359 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 59}, - [2] = {.lex_state = 59}, - [3] = {.lex_state = 59}, - [4] = {.lex_state = 59}, - [5] = {.lex_state = 59}, - [6] = {.lex_state = 59}, - [7] = {.lex_state = 59}, - [8] = {.lex_state = 59}, - [9] = {.lex_state = 59}, - [10] = {.lex_state = 59}, - [11] = {.lex_state = 59}, - [12] = {.lex_state = 59}, - [13] = {.lex_state = 59}, - [14] = {.lex_state = 59}, - [15] = {.lex_state = 59}, - [16] = {.lex_state = 59}, - [17] = {.lex_state = 59}, - [18] = {.lex_state = 59}, - [19] = {.lex_state = 59}, - [20] = {.lex_state = 59}, - [21] = {.lex_state = 59}, - [22] = {.lex_state = 59}, - [23] = {.lex_state = 59}, - [24] = {.lex_state = 59}, - [25] = {.lex_state = 59}, - [26] = {.lex_state = 59}, - [27] = {.lex_state = 59}, - [28] = {.lex_state = 59}, - [29] = {.lex_state = 59}, - [30] = {.lex_state = 59}, - [31] = {.lex_state = 59}, - [32] = {.lex_state = 59}, - [33] = {.lex_state = 59}, - [34] = {.lex_state = 59}, - [35] = {.lex_state = 59}, - [36] = {.lex_state = 59}, - [37] = {.lex_state = 59}, - [38] = {.lex_state = 59}, - [39] = {.lex_state = 59}, - [40] = {.lex_state = 59}, - [41] = {.lex_state = 59}, - [42] = {.lex_state = 59}, - [43] = {.lex_state = 59}, - [44] = {.lex_state = 59}, - [45] = {.lex_state = 59}, - [46] = {.lex_state = 59}, - [47] = {.lex_state = 59}, - [48] = {.lex_state = 59}, - [49] = {.lex_state = 59}, - [50] = {.lex_state = 59}, - [51] = {.lex_state = 59}, - [52] = {.lex_state = 59}, - [53] = {.lex_state = 59}, - [54] = {.lex_state = 59}, - [55] = {.lex_state = 59}, - [56] = {.lex_state = 59}, - [57] = {.lex_state = 59}, - [58] = {.lex_state = 59}, - [59] = {.lex_state = 59}, - [60] = {.lex_state = 59}, - [61] = {.lex_state = 59}, - [62] = {.lex_state = 59}, - [63] = {.lex_state = 59}, - [64] = {.lex_state = 59}, - [65] = {.lex_state = 59}, - [66] = {.lex_state = 59}, - [67] = {.lex_state = 59}, - [68] = {.lex_state = 59}, - [69] = {.lex_state = 59}, - [70] = {.lex_state = 59}, - [71] = {.lex_state = 59}, - [72] = {.lex_state = 59}, - [73] = {.lex_state = 59}, - [74] = {.lex_state = 59}, - [75] = {.lex_state = 58}, - [76] = {.lex_state = 58}, - [77] = {.lex_state = 58}, - [78] = {.lex_state = 59}, - [79] = {.lex_state = 59}, - [80] = {.lex_state = 59}, - [81] = {.lex_state = 59}, - [82] = {.lex_state = 59}, - [83] = {.lex_state = 59}, - [84] = {.lex_state = 4}, - [85] = {.lex_state = 4}, - [86] = {.lex_state = 4}, - [87] = {.lex_state = 4}, - [88] = {.lex_state = 59}, - [89] = {.lex_state = 59}, - [90] = {.lex_state = 59}, - [91] = {.lex_state = 59}, - [92] = {.lex_state = 3}, - [93] = {.lex_state = 3}, - [94] = {.lex_state = 3}, - [95] = {.lex_state = 3}, - [96] = {.lex_state = 3}, - [97] = {.lex_state = 3}, - [98] = {.lex_state = 59}, - [99] = {.lex_state = 59}, - [100] = {.lex_state = 59}, - [101] = {.lex_state = 3}, - [102] = {.lex_state = 3}, - [103] = {.lex_state = 59}, - [104] = {.lex_state = 59}, - [105] = {.lex_state = 59}, - [106] = {.lex_state = 59}, - [107] = {.lex_state = 59}, - [108] = {.lex_state = 59}, - [109] = {.lex_state = 59}, - [110] = {.lex_state = 59}, - [111] = {.lex_state = 59}, - [112] = {.lex_state = 59}, - [113] = {.lex_state = 59}, - [114] = {.lex_state = 59}, - [115] = {.lex_state = 59}, - [116] = {.lex_state = 59}, - [117] = {.lex_state = 59}, - [118] = {.lex_state = 59}, - [119] = {.lex_state = 59}, - [120] = {.lex_state = 59}, - [121] = {.lex_state = 59}, - [122] = {.lex_state = 59}, - [123] = {.lex_state = 59}, - [124] = {.lex_state = 59}, - [125] = {.lex_state = 59}, - [126] = {.lex_state = 59}, - [127] = {.lex_state = 3}, - [128] = {.lex_state = 59}, - [129] = {.lex_state = 59}, - [130] = {.lex_state = 59}, - [131] = {.lex_state = 59}, - [132] = {.lex_state = 59}, - [133] = {.lex_state = 59}, - [134] = {.lex_state = 59}, - [135] = {.lex_state = 59}, - [136] = {.lex_state = 59}, - [137] = {.lex_state = 59}, - [138] = {.lex_state = 59}, - [139] = {.lex_state = 59}, - [140] = {.lex_state = 59}, - [141] = {.lex_state = 59}, - [142] = {.lex_state = 59}, - [143] = {.lex_state = 59}, - [144] = {.lex_state = 3}, - [145] = {.lex_state = 59}, - [146] = {.lex_state = 59}, - [147] = {.lex_state = 59}, - [148] = {.lex_state = 59}, - [149] = {.lex_state = 59}, - [150] = {.lex_state = 59}, - [151] = {.lex_state = 59}, - [152] = {.lex_state = 59}, - [153] = {.lex_state = 59}, - [154] = {.lex_state = 59}, - [155] = {.lex_state = 59}, - [156] = {.lex_state = 59}, - [157] = {.lex_state = 59}, - [158] = {.lex_state = 59}, - [159] = {.lex_state = 59}, - [160] = {.lex_state = 59}, - [161] = {.lex_state = 59}, - [162] = {.lex_state = 59}, - [163] = {.lex_state = 59}, - [164] = {.lex_state = 59}, - [165] = {.lex_state = 59}, - [166] = {.lex_state = 3}, - [167] = {.lex_state = 59}, - [168] = {.lex_state = 59}, - [169] = {.lex_state = 59}, - [170] = {.lex_state = 59}, - [171] = {.lex_state = 59}, - [172] = {.lex_state = 3}, - [173] = {.lex_state = 59}, - [174] = {.lex_state = 3}, - [175] = {.lex_state = 59}, - [176] = {.lex_state = 59}, - [177] = {.lex_state = 59}, - [178] = {.lex_state = 3}, - [179] = {.lex_state = 59}, - [180] = {.lex_state = 59}, - [181] = {.lex_state = 59}, - [182] = {.lex_state = 59}, - [183] = {.lex_state = 59}, - [184] = {.lex_state = 59}, - [185] = {.lex_state = 59}, - [186] = {.lex_state = 59}, - [187] = {.lex_state = 59}, - [188] = {.lex_state = 59}, - [189] = {.lex_state = 59}, - [190] = {.lex_state = 59}, - [191] = {.lex_state = 59}, - [192] = {.lex_state = 59}, - [193] = {.lex_state = 59}, - [194] = {.lex_state = 59}, - [195] = {.lex_state = 59}, - [196] = {.lex_state = 59}, - [197] = {.lex_state = 59}, - [198] = {.lex_state = 59}, - [199] = {.lex_state = 59}, - [200] = {.lex_state = 59}, - [201] = {.lex_state = 59}, - [202] = {.lex_state = 3}, - [203] = {.lex_state = 3}, - [204] = {.lex_state = 59}, - [205] = {.lex_state = 59}, - [206] = {.lex_state = 59}, - [207] = {.lex_state = 59}, - [208] = {.lex_state = 59}, - [209] = {.lex_state = 59}, - [210] = {.lex_state = 59}, - [211] = {.lex_state = 59}, - [212] = {.lex_state = 59}, - [213] = {.lex_state = 59}, - [214] = {.lex_state = 59}, - [215] = {.lex_state = 59}, - [216] = {.lex_state = 59}, - [217] = {.lex_state = 59}, - [218] = {.lex_state = 3}, - [219] = {.lex_state = 59}, - [220] = {.lex_state = 59}, - [221] = {.lex_state = 3}, - [222] = {.lex_state = 59}, - [223] = {.lex_state = 59}, - [224] = {.lex_state = 59}, - [225] = {.lex_state = 3}, - [226] = {.lex_state = 59}, - [227] = {.lex_state = 59}, - [228] = {.lex_state = 59}, - [229] = {.lex_state = 59}, - [230] = {.lex_state = 59}, - [231] = {.lex_state = 59}, - [232] = {.lex_state = 59}, - [233] = {.lex_state = 59}, - [234] = {.lex_state = 59}, - [235] = {.lex_state = 59}, - [236] = {.lex_state = 59}, - [237] = {.lex_state = 59}, - [238] = {.lex_state = 59}, - [239] = {.lex_state = 59}, - [240] = {.lex_state = 59}, - [241] = {.lex_state = 59}, - [242] = {.lex_state = 59}, - [243] = {.lex_state = 59}, - [244] = {.lex_state = 59}, - [245] = {.lex_state = 59}, - [246] = {.lex_state = 59}, - [247] = {.lex_state = 59}, - [248] = {.lex_state = 59}, - [249] = {.lex_state = 59}, - [250] = {.lex_state = 59}, - [251] = {.lex_state = 59}, - [252] = {.lex_state = 59}, - [253] = {.lex_state = 59}, - [254] = {.lex_state = 59}, - [255] = {.lex_state = 59}, - [256] = {.lex_state = 59}, - [257] = {.lex_state = 3}, - [258] = {.lex_state = 59}, - [259] = {.lex_state = 3}, - [260] = {.lex_state = 3}, - [261] = {.lex_state = 3}, - [262] = {.lex_state = 3}, - [263] = {.lex_state = 3}, - [264] = {.lex_state = 3}, - [265] = {.lex_state = 3}, - [266] = {.lex_state = 3}, - [267] = {.lex_state = 3}, - [268] = {.lex_state = 3}, - [269] = {.lex_state = 3}, - [270] = {.lex_state = 3}, - [271] = {.lex_state = 3}, - [272] = {.lex_state = 3}, - [273] = {.lex_state = 3}, - [274] = {.lex_state = 3}, - [275] = {.lex_state = 3}, - [276] = {.lex_state = 3}, - [277] = {.lex_state = 3}, - [278] = {.lex_state = 3}, - [279] = {.lex_state = 3}, - [280] = {.lex_state = 3}, - [281] = {.lex_state = 3}, - [282] = {.lex_state = 3}, - [283] = {.lex_state = 3}, - [284] = {.lex_state = 3}, - [285] = {.lex_state = 3}, - [286] = {.lex_state = 3}, - [287] = {.lex_state = 3}, - [288] = {.lex_state = 3}, - [289] = {.lex_state = 3}, - [290] = {.lex_state = 3}, - [291] = {.lex_state = 3}, - [292] = {.lex_state = 3}, - [293] = {.lex_state = 3}, - [294] = {.lex_state = 3}, - [295] = {.lex_state = 3}, - [296] = {.lex_state = 3}, - [297] = {.lex_state = 3}, - [298] = {.lex_state = 3}, - [299] = {.lex_state = 3}, - [300] = {.lex_state = 3}, - [301] = {.lex_state = 3}, - [302] = {.lex_state = 3}, - [303] = {.lex_state = 3}, - [304] = {.lex_state = 3}, - [305] = {.lex_state = 3}, - [306] = {.lex_state = 3}, - [307] = {.lex_state = 3}, - [308] = {.lex_state = 3}, - [309] = {.lex_state = 3}, - [310] = {.lex_state = 3}, - [311] = {.lex_state = 3}, - [312] = {.lex_state = 3}, - [313] = {.lex_state = 3}, - [314] = {.lex_state = 3}, - [315] = {.lex_state = 3}, - [316] = {.lex_state = 3}, - [317] = {.lex_state = 3}, - [318] = {.lex_state = 3}, - [319] = {.lex_state = 3}, - [320] = {.lex_state = 3}, - [321] = {.lex_state = 3}, - [322] = {.lex_state = 59}, - [323] = {.lex_state = 3}, - [324] = {.lex_state = 3}, - [325] = {.lex_state = 3}, - [326] = {.lex_state = 3}, - [327] = {.lex_state = 3}, - [328] = {.lex_state = 3}, - [329] = {.lex_state = 3}, - [330] = {.lex_state = 3}, - [331] = {.lex_state = 3}, - [332] = {.lex_state = 3}, - [333] = {.lex_state = 3}, - [334] = {.lex_state = 3}, - [335] = {.lex_state = 3}, - [336] = {.lex_state = 3}, - [337] = {.lex_state = 3}, - [338] = {.lex_state = 3}, - [339] = {.lex_state = 3}, - [340] = {.lex_state = 3}, - [341] = {.lex_state = 3}, - [342] = {.lex_state = 3}, - [343] = {.lex_state = 3}, - [344] = {.lex_state = 3}, - [345] = {.lex_state = 3}, - [346] = {.lex_state = 4}, - [347] = {.lex_state = 59}, - [348] = {.lex_state = 4}, - [349] = {.lex_state = 59}, - [350] = {.lex_state = 59}, - [351] = {.lex_state = 59}, - [352] = {.lex_state = 4}, - [353] = {.lex_state = 4}, + [1] = {.lex_state = 63}, + [2] = {.lex_state = 63}, + [3] = {.lex_state = 63}, + [4] = {.lex_state = 63}, + [5] = {.lex_state = 63}, + [6] = {.lex_state = 63}, + [7] = {.lex_state = 63}, + [8] = {.lex_state = 63}, + [9] = {.lex_state = 63}, + [10] = {.lex_state = 63}, + [11] = {.lex_state = 63}, + [12] = {.lex_state = 63}, + [13] = {.lex_state = 63}, + [14] = {.lex_state = 63}, + [15] = {.lex_state = 63}, + [16] = {.lex_state = 63}, + [17] = {.lex_state = 63}, + [18] = {.lex_state = 63}, + [19] = {.lex_state = 63}, + [20] = {.lex_state = 63}, + [21] = {.lex_state = 63}, + [22] = {.lex_state = 63}, + [23] = {.lex_state = 63}, + [24] = {.lex_state = 63}, + [25] = {.lex_state = 63}, + [26] = {.lex_state = 63}, + [27] = {.lex_state = 63}, + [28] = {.lex_state = 63}, + [29] = {.lex_state = 63}, + [30] = {.lex_state = 63}, + [31] = {.lex_state = 63}, + [32] = {.lex_state = 63}, + [33] = {.lex_state = 63}, + [34] = {.lex_state = 63}, + [35] = {.lex_state = 63}, + [36] = {.lex_state = 63}, + [37] = {.lex_state = 63}, + [38] = {.lex_state = 63}, + [39] = {.lex_state = 63}, + [40] = {.lex_state = 63}, + [41] = {.lex_state = 63}, + [42] = {.lex_state = 63}, + [43] = {.lex_state = 63}, + [44] = {.lex_state = 63}, + [45] = {.lex_state = 63}, + [46] = {.lex_state = 63}, + [47] = {.lex_state = 63}, + [48] = {.lex_state = 63}, + [49] = {.lex_state = 63}, + [50] = {.lex_state = 63}, + [51] = {.lex_state = 63}, + [52] = {.lex_state = 63}, + [53] = {.lex_state = 63}, + [54] = {.lex_state = 63}, + [55] = {.lex_state = 63}, + [56] = {.lex_state = 63}, + [57] = {.lex_state = 63}, + [58] = {.lex_state = 63}, + [59] = {.lex_state = 63}, + [60] = {.lex_state = 63}, + [61] = {.lex_state = 63}, + [62] = {.lex_state = 63}, + [63] = {.lex_state = 63}, + [64] = {.lex_state = 63}, + [65] = {.lex_state = 63}, + [66] = {.lex_state = 63}, + [67] = {.lex_state = 63}, + [68] = {.lex_state = 63}, + [69] = {.lex_state = 63}, + [70] = {.lex_state = 63}, + [71] = {.lex_state = 63}, + [72] = {.lex_state = 63}, + [73] = {.lex_state = 63}, + [74] = {.lex_state = 63}, + [75] = {.lex_state = 62}, + [76] = {.lex_state = 62}, + [77] = {.lex_state = 63}, + [78] = {.lex_state = 63}, + [79] = {.lex_state = 62}, + [80] = {.lex_state = 63}, + [81] = {.lex_state = 63}, + [82] = {.lex_state = 63}, + [83] = {.lex_state = 2}, + [84] = {.lex_state = 2}, + [85] = {.lex_state = 2}, + [86] = {.lex_state = 63}, + [87] = {.lex_state = 2}, + [88] = {.lex_state = 1}, + [89] = {.lex_state = 1}, + [90] = {.lex_state = 1}, + [91] = {.lex_state = 1}, + [92] = {.lex_state = 1}, + [93] = {.lex_state = 63}, + [94] = {.lex_state = 1}, + [95] = {.lex_state = 1}, + [96] = {.lex_state = 63}, + [97] = {.lex_state = 63}, + [98] = {.lex_state = 1}, + [99] = {.lex_state = 1}, + [100] = {.lex_state = 63}, + [101] = {.lex_state = 1}, + [102] = {.lex_state = 1}, + [103] = {.lex_state = 1}, + [104] = {.lex_state = 1}, + [105] = {.lex_state = 1}, + [106] = {.lex_state = 1}, + [107] = {.lex_state = 1}, + [108] = {.lex_state = 1}, + [109] = {.lex_state = 1}, + [110] = {.lex_state = 1}, + [111] = {.lex_state = 1}, + [112] = {.lex_state = 1}, + [113] = {.lex_state = 1}, + [114] = {.lex_state = 1}, + [115] = {.lex_state = 1}, + [116] = {.lex_state = 1}, + [117] = {.lex_state = 1}, + [118] = {.lex_state = 1}, + [119] = {.lex_state = 1}, + [120] = {.lex_state = 1}, + [121] = {.lex_state = 1}, + [122] = {.lex_state = 1}, + [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 = 63}, + [131] = {.lex_state = 1}, + [132] = {.lex_state = 1}, + [133] = {.lex_state = 1}, + [134] = {.lex_state = 63}, + [135] = {.lex_state = 1}, + [136] = {.lex_state = 1}, + [137] = {.lex_state = 1}, + [138] = {.lex_state = 1}, + [139] = {.lex_state = 1}, + [140] = {.lex_state = 63}, + [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 = 63}, + [158] = {.lex_state = 63}, + [159] = {.lex_state = 63}, + [160] = {.lex_state = 63}, + [161] = {.lex_state = 63}, + [162] = {.lex_state = 63}, + [163] = {.lex_state = 1}, + [164] = {.lex_state = 1}, + [165] = {.lex_state = 1}, + [166] = {.lex_state = 1}, + [167] = {.lex_state = 1}, + [168] = {.lex_state = 1}, + [169] = {.lex_state = 63}, + [170] = {.lex_state = 63}, + [171] = {.lex_state = 1}, + [172] = {.lex_state = 63}, + [173] = {.lex_state = 63}, + [174] = {.lex_state = 63}, + [175] = {.lex_state = 63}, + [176] = {.lex_state = 63}, + [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 = 63}, + [186] = {.lex_state = 63}, + [187] = {.lex_state = 1}, + [188] = {.lex_state = 1}, + [189] = {.lex_state = 1}, + [190] = {.lex_state = 1}, + [191] = {.lex_state = 63}, + [192] = {.lex_state = 1}, + [193] = {.lex_state = 1}, + [194] = {.lex_state = 1}, + [195] = {.lex_state = 1}, + [196] = {.lex_state = 63}, + [197] = {.lex_state = 63}, + [198] = {.lex_state = 63}, + [199] = {.lex_state = 63}, + [200] = {.lex_state = 1}, + [201] = {.lex_state = 63}, + [202] = {.lex_state = 63}, + [203] = {.lex_state = 63}, + [204] = {.lex_state = 1}, + [205] = {.lex_state = 63}, + [206] = {.lex_state = 63}, + [207] = {.lex_state = 63}, + [208] = {.lex_state = 63}, + [209] = {.lex_state = 63}, + [210] = {.lex_state = 63}, + [211] = {.lex_state = 63}, + [212] = {.lex_state = 1}, + [213] = {.lex_state = 63}, + [214] = {.lex_state = 63}, + [215] = {.lex_state = 63}, + [216] = {.lex_state = 63}, + [217] = {.lex_state = 63}, + [218] = {.lex_state = 1}, + [219] = {.lex_state = 63}, + [220] = {.lex_state = 63}, + [221] = {.lex_state = 63}, + [222] = {.lex_state = 63}, + [223] = {.lex_state = 63}, + [224] = {.lex_state = 63}, + [225] = {.lex_state = 63}, + [226] = {.lex_state = 63}, + [227] = {.lex_state = 63}, + [228] = {.lex_state = 1}, + [229] = {.lex_state = 1}, + [230] = {.lex_state = 63}, + [231] = {.lex_state = 63}, + [232] = {.lex_state = 63}, + [233] = {.lex_state = 63}, + [234] = {.lex_state = 63}, + [235] = {.lex_state = 1}, + [236] = {.lex_state = 63}, + [237] = {.lex_state = 1}, + [238] = {.lex_state = 1}, + [239] = {.lex_state = 63}, + [240] = {.lex_state = 1}, + [241] = {.lex_state = 63}, + [242] = {.lex_state = 63}, + [243] = {.lex_state = 63}, + [244] = {.lex_state = 63}, + [245] = {.lex_state = 63}, + [246] = {.lex_state = 1}, + [247] = {.lex_state = 63}, + [248] = {.lex_state = 63}, + [249] = {.lex_state = 63}, + [250] = {.lex_state = 63}, + [251] = {.lex_state = 63}, + [252] = {.lex_state = 63}, + [253] = {.lex_state = 63}, + [254] = {.lex_state = 63}, + [255] = {.lex_state = 63}, + [256] = {.lex_state = 1}, + [257] = {.lex_state = 63}, + [258] = {.lex_state = 1}, + [259] = {.lex_state = 1}, + [260] = {.lex_state = 1}, + [261] = {.lex_state = 63}, + [262] = {.lex_state = 1}, + [263] = {.lex_state = 1}, + [264] = {.lex_state = 1}, + [265] = {.lex_state = 63}, + [266] = {.lex_state = 63}, + [267] = {.lex_state = 63}, + [268] = {.lex_state = 63}, + [269] = {.lex_state = 1}, + [270] = {.lex_state = 1}, + [271] = {.lex_state = 1}, + [272] = {.lex_state = 63}, + [273] = {.lex_state = 63}, + [274] = {.lex_state = 63}, + [275] = {.lex_state = 63}, + [276] = {.lex_state = 63}, + [277] = {.lex_state = 63}, + [278] = {.lex_state = 63}, + [279] = {.lex_state = 63}, + [280] = {.lex_state = 63}, + [281] = {.lex_state = 63}, + [282] = {.lex_state = 63}, + [283] = {.lex_state = 63}, + [284] = {.lex_state = 63}, + [285] = {.lex_state = 63}, + [286] = {.lex_state = 63}, + [287] = {.lex_state = 63}, + [288] = {.lex_state = 63}, + [289] = {.lex_state = 63}, + [290] = {.lex_state = 63}, + [291] = {.lex_state = 63}, + [292] = {.lex_state = 63}, + [293] = {.lex_state = 63}, + [294] = {.lex_state = 63}, + [295] = {.lex_state = 63}, + [296] = {.lex_state = 63}, + [297] = {.lex_state = 63}, + [298] = {.lex_state = 63}, + [299] = {.lex_state = 63}, + [300] = {.lex_state = 63}, + [301] = {.lex_state = 63}, + [302] = {.lex_state = 63}, + [303] = {.lex_state = 63}, + [304] = {.lex_state = 63}, + [305] = {.lex_state = 63}, + [306] = {.lex_state = 63}, + [307] = {.lex_state = 63}, + [308] = {.lex_state = 63}, + [309] = {.lex_state = 63}, + [310] = {.lex_state = 63}, + [311] = {.lex_state = 63}, + [312] = {.lex_state = 63}, + [313] = {.lex_state = 63}, + [314] = {.lex_state = 63}, + [315] = {.lex_state = 63}, + [316] = {.lex_state = 63}, + [317] = {.lex_state = 63}, + [318] = {.lex_state = 63}, + [319] = {.lex_state = 63}, + [320] = {.lex_state = 63}, + [321] = {.lex_state = 2}, + [322] = {.lex_state = 63}, + [323] = {.lex_state = 63}, + [324] = {.lex_state = 63}, + [325] = {.lex_state = 63}, + [326] = {.lex_state = 63}, + [327] = {.lex_state = 63}, + [328] = {.lex_state = 63}, + [329] = {.lex_state = 63}, + [330] = {.lex_state = 2}, + [331] = {.lex_state = 63}, + [332] = {.lex_state = 63}, + [333] = {.lex_state = 63}, + [334] = {.lex_state = 63}, + [335] = {.lex_state = 63}, + [336] = {.lex_state = 63}, + [337] = {.lex_state = 63}, + [338] = {.lex_state = 63}, + [339] = {.lex_state = 63}, + [340] = {.lex_state = 63}, + [341] = {.lex_state = 63}, + [342] = {.lex_state = 63}, + [343] = {.lex_state = 63}, + [344] = {.lex_state = 63}, + [345] = {.lex_state = 63}, + [346] = {.lex_state = 63}, + [347] = {.lex_state = 2}, + [348] = {.lex_state = 2}, + [349] = {.lex_state = 63}, + [350] = {.lex_state = 63}, + [351] = {.lex_state = 63}, + [352] = {.lex_state = 63}, + [353] = {.lex_state = 63}, [354] = {.lex_state = 0}, [355] = {.lex_state = 0}, [356] = {.lex_state = 0}, @@ -8488,627 +9393,627 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [359] = {.lex_state = 0}, [360] = {.lex_state = 0}, [361] = {.lex_state = 0}, - [362] = {.lex_state = 5}, - [363] = {.lex_state = 5}, - [364] = {.lex_state = 5}, - [365] = {.lex_state = 5}, + [362] = {.lex_state = 3}, + [363] = {.lex_state = 3}, + [364] = {.lex_state = 3}, + [365] = {.lex_state = 3}, [366] = {.lex_state = 0}, [367] = {.lex_state = 0}, [368] = {.lex_state = 0}, - [369] = {.lex_state = 5}, - [370] = {.lex_state = 5}, - [371] = {.lex_state = 5}, - [372] = {.lex_state = 5}, - [373] = {.lex_state = 5}, - [374] = {.lex_state = 5}, - [375] = {.lex_state = 5}, - [376] = {.lex_state = 5}, - [377] = {.lex_state = 5}, - [378] = {.lex_state = 5}, - [379] = {.lex_state = 5}, - [380] = {.lex_state = 5}, - [381] = {.lex_state = 5}, - [382] = {.lex_state = 6}, - [383] = {.lex_state = 5}, - [384] = {.lex_state = 5}, - [385] = {.lex_state = 5}, - [386] = {.lex_state = 6}, - [387] = {.lex_state = 3}, - [388] = {.lex_state = 3}, - [389] = {.lex_state = 6}, - [390] = {.lex_state = 6}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 6}, - [393] = {.lex_state = 5}, - [394] = {.lex_state = 4}, - [395] = {.lex_state = 14}, - [396] = {.lex_state = 14}, - [397] = {.lex_state = 6}, - [398] = {.lex_state = 4}, - [399] = {.lex_state = 3}, - [400] = {.lex_state = 6}, - [401] = {.lex_state = 3}, - [402] = {.lex_state = 6}, - [403] = {.lex_state = 6}, + [369] = {.lex_state = 3}, + [370] = {.lex_state = 3}, + [371] = {.lex_state = 3}, + [372] = {.lex_state = 3}, + [373] = {.lex_state = 3}, + [374] = {.lex_state = 3}, + [375] = {.lex_state = 3}, + [376] = {.lex_state = 3}, + [377] = {.lex_state = 3}, + [378] = {.lex_state = 3}, + [379] = {.lex_state = 3}, + [380] = {.lex_state = 3}, + [381] = {.lex_state = 3}, + [382] = {.lex_state = 3}, + [383] = {.lex_state = 4}, + [384] = {.lex_state = 3}, + [385] = {.lex_state = 3}, + [386] = {.lex_state = 4}, + [387] = {.lex_state = 4}, + [388] = {.lex_state = 4}, + [389] = {.lex_state = 1}, + [390] = {.lex_state = 4}, + [391] = {.lex_state = 4}, + [392] = {.lex_state = 1}, + [393] = {.lex_state = 10}, + [394] = {.lex_state = 3}, + [395] = {.lex_state = 2}, + [396] = {.lex_state = 10}, + [397] = {.lex_state = 4}, + [398] = {.lex_state = 2}, + [399] = {.lex_state = 2}, + [400] = {.lex_state = 1}, + [401] = {.lex_state = 2}, + [402] = {.lex_state = 4}, + [403] = {.lex_state = 4}, [404] = {.lex_state = 4}, - [405] = {.lex_state = 4}, - [406] = {.lex_state = 6}, - [407] = {.lex_state = 6}, - [408] = {.lex_state = 6}, - [409] = {.lex_state = 6}, - [410] = {.lex_state = 14}, - [411] = {.lex_state = 6}, - [412] = {.lex_state = 6}, - [413] = {.lex_state = 6}, - [414] = {.lex_state = 6}, - [415] = {.lex_state = 6}, - [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 14}, - [419] = {.lex_state = 3}, - [420] = {.lex_state = 3}, - [421] = {.lex_state = 3}, - [422] = {.lex_state = 3}, - [423] = {.lex_state = 0}, - [424] = {.lex_state = 6}, - [425] = {.lex_state = 6}, - [426] = {.lex_state = 6}, + [405] = {.lex_state = 1}, + [406] = {.lex_state = 4}, + [407] = {.lex_state = 4}, + [408] = {.lex_state = 4}, + [409] = {.lex_state = 4}, + [410] = {.lex_state = 10}, + [411] = {.lex_state = 4}, + [412] = {.lex_state = 4}, + [413] = {.lex_state = 4}, + [414] = {.lex_state = 10}, + [415] = {.lex_state = 4}, + [416] = {.lex_state = 4}, + [417] = {.lex_state = 4}, + [418] = {.lex_state = 4}, + [419] = {.lex_state = 1}, + [420] = {.lex_state = 1}, + [421] = {.lex_state = 1}, + [422] = {.lex_state = 1}, + [423] = {.lex_state = 4}, + [424] = {.lex_state = 4}, + [425] = {.lex_state = 4}, + [426] = {.lex_state = 4}, [427] = {.lex_state = 0}, - [428] = {.lex_state = 6}, + [428] = {.lex_state = 0}, [429] = {.lex_state = 0}, - [430] = {.lex_state = 6}, + [430] = {.lex_state = 0}, [431] = {.lex_state = 0}, - [432] = {.lex_state = 0}, - [433] = {.lex_state = 3}, - [434] = {.lex_state = 0}, + [432] = {.lex_state = 1}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 4}, [435] = {.lex_state = 0}, [436] = {.lex_state = 0}, - [437] = {.lex_state = 6}, + [437] = {.lex_state = 0}, [438] = {.lex_state = 0}, - [439] = {.lex_state = 6}, - [440] = {.lex_state = 3}, + [439] = {.lex_state = 0}, + [440] = {.lex_state = 1}, [441] = {.lex_state = 0}, [442] = {.lex_state = 0}, [443] = {.lex_state = 0}, - [444] = {.lex_state = 0}, + [444] = {.lex_state = 4}, [445] = {.lex_state = 0}, - [446] = {.lex_state = 6}, - [447] = {.lex_state = 0}, + [446] = {.lex_state = 0}, + [447] = {.lex_state = 4}, [448] = {.lex_state = 0}, - [449] = {.lex_state = 3}, - [450] = {.lex_state = 0}, + [449] = {.lex_state = 0}, + [450] = {.lex_state = 1}, [451] = {.lex_state = 0}, - [452] = {.lex_state = 0}, + [452] = {.lex_state = 4}, [453] = {.lex_state = 0}, - [454] = {.lex_state = 0}, - [455] = {.lex_state = 6}, + [454] = {.lex_state = 4}, + [455] = {.lex_state = 0}, [456] = {.lex_state = 0}, [457] = {.lex_state = 0}, - [458] = {.lex_state = 6}, - [459] = {.lex_state = 6}, - [460] = {.lex_state = 6}, - [461] = {.lex_state = 6}, - [462] = {.lex_state = 6}, - [463] = {.lex_state = 6}, - [464] = {.lex_state = 6}, - [465] = {.lex_state = 6}, - [466] = {.lex_state = 6}, - [467] = {.lex_state = 0}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 6}, - [470] = {.lex_state = 6}, - [471] = {.lex_state = 6}, - [472] = {.lex_state = 6}, - [473] = {.lex_state = 6}, - [474] = {.lex_state = 6}, - [475] = {.lex_state = 6}, - [476] = {.lex_state = 0}, - [477] = {.lex_state = 6}, - [478] = {.lex_state = 6}, - [479] = {.lex_state = 6}, - [480] = {.lex_state = 6}, - [481] = {.lex_state = 6}, - [482] = {.lex_state = 6}, - [483] = {.lex_state = 6}, - [484] = {.lex_state = 6}, - [485] = {.lex_state = 6}, - [486] = {.lex_state = 6}, - [487] = {.lex_state = 6}, - [488] = {.lex_state = 6}, - [489] = {.lex_state = 6}, - [490] = {.lex_state = 6}, - [491] = {.lex_state = 0}, - [492] = {.lex_state = 6}, - [493] = {.lex_state = 6}, - [494] = {.lex_state = 6}, - [495] = {.lex_state = 6}, + [458] = {.lex_state = 4}, + [459] = {.lex_state = 4}, + [460] = {.lex_state = 4}, + [461] = {.lex_state = 4}, + [462] = {.lex_state = 4}, + [463] = {.lex_state = 4}, + [464] = {.lex_state = 4}, + [465] = {.lex_state = 4}, + [466] = {.lex_state = 4}, + [467] = {.lex_state = 4}, + [468] = {.lex_state = 4}, + [469] = {.lex_state = 4}, + [470] = {.lex_state = 4}, + [471] = {.lex_state = 0}, + [472] = {.lex_state = 4}, + [473] = {.lex_state = 4}, + [474] = {.lex_state = 4}, + [475] = {.lex_state = 4}, + [476] = {.lex_state = 4}, + [477] = {.lex_state = 4}, + [478] = {.lex_state = 4}, + [479] = {.lex_state = 4}, + [480] = {.lex_state = 4}, + [481] = {.lex_state = 4}, + [482] = {.lex_state = 4}, + [483] = {.lex_state = 4}, + [484] = {.lex_state = 4}, + [485] = {.lex_state = 4}, + [486] = {.lex_state = 4}, + [487] = {.lex_state = 4}, + [488] = {.lex_state = 0}, + [489] = {.lex_state = 4}, + [490] = {.lex_state = 4}, + [491] = {.lex_state = 4}, + [492] = {.lex_state = 4}, + [493] = {.lex_state = 4}, + [494] = {.lex_state = 4}, + [495] = {.lex_state = 4}, [496] = {.lex_state = 0}, - [497] = {.lex_state = 12}, - [498] = {.lex_state = 12}, - [499] = {.lex_state = 12}, - [500] = {.lex_state = 0}, - [501] = {.lex_state = 3}, - [502] = {.lex_state = 3}, - [503] = {.lex_state = 3}, - [504] = {.lex_state = 3}, - [505] = {.lex_state = 3}, - [506] = {.lex_state = 3}, - [507] = {.lex_state = 3}, - [508] = {.lex_state = 3}, - [509] = {.lex_state = 0}, - [510] = {.lex_state = 3}, - [511] = {.lex_state = 0}, + [497] = {.lex_state = 4}, + [498] = {.lex_state = 0}, + [499] = {.lex_state = 4}, + [500] = {.lex_state = 4}, + [501] = {.lex_state = 0}, + [502] = {.lex_state = 8}, + [503] = {.lex_state = 8}, + [504] = {.lex_state = 8}, + [505] = {.lex_state = 0}, + [506] = {.lex_state = 1}, + [507] = {.lex_state = 1}, + [508] = {.lex_state = 1}, + [509] = {.lex_state = 1}, + [510] = {.lex_state = 1}, + [511] = {.lex_state = 1}, [512] = {.lex_state = 0}, [513] = {.lex_state = 0}, [514] = {.lex_state = 0}, - [515] = {.lex_state = 3}, - [516] = {.lex_state = 3}, - [517] = {.lex_state = 0}, - [518] = {.lex_state = 0}, - [519] = {.lex_state = 3}, - [520] = {.lex_state = 3}, - [521] = {.lex_state = 3}, - [522] = {.lex_state = 15}, - [523] = {.lex_state = 3}, - [524] = {.lex_state = 3}, - [525] = {.lex_state = 3}, - [526] = {.lex_state = 6}, - [527] = {.lex_state = 3}, - [528] = {.lex_state = 4}, - [529] = {.lex_state = 3}, - [530] = {.lex_state = 3}, - [531] = {.lex_state = 3}, - [532] = {.lex_state = 3}, - [533] = {.lex_state = 3}, - [534] = {.lex_state = 3}, - [535] = {.lex_state = 3}, - [536] = {.lex_state = 3}, - [537] = {.lex_state = 3}, - [538] = {.lex_state = 4}, - [539] = {.lex_state = 15}, - [540] = {.lex_state = 12}, - [541] = {.lex_state = 12}, - [542] = {.lex_state = 15}, - [543] = {.lex_state = 15}, - [544] = {.lex_state = 3}, - [545] = {.lex_state = 3}, - [546] = {.lex_state = 6}, - [547] = {.lex_state = 3}, - [548] = {.lex_state = 3}, - [549] = {.lex_state = 4}, - [550] = {.lex_state = 3}, - [551] = {.lex_state = 3}, - [552] = {.lex_state = 3}, - [553] = {.lex_state = 3}, - [554] = {.lex_state = 3}, - [555] = {.lex_state = 3}, - [556] = {.lex_state = 3}, - [557] = {.lex_state = 12}, - [558] = {.lex_state = 4}, - [559] = {.lex_state = 3}, - [560] = {.lex_state = 4}, - [561] = {.lex_state = 3}, - [562] = {.lex_state = 3}, - [563] = {.lex_state = 3}, - [564] = {.lex_state = 3}, - [565] = {.lex_state = 3}, - [566] = {.lex_state = 3}, - [567] = {.lex_state = 3}, - [568] = {.lex_state = 3}, - [569] = {.lex_state = 3}, - [570] = {.lex_state = 3}, - [571] = {.lex_state = 3}, - [572] = {.lex_state = 3}, - [573] = {.lex_state = 3}, - [574] = {.lex_state = 3}, - [575] = {.lex_state = 3}, - [576] = {.lex_state = 3}, - [577] = {.lex_state = 4}, - [578] = {.lex_state = 3}, - [579] = {.lex_state = 4}, - [580] = {.lex_state = 4}, - [581] = {.lex_state = 3}, - [582] = {.lex_state = 3}, - [583] = {.lex_state = 3}, - [584] = {.lex_state = 3}, - [585] = {.lex_state = 3}, - [586] = {.lex_state = 4}, - [587] = {.lex_state = 3}, - [588] = {.lex_state = 4}, - [589] = {.lex_state = 3}, - [590] = {.lex_state = 3}, - [591] = {.lex_state = 4}, - [592] = {.lex_state = 4}, - [593] = {.lex_state = 3}, - [594] = {.lex_state = 3}, - [595] = {.lex_state = 12}, - [596] = {.lex_state = 3}, - [597] = {.lex_state = 3}, - [598] = {.lex_state = 4}, - [599] = {.lex_state = 4}, - [600] = {.lex_state = 3}, - [601] = {.lex_state = 3}, - [602] = {.lex_state = 3}, - [603] = {.lex_state = 3}, - [604] = {.lex_state = 22}, - [605] = {.lex_state = 3}, - [606] = {.lex_state = 4}, - [607] = {.lex_state = 3}, - [608] = {.lex_state = 3}, - [609] = {.lex_state = 3}, - [610] = {.lex_state = 3}, - [611] = {.lex_state = 3}, - [612] = {.lex_state = 3}, - [613] = {.lex_state = 3}, - [614] = {.lex_state = 3}, - [615] = {.lex_state = 3}, - [616] = {.lex_state = 3}, - [617] = {.lex_state = 3}, - [618] = {.lex_state = 3}, - [619] = {.lex_state = 3}, - [620] = {.lex_state = 3}, - [621] = {.lex_state = 3}, - [622] = {.lex_state = 3}, - [623] = {.lex_state = 3}, - [624] = {.lex_state = 3}, - [625] = {.lex_state = 3}, - [626] = {.lex_state = 22}, - [627] = {.lex_state = 3}, - [628] = {.lex_state = 3}, - [629] = {.lex_state = 3}, - [630] = {.lex_state = 3}, - [631] = {.lex_state = 3}, - [632] = {.lex_state = 3}, - [633] = {.lex_state = 3}, - [634] = {.lex_state = 3}, - [635] = {.lex_state = 3}, - [636] = {.lex_state = 3}, - [637] = {.lex_state = 3}, - [638] = {.lex_state = 3}, - [639] = {.lex_state = 3}, - [640] = {.lex_state = 3}, - [641] = {.lex_state = 12}, - [642] = {.lex_state = 3}, - [643] = {.lex_state = 3}, - [644] = {.lex_state = 3}, - [645] = {.lex_state = 3}, - [646] = {.lex_state = 12}, - [647] = {.lex_state = 3}, - [648] = {.lex_state = 3}, - [649] = {.lex_state = 4}, - [650] = {.lex_state = 3}, - [651] = {.lex_state = 5}, - [652] = {.lex_state = 5}, - [653] = {.lex_state = 3}, - [654] = {.lex_state = 12}, - [655] = {.lex_state = 22}, - [656] = {.lex_state = 12}, - [657] = {.lex_state = 12}, - [658] = {.lex_state = 12}, - [659] = {.lex_state = 3}, - [660] = {.lex_state = 12}, - [661] = {.lex_state = 3}, - [662] = {.lex_state = 3}, - [663] = {.lex_state = 3}, - [664] = {.lex_state = 3}, - [665] = {.lex_state = 3}, - [666] = {.lex_state = 12}, - [667] = {.lex_state = 3}, - [668] = {.lex_state = 5}, - [669] = {.lex_state = 5}, - [670] = {.lex_state = 3}, - [671] = {.lex_state = 12}, - [672] = {.lex_state = 12}, - [673] = {.lex_state = 22}, - [674] = {.lex_state = 12}, - [675] = {.lex_state = 12}, - [676] = {.lex_state = 3}, - [677] = {.lex_state = 12}, - [678] = {.lex_state = 3}, - [679] = {.lex_state = 3}, - [680] = {.lex_state = 3}, - [681] = {.lex_state = 3}, + [515] = {.lex_state = 0}, + [516] = {.lex_state = 0}, + [517] = {.lex_state = 1}, + [518] = {.lex_state = 1}, + [519] = {.lex_state = 1}, + [520] = {.lex_state = 0}, + [521] = {.lex_state = 1}, + [522] = {.lex_state = 1}, + [523] = {.lex_state = 1}, + [524] = {.lex_state = 1}, + [525] = {.lex_state = 0}, + [526] = {.lex_state = 1}, + [527] = {.lex_state = 1}, + [528] = {.lex_state = 1}, + [529] = {.lex_state = 1}, + [530] = {.lex_state = 1}, + [531] = {.lex_state = 1}, + [532] = {.lex_state = 11}, + [533] = {.lex_state = 1}, + [534] = {.lex_state = 1}, + [535] = {.lex_state = 11}, + [536] = {.lex_state = 1}, + [537] = {.lex_state = 1}, + [538] = {.lex_state = 1}, + [539] = {.lex_state = 2}, + [540] = {.lex_state = 1}, + [541] = {.lex_state = 4}, + [542] = {.lex_state = 1}, + [543] = {.lex_state = 1}, + [544] = {.lex_state = 2}, + [545] = {.lex_state = 8}, + [546] = {.lex_state = 11}, + [547] = {.lex_state = 8}, + [548] = {.lex_state = 11}, + [549] = {.lex_state = 1}, + [550] = {.lex_state = 4}, + [551] = {.lex_state = 1}, + [552] = {.lex_state = 1}, + [553] = {.lex_state = 8}, + [554] = {.lex_state = 1}, + [555] = {.lex_state = 1}, + [556] = {.lex_state = 2}, + [557] = {.lex_state = 1}, + [558] = {.lex_state = 1}, + [559] = {.lex_state = 1}, + [560] = {.lex_state = 2}, + [561] = {.lex_state = 1}, + [562] = {.lex_state = 2}, + [563] = {.lex_state = 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 = 1}, + [571] = {.lex_state = 2}, + [572] = {.lex_state = 1}, + [573] = {.lex_state = 2}, + [574] = {.lex_state = 1}, + [575] = {.lex_state = 1}, + [576] = {.lex_state = 1}, + [577] = {.lex_state = 2}, + [578] = {.lex_state = 2}, + [579] = {.lex_state = 2}, + [580] = {.lex_state = 1}, + [581] = {.lex_state = 1}, + [582] = {.lex_state = 1}, + [583] = {.lex_state = 2}, + [584] = {.lex_state = 1}, + [585] = {.lex_state = 2}, + [586] = {.lex_state = 1}, + [587] = {.lex_state = 1}, + [588] = {.lex_state = 1}, + [589] = {.lex_state = 1}, + [590] = {.lex_state = 1}, + [591] = {.lex_state = 1}, + [592] = {.lex_state = 8}, + [593] = {.lex_state = 1}, + [594] = {.lex_state = 1}, + [595] = {.lex_state = 1}, + [596] = {.lex_state = 1}, + [597] = {.lex_state = 1}, + [598] = {.lex_state = 1}, + [599] = {.lex_state = 1}, + [600] = {.lex_state = 1}, + [601] = {.lex_state = 1}, + [602] = {.lex_state = 1}, + [603] = {.lex_state = 1}, + [604] = {.lex_state = 1}, + [605] = {.lex_state = 2}, + [606] = {.lex_state = 1}, + [607] = {.lex_state = 1}, + [608] = {.lex_state = 18}, + [609] = {.lex_state = 1}, + [610] = {.lex_state = 2}, + [611] = {.lex_state = 2}, + [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 = 18}, + [620] = {.lex_state = 1}, + [621] = {.lex_state = 1}, + [622] = {.lex_state = 1}, + [623] = {.lex_state = 1}, + [624] = {.lex_state = 1}, + [625] = {.lex_state = 1}, + [626] = {.lex_state = 1}, + [627] = {.lex_state = 1}, + [628] = {.lex_state = 1}, + [629] = {.lex_state = 1}, + [630] = {.lex_state = 1}, + [631] = {.lex_state = 1}, + [632] = {.lex_state = 1}, + [633] = {.lex_state = 1}, + [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 = 1}, + [641] = {.lex_state = 1}, + [642] = {.lex_state = 1}, + [643] = {.lex_state = 1}, + [644] = {.lex_state = 1}, + [645] = {.lex_state = 1}, + [646] = {.lex_state = 1}, + [647] = {.lex_state = 1}, + [648] = {.lex_state = 1}, + [649] = {.lex_state = 8}, + [650] = {.lex_state = 8}, + [651] = {.lex_state = 1}, + [652] = {.lex_state = 1}, + [653] = {.lex_state = 1}, + [654] = {.lex_state = 1}, + [655] = {.lex_state = 3}, + [656] = {.lex_state = 2}, + [657] = {.lex_state = 3}, + [658] = {.lex_state = 1}, + [659] = {.lex_state = 8}, + [660] = {.lex_state = 8}, + [661] = {.lex_state = 1}, + [662] = {.lex_state = 1}, + [663] = {.lex_state = 8}, + [664] = {.lex_state = 8}, + [665] = {.lex_state = 1}, + [666] = {.lex_state = 1}, + [667] = {.lex_state = 1}, + [668] = {.lex_state = 3}, + [669] = {.lex_state = 8}, + [670] = {.lex_state = 1}, + [671] = {.lex_state = 8}, + [672] = {.lex_state = 1}, + [673] = {.lex_state = 3}, + [674] = {.lex_state = 1}, + [675] = {.lex_state = 18}, + [676] = {.lex_state = 8}, + [677] = {.lex_state = 8}, + [678] = {.lex_state = 8}, + [679] = {.lex_state = 18}, + [680] = {.lex_state = 8}, + [681] = {.lex_state = 8}, [682] = {.lex_state = 3}, - [683] = {.lex_state = 5}, - [684] = {.lex_state = 12}, - [685] = {.lex_state = 12}, - [686] = {.lex_state = 3}, - [687] = {.lex_state = 3}, - [688] = {.lex_state = 5}, - [689] = {.lex_state = 3}, - [690] = {.lex_state = 5}, - [691] = {.lex_state = 12}, - [692] = {.lex_state = 5}, - [693] = {.lex_state = 12}, + [683] = {.lex_state = 8}, + [684] = {.lex_state = 1}, + [685] = {.lex_state = 1}, + [686] = {.lex_state = 1}, + [687] = {.lex_state = 8}, + [688] = {.lex_state = 1}, + [689] = {.lex_state = 1}, + [690] = {.lex_state = 1}, + [691] = {.lex_state = 1}, + [692] = {.lex_state = 1}, + [693] = {.lex_state = 3}, [694] = {.lex_state = 3}, - [695] = {.lex_state = 3}, - [696] = {.lex_state = 3}, + [695] = {.lex_state = 8}, + [696] = {.lex_state = 1}, [697] = {.lex_state = 3}, - [698] = {.lex_state = 3}, - [699] = {.lex_state = 3}, - [700] = {.lex_state = 3}, - [701] = {.lex_state = 3}, - [702] = {.lex_state = 3}, - [703] = {.lex_state = 3}, - [704] = {.lex_state = 3}, - [705] = {.lex_state = 3}, - [706] = {.lex_state = 5}, - [707] = {.lex_state = 5}, - [708] = {.lex_state = 5}, - [709] = {.lex_state = 3}, - [710] = {.lex_state = 3}, - [711] = {.lex_state = 3}, - [712] = {.lex_state = 3}, - [713] = {.lex_state = 3}, - [714] = {.lex_state = 5}, + [698] = {.lex_state = 1}, + [699] = {.lex_state = 8}, + [700] = {.lex_state = 1}, + [701] = {.lex_state = 1}, + [702] = {.lex_state = 1}, + [703] = {.lex_state = 1}, + [704] = {.lex_state = 1}, + [705] = {.lex_state = 1}, + [706] = {.lex_state = 1}, + [707] = {.lex_state = 1}, + [708] = {.lex_state = 1}, + [709] = {.lex_state = 1}, + [710] = {.lex_state = 1}, + [711] = {.lex_state = 1}, + [712] = {.lex_state = 1}, + [713] = {.lex_state = 1}, + [714] = {.lex_state = 1}, [715] = {.lex_state = 3}, - [716] = {.lex_state = 5}, - [717] = {.lex_state = 3}, - [718] = {.lex_state = 5}, - [719] = {.lex_state = 3}, + [716] = {.lex_state = 3}, + [717] = {.lex_state = 1}, + [718] = {.lex_state = 3}, + [719] = {.lex_state = 1}, [720] = {.lex_state = 3}, [721] = {.lex_state = 3}, - [722] = {.lex_state = 5}, - [723] = {.lex_state = 3}, - [724] = {.lex_state = 5}, - [725] = {.lex_state = 4}, - [726] = {.lex_state = 5}, + [722] = {.lex_state = 1}, + [723] = {.lex_state = 1}, + [724] = {.lex_state = 1}, + [725] = {.lex_state = 1}, + [726] = {.lex_state = 1}, [727] = {.lex_state = 3}, - [728] = {.lex_state = 5}, + [728] = {.lex_state = 3}, [729] = {.lex_state = 3}, - [730] = {.lex_state = 4}, + [730] = {.lex_state = 3}, [731] = {.lex_state = 3}, - [732] = {.lex_state = 5}, + [732] = {.lex_state = 2}, [733] = {.lex_state = 3}, - [734] = {.lex_state = 5}, - [735] = {.lex_state = 5}, - [736] = {.lex_state = 3}, - [737] = {.lex_state = 5}, - [738] = {.lex_state = 3}, - [739] = {.lex_state = 4}, - [740] = {.lex_state = 4}, - [741] = {.lex_state = 3}, - [742] = {.lex_state = 5}, + [734] = {.lex_state = 3}, + [735] = {.lex_state = 1}, + [736] = {.lex_state = 2}, + [737] = {.lex_state = 3}, + [738] = {.lex_state = 2}, + [739] = {.lex_state = 1}, + [740] = {.lex_state = 1}, + [741] = {.lex_state = 1}, + [742] = {.lex_state = 1}, [743] = {.lex_state = 3}, - [744] = {.lex_state = 5}, - [745] = {.lex_state = 5}, - [746] = {.lex_state = 4}, - [747] = {.lex_state = 5}, - [748] = {.lex_state = 4}, - [749] = {.lex_state = 5}, - [750] = {.lex_state = 4}, - [751] = {.lex_state = 5}, - [752] = {.lex_state = 4}, - [753] = {.lex_state = 5}, - [754] = {.lex_state = 3}, - [755] = {.lex_state = 5}, - [756] = {.lex_state = 5}, + [744] = {.lex_state = 2}, + [745] = {.lex_state = 1}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 1}, + [748] = {.lex_state = 1}, + [749] = {.lex_state = 2}, + [750] = {.lex_state = 3}, + [751] = {.lex_state = 3}, + [752] = {.lex_state = 3}, + [753] = {.lex_state = 3}, + [754] = {.lex_state = 2}, + [755] = {.lex_state = 2}, + [756] = {.lex_state = 2}, [757] = {.lex_state = 3}, - [758] = {.lex_state = 3}, + [758] = {.lex_state = 1}, [759] = {.lex_state = 3}, - [760] = {.lex_state = 5}, - [761] = {.lex_state = 5}, - [762] = {.lex_state = 4}, - [763] = {.lex_state = 3}, + [760] = {.lex_state = 3}, + [761] = {.lex_state = 1}, + [762] = {.lex_state = 3}, + [763] = {.lex_state = 1}, [764] = {.lex_state = 3}, - [765] = {.lex_state = 4}, - [766] = {.lex_state = 3}, - [767] = {.lex_state = 3}, - [768] = {.lex_state = 3}, - [769] = {.lex_state = 3}, - [770] = {.lex_state = 12}, + [765] = {.lex_state = 1}, + [766] = {.lex_state = 1}, + [767] = {.lex_state = 1}, + [768] = {.lex_state = 1}, + [769] = {.lex_state = 1}, + [770] = {.lex_state = 2}, [771] = {.lex_state = 3}, - [772] = {.lex_state = 3}, - [773] = {.lex_state = 3}, - [774] = {.lex_state = 3}, - [775] = {.lex_state = 3}, - [776] = {.lex_state = 3}, - [777] = {.lex_state = 3}, - [778] = {.lex_state = 3}, - [779] = {.lex_state = 3}, - [780] = {.lex_state = 3}, - [781] = {.lex_state = 3}, - [782] = {.lex_state = 0}, - [783] = {.lex_state = 3}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 3}, - [786] = {.lex_state = 3}, - [787] = {.lex_state = 3}, - [788] = {.lex_state = 3}, - [789] = {.lex_state = 3}, - [790] = {.lex_state = 4}, - [791] = {.lex_state = 4}, - [792] = {.lex_state = 3}, - [793] = {.lex_state = 3}, - [794] = {.lex_state = 3}, - [795] = {.lex_state = 4}, - [796] = {.lex_state = 3}, - [797] = {.lex_state = 3}, - [798] = {.lex_state = 3}, - [799] = {.lex_state = 3}, - [800] = {.lex_state = 3}, - [801] = {.lex_state = 3}, - [802] = {.lex_state = 3}, - [803] = {.lex_state = 3}, - [804] = {.lex_state = 3}, - [805] = {.lex_state = 3}, - [806] = {.lex_state = 3}, - [807] = {.lex_state = 3}, - [808] = {.lex_state = 3}, - [809] = {.lex_state = 3}, - [810] = {.lex_state = 3}, - [811] = {.lex_state = 3}, - [812] = {.lex_state = 3}, - [813] = {.lex_state = 3}, - [814] = {.lex_state = 3}, - [815] = {.lex_state = 3}, - [816] = {.lex_state = 3}, - [817] = {.lex_state = 3}, - [818] = {.lex_state = 4}, - [819] = {.lex_state = 3}, - [820] = {.lex_state = 3}, - [821] = {.lex_state = 3}, - [822] = {.lex_state = 3}, - [823] = {.lex_state = 3}, - [824] = {.lex_state = 4}, - [825] = {.lex_state = 3}, - [826] = {.lex_state = 3}, - [827] = {.lex_state = 3}, - [828] = {.lex_state = 3}, - [829] = {.lex_state = 3}, - [830] = {.lex_state = 3}, - [831] = {.lex_state = 3}, - [832] = {.lex_state = 3}, - [833] = {.lex_state = 3}, - [834] = {.lex_state = 3}, - [835] = {.lex_state = 3}, - [836] = {.lex_state = 3}, - [837] = {.lex_state = 3}, - [838] = {.lex_state = 3}, - [839] = {.lex_state = 3}, - [840] = {.lex_state = 3}, - [841] = {.lex_state = 3}, - [842] = {.lex_state = 3}, - [843] = {.lex_state = 3}, - [844] = {.lex_state = 3}, - [845] = {.lex_state = 3}, - [846] = {.lex_state = 3}, - [847] = {.lex_state = 3}, - [848] = {.lex_state = 3}, - [849] = {.lex_state = 3}, - [850] = {.lex_state = 4}, - [851] = {.lex_state = 3}, - [852] = {.lex_state = 3}, - [853] = {.lex_state = 3}, - [854] = {.lex_state = 3}, - [855] = {.lex_state = 3}, - [856] = {.lex_state = 3}, - [857] = {.lex_state = 3}, - [858] = {.lex_state = 3}, - [859] = {.lex_state = 3}, - [860] = {.lex_state = 12}, - [861] = {.lex_state = 3}, - [862] = {.lex_state = 3}, - [863] = {.lex_state = 3}, - [864] = {.lex_state = 3}, - [865] = {.lex_state = 5}, - [866] = {.lex_state = 3}, - [867] = {.lex_state = 3}, - [868] = {.lex_state = 5}, - [869] = {.lex_state = 3}, - [870] = {.lex_state = 3}, - [871] = {.lex_state = 5}, - [872] = {.lex_state = 5}, - [873] = {.lex_state = 3}, - [874] = {.lex_state = 3}, - [875] = {.lex_state = 5}, - [876] = {.lex_state = 3}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 12}, - [879] = {.lex_state = 3}, - [880] = {.lex_state = 3}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 3}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 3}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 3}, - [888] = {.lex_state = 3}, - [889] = {.lex_state = 3}, - [890] = {.lex_state = 3}, - [891] = {.lex_state = 5}, - [892] = {.lex_state = 3}, - [893] = {.lex_state = 3}, - [894] = {.lex_state = 3}, - [895] = {.lex_state = 3}, - [896] = {.lex_state = 3}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 5}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 4}, - [901] = {.lex_state = 5}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 3}, - [907] = {.lex_state = 3}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 3}, - [911] = {.lex_state = 3}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 12}, - [914] = {.lex_state = 3}, - [915] = {.lex_state = 5}, - [916] = {.lex_state = 5}, - [917] = {.lex_state = 5}, - [918] = {.lex_state = 5}, - [919] = {.lex_state = 5}, - [920] = {.lex_state = 5}, - [921] = {.lex_state = 5}, - [922] = {.lex_state = 5}, - [923] = {.lex_state = 5}, - [924] = {.lex_state = 5}, - [925] = {.lex_state = 5}, - [926] = {.lex_state = 12}, - [927] = {.lex_state = 3}, - [928] = {.lex_state = 0}, + [772] = {.lex_state = 1}, + [773] = {.lex_state = 2}, + [774] = {.lex_state = 1}, + [775] = {.lex_state = 1}, + [776] = {.lex_state = 8}, + [777] = {.lex_state = 1}, + [778] = {.lex_state = 1}, + [779] = {.lex_state = 1}, + [780] = {.lex_state = 1}, + [781] = {.lex_state = 6}, + [782] = {.lex_state = 1}, + [783] = {.lex_state = 1}, + [784] = {.lex_state = 1}, + [785] = {.lex_state = 6}, + [786] = {.lex_state = 6}, + [787] = {.lex_state = 0}, + [788] = {.lex_state = 1}, + [789] = {.lex_state = 0}, + [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 = 2}, + [799] = {.lex_state = 1}, + [800] = {.lex_state = 1}, + [801] = {.lex_state = 6}, + [802] = {.lex_state = 1}, + [803] = {.lex_state = 1}, + [804] = {.lex_state = 2}, + [805] = {.lex_state = 1}, + [806] = {.lex_state = 1}, + [807] = {.lex_state = 1}, + [808] = {.lex_state = 1}, + [809] = {.lex_state = 1}, + [810] = {.lex_state = 1}, + [811] = {.lex_state = 1}, + [812] = {.lex_state = 1}, + [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 = 1}, + [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 = 6}, + [834] = {.lex_state = 1}, + [835] = {.lex_state = 1}, + [836] = {.lex_state = 1}, + [837] = {.lex_state = 1}, + [838] = {.lex_state = 1}, + [839] = {.lex_state = 1}, + [840] = {.lex_state = 1}, + [841] = {.lex_state = 1}, + [842] = {.lex_state = 1}, + [843] = {.lex_state = 1}, + [844] = {.lex_state = 1}, + [845] = {.lex_state = 1}, + [846] = {.lex_state = 1}, + [847] = {.lex_state = 1}, + [848] = {.lex_state = 6}, + [849] = {.lex_state = 1}, + [850] = {.lex_state = 1}, + [851] = {.lex_state = 1}, + [852] = {.lex_state = 1}, + [853] = {.lex_state = 1}, + [854] = {.lex_state = 1}, + [855] = {.lex_state = 1}, + [856] = {.lex_state = 2}, + [857] = {.lex_state = 1}, + [858] = {.lex_state = 1}, + [859] = {.lex_state = 1}, + [860] = {.lex_state = 1}, + [861] = {.lex_state = 1}, + [862] = {.lex_state = 1}, + [863] = {.lex_state = 2}, + [864] = {.lex_state = 1}, + [865] = {.lex_state = 2}, + [866] = {.lex_state = 2}, + [867] = {.lex_state = 1}, + [868] = {.lex_state = 1}, + [869] = {.lex_state = 1}, + [870] = {.lex_state = 8}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 0}, + [873] = {.lex_state = 1}, + [874] = {.lex_state = 1}, + [875] = {.lex_state = 1}, + [876] = {.lex_state = 1}, + [877] = {.lex_state = 1}, + [878] = {.lex_state = 8}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 1}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 3}, + [884] = {.lex_state = 1}, + [885] = {.lex_state = 3}, + [886] = {.lex_state = 3}, + [887] = {.lex_state = 1}, + [888] = {.lex_state = 1}, + [889] = {.lex_state = 1}, + [890] = {.lex_state = 1}, + [891] = {.lex_state = 0}, + [892] = {.lex_state = 1}, + [893] = {.lex_state = 1}, + [894] = {.lex_state = 1}, + [895] = {.lex_state = 1}, + [896] = {.lex_state = 1}, + [897] = {.lex_state = 1}, + [898] = {.lex_state = 1}, + [899] = {.lex_state = 1}, + [900] = {.lex_state = 1}, + [901] = {.lex_state = 1}, + [902] = {.lex_state = 6}, + [903] = {.lex_state = 1}, + [904] = {.lex_state = 3}, + [905] = {.lex_state = 3}, + [906] = {.lex_state = 1}, + [907] = {.lex_state = 1}, + [908] = {.lex_state = 1}, + [909] = {.lex_state = 3}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 7}, + [912] = {.lex_state = 1}, + [913] = {.lex_state = 7}, + [914] = {.lex_state = 1}, + [915] = {.lex_state = 1}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 0}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0}, + [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}, [929] = {.lex_state = 3}, [930] = {.lex_state = 3}, - [931] = {.lex_state = 0}, + [931] = {.lex_state = 3}, [932] = {.lex_state = 3}, - [933] = {.lex_state = 0}, + [933] = {.lex_state = 3}, [934] = {.lex_state = 3}, [935] = {.lex_state = 3}, [936] = {.lex_state = 3}, [937] = {.lex_state = 3}, [938] = {.lex_state = 3}, [939] = {.lex_state = 3}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 3}, - [942] = {.lex_state = 3}, - [943] = {.lex_state = 4}, - [944] = {.lex_state = 3}, - [945] = {.lex_state = 4}, - [946] = {.lex_state = 3}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 3}, - [950] = {.lex_state = 3}, - [951] = {.lex_state = 3}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 3}, - [955] = {.lex_state = 3}, - [956] = {.lex_state = 3}, + [940] = {.lex_state = 3}, + [941] = {.lex_state = 1}, + [942] = {.lex_state = 0}, + [943] = {.lex_state = 1}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 1}, + [946] = {.lex_state = 2}, + [947] = {.lex_state = 1}, + [948] = {.lex_state = 1}, + [949] = {.lex_state = 8}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 2}, + [952] = {.lex_state = 1}, + [953] = {.lex_state = 8}, + [954] = {.lex_state = 1}, + [955] = {.lex_state = 2}, + [956] = {.lex_state = 1}, [957] = {.lex_state = 3}, - [958] = {.lex_state = 3}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 0}, + [958] = {.lex_state = 7}, + [959] = {.lex_state = 1}, + [960] = {.lex_state = 1}, [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 3}, - [964] = {.lex_state = 3}, - [965] = {.lex_state = 3}, - [966] = {.lex_state = 0}, + [962] = {.lex_state = 1}, + [963] = {.lex_state = 0}, + [964] = {.lex_state = 0}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 1}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 5}, - [969] = {.lex_state = 4}, - [970] = {.lex_state = 3}, - [971] = {.lex_state = 4}, + [968] = {.lex_state = 1}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 1}, + [971] = {.lex_state = 1}, [972] = {.lex_state = 0}, - [973] = {.lex_state = 0}, + [973] = {.lex_state = 1}, [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, - [976] = {.lex_state = 3}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, + [976] = {.lex_state = 1}, + [977] = {.lex_state = 1}, + [978] = {.lex_state = 1}, + [979] = {.lex_state = 1}, [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, - [982] = {.lex_state = 0}, + [982] = {.lex_state = 3}, [983] = {.lex_state = 0}, [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, @@ -9116,298 +10021,313 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, + [990] = {.lex_state = 2}, [991] = {.lex_state = 0}, - [992] = {.lex_state = 5}, + [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 = 5}, + [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 3}, - [1002] = {.lex_state = 3}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 5}, + [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0}, + [1011] = {.lex_state = 2}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 5}, - [1014] = {.lex_state = 0}, + [1013] = {.lex_state = 1}, + [1014] = {.lex_state = 1}, [1015] = {.lex_state = 0}, [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 5}, - [1018] = {.lex_state = 4}, - [1019] = {.lex_state = 5}, - [1020] = {.lex_state = 5}, + [1017] = {.lex_state = 1}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 0}, + [1020] = {.lex_state = 3}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 3}, - [1024] = {.lex_state = 5}, - [1025] = {.lex_state = 5}, - [1026] = {.lex_state = 5}, - [1027] = {.lex_state = 5}, - [1028] = {.lex_state = 0}, + [1023] = {.lex_state = 0}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 3}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 3}, [1029] = {.lex_state = 3}, - [1030] = {.lex_state = 5}, - [1031] = {.lex_state = 5}, - [1032] = {.lex_state = 0}, + [1030] = {.lex_state = 1}, + [1031] = {.lex_state = 0}, + [1032] = {.lex_state = 1}, [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 4}, - [1035] = {.lex_state = 4}, + [1034] = {.lex_state = 3}, + [1035] = {.lex_state = 3}, [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 3}, + [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 5}, + [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 4}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 3}, + [1046] = {.lex_state = 3}, [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, + [1050] = {.lex_state = 2}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 3}, - [1056] = {.lex_state = 3}, - [1057] = {.lex_state = 3}, - [1058] = {.lex_state = 0}, + [1053] = {.lex_state = 1}, + [1054] = {.lex_state = 2}, + [1055] = {.lex_state = 1}, + [1056] = {.lex_state = 0}, + [1057] = {.lex_state = 0}, + [1058] = {.lex_state = 2}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 0}, + [1060] = {.lex_state = 2}, [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 4}, + [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, + [1066] = {.lex_state = 1}, + [1067] = {.lex_state = 1}, [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0}, + [1069] = {.lex_state = 1}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 5}, - [1072] = {.lex_state = 5}, - [1073] = {.lex_state = 4}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 5}, - [1076] = {.lex_state = 4}, + [1071] = {.lex_state = 3}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 3}, + [1074] = {.lex_state = 3}, + [1075] = {.lex_state = 3}, + [1076] = {.lex_state = 2}, [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 5}, - [1080] = {.lex_state = 4}, + [1078] = {.lex_state = 2}, + [1079] = {.lex_state = 0}, + [1080] = {.lex_state = 2}, [1081] = {.lex_state = 3}, - [1082] = {.lex_state = 4}, - [1083] = {.lex_state = 0}, + [1082] = {.lex_state = 0}, + [1083] = {.lex_state = 3}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 4}, + [1086] = {.lex_state = 3}, + [1087] = {.lex_state = 3}, + [1088] = {.lex_state = 3}, [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 3}, + [1091] = {.lex_state = 0}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 3}, + [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 3}, + [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 3}, + [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 3}, - [1101] = {.lex_state = 0}, + [1100] = {.lex_state = 0}, + [1101] = {.lex_state = 3}, [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 0}, + [1103] = {.lex_state = 3}, + [1104] = {.lex_state = 3}, + [1105] = {.lex_state = 3}, + [1106] = {.lex_state = 3}, + [1107] = {.lex_state = 3}, + [1108] = {.lex_state = 1}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 3}, + [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 = 4}, - [1118] = {.lex_state = 4}, - [1119] = {.lex_state = 5}, + [1117] = {.lex_state = 0}, + [1118] = {.lex_state = 0}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 5}, - [1126] = {.lex_state = 5}, - [1127] = {.lex_state = 5}, - [1128] = {.lex_state = 0}, + [1124] = {.lex_state = 3}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 0}, + [1127] = {.lex_state = 2}, + [1128] = {.lex_state = 1}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 2}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0}, + [1133] = {.lex_state = 2}, [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, + [1135] = {.lex_state = 2}, + [1136] = {.lex_state = 2}, [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0}, + [1139] = {.lex_state = 1}, [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0}, + [1141] = {.lex_state = 3}, [1142] = {.lex_state = 0}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 5}, + [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 5}, + [1148] = {.lex_state = 1}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 3}, + [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 4}, + [1155] = {.lex_state = 1}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 5}, - [1160] = {.lex_state = 5}, - [1161] = {.lex_state = 5}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 5}, - [1164] = {.lex_state = 5}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 4}, - [1167] = {.lex_state = 5}, - [1168] = {.lex_state = 0}, + [1166] = {.lex_state = 1}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 1}, [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1171] = {.lex_state = 3}, [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 5}, - [1174] = {.lex_state = 5}, - [1175] = {.lex_state = 5}, + [1173] = {.lex_state = 1}, + [1174] = {.lex_state = 3}, + [1175] = {.lex_state = 3}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 5}, + [1180] = {.lex_state = 1}, [1181] = {.lex_state = 3}, - [1182] = {.lex_state = 5}, - [1183] = {.lex_state = 5}, + [1182] = {.lex_state = 0}, + [1183] = {.lex_state = 3}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 3}, - [1186] = {.lex_state = 5}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, + [1189] = {.lex_state = 3}, + [1190] = {.lex_state = 3}, + [1191] = {.lex_state = 3}, + [1192] = {.lex_state = 1}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, [1196] = {.lex_state = 0}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 3}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, + [1198] = {.lex_state = 2}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 3}, + [1201] = {.lex_state = 3}, [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, + [1204] = {.lex_state = 3}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, + [1207] = {.lex_state = 3}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, + [1212] = {.lex_state = 1}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 3}, - [1215] = {.lex_state = 3}, - [1216] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 1}, + [1216] = {.lex_state = 1}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, + [1218] = {.lex_state = 1}, [1219] = {.lex_state = 3}, - [1220] = {.lex_state = 3}, + [1220] = {.lex_state = 0}, [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 5}, - [1224] = {.lex_state = 3}, - [1225] = {.lex_state = 0}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 1}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 3}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0}, + [1229] = {.lex_state = 1}, + [1230] = {.lex_state = 1}, [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 5}, + [1233] = {.lex_state = 1}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 3}, - [1236] = {.lex_state = 3}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 1}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, + [1239] = {.lex_state = 1}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0}, + [1241] = {.lex_state = 3}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 3}, - [1244] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 1}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 3}, - [1251] = {.lex_state = 3}, - [1252] = {.lex_state = 3}, - [1253] = {.lex_state = 3}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 3}, + [1255] = {.lex_state = 1}, + [1256] = {.lex_state = 1}, [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 3}, + [1258] = {.lex_state = 0}, [1259] = {.lex_state = 0}, [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 3}, + [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 3}, - [1264] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 1}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, + [1266] = {.lex_state = 1}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 3}, - [1269] = {.lex_state = 0}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 1}, [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 3}, - [1272] = {.lex_state = 3}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 3}, + [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 1}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 1}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 1}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 1}, + [1295] = {.lex_state = 1}, + [1296] = {.lex_state = 1}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9423,8 +10343,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1), [sym_false] = ACTIONS(1), [sym_character_literal] = ACTIONS(1), - [sym_string_literal] = ACTIONS(1), - [sym_text_block] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1), + [aux_sym__escape_sequence_token1] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), [sym_null_literal] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), @@ -9544,73 +10466,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1209), - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym_program] = STATE(1223), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(11), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(12), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -9622,138 +10547,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_switch_label] = STATE(1228), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_switch_label] = STATE(1270), [sym_statement] = STATE(5), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(5), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_switch_block_statement_group_repeat1] = STATE(235), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_switch_block_statement_group_repeat1] = STATE(318), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9764,140 +10692,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_default] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_case] = ACTIONS(93), + [anon_sym_default] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(546), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(550), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_type_arguments] = STATE(1098), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(6), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_explicit_constructor_invocation] = STATE(13), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_type_arguments] = STATE(1148), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(8), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_explicit_constructor_invocation] = STATE(7), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9908,281 +10839,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(99), + [sym_super] = ACTIONS(101), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [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(107), - [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), - [sym_string_literal] = ACTIONS(104), - [sym_text_block] = ACTIONS(107), - [sym_null_literal] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_final] = ACTIONS(116), - [anon_sym_BANG] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(119), - [anon_sym_PLUS_PLUS] = ACTIONS(122), - [anon_sym_DASH_DASH] = ACTIONS(122), - [anon_sym_new] = ACTIONS(125), - [anon_sym_class] = ACTIONS(128), - [anon_sym_switch] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(134), - [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(116), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(142), - [anon_sym_do] = ACTIONS(145), - [anon_sym_while] = ACTIONS(148), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(154), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(160), - [anon_sym_synchronized] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(166), - [anon_sym_try] = ACTIONS(169), - [anon_sym_if] = ACTIONS(172), - [anon_sym_for] = ACTIONS(175), - [anon_sym_AT] = ACTIONS(178), - [anon_sym_open] = ACTIONS(181), - [anon_sym_module] = ACTIONS(184), - [anon_sym_static] = ACTIONS(116), - [anon_sym_package] = ACTIONS(187), - [anon_sym_import] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_public] = ACTIONS(116), - [anon_sym_protected] = ACTIONS(116), - [anon_sym_private] = ACTIONS(116), - [anon_sym_abstract] = ACTIONS(116), - [anon_sym_strictfp] = ACTIONS(116), - [anon_sym_native] = ACTIONS(116), - [anon_sym_transient] = ACTIONS(116), - [anon_sym_volatile] = ACTIONS(116), - [anon_sym_sealed] = ACTIONS(116), - [anon_sym_non_DASHsealed] = ACTIONS(196), - [anon_sym_record] = ACTIONS(199), - [anon_sym_ATinterface] = ACTIONS(202), - [anon_sym_interface] = ACTIONS(205), - [anon_sym_byte] = ACTIONS(208), - [anon_sym_short] = ACTIONS(208), - [anon_sym_int] = ACTIONS(208), - [anon_sym_long] = ACTIONS(208), - [anon_sym_char] = ACTIONS(208), - [anon_sym_float] = ACTIONS(211), - [anon_sym_double] = ACTIONS(211), - [sym_boolean_type] = ACTIONS(214), - [sym_void_type] = ACTIONS(214), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(220), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(103), + [sym_identifier] = ACTIONS(105), + [sym_decimal_integer_literal] = ACTIONS(108), + [sym_hex_integer_literal] = ACTIONS(108), + [sym_octal_integer_literal] = ACTIONS(111), + [sym_binary_integer_literal] = ACTIONS(111), + [sym_decimal_floating_point_literal] = ACTIONS(111), + [sym_hex_floating_point_literal] = ACTIONS(108), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_character_literal] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(114), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(117), + [sym_null_literal] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_final] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_DASH_DASH] = ACTIONS(132), + [anon_sym_new] = ACTIONS(135), + [anon_sym_class] = ACTIONS(138), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(144), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_case] = ACTIONS(147), + [anon_sym_default] = ACTIONS(126), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_assert] = ACTIONS(152), + [anon_sym_do] = ACTIONS(155), + [anon_sym_while] = ACTIONS(158), + [anon_sym_break] = ACTIONS(161), + [anon_sym_continue] = ACTIONS(164), + [anon_sym_return] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(170), + [anon_sym_synchronized] = ACTIONS(173), + [anon_sym_throw] = ACTIONS(176), + [anon_sym_try] = ACTIONS(179), + [anon_sym_if] = ACTIONS(182), + [anon_sym_for] = ACTIONS(185), + [anon_sym_AT] = ACTIONS(188), + [anon_sym_open] = ACTIONS(191), + [anon_sym_module] = ACTIONS(194), + [anon_sym_static] = ACTIONS(126), + [anon_sym_package] = ACTIONS(197), + [anon_sym_import] = ACTIONS(200), + [anon_sym_enum] = ACTIONS(203), + [anon_sym_public] = ACTIONS(126), + [anon_sym_protected] = ACTIONS(126), + [anon_sym_private] = ACTIONS(126), + [anon_sym_abstract] = ACTIONS(126), + [anon_sym_strictfp] = ACTIONS(126), + [anon_sym_native] = ACTIONS(126), + [anon_sym_transient] = ACTIONS(126), + [anon_sym_volatile] = ACTIONS(126), + [anon_sym_sealed] = ACTIONS(126), + [anon_sym_non_DASHsealed] = ACTIONS(206), + [anon_sym_record] = ACTIONS(209), + [anon_sym_ATinterface] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_byte] = ACTIONS(218), + [anon_sym_short] = ACTIONS(218), + [anon_sym_int] = ACTIONS(218), + [anon_sym_long] = ACTIONS(218), + [anon_sym_char] = ACTIONS(218), + [anon_sym_float] = ACTIONS(221), + [anon_sym_double] = ACTIONS(221), + [sym_boolean_type] = ACTIONS(224), + [sym_void_type] = ACTIONS(224), + [sym_this] = ACTIONS(227), + [sym_super] = ACTIONS(230), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10193,138 +11130,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_case] = ACTIONS(225), - [anon_sym_default] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_case] = ACTIONS(235), + [anon_sym_default] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(4), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(13), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10335,137 +11275,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(237), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(4), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(10), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10476,137 +11419,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(9), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(4), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10617,137 +11563,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10758,137 +11707,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(7), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(4), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10899,138 +11851,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(243), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(4), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(237), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(9), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11041,136 +11995,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(245), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(247), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11181,137 +12140,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(239), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(12), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(4), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11322,137 +12283,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(249), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(199), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(326), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11462,136 +12426,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(216), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(327), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11601,135 +12568,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(182), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(312), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11740,136 +12710,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(1250), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(1233), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11879,135 +12852,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(240), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(346), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12018,135 +12994,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(249), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(303), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12157,135 +13136,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(248), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(284), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12296,135 +13278,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(247), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(313), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12435,135 +13420,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(246), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(335), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12574,135 +13562,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(185), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(337), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12713,136 +13704,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(209), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(272), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12852,136 +13846,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(245), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(304), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12991,136 +13988,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(242), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(305), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13130,136 +14130,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(236), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(307), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13269,136 +14272,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(234), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(319), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13408,136 +14414,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(233), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(320), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13547,136 +14556,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(183), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(322), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13686,136 +14698,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(184), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(323), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13825,136 +14840,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(186), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(326), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13964,135 +14982,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(189), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(291), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14103,136 +15124,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(249), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(329), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14242,136 +15266,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(248), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(282), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14381,136 +15408,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(247), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(291), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14520,136 +15550,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(192), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(294), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14659,136 +15692,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(246), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(297), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14798,136 +15834,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(183), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(282), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14937,136 +15976,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(184), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(311), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15076,136 +16118,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(186), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(314), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15215,136 +16260,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(189), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(316), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15354,136 +16402,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(192), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(342), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15493,136 +16544,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(216), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(340), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15632,136 +16686,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(226), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(339), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15771,136 +16828,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(193), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(337), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15910,136 +16970,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [47] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(215), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(335), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16049,136 +17112,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(194), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(313), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16188,136 +17254,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(198), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(303), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16327,136 +17396,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [50] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(244), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(346), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16466,136 +17538,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(200), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(339), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16605,136 +17680,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(206), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(301), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16744,136 +17822,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(211), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(340), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -16883,135 +17964,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(193), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(342), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17022,136 +18106,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(213), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(312), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17161,136 +18248,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(194), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(1173), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17300,136 +18390,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(215), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(301), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17439,136 +18532,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(226), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(316), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17578,135 +18674,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(213), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(314), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17717,136 +18816,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [60] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(1152), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(311), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17856,136 +18958,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(233), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(309), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -17995,136 +19100,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [62] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(234), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(272), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -18134,136 +19242,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(236), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(304), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -18273,136 +19384,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(242), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(305), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -18412,135 +19526,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(211), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(307), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18551,136 +19668,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [66] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(245), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(297), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -18690,135 +19810,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [67] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(206), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(294), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18829,135 +19952,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [68] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(200), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(319), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18968,136 +20094,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [69] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(209), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(320), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19107,136 +20236,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [70] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(185), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(322), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19246,136 +20378,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [71] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(244), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(323), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19385,136 +20520,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [72] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(199), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(7), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(309), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19524,136 +20662,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(594), - [sym_statement] = STATE(182), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(241), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(327), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19663,135 +20804,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(243), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(245), - [anon_sym_for] = ACTIONS(247), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [74] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(83), - [sym_statement] = STATE(198), - [sym_block] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_assert_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_yield_statement] = STATE(204), - [sym_synchronized_statement] = STATE(204), - [sym_throw_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_try_with_resources_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_enhanced_for_statement] = STATE(204), - [sym__annotation] = STATE(491), - [sym_marker_annotation] = STATE(491), - [sym_annotation] = STATE(491), - [sym_declaration] = STATE(204), - [sym_module_declaration] = STATE(243), - [sym_package_declaration] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym_enum_declaration] = STATE(243), - [sym_class_declaration] = STATE(243), - [sym_modifiers] = STATE(655), - [sym_record_declaration] = STATE(243), - [sym_annotation_type_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(688), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(204), - [aux_sym_array_creation_expression_repeat1] = STATE(629), - [aux_sym_modifiers_repeat1] = STATE(423), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(329), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19802,742 +20946,539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_class] = ACTIONS(25), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_default] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(17), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(17), - [anon_sym_protected] = ACTIONS(17), - [anon_sym_private] = ACTIONS(17), - [anon_sym_abstract] = ACTIONS(17), - [anon_sym_strictfp] = ACTIONS(17), - [anon_sym_native] = ACTIONS(17), - [anon_sym_transient] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(17), - [anon_sym_sealed] = ACTIONS(17), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(71), - [anon_sym_ATinterface] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(249), - [sym_identifier] = ACTIONS(251), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hex_integer_literal] = ACTIONS(251), - [sym_octal_integer_literal] = ACTIONS(249), - [sym_binary_integer_literal] = ACTIONS(249), - [sym_decimal_floating_point_literal] = ACTIONS(249), - [sym_hex_floating_point_literal] = ACTIONS(251), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_character_literal] = ACTIONS(249), - [sym_string_literal] = ACTIONS(251), - [sym_text_block] = ACTIONS(249), - [sym_null_literal] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_GT_GT_GT] = ACTIONS(249), - [anon_sym_instanceof] = ACTIONS(251), - [anon_sym_final] = ACTIONS(251), - [anon_sym_DASH_GT] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(249), - [anon_sym_DASH_DASH] = ACTIONS(249), - [anon_sym_new] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(249), - [anon_sym_DOT] = ACTIONS(251), - [anon_sym_class] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(249), - [anon_sym_switch] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(249), - [anon_sym_case] = ACTIONS(251), - [anon_sym_default] = ACTIONS(251), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(251), - [anon_sym_do] = ACTIONS(251), - [anon_sym_while] = ACTIONS(251), - [anon_sym_break] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(251), - [anon_sym_return] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(251), - [anon_sym_synchronized] = ACTIONS(251), - [anon_sym_throw] = ACTIONS(251), - [anon_sym_try] = ACTIONS(251), - [anon_sym_if] = ACTIONS(251), - [anon_sym_else] = ACTIONS(251), - [anon_sym_for] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(251), - [anon_sym_open] = ACTIONS(251), - [anon_sym_module] = ACTIONS(251), - [anon_sym_static] = ACTIONS(251), - [anon_sym_package] = ACTIONS(251), - [anon_sym_import] = ACTIONS(251), - [anon_sym_enum] = ACTIONS(251), - [anon_sym_public] = ACTIONS(251), - [anon_sym_protected] = ACTIONS(251), - [anon_sym_private] = ACTIONS(251), - [anon_sym_abstract] = ACTIONS(251), - [anon_sym_strictfp] = ACTIONS(251), - [anon_sym_native] = ACTIONS(251), - [anon_sym_transient] = ACTIONS(251), - [anon_sym_volatile] = ACTIONS(251), - [anon_sym_sealed] = ACTIONS(251), - [anon_sym_non_DASHsealed] = ACTIONS(249), - [anon_sym_record] = ACTIONS(251), - [anon_sym_ATinterface] = ACTIONS(249), - [anon_sym_interface] = ACTIONS(251), - [anon_sym_byte] = ACTIONS(251), - [anon_sym_short] = ACTIONS(251), - [anon_sym_int] = ACTIONS(251), - [anon_sym_long] = ACTIONS(251), - [anon_sym_char] = ACTIONS(251), - [anon_sym_float] = ACTIONS(251), - [anon_sym_double] = ACTIONS(251), - [sym_boolean_type] = ACTIONS(251), - [sym_void_type] = ACTIONS(251), - [sym_this] = ACTIONS(251), - [sym_super] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(253), - [sym_identifier] = ACTIONS(255), - [sym_decimal_integer_literal] = ACTIONS(255), - [sym_hex_integer_literal] = ACTIONS(255), - [sym_octal_integer_literal] = ACTIONS(253), - [sym_binary_integer_literal] = ACTIONS(253), - [sym_decimal_floating_point_literal] = ACTIONS(253), - [sym_hex_floating_point_literal] = ACTIONS(255), - [sym_true] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [sym_character_literal] = ACTIONS(253), - [sym_string_literal] = ACTIONS(255), - [sym_text_block] = ACTIONS(253), - [sym_null_literal] = ACTIONS(255), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(255), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(255), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_AMP_AMP] = ACTIONS(253), - [anon_sym_PIPE_PIPE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_PERCENT] = ACTIONS(253), - [anon_sym_LT_LT] = ACTIONS(253), - [anon_sym_GT_GT] = ACTIONS(255), - [anon_sym_GT_GT_GT] = ACTIONS(253), - [anon_sym_instanceof] = ACTIONS(255), - [anon_sym_final] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_COLON] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [anon_sym_DASH_DASH] = ACTIONS(253), - [anon_sym_new] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(255), - [anon_sym_class] = ACTIONS(255), - [anon_sym_COLON_COLON] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_case] = ACTIONS(255), - [anon_sym_default] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(253), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [anon_sym_break] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_synchronized] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(255), - [anon_sym_try] = ACTIONS(255), - [anon_sym_if] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_open] = ACTIONS(255), - [anon_sym_module] = ACTIONS(255), - [anon_sym_static] = ACTIONS(255), - [anon_sym_package] = ACTIONS(255), - [anon_sym_import] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [anon_sym_public] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_abstract] = ACTIONS(255), - [anon_sym_strictfp] = ACTIONS(255), - [anon_sym_native] = ACTIONS(255), - [anon_sym_transient] = ACTIONS(255), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_sealed] = ACTIONS(255), - [anon_sym_non_DASHsealed] = ACTIONS(253), - [anon_sym_record] = ACTIONS(255), - [anon_sym_ATinterface] = ACTIONS(253), - [anon_sym_interface] = ACTIONS(255), - [anon_sym_byte] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_int] = ACTIONS(255), - [anon_sym_long] = ACTIONS(255), - [anon_sym_char] = ACTIONS(255), - [anon_sym_float] = ACTIONS(255), - [anon_sym_double] = ACTIONS(255), - [sym_boolean_type] = ACTIONS(255), - [sym_void_type] = ACTIONS(255), - [sym_this] = ACTIONS(255), - [sym_super] = ACTIONS(255), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_identifier] = ACTIONS(257), - [sym_decimal_integer_literal] = ACTIONS(257), - [sym_hex_integer_literal] = ACTIONS(257), + [ts_builtin_sym_end] = ACTIONS(259), + [sym_identifier] = ACTIONS(261), + [sym_decimal_integer_literal] = ACTIONS(261), + [sym_hex_integer_literal] = ACTIONS(261), [sym_octal_integer_literal] = ACTIONS(259), [sym_binary_integer_literal] = ACTIONS(259), [sym_decimal_floating_point_literal] = ACTIONS(259), - [sym_hex_floating_point_literal] = ACTIONS(257), - [sym_true] = ACTIONS(257), - [sym_false] = ACTIONS(257), + [sym_hex_floating_point_literal] = ACTIONS(261), + [sym_true] = ACTIONS(261), + [sym_false] = ACTIONS(261), [sym_character_literal] = ACTIONS(259), - [sym_string_literal] = ACTIONS(257), - [sym_text_block] = ACTIONS(259), - [sym_null_literal] = ACTIONS(257), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), + [sym_null_literal] = ACTIONS(261), [anon_sym_LPAREN] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(261), [anon_sym_RPAREN] = ACTIONS(259), - [anon_sym_GT] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(261), [anon_sym_GT_EQ] = ACTIONS(259), [anon_sym_LT_EQ] = ACTIONS(259), [anon_sym_EQ_EQ] = ACTIONS(259), [anon_sym_BANG_EQ] = ACTIONS(259), [anon_sym_AMP_AMP] = ACTIONS(259), [anon_sym_PIPE_PIPE] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), [anon_sym_STAR] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(257), - [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(261), [anon_sym_CARET] = ACTIONS(259), [anon_sym_PERCENT] = ACTIONS(259), [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_GT_GT] = ACTIONS(261), [anon_sym_GT_GT_GT] = ACTIONS(259), - [anon_sym_instanceof] = ACTIONS(257), - [anon_sym_final] = ACTIONS(257), + [anon_sym_instanceof] = ACTIONS(261), + [anon_sym_final] = ACTIONS(261), [anon_sym_DASH_GT] = ACTIONS(259), [anon_sym_COMMA] = ACTIONS(259), [anon_sym_QMARK] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), [anon_sym_TILDE] = ACTIONS(259), [anon_sym_PLUS_PLUS] = ACTIONS(259), [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_new] = ACTIONS(257), + [anon_sym_new] = ACTIONS(261), [anon_sym_LBRACK] = ACTIONS(259), [anon_sym_RBRACK] = ACTIONS(259), - [anon_sym_DOT] = ACTIONS(257), - [anon_sym_class] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(261), + [anon_sym_class] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(257), + [anon_sym_switch] = ACTIONS(261), [anon_sym_LBRACE] = ACTIONS(259), [anon_sym_RBRACE] = ACTIONS(259), - [anon_sym_default] = ACTIONS(257), + [anon_sym_case] = ACTIONS(261), + [anon_sym_default] = ACTIONS(261), [anon_sym_SEMI] = ACTIONS(259), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_do] = ACTIONS(257), - [anon_sym_while] = ACTIONS(257), - [anon_sym_break] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(257), - [anon_sym_return] = ACTIONS(257), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_synchronized] = ACTIONS(257), - [anon_sym_throw] = ACTIONS(257), - [anon_sym_try] = ACTIONS(257), - [anon_sym_if] = ACTIONS(257), - [anon_sym_for] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_open] = ACTIONS(257), - [anon_sym_module] = ACTIONS(257), - [anon_sym_static] = ACTIONS(257), - [anon_sym_package] = ACTIONS(257), - [anon_sym_import] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(257), - [anon_sym_public] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_abstract] = ACTIONS(257), - [anon_sym_strictfp] = ACTIONS(257), - [anon_sym_native] = ACTIONS(257), - [anon_sym_transient] = ACTIONS(257), - [anon_sym_volatile] = ACTIONS(257), - [anon_sym_sealed] = ACTIONS(257), + [anon_sym_assert] = ACTIONS(261), + [anon_sym_do] = ACTIONS(261), + [anon_sym_while] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_return] = ACTIONS(261), + [anon_sym_yield] = ACTIONS(261), + [anon_sym_synchronized] = ACTIONS(261), + [anon_sym_throw] = ACTIONS(261), + [anon_sym_try] = ACTIONS(261), + [anon_sym_if] = ACTIONS(261), + [anon_sym_else] = ACTIONS(261), + [anon_sym_for] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [anon_sym_open] = ACTIONS(261), + [anon_sym_module] = ACTIONS(261), + [anon_sym_static] = ACTIONS(261), + [anon_sym_package] = ACTIONS(261), + [anon_sym_import] = ACTIONS(261), + [anon_sym_enum] = ACTIONS(261), + [anon_sym_public] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_abstract] = ACTIONS(261), + [anon_sym_strictfp] = ACTIONS(261), + [anon_sym_native] = ACTIONS(261), + [anon_sym_transient] = ACTIONS(261), + [anon_sym_volatile] = ACTIONS(261), + [anon_sym_sealed] = ACTIONS(261), [anon_sym_non_DASHsealed] = ACTIONS(259), - [anon_sym_record] = ACTIONS(257), + [anon_sym_record] = ACTIONS(261), [anon_sym_ATinterface] = ACTIONS(259), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_byte] = ACTIONS(257), - [anon_sym_short] = ACTIONS(257), - [anon_sym_int] = ACTIONS(257), - [anon_sym_long] = ACTIONS(257), - [anon_sym_char] = ACTIONS(257), - [anon_sym_float] = ACTIONS(257), - [anon_sym_double] = ACTIONS(257), - [sym_boolean_type] = ACTIONS(257), - [sym_void_type] = ACTIONS(257), - [sym_this] = ACTIONS(257), - [sym_super] = ACTIONS(257), + [anon_sym_interface] = ACTIONS(261), + [anon_sym_byte] = ACTIONS(261), + [anon_sym_short] = ACTIONS(261), + [anon_sym_int] = ACTIONS(261), + [anon_sym_long] = ACTIONS(261), + [anon_sym_char] = ACTIONS(261), + [anon_sym_float] = ACTIONS(261), + [anon_sym_double] = ACTIONS(261), + [sym_boolean_type] = ACTIONS(261), + [sym_void_type] = ACTIONS(261), + [sym_this] = ACTIONS(261), + [sym_super] = ACTIONS(261), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(263), - [sym_decimal_integer_literal] = ACTIONS(263), - [sym_hex_integer_literal] = ACTIONS(263), - [sym_octal_integer_literal] = ACTIONS(261), - [sym_binary_integer_literal] = ACTIONS(261), - [sym_decimal_floating_point_literal] = ACTIONS(261), - [sym_hex_floating_point_literal] = ACTIONS(263), - [sym_true] = ACTIONS(263), - [sym_false] = ACTIONS(263), - [sym_character_literal] = ACTIONS(261), - [sym_string_literal] = ACTIONS(263), - [sym_text_block] = ACTIONS(261), - [sym_null_literal] = ACTIONS(263), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(263), - [anon_sym_LT] = ACTIONS(263), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(263), - [anon_sym_PIPE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_GT_GT_GT] = ACTIONS(261), - [anon_sym_instanceof] = ACTIONS(263), - [anon_sym_final] = ACTIONS(263), - [anon_sym_DASH_GT] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(261), - [anon_sym_QMARK] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(261), - [anon_sym_PLUS_PLUS] = ACTIONS(261), - [anon_sym_DASH_DASH] = ACTIONS(261), - [anon_sym_new] = ACTIONS(263), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_class] = ACTIONS(263), - [anon_sym_switch] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_assert] = ACTIONS(263), - [anon_sym_do] = ACTIONS(263), - [anon_sym_while] = ACTIONS(263), - [anon_sym_break] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(263), - [anon_sym_return] = ACTIONS(263), - [anon_sym_yield] = ACTIONS(263), - [anon_sym_synchronized] = ACTIONS(263), - [anon_sym_throw] = ACTIONS(263), - [anon_sym_try] = ACTIONS(263), - [anon_sym_if] = ACTIONS(263), - [anon_sym_else] = ACTIONS(263), - [anon_sym_for] = ACTIONS(263), - [anon_sym_AT] = ACTIONS(263), - [anon_sym_open] = ACTIONS(263), - [anon_sym_module] = ACTIONS(263), - [anon_sym_static] = ACTIONS(263), - [anon_sym_package] = ACTIONS(263), - [anon_sym_import] = ACTIONS(263), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_public] = ACTIONS(263), - [anon_sym_protected] = ACTIONS(263), - [anon_sym_private] = ACTIONS(263), - [anon_sym_abstract] = ACTIONS(263), - [anon_sym_strictfp] = ACTIONS(263), - [anon_sym_native] = ACTIONS(263), - [anon_sym_transient] = ACTIONS(263), - [anon_sym_volatile] = ACTIONS(263), - [anon_sym_sealed] = ACTIONS(263), - [anon_sym_non_DASHsealed] = ACTIONS(261), - [anon_sym_record] = ACTIONS(263), - [anon_sym_ATinterface] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(263), - [anon_sym_byte] = ACTIONS(263), - [anon_sym_short] = ACTIONS(263), - [anon_sym_int] = ACTIONS(263), - [anon_sym_long] = ACTIONS(263), - [anon_sym_char] = ACTIONS(263), - [anon_sym_float] = ACTIONS(263), - [anon_sym_double] = ACTIONS(263), - [sym_boolean_type] = ACTIONS(263), - [sym_void_type] = ACTIONS(263), - [sym_this] = ACTIONS(263), - [sym_super] = ACTIONS(263), + [76] = { + [ts_builtin_sym_end] = ACTIONS(263), + [sym_identifier] = ACTIONS(265), + [sym_decimal_integer_literal] = ACTIONS(265), + [sym_hex_integer_literal] = ACTIONS(265), + [sym_octal_integer_literal] = ACTIONS(263), + [sym_binary_integer_literal] = ACTIONS(263), + [sym_decimal_floating_point_literal] = ACTIONS(263), + [sym_hex_floating_point_literal] = ACTIONS(265), + [sym_true] = ACTIONS(265), + [sym_false] = ACTIONS(265), + [sym_character_literal] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(265), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(263), + [sym_null_literal] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_RPAREN] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(263), + [anon_sym_LT_EQ] = ACTIONS(263), + [anon_sym_EQ_EQ] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(263), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(263), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_GT_GT_GT] = ACTIONS(263), + [anon_sym_instanceof] = ACTIONS(265), + [anon_sym_final] = ACTIONS(265), + [anon_sym_DASH_GT] = ACTIONS(263), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_QMARK] = ACTIONS(263), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(263), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_DASH_DASH] = ACTIONS(263), + [anon_sym_new] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_RBRACK] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_class] = ACTIONS(265), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_case] = ACTIONS(265), + [anon_sym_default] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(265), + [anon_sym_do] = ACTIONS(265), + [anon_sym_while] = ACTIONS(265), + [anon_sym_break] = ACTIONS(265), + [anon_sym_continue] = ACTIONS(265), + [anon_sym_return] = ACTIONS(265), + [anon_sym_yield] = ACTIONS(265), + [anon_sym_synchronized] = ACTIONS(265), + [anon_sym_throw] = ACTIONS(265), + [anon_sym_try] = ACTIONS(265), + [anon_sym_if] = ACTIONS(265), + [anon_sym_else] = ACTIONS(265), + [anon_sym_for] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_open] = ACTIONS(265), + [anon_sym_module] = ACTIONS(265), + [anon_sym_static] = ACTIONS(265), + [anon_sym_package] = ACTIONS(265), + [anon_sym_import] = ACTIONS(265), + [anon_sym_enum] = ACTIONS(265), + [anon_sym_public] = ACTIONS(265), + [anon_sym_protected] = ACTIONS(265), + [anon_sym_private] = ACTIONS(265), + [anon_sym_abstract] = ACTIONS(265), + [anon_sym_strictfp] = ACTIONS(265), + [anon_sym_native] = ACTIONS(265), + [anon_sym_transient] = ACTIONS(265), + [anon_sym_volatile] = ACTIONS(265), + [anon_sym_sealed] = ACTIONS(265), + [anon_sym_non_DASHsealed] = ACTIONS(263), + [anon_sym_record] = ACTIONS(265), + [anon_sym_ATinterface] = ACTIONS(263), + [anon_sym_interface] = ACTIONS(265), + [anon_sym_byte] = ACTIONS(265), + [anon_sym_short] = ACTIONS(265), + [anon_sym_int] = ACTIONS(265), + [anon_sym_long] = ACTIONS(265), + [anon_sym_char] = ACTIONS(265), + [anon_sym_float] = ACTIONS(265), + [anon_sym_double] = ACTIONS(265), + [sym_boolean_type] = ACTIONS(265), + [sym_void_type] = ACTIONS(265), + [sym_this] = ACTIONS(265), + [sym_super] = ACTIONS(265), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [ts_builtin_sym_end] = ACTIONS(265), - [sym_identifier] = ACTIONS(267), - [sym_decimal_integer_literal] = ACTIONS(267), - [sym_hex_integer_literal] = ACTIONS(267), - [sym_octal_integer_literal] = ACTIONS(265), - [sym_binary_integer_literal] = ACTIONS(265), - [sym_decimal_floating_point_literal] = ACTIONS(265), - [sym_hex_floating_point_literal] = ACTIONS(267), - [sym_true] = ACTIONS(267), - [sym_false] = ACTIONS(267), - [sym_character_literal] = ACTIONS(265), - [sym_string_literal] = ACTIONS(267), - [sym_text_block] = ACTIONS(265), - [sym_null_literal] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(265), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(265), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_PERCENT] = ACTIONS(265), - [anon_sym_LT_LT] = ACTIONS(265), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_GT_GT_GT] = ACTIONS(265), - [anon_sym_instanceof] = ACTIONS(267), - [anon_sym_final] = ACTIONS(267), - [anon_sym_DASH_GT] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_COLON] = ACTIONS(265), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym_new] = ACTIONS(267), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_class] = ACTIONS(267), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_case] = ACTIONS(267), - [anon_sym_default] = ACTIONS(267), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_assert] = ACTIONS(267), - [anon_sym_do] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_synchronized] = ACTIONS(267), - [anon_sym_throw] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_open] = ACTIONS(267), - [anon_sym_module] = ACTIONS(267), - [anon_sym_static] = ACTIONS(267), - [anon_sym_package] = ACTIONS(267), - [anon_sym_import] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_public] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_abstract] = ACTIONS(267), - [anon_sym_strictfp] = ACTIONS(267), - [anon_sym_native] = ACTIONS(267), - [anon_sym_transient] = ACTIONS(267), - [anon_sym_volatile] = ACTIONS(267), - [anon_sym_sealed] = ACTIONS(267), - [anon_sym_non_DASHsealed] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_ATinterface] = ACTIONS(265), - [anon_sym_interface] = ACTIONS(267), - [anon_sym_byte] = ACTIONS(267), - [anon_sym_short] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_long] = ACTIONS(267), - [anon_sym_char] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_double] = ACTIONS(267), - [sym_boolean_type] = ACTIONS(267), - [sym_void_type] = ACTIONS(267), - [sym_this] = ACTIONS(267), - [sym_super] = ACTIONS(267), + [77] = { + [ts_builtin_sym_end] = ACTIONS(267), + [sym_identifier] = ACTIONS(269), + [sym_decimal_integer_literal] = ACTIONS(269), + [sym_hex_integer_literal] = ACTIONS(269), + [sym_octal_integer_literal] = ACTIONS(267), + [sym_binary_integer_literal] = ACTIONS(267), + [sym_decimal_floating_point_literal] = ACTIONS(267), + [sym_hex_floating_point_literal] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [sym_false] = ACTIONS(269), + [sym_character_literal] = ACTIONS(267), + [anon_sym_DQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(267), + [sym_null_literal] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_RPAREN] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_PIPE_PIPE] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_GT_GT_GT] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(269), + [anon_sym_final] = ACTIONS(269), + [anon_sym_DASH_GT] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_new] = ACTIONS(269), + [anon_sym_RBRACK] = ACTIONS(267), + [anon_sym_class] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_case] = ACTIONS(269), + [anon_sym_default] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(269), + [anon_sym_do] = ACTIONS(269), + [anon_sym_while] = ACTIONS(269), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(269), + [anon_sym_return] = ACTIONS(269), + [anon_sym_yield] = ACTIONS(269), + [anon_sym_synchronized] = ACTIONS(269), + [anon_sym_throw] = ACTIONS(269), + [anon_sym_try] = ACTIONS(269), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(269), + [anon_sym_for] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_open] = ACTIONS(269), + [anon_sym_module] = ACTIONS(269), + [anon_sym_static] = ACTIONS(269), + [anon_sym_package] = ACTIONS(269), + [anon_sym_import] = ACTIONS(269), + [anon_sym_enum] = ACTIONS(269), + [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(267), + [anon_sym_record] = ACTIONS(269), + [anon_sym_ATinterface] = ACTIONS(267), + [anon_sym_interface] = ACTIONS(269), + [anon_sym_byte] = ACTIONS(269), + [anon_sym_short] = ACTIONS(269), + [anon_sym_int] = ACTIONS(269), + [anon_sym_long] = ACTIONS(269), + [anon_sym_char] = ACTIONS(269), + [anon_sym_float] = ACTIONS(269), + [anon_sym_double] = ACTIONS(269), + [sym_boolean_type] = ACTIONS(269), + [sym_void_type] = ACTIONS(269), + [sym_this] = ACTIONS(269), + [sym_super] = ACTIONS(269), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(269), - [sym_identifier] = ACTIONS(271), - [sym_decimal_integer_literal] = ACTIONS(271), - [sym_hex_integer_literal] = ACTIONS(271), - [sym_octal_integer_literal] = ACTIONS(269), - [sym_binary_integer_literal] = ACTIONS(269), - [sym_decimal_floating_point_literal] = ACTIONS(269), - [sym_hex_floating_point_literal] = ACTIONS(271), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_character_literal] = ACTIONS(269), - [sym_string_literal] = ACTIONS(271), - [sym_text_block] = ACTIONS(269), - [sym_null_literal] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(269), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_GT_GT_GT] = ACTIONS(269), - [anon_sym_instanceof] = ACTIONS(271), - [anon_sym_final] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_QMARK] = ACTIONS(269), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_BANG] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(269), - [anon_sym_PLUS_PLUS] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(269), - [anon_sym_new] = ACTIONS(271), - [anon_sym_RBRACK] = ACTIONS(269), - [anon_sym_class] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_default] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_assert] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_yield] = ACTIONS(271), - [anon_sym_synchronized] = ACTIONS(271), - [anon_sym_throw] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_open] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_static] = ACTIONS(271), - [anon_sym_package] = ACTIONS(271), - [anon_sym_import] = ACTIONS(271), - [anon_sym_enum] = ACTIONS(271), - [anon_sym_public] = ACTIONS(271), - [anon_sym_protected] = ACTIONS(271), - [anon_sym_private] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(271), - [anon_sym_strictfp] = ACTIONS(271), - [anon_sym_native] = ACTIONS(271), - [anon_sym_transient] = ACTIONS(271), - [anon_sym_volatile] = ACTIONS(271), - [anon_sym_sealed] = ACTIONS(271), - [anon_sym_non_DASHsealed] = ACTIONS(269), - [anon_sym_record] = ACTIONS(271), - [anon_sym_ATinterface] = ACTIONS(269), - [anon_sym_interface] = ACTIONS(271), - [anon_sym_byte] = ACTIONS(271), - [anon_sym_short] = ACTIONS(271), - [anon_sym_int] = ACTIONS(271), - [anon_sym_long] = ACTIONS(271), - [anon_sym_char] = ACTIONS(271), - [anon_sym_float] = ACTIONS(271), - [anon_sym_double] = ACTIONS(271), - [sym_boolean_type] = ACTIONS(271), - [sym_void_type] = ACTIONS(271), - [sym_this] = ACTIONS(271), - [sym_super] = ACTIONS(271), + [78] = { + [ts_builtin_sym_end] = ACTIONS(271), + [sym_identifier] = ACTIONS(273), + [sym_decimal_integer_literal] = ACTIONS(273), + [sym_hex_integer_literal] = ACTIONS(273), + [sym_octal_integer_literal] = ACTIONS(271), + [sym_binary_integer_literal] = ACTIONS(271), + [sym_decimal_floating_point_literal] = ACTIONS(271), + [sym_hex_floating_point_literal] = ACTIONS(273), + [sym_true] = ACTIONS(273), + [sym_false] = ACTIONS(273), + [sym_character_literal] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(271), + [sym_null_literal] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(273), + [anon_sym_RPAREN] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(273), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(273), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT] = ACTIONS(273), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(273), + [anon_sym_final] = ACTIONS(273), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_new] = ACTIONS(273), + [anon_sym_RBRACK] = ACTIONS(271), + [anon_sym_class] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_case] = ACTIONS(273), + [anon_sym_default] = ACTIONS(273), + [anon_sym_SEMI] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_synchronized] = ACTIONS(273), + [anon_sym_throw] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_open] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_static] = ACTIONS(273), + [anon_sym_package] = ACTIONS(273), + [anon_sym_import] = ACTIONS(273), + [anon_sym_enum] = ACTIONS(273), + [anon_sym_public] = ACTIONS(273), + [anon_sym_protected] = ACTIONS(273), + [anon_sym_private] = ACTIONS(273), + [anon_sym_abstract] = ACTIONS(273), + [anon_sym_strictfp] = ACTIONS(273), + [anon_sym_native] = ACTIONS(273), + [anon_sym_transient] = ACTIONS(273), + [anon_sym_volatile] = ACTIONS(273), + [anon_sym_sealed] = ACTIONS(273), + [anon_sym_non_DASHsealed] = ACTIONS(271), + [anon_sym_record] = ACTIONS(273), + [anon_sym_ATinterface] = ACTIONS(271), + [anon_sym_interface] = ACTIONS(273), + [anon_sym_byte] = ACTIONS(273), + [anon_sym_short] = ACTIONS(273), + [anon_sym_int] = ACTIONS(273), + [anon_sym_long] = ACTIONS(273), + [anon_sym_char] = ACTIONS(273), + [anon_sym_float] = ACTIONS(273), + [anon_sym_double] = ACTIONS(273), + [sym_boolean_type] = ACTIONS(273), + [sym_void_type] = ACTIONS(273), + [sym_this] = ACTIONS(273), + [sym_super] = ACTIONS(273), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(273), + [79] = { [sym_identifier] = ACTIONS(275), [sym_decimal_integer_literal] = ACTIONS(275), [sym_hex_integer_literal] = ACTIONS(275), - [sym_octal_integer_literal] = ACTIONS(273), - [sym_binary_integer_literal] = ACTIONS(273), - [sym_decimal_floating_point_literal] = ACTIONS(273), + [sym_octal_integer_literal] = ACTIONS(277), + [sym_binary_integer_literal] = ACTIONS(277), + [sym_decimal_floating_point_literal] = ACTIONS(277), [sym_hex_floating_point_literal] = ACTIONS(275), [sym_true] = ACTIONS(275), [sym_false] = ACTIONS(275), - [sym_character_literal] = ACTIONS(273), - [sym_string_literal] = ACTIONS(275), - [sym_text_block] = ACTIONS(273), + [sym_character_literal] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), [sym_null_literal] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(275), - [anon_sym_RPAREN] = ACTIONS(273), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_GT] = ACTIONS(275), [anon_sym_LT] = ACTIONS(275), - [anon_sym_GT_EQ] = ACTIONS(273), - [anon_sym_LT_EQ] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(273), - [anon_sym_BANG_EQ] = ACTIONS(273), - [anon_sym_AMP_AMP] = ACTIONS(273), - [anon_sym_PIPE_PIPE] = ACTIONS(273), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), [anon_sym_PLUS] = ACTIONS(275), [anon_sym_DASH] = ACTIONS(275), - [anon_sym_STAR] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(277), [anon_sym_SLASH] = ACTIONS(275), [anon_sym_PIPE] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(273), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_LT_LT] = ACTIONS(273), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_GT_GT_GT] = ACTIONS(273), + [anon_sym_GT_GT_GT] = ACTIONS(277), [anon_sym_instanceof] = ACTIONS(275), [anon_sym_final] = ACTIONS(275), - [anon_sym_DASH_GT] = ACTIONS(273), - [anon_sym_COMMA] = ACTIONS(273), - [anon_sym_QMARK] = ACTIONS(273), - [anon_sym_COLON] = ACTIONS(273), + [anon_sym_DASH_GT] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(275), [anon_sym_BANG] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(273), - [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), [anon_sym_new] = ACTIONS(275), - [anon_sym_RBRACK] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(275), [anon_sym_class] = ACTIONS(275), + [anon_sym_COLON_COLON] = ACTIONS(277), [anon_sym_switch] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_default] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_SEMI] = ACTIONS(277), [anon_sym_assert] = ACTIONS(275), [anon_sym_do] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), @@ -20549,7 +21490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_if] = ACTIONS(275), - [anon_sym_else] = ACTIONS(275), [anon_sym_for] = ACTIONS(275), [anon_sym_AT] = ACTIONS(275), [anon_sym_open] = ACTIONS(275), @@ -20567,9 +21507,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_transient] = ACTIONS(275), [anon_sym_volatile] = ACTIONS(275), [anon_sym_sealed] = ACTIONS(275), - [anon_sym_non_DASHsealed] = ACTIONS(273), + [anon_sym_non_DASHsealed] = ACTIONS(277), [anon_sym_record] = ACTIONS(275), - [anon_sym_ATinterface] = ACTIONS(273), + [anon_sym_ATinterface] = ACTIONS(277), [anon_sym_interface] = ACTIONS(275), [anon_sym_byte] = ACTIONS(275), [anon_sym_short] = ACTIONS(275), @@ -20585,127 +21525,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [80] = { + [ts_builtin_sym_end] = ACTIONS(279), + [sym_identifier] = ACTIONS(281), + [sym_decimal_integer_literal] = ACTIONS(281), + [sym_hex_integer_literal] = ACTIONS(281), + [sym_octal_integer_literal] = ACTIONS(279), + [sym_binary_integer_literal] = ACTIONS(279), + [sym_decimal_floating_point_literal] = ACTIONS(279), + [sym_hex_floating_point_literal] = ACTIONS(281), + [sym_true] = ACTIONS(281), + [sym_false] = ACTIONS(281), + [sym_character_literal] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), + [sym_null_literal] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(281), + [anon_sym_GT_GT_GT] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(281), + [anon_sym_final] = ACTIONS(281), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(279), + [anon_sym_DASH_DASH] = ACTIONS(279), + [anon_sym_new] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(279), + [anon_sym_class] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_case] = ACTIONS(281), + [anon_sym_default] = ACTIONS(281), + [anon_sym_SEMI] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_synchronized] = ACTIONS(281), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_AT] = ACTIONS(281), + [anon_sym_open] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_static] = ACTIONS(281), + [anon_sym_package] = ACTIONS(281), + [anon_sym_import] = ACTIONS(281), + [anon_sym_enum] = ACTIONS(281), + [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(281), + [anon_sym_non_DASHsealed] = ACTIONS(279), + [anon_sym_record] = ACTIONS(281), + [anon_sym_ATinterface] = ACTIONS(279), + [anon_sym_interface] = ACTIONS(281), + [anon_sym_byte] = ACTIONS(281), + [anon_sym_short] = ACTIONS(281), + [anon_sym_int] = ACTIONS(281), + [anon_sym_long] = ACTIONS(281), + [anon_sym_char] = ACTIONS(281), + [anon_sym_float] = ACTIONS(281), + [anon_sym_double] = ACTIONS(281), + [sym_boolean_type] = ACTIONS(281), + [sym_void_type] = ACTIONS(281), + [sym_this] = ACTIONS(281), + [sym_super] = ACTIONS(281), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [81] = { + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(285), + [sym_decimal_integer_literal] = ACTIONS(285), + [sym_hex_integer_literal] = ACTIONS(285), + [sym_octal_integer_literal] = ACTIONS(283), + [sym_binary_integer_literal] = ACTIONS(283), + [sym_decimal_floating_point_literal] = ACTIONS(283), + [sym_hex_floating_point_literal] = ACTIONS(285), + [sym_true] = ACTIONS(285), + [sym_false] = ACTIONS(285), + [sym_character_literal] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(283), + [sym_null_literal] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_CARET] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(283), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_DASH_GT] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_new] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_class] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_case] = ACTIONS(285), + [anon_sym_default] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_while] = ACTIONS(285), + [anon_sym_break] = ACTIONS(285), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_return] = ACTIONS(285), + [anon_sym_yield] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_throw] = ACTIONS(285), + [anon_sym_try] = ACTIONS(285), + [anon_sym_if] = ACTIONS(285), + [anon_sym_else] = ACTIONS(285), + [anon_sym_for] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(285), + [anon_sym_open] = ACTIONS(285), + [anon_sym_module] = ACTIONS(285), + [anon_sym_static] = ACTIONS(285), + [anon_sym_package] = ACTIONS(285), + [anon_sym_import] = ACTIONS(285), + [anon_sym_enum] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(283), + [anon_sym_record] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(283), + [anon_sym_interface] = ACTIONS(285), + [anon_sym_byte] = ACTIONS(285), + [anon_sym_short] = ACTIONS(285), + [anon_sym_int] = ACTIONS(285), + [anon_sym_long] = ACTIONS(285), + [anon_sym_char] = ACTIONS(285), + [anon_sym_float] = ACTIONS(285), + [anon_sym_double] = ACTIONS(285), + [sym_boolean_type] = ACTIONS(285), + [sym_void_type] = ACTIONS(285), + [sym_this] = ACTIONS(285), + [sym_super] = ACTIONS(285), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [82] = { - [ts_builtin_sym_end] = ACTIONS(277), - [sym_identifier] = ACTIONS(279), - [sym_decimal_integer_literal] = ACTIONS(279), - [sym_hex_integer_literal] = ACTIONS(279), - [sym_octal_integer_literal] = ACTIONS(277), - [sym_binary_integer_literal] = ACTIONS(277), - [sym_decimal_floating_point_literal] = ACTIONS(277), - [sym_hex_floating_point_literal] = ACTIONS(279), - [sym_true] = ACTIONS(279), - [sym_false] = ACTIONS(279), - [sym_character_literal] = ACTIONS(277), - [sym_string_literal] = ACTIONS(279), - [sym_text_block] = ACTIONS(277), - [sym_null_literal] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_instanceof] = ACTIONS(279), - [anon_sym_final] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_BANG] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_new] = ACTIONS(279), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_class] = ACTIONS(279), - [anon_sym_switch] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_case] = ACTIONS(279), - [anon_sym_default] = ACTIONS(279), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_assert] = ACTIONS(279), - [anon_sym_do] = ACTIONS(279), - [anon_sym_while] = ACTIONS(279), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(279), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(279), - [anon_sym_synchronized] = ACTIONS(279), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_try] = ACTIONS(279), - [anon_sym_if] = ACTIONS(279), - [anon_sym_else] = ACTIONS(279), - [anon_sym_for] = ACTIONS(279), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_open] = ACTIONS(279), - [anon_sym_module] = ACTIONS(279), - [anon_sym_static] = ACTIONS(279), - [anon_sym_package] = ACTIONS(279), - [anon_sym_import] = ACTIONS(279), - [anon_sym_enum] = ACTIONS(279), - [anon_sym_public] = ACTIONS(279), - [anon_sym_protected] = ACTIONS(279), - [anon_sym_private] = ACTIONS(279), - [anon_sym_abstract] = ACTIONS(279), - [anon_sym_strictfp] = ACTIONS(279), - [anon_sym_native] = ACTIONS(279), - [anon_sym_transient] = ACTIONS(279), - [anon_sym_volatile] = ACTIONS(279), - [anon_sym_sealed] = ACTIONS(279), - [anon_sym_non_DASHsealed] = ACTIONS(277), - [anon_sym_record] = ACTIONS(279), - [anon_sym_ATinterface] = ACTIONS(277), - [anon_sym_interface] = ACTIONS(279), - [anon_sym_byte] = ACTIONS(279), - [anon_sym_short] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_long] = ACTIONS(279), - [anon_sym_char] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_double] = ACTIONS(279), - [sym_boolean_type] = ACTIONS(279), - [sym_void_type] = ACTIONS(279), - [sym_this] = ACTIONS(279), - [sym_super] = ACTIONS(279), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(283), - [sym_decimal_integer_literal] = ACTIONS(283), - [sym_hex_integer_literal] = ACTIONS(283), - [sym_octal_integer_literal] = ACTIONS(281), - [sym_binary_integer_literal] = ACTIONS(281), - [sym_decimal_floating_point_literal] = ACTIONS(281), - [sym_hex_floating_point_literal] = ACTIONS(283), - [sym_true] = ACTIONS(283), - [sym_false] = ACTIONS(283), - [sym_character_literal] = ACTIONS(281), - [sym_string_literal] = ACTIONS(283), - [sym_text_block] = ACTIONS(281), - [sym_null_literal] = ACTIONS(283), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_identifier] = ACTIONS(289), + [sym_decimal_integer_literal] = ACTIONS(289), + [sym_hex_integer_literal] = ACTIONS(289), + [sym_octal_integer_literal] = ACTIONS(287), + [sym_binary_integer_literal] = ACTIONS(287), + [sym_decimal_floating_point_literal] = ACTIONS(287), + [sym_hex_floating_point_literal] = ACTIONS(289), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + [sym_character_literal] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [sym_null_literal] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(289), [anon_sym_GT_EQ] = ACTIONS(287), [anon_sym_LT_EQ] = ACTIONS(287), [anon_sym_EQ_EQ] = ACTIONS(287), @@ -20715,117 +21758,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(289), [anon_sym_DASH] = ACTIONS(289), [anon_sym_STAR] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(289), [anon_sym_CARET] = ACTIONS(287), [anon_sym_PERCENT] = ACTIONS(287), [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(289), [anon_sym_GT_GT_GT] = ACTIONS(287), - [anon_sym_instanceof] = ACTIONS(285), - [anon_sym_final] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(289), + [anon_sym_final] = ACTIONS(289), + [anon_sym_DASH_GT] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(287), [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_BANG] = ACTIONS(283), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(292), - [anon_sym_new] = ACTIONS(283), - [anon_sym_class] = ACTIONS(283), - [anon_sym_switch] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_case] = ACTIONS(283), - [anon_sym_default] = ACTIONS(283), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(283), - [anon_sym_do] = ACTIONS(283), - [anon_sym_while] = ACTIONS(283), - [anon_sym_break] = ACTIONS(283), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_return] = ACTIONS(283), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_synchronized] = ACTIONS(283), - [anon_sym_throw] = ACTIONS(283), - [anon_sym_try] = ACTIONS(283), - [anon_sym_if] = ACTIONS(283), - [anon_sym_else] = ACTIONS(283), - [anon_sym_for] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [anon_sym_open] = ACTIONS(283), - [anon_sym_module] = ACTIONS(283), - [anon_sym_static] = ACTIONS(283), - [anon_sym_package] = ACTIONS(283), - [anon_sym_import] = ACTIONS(283), - [anon_sym_enum] = ACTIONS(283), - [anon_sym_public] = ACTIONS(283), - [anon_sym_protected] = ACTIONS(283), - [anon_sym_private] = ACTIONS(283), - [anon_sym_abstract] = ACTIONS(283), - [anon_sym_strictfp] = ACTIONS(283), - [anon_sym_native] = ACTIONS(283), - [anon_sym_transient] = ACTIONS(283), - [anon_sym_volatile] = ACTIONS(283), - [anon_sym_sealed] = ACTIONS(283), - [anon_sym_non_DASHsealed] = ACTIONS(281), - [anon_sym_record] = ACTIONS(283), - [anon_sym_ATinterface] = ACTIONS(281), - [anon_sym_interface] = ACTIONS(283), - [anon_sym_byte] = ACTIONS(283), - [anon_sym_short] = ACTIONS(283), - [anon_sym_int] = ACTIONS(283), - [anon_sym_long] = ACTIONS(283), - [anon_sym_char] = ACTIONS(283), - [anon_sym_float] = ACTIONS(283), - [anon_sym_double] = ACTIONS(283), - [sym_boolean_type] = ACTIONS(283), - [sym_void_type] = ACTIONS(283), - [sym_this] = ACTIONS(283), - [sym_super] = ACTIONS(283), + [anon_sym_COLON] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_new] = ACTIONS(289), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_class] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_case] = ACTIONS(289), + [anon_sym_default] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_synchronized] = ACTIONS(289), + [anon_sym_throw] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_static] = ACTIONS(289), + [anon_sym_package] = ACTIONS(289), + [anon_sym_import] = ACTIONS(289), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_public] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_abstract] = ACTIONS(289), + [anon_sym_strictfp] = ACTIONS(289), + [anon_sym_native] = ACTIONS(289), + [anon_sym_transient] = ACTIONS(289), + [anon_sym_volatile] = ACTIONS(289), + [anon_sym_sealed] = ACTIONS(289), + [anon_sym_non_DASHsealed] = ACTIONS(287), + [anon_sym_record] = ACTIONS(289), + [anon_sym_ATinterface] = ACTIONS(287), + [anon_sym_interface] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(289), + [anon_sym_short] = ACTIONS(289), + [anon_sym_int] = ACTIONS(289), + [anon_sym_long] = ACTIONS(289), + [anon_sym_char] = ACTIONS(289), + [anon_sym_float] = ACTIONS(289), + [anon_sym_double] = ACTIONS(289), + [sym_boolean_type] = ACTIONS(289), + [sym_void_type] = ACTIONS(289), + [sym_this] = ACTIONS(289), + [sym_super] = ACTIONS(289), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(631), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [83] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(703), - [sym__type] = STATE(961), - [sym__unannotated_type] = STATE(683), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_formal_parameter] = STATE(1003), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(704), + [sym__type] = STATE(920), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_formal_parameter] = STATE(984), [sym_receiver_parameter] = STATE(398), - [sym_spread_parameter] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(653), - [aux_sym_modifiers_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(295), + [sym_spread_parameter] = STATE(984), + [aux_sym_array_creation_expression_repeat1] = STATE(670), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(291), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -20835,93 +21885,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(303), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(299), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(631), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [84] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(703), - [sym__type] = STATE(948), - [sym__unannotated_type] = STATE(683), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_formal_parameter] = STATE(1003), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(704), + [sym__type] = STATE(967), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_formal_parameter] = STATE(984), [sym_receiver_parameter] = STATE(398), - [sym_spread_parameter] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(653), - [aux_sym_modifiers_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(295), + [sym_spread_parameter] = STATE(984), + [aux_sym_array_creation_expression_repeat1] = STATE(670), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(291), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -20931,91 +21984,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(303), - [anon_sym_module] = ACTIONS(303), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(303), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(299), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(552), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [85] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(568), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(696), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(690), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(277), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [aux_sym_modifiers_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(706), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(697), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(116), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21025,91 +22081,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_default] = ACTIONS(299), - [anon_sym_SEMI] = ACTIONS(309), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [86] = { + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_decimal_integer_literal] = ACTIONS(311), + [sym_hex_integer_literal] = ACTIONS(311), + [sym_octal_integer_literal] = ACTIONS(309), + [sym_binary_integer_literal] = ACTIONS(309), + [sym_decimal_floating_point_literal] = ACTIONS(309), + [sym_hex_floating_point_literal] = ACTIONS(311), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_character_literal] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(309), + [sym_null_literal] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_PERCENT] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_GT_GT_GT] = ACTIONS(315), + [anon_sym_instanceof] = ACTIONS(313), + [anon_sym_final] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_PLUS_PLUS] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(320), + [anon_sym_new] = ACTIONS(311), + [anon_sym_class] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_do] = ACTIONS(311), + [anon_sym_while] = ACTIONS(311), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_return] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(311), + [anon_sym_synchronized] = ACTIONS(311), + [anon_sym_throw] = ACTIONS(311), + [anon_sym_try] = ACTIONS(311), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), + [anon_sym_for] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), + [anon_sym_static] = ACTIONS(311), + [anon_sym_package] = ACTIONS(311), + [anon_sym_import] = ACTIONS(311), + [anon_sym_enum] = ACTIONS(311), + [anon_sym_public] = ACTIONS(311), + [anon_sym_protected] = ACTIONS(311), + [anon_sym_private] = ACTIONS(311), + [anon_sym_abstract] = ACTIONS(311), + [anon_sym_strictfp] = ACTIONS(311), + [anon_sym_native] = ACTIONS(311), + [anon_sym_transient] = ACTIONS(311), + [anon_sym_volatile] = ACTIONS(311), + [anon_sym_sealed] = ACTIONS(311), + [anon_sym_non_DASHsealed] = ACTIONS(309), [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(309), + [anon_sym_interface] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(311), + [anon_sym_short] = ACTIONS(311), + [anon_sym_int] = ACTIONS(311), + [anon_sym_long] = ACTIONS(311), + [anon_sym_char] = ACTIONS(311), + [anon_sym_float] = ACTIONS(311), + [anon_sym_double] = ACTIONS(311), + [sym_boolean_type] = ACTIONS(311), + [sym_void_type] = ACTIONS(311), + [sym_this] = ACTIONS(311), + [sym_super] = ACTIONS(311), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [87] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(553), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(599), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(697), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(692), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [sym_local_variable_declaration] = STATE(264), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [aux_sym_modifiers_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(709), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(693), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(137), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21119,422 +22275,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_final] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_default] = ACTIONS(299), - [anon_sym_SEMI] = ACTIONS(313), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [88] = { - [sym_catch_clause] = STATE(89), - [sym_finally_clause] = STATE(187), - [aux_sym_try_statement_repeat1] = STATE(89), - [ts_builtin_sym_end] = ACTIONS(315), - [sym_identifier] = ACTIONS(317), - [sym_decimal_integer_literal] = ACTIONS(317), - [sym_hex_integer_literal] = ACTIONS(317), - [sym_octal_integer_literal] = ACTIONS(315), - [sym_binary_integer_literal] = ACTIONS(315), - [sym_decimal_floating_point_literal] = ACTIONS(315), - [sym_hex_floating_point_literal] = ACTIONS(317), - [sym_true] = ACTIONS(317), - [sym_false] = ACTIONS(317), - [sym_character_literal] = ACTIONS(315), - [sym_string_literal] = ACTIONS(317), - [sym_text_block] = ACTIONS(315), - [sym_null_literal] = ACTIONS(317), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_final] = ACTIONS(317), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS_PLUS] = ACTIONS(315), - [anon_sym_DASH_DASH] = ACTIONS(315), - [anon_sym_new] = ACTIONS(317), - [anon_sym_class] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(315), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(317), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_assert] = ACTIONS(317), - [anon_sym_do] = ACTIONS(317), - [anon_sym_while] = ACTIONS(317), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(317), - [anon_sym_return] = ACTIONS(317), - [anon_sym_yield] = ACTIONS(317), - [anon_sym_synchronized] = ACTIONS(317), - [anon_sym_throw] = ACTIONS(317), - [anon_sym_try] = ACTIONS(317), - [anon_sym_catch] = ACTIONS(319), - [anon_sym_finally] = ACTIONS(321), - [anon_sym_if] = ACTIONS(317), - [anon_sym_else] = ACTIONS(317), - [anon_sym_for] = ACTIONS(317), - [anon_sym_AT] = ACTIONS(317), - [anon_sym_open] = ACTIONS(317), - [anon_sym_module] = ACTIONS(317), - [anon_sym_static] = ACTIONS(317), - [anon_sym_package] = ACTIONS(317), - [anon_sym_import] = ACTIONS(317), - [anon_sym_enum] = ACTIONS(317), - [anon_sym_public] = ACTIONS(317), - [anon_sym_protected] = ACTIONS(317), - [anon_sym_private] = ACTIONS(317), - [anon_sym_abstract] = ACTIONS(317), - [anon_sym_strictfp] = ACTIONS(317), - [anon_sym_native] = ACTIONS(317), - [anon_sym_transient] = ACTIONS(317), - [anon_sym_volatile] = ACTIONS(317), - [anon_sym_sealed] = ACTIONS(317), - [anon_sym_non_DASHsealed] = ACTIONS(315), - [anon_sym_record] = ACTIONS(317), - [anon_sym_ATinterface] = ACTIONS(315), - [anon_sym_interface] = ACTIONS(317), - [anon_sym_byte] = ACTIONS(317), - [anon_sym_short] = ACTIONS(317), - [anon_sym_int] = ACTIONS(317), - [anon_sym_long] = ACTIONS(317), - [anon_sym_char] = ACTIONS(317), - [anon_sym_float] = ACTIONS(317), - [anon_sym_double] = ACTIONS(317), - [sym_boolean_type] = ACTIONS(317), - [sym_void_type] = ACTIONS(317), - [sym_this] = ACTIONS(317), - [sym_super] = ACTIONS(317), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym_element_value_pair] = STATE(1052), + [sym__element_value] = STATE(1221), + [sym_element_value_array_initializer] = STATE(1221), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(327), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym_catch_clause] = STATE(91), - [sym_finally_clause] = STATE(241), - [aux_sym_try_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(323), - [sym_identifier] = ACTIONS(325), - [sym_decimal_integer_literal] = ACTIONS(325), - [sym_hex_integer_literal] = ACTIONS(325), - [sym_octal_integer_literal] = ACTIONS(323), - [sym_binary_integer_literal] = ACTIONS(323), - [sym_decimal_floating_point_literal] = ACTIONS(323), - [sym_hex_floating_point_literal] = ACTIONS(325), - [sym_true] = ACTIONS(325), - [sym_false] = ACTIONS(325), - [sym_character_literal] = ACTIONS(323), - [sym_string_literal] = ACTIONS(325), - [sym_text_block] = ACTIONS(323), - [sym_null_literal] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_DASH] = ACTIONS(325), - [anon_sym_final] = ACTIONS(325), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_PLUS_PLUS] = ACTIONS(323), - [anon_sym_DASH_DASH] = ACTIONS(323), - [anon_sym_new] = ACTIONS(325), - [anon_sym_class] = ACTIONS(325), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_case] = ACTIONS(325), - [anon_sym_default] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_assert] = ACTIONS(325), - [anon_sym_do] = ACTIONS(325), - [anon_sym_while] = ACTIONS(325), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(325), - [anon_sym_return] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(325), - [anon_sym_synchronized] = ACTIONS(325), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_try] = ACTIONS(325), - [anon_sym_catch] = ACTIONS(319), - [anon_sym_finally] = ACTIONS(321), - [anon_sym_if] = ACTIONS(325), - [anon_sym_else] = ACTIONS(325), - [anon_sym_for] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_open] = ACTIONS(325), - [anon_sym_module] = ACTIONS(325), - [anon_sym_static] = ACTIONS(325), - [anon_sym_package] = ACTIONS(325), - [anon_sym_import] = ACTIONS(325), - [anon_sym_enum] = ACTIONS(325), - [anon_sym_public] = ACTIONS(325), - [anon_sym_protected] = ACTIONS(325), - [anon_sym_private] = ACTIONS(325), - [anon_sym_abstract] = ACTIONS(325), - [anon_sym_strictfp] = ACTIONS(325), - [anon_sym_native] = ACTIONS(325), - [anon_sym_transient] = ACTIONS(325), - [anon_sym_volatile] = ACTIONS(325), - [anon_sym_sealed] = ACTIONS(325), - [anon_sym_non_DASHsealed] = ACTIONS(323), - [anon_sym_record] = ACTIONS(325), - [anon_sym_ATinterface] = ACTIONS(323), - [anon_sym_interface] = ACTIONS(325), - [anon_sym_byte] = ACTIONS(325), - [anon_sym_short] = ACTIONS(325), - [anon_sym_int] = ACTIONS(325), - [anon_sym_long] = ACTIONS(325), - [anon_sym_char] = ACTIONS(325), - [anon_sym_float] = ACTIONS(325), - [anon_sym_double] = ACTIONS(325), - [sym_boolean_type] = ACTIONS(325), - [sym_void_type] = ACTIONS(325), - [sym_this] = ACTIONS(325), - [sym_super] = ACTIONS(325), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1091), + [sym_element_value_array_initializer] = STATE(1091), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [90] = { - [sym_catch_clause] = STATE(91), - [sym_finally_clause] = STATE(188), - [aux_sym_try_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(327), - [sym_identifier] = ACTIONS(329), - [sym_decimal_integer_literal] = ACTIONS(329), - [sym_hex_integer_literal] = ACTIONS(329), - [sym_octal_integer_literal] = ACTIONS(327), - [sym_binary_integer_literal] = ACTIONS(327), - [sym_decimal_floating_point_literal] = ACTIONS(327), - [sym_hex_floating_point_literal] = ACTIONS(329), - [sym_true] = ACTIONS(329), - [sym_false] = ACTIONS(329), - [sym_character_literal] = ACTIONS(327), - [sym_string_literal] = ACTIONS(329), - [sym_text_block] = ACTIONS(327), - [sym_null_literal] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_final] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), - [anon_sym_TILDE] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(327), - [anon_sym_DASH_DASH] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_class] = ACTIONS(329), - [anon_sym_switch] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_case] = ACTIONS(329), - [anon_sym_default] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(327), - [anon_sym_assert] = ACTIONS(329), - [anon_sym_do] = ACTIONS(329), - [anon_sym_while] = ACTIONS(329), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_return] = ACTIONS(329), - [anon_sym_yield] = ACTIONS(329), - [anon_sym_synchronized] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(319), - [anon_sym_finally] = ACTIONS(321), - [anon_sym_if] = ACTIONS(329), - [anon_sym_else] = ACTIONS(329), - [anon_sym_for] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_open] = ACTIONS(329), - [anon_sym_module] = ACTIONS(329), - [anon_sym_static] = ACTIONS(329), - [anon_sym_package] = ACTIONS(329), - [anon_sym_import] = ACTIONS(329), - [anon_sym_enum] = ACTIONS(329), - [anon_sym_public] = ACTIONS(329), - [anon_sym_protected] = ACTIONS(329), - [anon_sym_private] = ACTIONS(329), - [anon_sym_abstract] = ACTIONS(329), - [anon_sym_strictfp] = ACTIONS(329), - [anon_sym_native] = ACTIONS(329), - [anon_sym_transient] = ACTIONS(329), - [anon_sym_volatile] = ACTIONS(329), - [anon_sym_sealed] = ACTIONS(329), - [anon_sym_non_DASHsealed] = ACTIONS(327), - [anon_sym_record] = ACTIONS(329), - [anon_sym_ATinterface] = ACTIONS(327), - [anon_sym_interface] = ACTIONS(329), - [anon_sym_byte] = ACTIONS(329), - [anon_sym_short] = ACTIONS(329), - [anon_sym_int] = ACTIONS(329), - [anon_sym_long] = ACTIONS(329), - [anon_sym_char] = ACTIONS(329), - [anon_sym_float] = ACTIONS(329), - [anon_sym_double] = ACTIONS(329), - [sym_boolean_type] = ACTIONS(329), - [sym_void_type] = ACTIONS(329), - [sym_this] = ACTIONS(329), - [sym_super] = ACTIONS(329), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym_element_value_pair] = STATE(1063), + [sym__element_value] = STATE(1254), + [sym_element_value_array_initializer] = STATE(1254), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(337), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [91] = { - [sym_catch_clause] = STATE(91), - [aux_sym_try_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_decimal_integer_literal] = ACTIONS(333), - [sym_hex_integer_literal] = ACTIONS(333), - [sym_octal_integer_literal] = ACTIONS(331), - [sym_binary_integer_literal] = ACTIONS(331), - [sym_decimal_floating_point_literal] = ACTIONS(331), - [sym_hex_floating_point_literal] = ACTIONS(333), - [sym_true] = ACTIONS(333), - [sym_false] = ACTIONS(333), - [sym_character_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(333), - [sym_text_block] = ACTIONS(331), - [sym_null_literal] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_final] = ACTIONS(333), - [anon_sym_BANG] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(331), - [anon_sym_PLUS_PLUS] = ACTIONS(331), - [anon_sym_DASH_DASH] = ACTIONS(331), - [anon_sym_new] = ACTIONS(333), - [anon_sym_class] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_case] = ACTIONS(333), - [anon_sym_default] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_assert] = ACTIONS(333), - [anon_sym_do] = ACTIONS(333), - [anon_sym_while] = ACTIONS(333), - [anon_sym_break] = ACTIONS(333), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_return] = ACTIONS(333), - [anon_sym_yield] = ACTIONS(333), - [anon_sym_synchronized] = ACTIONS(333), - [anon_sym_throw] = ACTIONS(333), - [anon_sym_try] = ACTIONS(333), - [anon_sym_catch] = ACTIONS(335), - [anon_sym_finally] = ACTIONS(333), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(333), - [anon_sym_for] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [anon_sym_open] = ACTIONS(333), - [anon_sym_module] = ACTIONS(333), - [anon_sym_static] = ACTIONS(333), - [anon_sym_package] = ACTIONS(333), - [anon_sym_import] = ACTIONS(333), - [anon_sym_enum] = ACTIONS(333), - [anon_sym_public] = ACTIONS(333), - [anon_sym_protected] = ACTIONS(333), - [anon_sym_private] = ACTIONS(333), - [anon_sym_abstract] = ACTIONS(333), - [anon_sym_strictfp] = ACTIONS(333), - [anon_sym_native] = ACTIONS(333), - [anon_sym_transient] = ACTIONS(333), - [anon_sym_volatile] = ACTIONS(333), - [anon_sym_sealed] = ACTIONS(333), - [anon_sym_non_DASHsealed] = ACTIONS(331), - [anon_sym_record] = ACTIONS(333), - [anon_sym_ATinterface] = ACTIONS(331), - [anon_sym_interface] = ACTIONS(333), - [anon_sym_byte] = ACTIONS(333), - [anon_sym_short] = ACTIONS(333), - [anon_sym_int] = ACTIONS(333), - [anon_sym_long] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_float] = ACTIONS(333), - [anon_sym_double] = ACTIONS(333), - [sym_boolean_type] = ACTIONS(333), - [sym_void_type] = ACTIONS(333), - [sym_this] = ACTIONS(333), - [sym_super] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [92] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym_element_value_pair] = STATE(973), - [sym__element_value] = STATE(1247), - [sym_element_value_array_initializer] = STATE(1247), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(338), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(1069), + [sym_expression_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21544,78 +22624,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [92] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym_element_value_pair] = STATE(975), - [sym__element_value] = STATE(1217), - [sym_element_value_array_initializer] = STATE(1217), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(338), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym_element_value_pair] = STATE(1041), + [sym__element_value] = STATE(1232), + [sym_element_value_array_initializer] = STATE(1232), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(325), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21625,77 +22708,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(346), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_catch_clause] = STATE(96), + [sym_finally_clause] = STATE(273), + [aux_sym_try_statement_repeat1] = STATE(96), + [ts_builtin_sym_end] = ACTIONS(341), + [sym_identifier] = ACTIONS(343), + [sym_decimal_integer_literal] = ACTIONS(343), + [sym_hex_integer_literal] = ACTIONS(343), + [sym_octal_integer_literal] = ACTIONS(341), + [sym_binary_integer_literal] = ACTIONS(341), + [sym_decimal_floating_point_literal] = ACTIONS(341), + [sym_hex_floating_point_literal] = ACTIONS(343), + [sym_true] = ACTIONS(343), + [sym_false] = ACTIONS(343), + [sym_character_literal] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [sym_null_literal] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_case] = ACTIONS(343), + [anon_sym_default] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_return] = ACTIONS(343), + [anon_sym_yield] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(345), + [anon_sym_finally] = ACTIONS(347), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_open] = ACTIONS(343), + [anon_sym_module] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_enum] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_abstract] = ACTIONS(343), + [anon_sym_strictfp] = ACTIONS(343), + [anon_sym_native] = ACTIONS(343), + [anon_sym_transient] = ACTIONS(343), + [anon_sym_volatile] = ACTIONS(343), + [anon_sym_sealed] = ACTIONS(343), + [anon_sym_non_DASHsealed] = ACTIONS(341), + [anon_sym_record] = ACTIONS(343), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_byte] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [sym_boolean_type] = ACTIONS(343), + [sym_void_type] = ACTIONS(343), + [sym_this] = ACTIONS(343), + [sym_super] = ACTIONS(343), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [94] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym__element_value] = STATE(1008), - [sym_element_value_array_initializer] = STATE(1008), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1109), + [sym_element_value_array_initializer] = STATE(1109), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21705,79 +22874,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_RBRACE] = ACTIONS(350), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [95] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(565), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym_element_value_pair] = STATE(1010), - [sym__element_value] = STATE(1207), - [sym_element_value_array_initializer] = STATE(1207), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(338), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1077), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21787,78 +22956,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [96] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym_catch_clause] = STATE(100), + [sym_finally_clause] = STATE(343), + [aux_sym_try_statement_repeat1] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(357), + [sym_identifier] = ACTIONS(359), + [sym_decimal_integer_literal] = ACTIONS(359), + [sym_hex_integer_literal] = ACTIONS(359), + [sym_octal_integer_literal] = ACTIONS(357), + [sym_binary_integer_literal] = ACTIONS(357), + [sym_decimal_floating_point_literal] = ACTIONS(357), + [sym_hex_floating_point_literal] = ACTIONS(359), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [sym_character_literal] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [sym_null_literal] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_new] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_catch] = ACTIONS(345), + [anon_sym_finally] = ACTIONS(347), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_open] = ACTIONS(359), + [anon_sym_module] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_enum] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_abstract] = ACTIONS(359), + [anon_sym_strictfp] = ACTIONS(359), + [anon_sym_native] = ACTIONS(359), + [anon_sym_transient] = ACTIONS(359), + [anon_sym_volatile] = ACTIONS(359), + [anon_sym_sealed] = ACTIONS(359), + [anon_sym_non_DASHsealed] = ACTIONS(357), + [anon_sym_record] = ACTIONS(359), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_byte] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [sym_boolean_type] = ACTIONS(359), + [sym_void_type] = ACTIONS(359), + [sym_this] = ACTIONS(359), + [sym_super] = ACTIONS(359), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [97] = { + [sym_catch_clause] = STATE(100), + [sym_finally_clause] = STATE(274), + [aux_sym_try_statement_repeat1] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_identifier] = ACTIONS(363), + [sym_decimal_integer_literal] = ACTIONS(363), + [sym_hex_integer_literal] = ACTIONS(363), + [sym_octal_integer_literal] = ACTIONS(361), + [sym_binary_integer_literal] = ACTIONS(361), + [sym_decimal_floating_point_literal] = ACTIONS(361), + [sym_hex_floating_point_literal] = ACTIONS(363), + [sym_true] = ACTIONS(363), + [sym_false] = ACTIONS(363), + [sym_character_literal] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [sym_null_literal] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_new] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_case] = ACTIONS(363), + [anon_sym_default] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_catch] = ACTIONS(345), + [anon_sym_finally] = ACTIONS(347), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_open] = ACTIONS(363), + [anon_sym_module] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_enum] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_abstract] = ACTIONS(363), + [anon_sym_strictfp] = ACTIONS(363), + [anon_sym_native] = ACTIONS(363), + [anon_sym_transient] = ACTIONS(363), + [anon_sym_volatile] = ACTIONS(363), + [anon_sym_sealed] = ACTIONS(363), + [anon_sym_non_DASHsealed] = ACTIONS(361), + [anon_sym_record] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_byte] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [sym_boolean_type] = ACTIONS(363), + [sym_void_type] = ACTIONS(363), + [sym_this] = ACTIONS(363), + [sym_super] = ACTIONS(363), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [98] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym_block] = STATE(1057), - [sym_expression_statement] = STATE(1057), - [sym_throw_statement] = STATE(1057), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1109), + [sym_element_value_array_initializer] = STATE(1109), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21868,77 +23206,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [99] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym__element_value] = STATE(1083), - [sym_element_value_array_initializer] = STATE(1083), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1211), + [sym_element_value_array_initializer] = STATE(1211), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21948,316 +23289,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_RBRACE] = ACTIONS(354), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [98] = { - [ts_builtin_sym_end] = ACTIONS(265), - [sym_identifier] = ACTIONS(267), - [sym_decimal_integer_literal] = ACTIONS(267), - [sym_hex_integer_literal] = ACTIONS(267), - [sym_octal_integer_literal] = ACTIONS(265), - [sym_binary_integer_literal] = ACTIONS(265), - [sym_decimal_floating_point_literal] = ACTIONS(265), - [sym_hex_floating_point_literal] = ACTIONS(267), - [sym_true] = ACTIONS(267), - [sym_false] = ACTIONS(267), - [sym_character_literal] = ACTIONS(265), - [sym_string_literal] = ACTIONS(267), - [sym_text_block] = ACTIONS(265), - [sym_null_literal] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_final] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(265), - [anon_sym_TILDE] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym_new] = ACTIONS(267), - [anon_sym_class] = ACTIONS(267), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_case] = ACTIONS(267), - [anon_sym_default] = ACTIONS(267), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_assert] = ACTIONS(267), - [anon_sym_do] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_synchronized] = ACTIONS(267), - [anon_sym_throw] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_finally] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_open] = ACTIONS(267), - [anon_sym_module] = ACTIONS(267), - [anon_sym_static] = ACTIONS(267), - [anon_sym_package] = ACTIONS(267), - [anon_sym_import] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_public] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_abstract] = ACTIONS(267), - [anon_sym_strictfp] = ACTIONS(267), - [anon_sym_native] = ACTIONS(267), - [anon_sym_transient] = ACTIONS(267), - [anon_sym_volatile] = ACTIONS(267), - [anon_sym_sealed] = ACTIONS(267), - [anon_sym_non_DASHsealed] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_ATinterface] = ACTIONS(265), - [anon_sym_interface] = ACTIONS(267), - [anon_sym_byte] = ACTIONS(267), - [anon_sym_short] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_long] = ACTIONS(267), - [anon_sym_char] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_double] = ACTIONS(267), - [sym_boolean_type] = ACTIONS(267), - [sym_void_type] = ACTIONS(267), - [sym_this] = ACTIONS(267), - [sym_super] = ACTIONS(267), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(277), - [sym_identifier] = ACTIONS(279), - [sym_decimal_integer_literal] = ACTIONS(279), - [sym_hex_integer_literal] = ACTIONS(279), - [sym_octal_integer_literal] = ACTIONS(277), - [sym_binary_integer_literal] = ACTIONS(277), - [sym_decimal_floating_point_literal] = ACTIONS(277), - [sym_hex_floating_point_literal] = ACTIONS(279), - [sym_true] = ACTIONS(279), - [sym_false] = ACTIONS(279), - [sym_character_literal] = ACTIONS(277), - [sym_string_literal] = ACTIONS(279), - [sym_text_block] = ACTIONS(277), - [sym_null_literal] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(279), - [anon_sym_final] = ACTIONS(279), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_new] = ACTIONS(279), - [anon_sym_class] = ACTIONS(279), - [anon_sym_switch] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_case] = ACTIONS(279), - [anon_sym_default] = ACTIONS(279), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_assert] = ACTIONS(279), - [anon_sym_do] = ACTIONS(279), - [anon_sym_while] = ACTIONS(279), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(279), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(279), - [anon_sym_synchronized] = ACTIONS(279), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_try] = ACTIONS(279), - [anon_sym_catch] = ACTIONS(279), - [anon_sym_finally] = ACTIONS(279), - [anon_sym_if] = ACTIONS(279), - [anon_sym_else] = ACTIONS(279), - [anon_sym_for] = ACTIONS(279), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_open] = ACTIONS(279), - [anon_sym_module] = ACTIONS(279), - [anon_sym_static] = ACTIONS(279), - [anon_sym_package] = ACTIONS(279), - [anon_sym_import] = ACTIONS(279), - [anon_sym_enum] = ACTIONS(279), - [anon_sym_public] = ACTIONS(279), - [anon_sym_protected] = ACTIONS(279), - [anon_sym_private] = ACTIONS(279), - [anon_sym_abstract] = ACTIONS(279), - [anon_sym_strictfp] = ACTIONS(279), - [anon_sym_native] = ACTIONS(279), - [anon_sym_transient] = ACTIONS(279), - [anon_sym_volatile] = ACTIONS(279), - [anon_sym_sealed] = ACTIONS(279), - [anon_sym_non_DASHsealed] = ACTIONS(277), - [anon_sym_record] = ACTIONS(279), - [anon_sym_ATinterface] = ACTIONS(277), - [anon_sym_interface] = ACTIONS(279), - [anon_sym_byte] = ACTIONS(279), - [anon_sym_short] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_long] = ACTIONS(279), - [anon_sym_char] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_double] = ACTIONS(279), - [sym_boolean_type] = ACTIONS(279), - [sym_void_type] = ACTIONS(279), - [sym_this] = ACTIONS(279), - [sym_super] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [100] = { - [ts_builtin_sym_end] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_decimal_integer_literal] = ACTIONS(358), - [sym_hex_integer_literal] = ACTIONS(358), - [sym_octal_integer_literal] = ACTIONS(356), - [sym_binary_integer_literal] = ACTIONS(356), - [sym_decimal_floating_point_literal] = ACTIONS(356), - [sym_hex_floating_point_literal] = ACTIONS(358), - [sym_true] = ACTIONS(358), - [sym_false] = ACTIONS(358), - [sym_character_literal] = ACTIONS(356), - [sym_string_literal] = ACTIONS(358), - [sym_text_block] = ACTIONS(356), - [sym_null_literal] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_final] = ACTIONS(358), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS_PLUS] = ACTIONS(356), - [anon_sym_DASH_DASH] = ACTIONS(356), - [anon_sym_new] = ACTIONS(358), - [anon_sym_class] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_RBRACE] = ACTIONS(356), - [anon_sym_case] = ACTIONS(358), - [anon_sym_default] = ACTIONS(358), - [anon_sym_SEMI] = ACTIONS(356), - [anon_sym_assert] = ACTIONS(358), - [anon_sym_do] = ACTIONS(358), - [anon_sym_while] = ACTIONS(358), - [anon_sym_break] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(358), - [anon_sym_return] = ACTIONS(358), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_synchronized] = ACTIONS(358), - [anon_sym_throw] = ACTIONS(358), - [anon_sym_try] = ACTIONS(358), - [anon_sym_catch] = ACTIONS(358), - [anon_sym_finally] = ACTIONS(358), - [anon_sym_if] = ACTIONS(358), - [anon_sym_else] = ACTIONS(358), - [anon_sym_for] = ACTIONS(358), - [anon_sym_AT] = ACTIONS(358), - [anon_sym_open] = ACTIONS(358), - [anon_sym_module] = ACTIONS(358), - [anon_sym_static] = ACTIONS(358), - [anon_sym_package] = ACTIONS(358), - [anon_sym_import] = ACTIONS(358), - [anon_sym_enum] = ACTIONS(358), - [anon_sym_public] = ACTIONS(358), - [anon_sym_protected] = ACTIONS(358), - [anon_sym_private] = ACTIONS(358), - [anon_sym_abstract] = ACTIONS(358), - [anon_sym_strictfp] = ACTIONS(358), - [anon_sym_native] = ACTIONS(358), - [anon_sym_transient] = ACTIONS(358), - [anon_sym_volatile] = ACTIONS(358), - [anon_sym_sealed] = ACTIONS(358), - [anon_sym_non_DASHsealed] = ACTIONS(356), - [anon_sym_record] = ACTIONS(358), - [anon_sym_ATinterface] = ACTIONS(356), - [anon_sym_interface] = ACTIONS(358), - [anon_sym_byte] = ACTIONS(358), - [anon_sym_short] = ACTIONS(358), - [anon_sym_int] = ACTIONS(358), - [anon_sym_long] = ACTIONS(358), - [anon_sym_char] = ACTIONS(358), - [anon_sym_float] = ACTIONS(358), - [anon_sym_double] = ACTIONS(358), - [sym_boolean_type] = ACTIONS(358), - [sym_void_type] = ACTIONS(358), - [sym_this] = ACTIONS(358), - [sym_super] = ACTIONS(358), + [sym_catch_clause] = STATE(100), + [aux_sym_try_statement_repeat1] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(367), + [sym_identifier] = ACTIONS(369), + [sym_decimal_integer_literal] = ACTIONS(369), + [sym_hex_integer_literal] = ACTIONS(369), + [sym_octal_integer_literal] = ACTIONS(367), + [sym_binary_integer_literal] = ACTIONS(367), + [sym_decimal_floating_point_literal] = ACTIONS(367), + [sym_hex_floating_point_literal] = ACTIONS(369), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [sym_character_literal] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(367), + [sym_null_literal] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_final] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_new] = ACTIONS(369), + [anon_sym_class] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_case] = ACTIONS(369), + [anon_sym_default] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(369), + [anon_sym_do] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(369), + [anon_sym_synchronized] = ACTIONS(369), + [anon_sym_throw] = ACTIONS(369), + [anon_sym_try] = ACTIONS(369), + [anon_sym_catch] = ACTIONS(371), + [anon_sym_finally] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_else] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(369), + [anon_sym_open] = ACTIONS(369), + [anon_sym_module] = ACTIONS(369), + [anon_sym_static] = ACTIONS(369), + [anon_sym_package] = ACTIONS(369), + [anon_sym_import] = ACTIONS(369), + [anon_sym_enum] = ACTIONS(369), + [anon_sym_public] = ACTIONS(369), + [anon_sym_protected] = ACTIONS(369), + [anon_sym_private] = ACTIONS(369), + [anon_sym_abstract] = ACTIONS(369), + [anon_sym_strictfp] = ACTIONS(369), + [anon_sym_native] = ACTIONS(369), + [anon_sym_transient] = ACTIONS(369), + [anon_sym_volatile] = ACTIONS(369), + [anon_sym_sealed] = ACTIONS(369), + [anon_sym_non_DASHsealed] = ACTIONS(367), + [anon_sym_record] = ACTIONS(369), + [anon_sym_ATinterface] = ACTIONS(367), + [anon_sym_interface] = ACTIONS(369), + [anon_sym_byte] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_int] = ACTIONS(369), + [anon_sym_long] = ACTIONS(369), + [anon_sym_char] = ACTIONS(369), + [anon_sym_float] = ACTIONS(369), + [anon_sym_double] = ACTIONS(369), + [sym_boolean_type] = ACTIONS(369), + [sym_void_type] = ACTIONS(369), + [sym_this] = ACTIONS(369), + [sym_super] = ACTIONS(369), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(554), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym_array_initializer] = STATE(1063), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1197), + [sym_element_value_array_initializer] = STATE(1197), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -22267,78 +23453,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(364), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym__element_value] = STATE(1083), - [sym_element_value_array_initializer] = STATE(1083), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1132), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -22348,1973 +23534,1850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_RBRACE] = ACTIONS(366), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [103] = { - [ts_builtin_sym_end] = ACTIONS(368), - [sym_identifier] = ACTIONS(370), - [sym_decimal_integer_literal] = ACTIONS(370), - [sym_hex_integer_literal] = ACTIONS(370), - [sym_octal_integer_literal] = ACTIONS(368), - [sym_binary_integer_literal] = ACTIONS(368), - [sym_decimal_floating_point_literal] = ACTIONS(368), - [sym_hex_floating_point_literal] = ACTIONS(370), - [sym_true] = ACTIONS(370), - [sym_false] = ACTIONS(370), - [sym_character_literal] = ACTIONS(368), - [sym_string_literal] = ACTIONS(370), - [sym_text_block] = ACTIONS(368), - [sym_null_literal] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_final] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_new] = ACTIONS(370), - [anon_sym_class] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(370), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_case] = ACTIONS(370), - [anon_sym_default] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_assert] = ACTIONS(370), - [anon_sym_do] = ACTIONS(370), - [anon_sym_while] = ACTIONS(370), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(370), - [anon_sym_return] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(370), - [anon_sym_synchronized] = ACTIONS(370), - [anon_sym_throw] = ACTIONS(370), - [anon_sym_try] = ACTIONS(370), - [anon_sym_if] = ACTIONS(370), - [anon_sym_else] = ACTIONS(370), - [anon_sym_for] = ACTIONS(370), - [anon_sym_AT] = ACTIONS(370), - [anon_sym_open] = ACTIONS(370), - [anon_sym_module] = ACTIONS(370), - [anon_sym_static] = ACTIONS(370), - [anon_sym_package] = ACTIONS(370), - [anon_sym_import] = ACTIONS(370), - [anon_sym_enum] = ACTIONS(370), - [anon_sym_public] = ACTIONS(370), - [anon_sym_protected] = ACTIONS(370), - [anon_sym_private] = ACTIONS(370), - [anon_sym_abstract] = ACTIONS(370), - [anon_sym_strictfp] = ACTIONS(370), - [anon_sym_native] = ACTIONS(370), - [anon_sym_transient] = ACTIONS(370), - [anon_sym_volatile] = ACTIONS(370), - [anon_sym_sealed] = ACTIONS(370), - [anon_sym_non_DASHsealed] = ACTIONS(368), - [anon_sym_record] = ACTIONS(370), - [anon_sym_ATinterface] = ACTIONS(368), - [anon_sym_interface] = ACTIONS(370), - [anon_sym_byte] = ACTIONS(370), - [anon_sym_short] = ACTIONS(370), - [anon_sym_int] = ACTIONS(370), - [anon_sym_long] = ACTIONS(370), - [anon_sym_char] = ACTIONS(370), - [anon_sym_float] = ACTIONS(370), - [anon_sym_double] = ACTIONS(370), - [sym_boolean_type] = ACTIONS(370), - [sym_void_type] = ACTIONS(370), - [sym_this] = ACTIONS(370), - [sym_super] = ACTIONS(370), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1132), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [104] = { - [ts_builtin_sym_end] = ACTIONS(372), - [sym_identifier] = ACTIONS(374), - [sym_decimal_integer_literal] = ACTIONS(374), - [sym_hex_integer_literal] = ACTIONS(374), - [sym_octal_integer_literal] = ACTIONS(372), - [sym_binary_integer_literal] = ACTIONS(372), - [sym_decimal_floating_point_literal] = ACTIONS(372), - [sym_hex_floating_point_literal] = ACTIONS(374), - [sym_true] = ACTIONS(374), - [sym_false] = ACTIONS(374), - [sym_character_literal] = ACTIONS(372), - [sym_string_literal] = ACTIONS(374), - [sym_text_block] = ACTIONS(372), - [sym_null_literal] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_final] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(372), - [anon_sym_TILDE] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_new] = ACTIONS(374), - [anon_sym_class] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_case] = ACTIONS(374), - [anon_sym_default] = ACTIONS(374), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_assert] = ACTIONS(374), - [anon_sym_do] = ACTIONS(374), - [anon_sym_while] = ACTIONS(374), - [anon_sym_break] = ACTIONS(374), - [anon_sym_continue] = ACTIONS(374), - [anon_sym_return] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_synchronized] = ACTIONS(374), - [anon_sym_throw] = ACTIONS(374), - [anon_sym_try] = ACTIONS(374), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(374), - [anon_sym_for] = ACTIONS(374), - [anon_sym_AT] = ACTIONS(374), - [anon_sym_open] = ACTIONS(374), - [anon_sym_module] = ACTIONS(374), - [anon_sym_static] = ACTIONS(374), - [anon_sym_package] = ACTIONS(374), - [anon_sym_import] = ACTIONS(374), - [anon_sym_enum] = ACTIONS(374), - [anon_sym_public] = ACTIONS(374), - [anon_sym_protected] = ACTIONS(374), - [anon_sym_private] = ACTIONS(374), - [anon_sym_abstract] = ACTIONS(374), - [anon_sym_strictfp] = ACTIONS(374), - [anon_sym_native] = ACTIONS(374), - [anon_sym_transient] = ACTIONS(374), - [anon_sym_volatile] = ACTIONS(374), - [anon_sym_sealed] = ACTIONS(374), - [anon_sym_non_DASHsealed] = ACTIONS(372), - [anon_sym_record] = ACTIONS(374), - [anon_sym_ATinterface] = ACTIONS(372), - [anon_sym_interface] = ACTIONS(374), - [anon_sym_byte] = ACTIONS(374), - [anon_sym_short] = ACTIONS(374), - [anon_sym_int] = ACTIONS(374), - [anon_sym_long] = ACTIONS(374), - [anon_sym_char] = ACTIONS(374), - [anon_sym_float] = ACTIONS(374), - [anon_sym_double] = ACTIONS(374), - [sym_boolean_type] = ACTIONS(374), - [sym_void_type] = ACTIONS(374), - [sym_this] = ACTIONS(374), - [sym_super] = ACTIONS(374), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1197), + [sym_element_value_array_initializer] = STATE(1197), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [105] = { - [ts_builtin_sym_end] = ACTIONS(376), - [sym_identifier] = ACTIONS(378), - [sym_decimal_integer_literal] = ACTIONS(378), - [sym_hex_integer_literal] = ACTIONS(378), - [sym_octal_integer_literal] = ACTIONS(376), - [sym_binary_integer_literal] = ACTIONS(376), - [sym_decimal_floating_point_literal] = ACTIONS(376), - [sym_hex_floating_point_literal] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_character_literal] = ACTIONS(376), - [sym_string_literal] = ACTIONS(378), - [sym_text_block] = ACTIONS(376), - [sym_null_literal] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_PLUS] = ACTIONS(378), - [anon_sym_DASH] = ACTIONS(378), - [anon_sym_final] = ACTIONS(378), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_new] = ACTIONS(378), - [anon_sym_class] = ACTIONS(378), - [anon_sym_switch] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(376), - [anon_sym_assert] = ACTIONS(378), - [anon_sym_do] = ACTIONS(378), - [anon_sym_while] = ACTIONS(378), - [anon_sym_break] = ACTIONS(378), - [anon_sym_continue] = ACTIONS(378), - [anon_sym_return] = ACTIONS(378), - [anon_sym_yield] = ACTIONS(378), - [anon_sym_synchronized] = ACTIONS(378), - [anon_sym_throw] = ACTIONS(378), - [anon_sym_try] = ACTIONS(378), - [anon_sym_if] = ACTIONS(378), - [anon_sym_else] = ACTIONS(378), - [anon_sym_for] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(378), - [anon_sym_open] = ACTIONS(378), - [anon_sym_module] = ACTIONS(378), - [anon_sym_static] = ACTIONS(378), - [anon_sym_package] = ACTIONS(378), - [anon_sym_import] = ACTIONS(378), - [anon_sym_enum] = ACTIONS(378), - [anon_sym_public] = ACTIONS(378), - [anon_sym_protected] = ACTIONS(378), - [anon_sym_private] = ACTIONS(378), - [anon_sym_abstract] = ACTIONS(378), - [anon_sym_strictfp] = ACTIONS(378), - [anon_sym_native] = ACTIONS(378), - [anon_sym_transient] = ACTIONS(378), - [anon_sym_volatile] = ACTIONS(378), - [anon_sym_sealed] = ACTIONS(378), - [anon_sym_non_DASHsealed] = ACTIONS(376), - [anon_sym_record] = ACTIONS(378), - [anon_sym_ATinterface] = ACTIONS(376), - [anon_sym_interface] = ACTIONS(378), - [anon_sym_byte] = ACTIONS(378), - [anon_sym_short] = ACTIONS(378), - [anon_sym_int] = ACTIONS(378), - [anon_sym_long] = ACTIONS(378), - [anon_sym_char] = ACTIONS(378), - [anon_sym_float] = ACTIONS(378), - [anon_sym_double] = ACTIONS(378), - [sym_boolean_type] = ACTIONS(378), - [sym_void_type] = ACTIONS(378), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1109), + [sym_element_value_array_initializer] = STATE(1109), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [106] = { - [ts_builtin_sym_end] = ACTIONS(380), - [sym_identifier] = ACTIONS(382), - [sym_decimal_integer_literal] = ACTIONS(382), - [sym_hex_integer_literal] = ACTIONS(382), - [sym_octal_integer_literal] = ACTIONS(380), - [sym_binary_integer_literal] = ACTIONS(380), - [sym_decimal_floating_point_literal] = ACTIONS(380), - [sym_hex_floating_point_literal] = ACTIONS(382), - [sym_true] = ACTIONS(382), - [sym_false] = ACTIONS(382), - [sym_character_literal] = ACTIONS(380), - [sym_string_literal] = ACTIONS(382), - [sym_text_block] = ACTIONS(380), - [sym_null_literal] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_final] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(380), - [anon_sym_PLUS_PLUS] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(380), - [anon_sym_new] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_case] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(380), - [anon_sym_assert] = ACTIONS(382), - [anon_sym_do] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_synchronized] = ACTIONS(382), - [anon_sym_throw] = ACTIONS(382), - [anon_sym_try] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_open] = ACTIONS(382), - [anon_sym_module] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_package] = ACTIONS(382), - [anon_sym_import] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_public] = ACTIONS(382), - [anon_sym_protected] = ACTIONS(382), - [anon_sym_private] = ACTIONS(382), - [anon_sym_abstract] = ACTIONS(382), - [anon_sym_strictfp] = ACTIONS(382), - [anon_sym_native] = ACTIONS(382), - [anon_sym_transient] = ACTIONS(382), - [anon_sym_volatile] = ACTIONS(382), - [anon_sym_sealed] = ACTIONS(382), - [anon_sym_non_DASHsealed] = ACTIONS(380), - [anon_sym_record] = ACTIONS(382), - [anon_sym_ATinterface] = ACTIONS(380), - [anon_sym_interface] = ACTIONS(382), - [anon_sym_byte] = ACTIONS(382), - [anon_sym_short] = ACTIONS(382), - [anon_sym_int] = ACTIONS(382), - [anon_sym_long] = ACTIONS(382), - [anon_sym_char] = ACTIONS(382), - [anon_sym_float] = ACTIONS(382), - [anon_sym_double] = ACTIONS(382), - [sym_boolean_type] = ACTIONS(382), - [sym_void_type] = ACTIONS(382), - [sym_this] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1132), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [107] = { - [ts_builtin_sym_end] = ACTIONS(384), - [sym_identifier] = ACTIONS(386), - [sym_decimal_integer_literal] = ACTIONS(386), - [sym_hex_integer_literal] = ACTIONS(386), - [sym_octal_integer_literal] = ACTIONS(384), - [sym_binary_integer_literal] = ACTIONS(384), - [sym_decimal_floating_point_literal] = ACTIONS(384), - [sym_hex_floating_point_literal] = ACTIONS(386), - [sym_true] = ACTIONS(386), - [sym_false] = ACTIONS(386), - [sym_character_literal] = ACTIONS(384), - [sym_string_literal] = ACTIONS(386), - [sym_text_block] = ACTIONS(384), - [sym_null_literal] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_PLUS_PLUS] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(384), - [anon_sym_new] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_assert] = ACTIONS(386), - [anon_sym_do] = ACTIONS(386), - [anon_sym_while] = ACTIONS(386), - [anon_sym_break] = ACTIONS(386), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_return] = ACTIONS(386), - [anon_sym_yield] = ACTIONS(386), - [anon_sym_synchronized] = ACTIONS(386), - [anon_sym_throw] = ACTIONS(386), - [anon_sym_try] = ACTIONS(386), - [anon_sym_if] = ACTIONS(386), - [anon_sym_else] = ACTIONS(386), - [anon_sym_for] = ACTIONS(386), - [anon_sym_AT] = ACTIONS(386), - [anon_sym_open] = ACTIONS(386), - [anon_sym_module] = ACTIONS(386), - [anon_sym_static] = ACTIONS(386), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_enum] = ACTIONS(386), - [anon_sym_public] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_strictfp] = ACTIONS(386), - [anon_sym_native] = ACTIONS(386), - [anon_sym_transient] = ACTIONS(386), - [anon_sym_volatile] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_non_DASHsealed] = ACTIONS(384), - [anon_sym_record] = ACTIONS(386), - [anon_sym_ATinterface] = ACTIONS(384), - [anon_sym_interface] = ACTIONS(386), - [anon_sym_byte] = ACTIONS(386), - [anon_sym_short] = ACTIONS(386), - [anon_sym_int] = ACTIONS(386), - [anon_sym_long] = ACTIONS(386), - [anon_sym_char] = ACTIONS(386), - [anon_sym_float] = ACTIONS(386), - [anon_sym_double] = ACTIONS(386), - [sym_boolean_type] = ACTIONS(386), - [sym_void_type] = ACTIONS(386), - [sym_this] = ACTIONS(386), - [sym_super] = ACTIONS(386), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(528), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(511), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [108] = { - [ts_builtin_sym_end] = ACTIONS(388), - [sym_identifier] = ACTIONS(390), - [sym_decimal_integer_literal] = ACTIONS(390), - [sym_hex_integer_literal] = ACTIONS(390), - [sym_octal_integer_literal] = ACTIONS(388), - [sym_binary_integer_literal] = ACTIONS(388), - [sym_decimal_floating_point_literal] = ACTIONS(388), - [sym_hex_floating_point_literal] = ACTIONS(390), - [sym_true] = ACTIONS(390), - [sym_false] = ACTIONS(390), - [sym_character_literal] = ACTIONS(388), - [sym_string_literal] = ACTIONS(390), - [sym_text_block] = ACTIONS(388), - [sym_null_literal] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_final] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_new] = ACTIONS(390), - [anon_sym_class] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_assert] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_return] = ACTIONS(390), - [anon_sym_yield] = ACTIONS(390), - [anon_sym_synchronized] = ACTIONS(390), - [anon_sym_throw] = ACTIONS(390), - [anon_sym_try] = ACTIONS(390), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(390), - [anon_sym_open] = ACTIONS(390), - [anon_sym_module] = ACTIONS(390), - [anon_sym_static] = ACTIONS(390), - [anon_sym_package] = ACTIONS(390), - [anon_sym_import] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_public] = ACTIONS(390), - [anon_sym_protected] = ACTIONS(390), - [anon_sym_private] = ACTIONS(390), - [anon_sym_abstract] = ACTIONS(390), - [anon_sym_strictfp] = ACTIONS(390), - [anon_sym_native] = ACTIONS(390), - [anon_sym_transient] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_sealed] = ACTIONS(390), - [anon_sym_non_DASHsealed] = ACTIONS(388), - [anon_sym_record] = ACTIONS(390), - [anon_sym_ATinterface] = ACTIONS(388), - [anon_sym_interface] = ACTIONS(390), - [anon_sym_byte] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_int] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_char] = ACTIONS(390), - [anon_sym_float] = ACTIONS(390), - [anon_sym_double] = ACTIONS(390), - [sym_boolean_type] = ACTIONS(390), - [sym_void_type] = ACTIONS(390), - [sym_this] = ACTIONS(390), - [sym_super] = ACTIONS(390), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(392), - [sym_identifier] = ACTIONS(394), - [sym_decimal_integer_literal] = ACTIONS(394), - [sym_hex_integer_literal] = ACTIONS(394), - [sym_octal_integer_literal] = ACTIONS(392), - [sym_binary_integer_literal] = ACTIONS(392), - [sym_decimal_floating_point_literal] = ACTIONS(392), - [sym_hex_floating_point_literal] = ACTIONS(394), - [sym_true] = ACTIONS(394), - [sym_false] = ACTIONS(394), - [sym_character_literal] = ACTIONS(392), - [sym_string_literal] = ACTIONS(394), - [sym_text_block] = ACTIONS(392), - [sym_null_literal] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_final] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_new] = ACTIONS(394), - [anon_sym_class] = ACTIONS(394), - [anon_sym_switch] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_assert] = ACTIONS(394), - [anon_sym_do] = ACTIONS(394), - [anon_sym_while] = ACTIONS(394), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(394), - [anon_sym_return] = ACTIONS(394), - [anon_sym_yield] = ACTIONS(394), - [anon_sym_synchronized] = ACTIONS(394), - [anon_sym_throw] = ACTIONS(394), - [anon_sym_try] = ACTIONS(394), - [anon_sym_if] = ACTIONS(394), - [anon_sym_else] = ACTIONS(394), - [anon_sym_for] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_open] = ACTIONS(394), - [anon_sym_module] = ACTIONS(394), - [anon_sym_static] = ACTIONS(394), - [anon_sym_package] = ACTIONS(394), - [anon_sym_import] = ACTIONS(394), - [anon_sym_enum] = ACTIONS(394), - [anon_sym_public] = ACTIONS(394), - [anon_sym_protected] = ACTIONS(394), - [anon_sym_private] = ACTIONS(394), - [anon_sym_abstract] = ACTIONS(394), - [anon_sym_strictfp] = ACTIONS(394), - [anon_sym_native] = ACTIONS(394), - [anon_sym_transient] = ACTIONS(394), - [anon_sym_volatile] = ACTIONS(394), - [anon_sym_sealed] = ACTIONS(394), - [anon_sym_non_DASHsealed] = ACTIONS(392), - [anon_sym_record] = ACTIONS(394), - [anon_sym_ATinterface] = ACTIONS(392), - [anon_sym_interface] = ACTIONS(394), - [anon_sym_byte] = ACTIONS(394), - [anon_sym_short] = ACTIONS(394), - [anon_sym_int] = ACTIONS(394), - [anon_sym_long] = ACTIONS(394), - [anon_sym_char] = ACTIONS(394), - [anon_sym_float] = ACTIONS(394), - [anon_sym_double] = ACTIONS(394), - [sym_boolean_type] = ACTIONS(394), - [sym_void_type] = ACTIONS(394), - [sym_this] = ACTIONS(394), - [sym_super] = ACTIONS(394), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [110] = { - [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(396), - [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), - [sym_string_literal] = ACTIONS(398), - [sym_text_block] = ACTIONS(396), - [sym_null_literal] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_final] = ACTIONS(398), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_new] = ACTIONS(398), - [anon_sym_class] = ACTIONS(398), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_case] = ACTIONS(398), - [anon_sym_default] = 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), - }, - [111] = { - [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(400), - [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), - [sym_string_literal] = ACTIONS(402), - [sym_text_block] = ACTIONS(400), - [sym_null_literal] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(400), - [anon_sym_PLUS] = ACTIONS(402), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_final] = ACTIONS(402), - [anon_sym_BANG] = ACTIONS(400), - [anon_sym_TILDE] = ACTIONS(400), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), - [anon_sym_new] = ACTIONS(402), - [anon_sym_class] = ACTIONS(402), - [anon_sym_switch] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_case] = ACTIONS(402), - [anon_sym_default] = 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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(511), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [109] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(591), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(509), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [110] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(555), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1090), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [111] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(542), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(509), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [112] = { - [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(404), - [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), - [sym_string_literal] = ACTIONS(406), - [sym_text_block] = ACTIONS(404), - [sym_null_literal] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_final] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(404), - [anon_sym_TILDE] = ACTIONS(404), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_new] = ACTIONS(406), - [anon_sym_class] = ACTIONS(406), - [anon_sym_switch] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_case] = ACTIONS(406), - [anon_sym_default] = 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_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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(587), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(390), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [113] = { - [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(408), - [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), - [sym_string_literal] = ACTIONS(410), - [sym_text_block] = ACTIONS(408), - [sym_null_literal] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_final] = ACTIONS(410), - [anon_sym_BANG] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(408), - [anon_sym_PLUS_PLUS] = ACTIONS(408), - [anon_sym_DASH_DASH] = ACTIONS(408), - [anon_sym_new] = ACTIONS(410), - [anon_sym_class] = ACTIONS(410), - [anon_sym_switch] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(408), - [anon_sym_case] = ACTIONS(410), - [anon_sym_default] = 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_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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [114] = { - [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(412), - [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), - [sym_string_literal] = ACTIONS(414), - [sym_text_block] = ACTIONS(412), - [sym_null_literal] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_final] = ACTIONS(414), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(412), - [anon_sym_DASH_DASH] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_class] = ACTIONS(414), - [anon_sym_switch] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_case] = ACTIONS(414), - [anon_sym_default] = 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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(564), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(394), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [115] = { - [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(416), - [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), - [sym_string_literal] = ACTIONS(418), - [sym_text_block] = ACTIONS(416), - [sym_null_literal] = ACTIONS(418), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_final] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(416), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_DASH_DASH] = ACTIONS(416), - [anon_sym_new] = ACTIONS(418), - [anon_sym_class] = ACTIONS(418), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_RBRACE] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_default] = 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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(561), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(396), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [116] = { - [ts_builtin_sym_end] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_decimal_integer_literal] = ACTIONS(422), - [sym_hex_integer_literal] = ACTIONS(422), - [sym_octal_integer_literal] = ACTIONS(420), - [sym_binary_integer_literal] = ACTIONS(420), - [sym_decimal_floating_point_literal] = ACTIONS(420), - [sym_hex_floating_point_literal] = ACTIONS(422), - [sym_true] = ACTIONS(422), - [sym_false] = ACTIONS(422), - [sym_character_literal] = ACTIONS(420), - [sym_string_literal] = ACTIONS(422), - [sym_text_block] = ACTIONS(420), - [sym_null_literal] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_final] = ACTIONS(422), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(420), - [anon_sym_DASH_DASH] = ACTIONS(420), - [anon_sym_new] = ACTIONS(422), - [anon_sym_class] = ACTIONS(422), - [anon_sym_switch] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_case] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_assert] = ACTIONS(422), - [anon_sym_do] = ACTIONS(422), - [anon_sym_while] = ACTIONS(422), - [anon_sym_break] = ACTIONS(422), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_return] = ACTIONS(422), - [anon_sym_yield] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(422), - [anon_sym_throw] = ACTIONS(422), - [anon_sym_try] = ACTIONS(422), - [anon_sym_if] = ACTIONS(422), - [anon_sym_else] = ACTIONS(422), - [anon_sym_for] = ACTIONS(422), - [anon_sym_AT] = ACTIONS(422), - [anon_sym_open] = ACTIONS(422), - [anon_sym_module] = ACTIONS(422), - [anon_sym_static] = ACTIONS(422), - [anon_sym_package] = ACTIONS(422), - [anon_sym_import] = ACTIONS(422), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_public] = ACTIONS(422), - [anon_sym_protected] = ACTIONS(422), - [anon_sym_private] = ACTIONS(422), - [anon_sym_abstract] = ACTIONS(422), - [anon_sym_strictfp] = ACTIONS(422), - [anon_sym_native] = ACTIONS(422), - [anon_sym_transient] = ACTIONS(422), - [anon_sym_volatile] = ACTIONS(422), - [anon_sym_sealed] = ACTIONS(422), - [anon_sym_non_DASHsealed] = ACTIONS(420), - [anon_sym_record] = ACTIONS(422), - [anon_sym_ATinterface] = ACTIONS(420), - [anon_sym_interface] = ACTIONS(422), - [anon_sym_byte] = ACTIONS(422), - [anon_sym_short] = ACTIONS(422), - [anon_sym_int] = ACTIONS(422), - [anon_sym_long] = ACTIONS(422), - [anon_sym_char] = ACTIONS(422), - [anon_sym_float] = ACTIONS(422), - [anon_sym_double] = ACTIONS(422), - [sym_boolean_type] = ACTIONS(422), - [sym_void_type] = ACTIONS(422), - [sym_this] = ACTIONS(422), - [sym_super] = ACTIONS(422), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(622), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [117] = { - [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(424), - [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), - [sym_string_literal] = ACTIONS(426), - [sym_text_block] = ACTIONS(424), - [sym_null_literal] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_final] = ACTIONS(426), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_new] = ACTIONS(426), - [anon_sym_class] = ACTIONS(426), - [anon_sym_switch] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(426), - [anon_sym_default] = 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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(639), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(428), - [sym_identifier] = ACTIONS(430), - [sym_decimal_integer_literal] = ACTIONS(430), - [sym_hex_integer_literal] = ACTIONS(430), - [sym_octal_integer_literal] = ACTIONS(428), - [sym_binary_integer_literal] = ACTIONS(428), - [sym_decimal_floating_point_literal] = ACTIONS(428), - [sym_hex_floating_point_literal] = ACTIONS(430), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_character_literal] = ACTIONS(428), - [sym_string_literal] = ACTIONS(430), - [sym_text_block] = ACTIONS(428), - [sym_null_literal] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_PLUS] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(430), - [anon_sym_final] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(428), - [anon_sym_TILDE] = ACTIONS(428), - [anon_sym_PLUS_PLUS] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(428), - [anon_sym_new] = ACTIONS(430), - [anon_sym_class] = ACTIONS(430), - [anon_sym_switch] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_case] = ACTIONS(430), - [anon_sym_default] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_assert] = ACTIONS(430), - [anon_sym_do] = ACTIONS(430), - [anon_sym_while] = ACTIONS(430), - [anon_sym_break] = ACTIONS(430), - [anon_sym_continue] = ACTIONS(430), - [anon_sym_return] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(430), - [anon_sym_synchronized] = ACTIONS(430), - [anon_sym_throw] = ACTIONS(430), - [anon_sym_try] = ACTIONS(430), - [anon_sym_if] = ACTIONS(430), - [anon_sym_else] = ACTIONS(430), - [anon_sym_for] = ACTIONS(430), - [anon_sym_AT] = ACTIONS(430), - [anon_sym_open] = ACTIONS(430), - [anon_sym_module] = ACTIONS(430), - [anon_sym_static] = ACTIONS(430), - [anon_sym_package] = ACTIONS(430), - [anon_sym_import] = ACTIONS(430), - [anon_sym_enum] = ACTIONS(430), - [anon_sym_public] = ACTIONS(430), - [anon_sym_protected] = ACTIONS(430), - [anon_sym_private] = ACTIONS(430), - [anon_sym_abstract] = ACTIONS(430), - [anon_sym_strictfp] = ACTIONS(430), - [anon_sym_native] = ACTIONS(430), - [anon_sym_transient] = ACTIONS(430), - [anon_sym_volatile] = ACTIONS(430), - [anon_sym_sealed] = ACTIONS(430), - [anon_sym_non_DASHsealed] = ACTIONS(428), - [anon_sym_record] = ACTIONS(430), - [anon_sym_ATinterface] = ACTIONS(428), - [anon_sym_interface] = ACTIONS(430), - [anon_sym_byte] = ACTIONS(430), - [anon_sym_short] = ACTIONS(430), - [anon_sym_int] = ACTIONS(430), - [anon_sym_long] = ACTIONS(430), - [anon_sym_char] = ACTIONS(430), - [anon_sym_float] = ACTIONS(430), - [anon_sym_double] = ACTIONS(430), - [sym_boolean_type] = ACTIONS(430), - [sym_void_type] = ACTIONS(430), - [sym_this] = ACTIONS(430), - [sym_super] = ACTIONS(430), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(581), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(402), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [119] = { - [ts_builtin_sym_end] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_decimal_integer_literal] = ACTIONS(434), - [sym_hex_integer_literal] = ACTIONS(434), - [sym_octal_integer_literal] = ACTIONS(432), - [sym_binary_integer_literal] = ACTIONS(432), - [sym_decimal_floating_point_literal] = ACTIONS(432), - [sym_hex_floating_point_literal] = ACTIONS(434), - [sym_true] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [sym_character_literal] = ACTIONS(432), - [sym_string_literal] = ACTIONS(434), - [sym_text_block] = ACTIONS(432), - [sym_null_literal] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_final] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_TILDE] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(432), - [anon_sym_DASH_DASH] = ACTIONS(432), - [anon_sym_new] = ACTIONS(434), - [anon_sym_class] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_case] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_assert] = ACTIONS(434), - [anon_sym_do] = ACTIONS(434), - [anon_sym_while] = ACTIONS(434), - [anon_sym_break] = ACTIONS(434), - [anon_sym_continue] = ACTIONS(434), - [anon_sym_return] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_synchronized] = ACTIONS(434), - [anon_sym_throw] = ACTIONS(434), - [anon_sym_try] = ACTIONS(434), - [anon_sym_if] = ACTIONS(434), - [anon_sym_else] = ACTIONS(434), - [anon_sym_for] = ACTIONS(434), - [anon_sym_AT] = ACTIONS(434), - [anon_sym_open] = ACTIONS(434), - [anon_sym_module] = ACTIONS(434), - [anon_sym_static] = ACTIONS(434), - [anon_sym_package] = ACTIONS(434), - [anon_sym_import] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_public] = ACTIONS(434), - [anon_sym_protected] = ACTIONS(434), - [anon_sym_private] = ACTIONS(434), - [anon_sym_abstract] = ACTIONS(434), - [anon_sym_strictfp] = ACTIONS(434), - [anon_sym_native] = ACTIONS(434), - [anon_sym_transient] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym_sealed] = ACTIONS(434), - [anon_sym_non_DASHsealed] = ACTIONS(432), - [anon_sym_record] = ACTIONS(434), - [anon_sym_ATinterface] = ACTIONS(432), - [anon_sym_interface] = ACTIONS(434), - [anon_sym_byte] = ACTIONS(434), - [anon_sym_short] = ACTIONS(434), - [anon_sym_int] = ACTIONS(434), - [anon_sym_long] = ACTIONS(434), - [anon_sym_char] = ACTIONS(434), - [anon_sym_float] = ACTIONS(434), - [anon_sym_double] = ACTIONS(434), - [sym_boolean_type] = ACTIONS(434), - [sym_void_type] = ACTIONS(434), - [sym_this] = ACTIONS(434), - [sym_super] = ACTIONS(434), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(569), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(404), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [120] = { - [ts_builtin_sym_end] = ACTIONS(436), - [sym_identifier] = ACTIONS(438), - [sym_decimal_integer_literal] = ACTIONS(438), - [sym_hex_integer_literal] = ACTIONS(438), - [sym_octal_integer_literal] = ACTIONS(436), - [sym_binary_integer_literal] = ACTIONS(436), - [sym_decimal_floating_point_literal] = ACTIONS(436), - [sym_hex_floating_point_literal] = ACTIONS(438), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_character_literal] = ACTIONS(436), - [sym_string_literal] = ACTIONS(438), - [sym_text_block] = ACTIONS(436), - [sym_null_literal] = ACTIONS(438), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_final] = ACTIONS(438), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS_PLUS] = ACTIONS(436), - [anon_sym_DASH_DASH] = ACTIONS(436), - [anon_sym_new] = ACTIONS(438), - [anon_sym_class] = ACTIONS(438), - [anon_sym_switch] = ACTIONS(438), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_case] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_assert] = ACTIONS(438), - [anon_sym_do] = ACTIONS(438), - [anon_sym_while] = ACTIONS(438), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(438), - [anon_sym_return] = ACTIONS(438), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_synchronized] = ACTIONS(438), - [anon_sym_throw] = ACTIONS(438), - [anon_sym_try] = ACTIONS(438), - [anon_sym_if] = ACTIONS(438), - [anon_sym_else] = ACTIONS(438), - [anon_sym_for] = ACTIONS(438), - [anon_sym_AT] = ACTIONS(438), - [anon_sym_open] = ACTIONS(438), - [anon_sym_module] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_package] = ACTIONS(438), - [anon_sym_import] = ACTIONS(438), - [anon_sym_enum] = ACTIONS(438), - [anon_sym_public] = ACTIONS(438), - [anon_sym_protected] = ACTIONS(438), - [anon_sym_private] = ACTIONS(438), - [anon_sym_abstract] = ACTIONS(438), - [anon_sym_strictfp] = ACTIONS(438), - [anon_sym_native] = ACTIONS(438), - [anon_sym_transient] = ACTIONS(438), - [anon_sym_volatile] = ACTIONS(438), - [anon_sym_sealed] = ACTIONS(438), - [anon_sym_non_DASHsealed] = ACTIONS(436), - [anon_sym_record] = ACTIONS(438), - [anon_sym_ATinterface] = ACTIONS(436), - [anon_sym_interface] = ACTIONS(438), - [anon_sym_byte] = ACTIONS(438), - [anon_sym_short] = ACTIONS(438), - [anon_sym_int] = ACTIONS(438), - [anon_sym_long] = ACTIONS(438), - [anon_sym_char] = ACTIONS(438), - [anon_sym_float] = ACTIONS(438), - [anon_sym_double] = ACTIONS(438), - [sym_boolean_type] = ACTIONS(438), - [sym_void_type] = ACTIONS(438), - [sym_this] = ACTIONS(438), - [sym_super] = ACTIONS(438), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(596), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(406), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [121] = { - [ts_builtin_sym_end] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [sym_decimal_integer_literal] = ACTIONS(442), - [sym_hex_integer_literal] = ACTIONS(442), - [sym_octal_integer_literal] = ACTIONS(440), - [sym_binary_integer_literal] = ACTIONS(440), - [sym_decimal_floating_point_literal] = ACTIONS(440), - [sym_hex_floating_point_literal] = ACTIONS(442), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_character_literal] = ACTIONS(440), - [sym_string_literal] = ACTIONS(442), - [sym_text_block] = ACTIONS(440), - [sym_null_literal] = ACTIONS(442), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_final] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_new] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_assert] = ACTIONS(442), - [anon_sym_do] = ACTIONS(442), - [anon_sym_while] = ACTIONS(442), - [anon_sym_break] = ACTIONS(442), - [anon_sym_continue] = ACTIONS(442), - [anon_sym_return] = ACTIONS(442), - [anon_sym_yield] = ACTIONS(442), - [anon_sym_synchronized] = ACTIONS(442), - [anon_sym_throw] = ACTIONS(442), - [anon_sym_try] = ACTIONS(442), - [anon_sym_if] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_for] = ACTIONS(442), - [anon_sym_AT] = ACTIONS(442), - [anon_sym_open] = ACTIONS(442), - [anon_sym_module] = ACTIONS(442), - [anon_sym_static] = ACTIONS(442), - [anon_sym_package] = ACTIONS(442), - [anon_sym_import] = ACTIONS(442), - [anon_sym_enum] = ACTIONS(442), - [anon_sym_public] = ACTIONS(442), - [anon_sym_protected] = ACTIONS(442), - [anon_sym_private] = ACTIONS(442), - [anon_sym_abstract] = ACTIONS(442), - [anon_sym_strictfp] = ACTIONS(442), - [anon_sym_native] = ACTIONS(442), - [anon_sym_transient] = ACTIONS(442), - [anon_sym_volatile] = ACTIONS(442), - [anon_sym_sealed] = ACTIONS(442), - [anon_sym_non_DASHsealed] = ACTIONS(440), - [anon_sym_record] = ACTIONS(442), - [anon_sym_ATinterface] = ACTIONS(440), - [anon_sym_interface] = ACTIONS(442), - [anon_sym_byte] = ACTIONS(442), - [anon_sym_short] = ACTIONS(442), - [anon_sym_int] = ACTIONS(442), - [anon_sym_long] = ACTIONS(442), - [anon_sym_char] = ACTIONS(442), - [anon_sym_float] = ACTIONS(442), - [anon_sym_double] = ACTIONS(442), - [sym_boolean_type] = ACTIONS(442), - [sym_void_type] = ACTIONS(442), - [sym_this] = ACTIONS(442), - [sym_super] = ACTIONS(442), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(408), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [122] = { - [ts_builtin_sym_end] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_decimal_integer_literal] = ACTIONS(446), - [sym_hex_integer_literal] = ACTIONS(446), - [sym_octal_integer_literal] = ACTIONS(444), - [sym_binary_integer_literal] = ACTIONS(444), - [sym_decimal_floating_point_literal] = ACTIONS(444), - [sym_hex_floating_point_literal] = ACTIONS(446), - [sym_true] = ACTIONS(446), - [sym_false] = ACTIONS(446), - [sym_character_literal] = ACTIONS(444), - [sym_string_literal] = ACTIONS(446), - [sym_text_block] = ACTIONS(444), - [sym_null_literal] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_final] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_new] = ACTIONS(446), - [anon_sym_class] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(446), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(446), - [anon_sym_default] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_assert] = ACTIONS(446), - [anon_sym_do] = ACTIONS(446), - [anon_sym_while] = ACTIONS(446), - [anon_sym_break] = ACTIONS(446), - [anon_sym_continue] = ACTIONS(446), - [anon_sym_return] = ACTIONS(446), - [anon_sym_yield] = ACTIONS(446), - [anon_sym_synchronized] = ACTIONS(446), - [anon_sym_throw] = ACTIONS(446), - [anon_sym_try] = ACTIONS(446), - [anon_sym_if] = ACTIONS(446), - [anon_sym_else] = ACTIONS(446), - [anon_sym_for] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(446), - [anon_sym_open] = ACTIONS(446), - [anon_sym_module] = ACTIONS(446), - [anon_sym_static] = ACTIONS(446), - [anon_sym_package] = ACTIONS(446), - [anon_sym_import] = ACTIONS(446), - [anon_sym_enum] = ACTIONS(446), - [anon_sym_public] = ACTIONS(446), - [anon_sym_protected] = ACTIONS(446), - [anon_sym_private] = ACTIONS(446), - [anon_sym_abstract] = ACTIONS(446), - [anon_sym_strictfp] = ACTIONS(446), - [anon_sym_native] = ACTIONS(446), - [anon_sym_transient] = ACTIONS(446), - [anon_sym_volatile] = ACTIONS(446), - [anon_sym_sealed] = ACTIONS(446), - [anon_sym_non_DASHsealed] = ACTIONS(444), - [anon_sym_record] = ACTIONS(446), - [anon_sym_ATinterface] = ACTIONS(444), - [anon_sym_interface] = ACTIONS(446), - [anon_sym_byte] = ACTIONS(446), - [anon_sym_short] = ACTIONS(446), - [anon_sym_int] = ACTIONS(446), - [anon_sym_long] = ACTIONS(446), - [anon_sym_char] = ACTIONS(446), - [anon_sym_float] = ACTIONS(446), - [anon_sym_double] = ACTIONS(446), - [sym_boolean_type] = ACTIONS(446), - [sym_void_type] = ACTIONS(446), - [sym_this] = ACTIONS(446), - [sym_super] = ACTIONS(446), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(574), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(410), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [123] = { - [ts_builtin_sym_end] = ACTIONS(448), - [sym_identifier] = ACTIONS(450), - [sym_decimal_integer_literal] = ACTIONS(450), - [sym_hex_integer_literal] = ACTIONS(450), - [sym_octal_integer_literal] = ACTIONS(448), - [sym_binary_integer_literal] = ACTIONS(448), - [sym_decimal_floating_point_literal] = ACTIONS(448), - [sym_hex_floating_point_literal] = ACTIONS(450), - [sym_true] = ACTIONS(450), - [sym_false] = ACTIONS(450), - [sym_character_literal] = ACTIONS(448), - [sym_string_literal] = ACTIONS(450), - [sym_text_block] = ACTIONS(448), - [sym_null_literal] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_final] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(448), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [anon_sym_new] = ACTIONS(450), - [anon_sym_class] = ACTIONS(450), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_case] = ACTIONS(450), - [anon_sym_default] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(448), - [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_else] = 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_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(448), - [anon_sym_record] = ACTIONS(450), - [anon_sym_ATinterface] = ACTIONS(448), - [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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(626), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [124] = { - [ts_builtin_sym_end] = ACTIONS(452), - [sym_identifier] = ACTIONS(454), - [sym_decimal_integer_literal] = ACTIONS(454), - [sym_hex_integer_literal] = ACTIONS(454), - [sym_octal_integer_literal] = ACTIONS(452), - [sym_binary_integer_literal] = ACTIONS(452), - [sym_decimal_floating_point_literal] = ACTIONS(452), - [sym_hex_floating_point_literal] = ACTIONS(454), - [sym_true] = ACTIONS(454), - [sym_false] = ACTIONS(454), - [sym_character_literal] = ACTIONS(452), - [sym_string_literal] = ACTIONS(454), - [sym_text_block] = ACTIONS(452), - [sym_null_literal] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_final] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(452), - [anon_sym_DASH_DASH] = ACTIONS(452), - [anon_sym_new] = ACTIONS(454), - [anon_sym_class] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_case] = ACTIONS(454), - [anon_sym_default] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_assert] = ACTIONS(454), - [anon_sym_do] = ACTIONS(454), - [anon_sym_while] = ACTIONS(454), - [anon_sym_break] = ACTIONS(454), - [anon_sym_continue] = ACTIONS(454), - [anon_sym_return] = ACTIONS(454), - [anon_sym_yield] = ACTIONS(454), - [anon_sym_synchronized] = ACTIONS(454), - [anon_sym_throw] = ACTIONS(454), - [anon_sym_try] = ACTIONS(454), - [anon_sym_if] = ACTIONS(454), - [anon_sym_else] = ACTIONS(454), - [anon_sym_for] = ACTIONS(454), - [anon_sym_AT] = ACTIONS(454), - [anon_sym_open] = ACTIONS(454), - [anon_sym_module] = ACTIONS(454), - [anon_sym_static] = ACTIONS(454), - [anon_sym_package] = ACTIONS(454), - [anon_sym_import] = ACTIONS(454), - [anon_sym_enum] = ACTIONS(454), - [anon_sym_public] = ACTIONS(454), - [anon_sym_protected] = ACTIONS(454), - [anon_sym_private] = ACTIONS(454), - [anon_sym_abstract] = ACTIONS(454), - [anon_sym_strictfp] = ACTIONS(454), - [anon_sym_native] = ACTIONS(454), - [anon_sym_transient] = ACTIONS(454), - [anon_sym_volatile] = ACTIONS(454), - [anon_sym_sealed] = ACTIONS(454), - [anon_sym_non_DASHsealed] = ACTIONS(452), - [anon_sym_record] = ACTIONS(454), - [anon_sym_ATinterface] = ACTIONS(452), - [anon_sym_interface] = ACTIONS(454), - [anon_sym_byte] = ACTIONS(454), - [anon_sym_short] = ACTIONS(454), - [anon_sym_int] = ACTIONS(454), - [anon_sym_long] = ACTIONS(454), - [anon_sym_char] = ACTIONS(454), - [anon_sym_float] = ACTIONS(454), - [anon_sym_double] = ACTIONS(454), - [sym_boolean_type] = ACTIONS(454), - [sym_void_type] = ACTIONS(454), - [sym_this] = ACTIONS(454), - [sym_super] = ACTIONS(454), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(575), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(414), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(456), - [sym_identifier] = ACTIONS(458), - [sym_decimal_integer_literal] = ACTIONS(458), - [sym_hex_integer_literal] = ACTIONS(458), - [sym_octal_integer_literal] = ACTIONS(456), - [sym_binary_integer_literal] = ACTIONS(456), - [sym_decimal_floating_point_literal] = ACTIONS(456), - [sym_hex_floating_point_literal] = ACTIONS(458), - [sym_true] = ACTIONS(458), - [sym_false] = ACTIONS(458), - [sym_character_literal] = ACTIONS(456), - [sym_string_literal] = ACTIONS(458), - [sym_text_block] = ACTIONS(456), - [sym_null_literal] = ACTIONS(458), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_final] = ACTIONS(458), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), - [anon_sym_new] = ACTIONS(458), - [anon_sym_class] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(456), - [anon_sym_RBRACE] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_assert] = ACTIONS(458), - [anon_sym_do] = ACTIONS(458), - [anon_sym_while] = ACTIONS(458), - [anon_sym_break] = ACTIONS(458), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_return] = ACTIONS(458), - [anon_sym_yield] = ACTIONS(458), - [anon_sym_synchronized] = ACTIONS(458), - [anon_sym_throw] = ACTIONS(458), - [anon_sym_try] = ACTIONS(458), - [anon_sym_if] = ACTIONS(458), - [anon_sym_else] = ACTIONS(458), - [anon_sym_for] = ACTIONS(458), - [anon_sym_AT] = ACTIONS(458), - [anon_sym_open] = ACTIONS(458), - [anon_sym_module] = ACTIONS(458), - [anon_sym_static] = ACTIONS(458), - [anon_sym_package] = ACTIONS(458), - [anon_sym_import] = ACTIONS(458), - [anon_sym_enum] = ACTIONS(458), - [anon_sym_public] = ACTIONS(458), - [anon_sym_protected] = ACTIONS(458), - [anon_sym_private] = ACTIONS(458), - [anon_sym_abstract] = ACTIONS(458), - [anon_sym_strictfp] = ACTIONS(458), - [anon_sym_native] = ACTIONS(458), - [anon_sym_transient] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym_sealed] = ACTIONS(458), - [anon_sym_non_DASHsealed] = ACTIONS(456), - [anon_sym_record] = ACTIONS(458), - [anon_sym_ATinterface] = ACTIONS(456), - [anon_sym_interface] = ACTIONS(458), - [anon_sym_byte] = ACTIONS(458), - [anon_sym_short] = ACTIONS(458), - [anon_sym_int] = ACTIONS(458), - [anon_sym_long] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_float] = ACTIONS(458), - [anon_sym_double] = ACTIONS(458), - [sym_boolean_type] = ACTIONS(458), - [sym_void_type] = ACTIONS(458), - [sym_this] = ACTIONS(458), - [sym_super] = ACTIONS(458), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_identifier] = ACTIONS(462), - [sym_decimal_integer_literal] = ACTIONS(462), - [sym_hex_integer_literal] = ACTIONS(462), - [sym_octal_integer_literal] = ACTIONS(460), - [sym_binary_integer_literal] = ACTIONS(460), - [sym_decimal_floating_point_literal] = ACTIONS(460), - [sym_hex_floating_point_literal] = ACTIONS(462), - [sym_true] = ACTIONS(462), - [sym_false] = ACTIONS(462), - [sym_character_literal] = ACTIONS(460), - [sym_string_literal] = ACTIONS(462), - [sym_text_block] = ACTIONS(460), - [sym_null_literal] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_final] = ACTIONS(462), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_TILDE] = ACTIONS(460), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_new] = ACTIONS(462), - [anon_sym_class] = ACTIONS(462), - [anon_sym_switch] = ACTIONS(462), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_case] = ACTIONS(462), - [anon_sym_default] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(460), - [anon_sym_assert] = ACTIONS(462), - [anon_sym_do] = ACTIONS(462), - [anon_sym_while] = ACTIONS(462), - [anon_sym_break] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(462), - [anon_sym_return] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_throw] = ACTIONS(462), - [anon_sym_try] = ACTIONS(462), - [anon_sym_if] = ACTIONS(462), - [anon_sym_else] = ACTIONS(462), - [anon_sym_for] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(462), - [anon_sym_open] = ACTIONS(462), - [anon_sym_module] = ACTIONS(462), - [anon_sym_static] = ACTIONS(462), - [anon_sym_package] = ACTIONS(462), - [anon_sym_import] = ACTIONS(462), - [anon_sym_enum] = ACTIONS(462), - [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(462), - [anon_sym_non_DASHsealed] = ACTIONS(460), - [anon_sym_record] = ACTIONS(462), - [anon_sym_ATinterface] = ACTIONS(460), - [anon_sym_interface] = ACTIONS(462), - [anon_sym_byte] = ACTIONS(462), - [anon_sym_short] = ACTIONS(462), - [anon_sym_int] = ACTIONS(462), - [anon_sym_long] = ACTIONS(462), - [anon_sym_char] = ACTIONS(462), - [anon_sym_float] = ACTIONS(462), - [anon_sym_double] = ACTIONS(462), - [sym_boolean_type] = ACTIONS(462), - [sym_void_type] = ACTIONS(462), - [sym_this] = ACTIONS(462), - [sym_super] = ACTIONS(462), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [127] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(608), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(558), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym__element_value] = STATE(1170), - [sym_element_value_array_initializer] = STATE(1170), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -24324,1339 +25387,1517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(464), - [sym_identifier] = ACTIONS(466), - [sym_decimal_integer_literal] = ACTIONS(466), - [sym_hex_integer_literal] = ACTIONS(466), - [sym_octal_integer_literal] = ACTIONS(464), - [sym_binary_integer_literal] = ACTIONS(464), - [sym_decimal_floating_point_literal] = ACTIONS(464), - [sym_hex_floating_point_literal] = ACTIONS(466), - [sym_true] = ACTIONS(466), - [sym_false] = ACTIONS(466), - [sym_character_literal] = ACTIONS(464), - [sym_string_literal] = ACTIONS(466), - [sym_text_block] = ACTIONS(464), - [sym_null_literal] = ACTIONS(466), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_final] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(464), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_PLUS_PLUS] = ACTIONS(464), - [anon_sym_DASH_DASH] = ACTIONS(464), - [anon_sym_new] = ACTIONS(466), - [anon_sym_class] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_LBRACE] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_case] = ACTIONS(466), - [anon_sym_default] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_assert] = ACTIONS(466), - [anon_sym_do] = ACTIONS(466), - [anon_sym_while] = ACTIONS(466), - [anon_sym_break] = ACTIONS(466), - [anon_sym_continue] = ACTIONS(466), - [anon_sym_return] = ACTIONS(466), - [anon_sym_yield] = ACTIONS(466), - [anon_sym_synchronized] = ACTIONS(466), - [anon_sym_throw] = ACTIONS(466), - [anon_sym_try] = ACTIONS(466), - [anon_sym_if] = ACTIONS(466), - [anon_sym_else] = ACTIONS(466), - [anon_sym_for] = ACTIONS(466), - [anon_sym_AT] = ACTIONS(466), - [anon_sym_open] = ACTIONS(466), - [anon_sym_module] = ACTIONS(466), - [anon_sym_static] = ACTIONS(466), - [anon_sym_package] = ACTIONS(466), - [anon_sym_import] = ACTIONS(466), - [anon_sym_enum] = ACTIONS(466), - [anon_sym_public] = ACTIONS(466), - [anon_sym_protected] = ACTIONS(466), - [anon_sym_private] = ACTIONS(466), - [anon_sym_abstract] = ACTIONS(466), - [anon_sym_strictfp] = ACTIONS(466), - [anon_sym_native] = ACTIONS(466), - [anon_sym_transient] = ACTIONS(466), - [anon_sym_volatile] = ACTIONS(466), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(464), - [anon_sym_record] = ACTIONS(466), - [anon_sym_ATinterface] = ACTIONS(464), - [anon_sym_interface] = ACTIONS(466), - [anon_sym_byte] = ACTIONS(466), - [anon_sym_short] = ACTIONS(466), - [anon_sym_int] = ACTIONS(466), - [anon_sym_long] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_float] = ACTIONS(466), - [anon_sym_double] = ACTIONS(466), - [sym_boolean_type] = ACTIONS(466), - [sym_void_type] = ACTIONS(466), - [sym_this] = ACTIONS(466), - [sym_super] = ACTIONS(466), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), + [126] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(598), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(418), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [127] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(420), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [128] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), }, [129] = { - [ts_builtin_sym_end] = ACTIONS(468), - [sym_identifier] = ACTIONS(470), - [sym_decimal_integer_literal] = ACTIONS(470), - [sym_hex_integer_literal] = ACTIONS(470), - [sym_octal_integer_literal] = ACTIONS(468), - [sym_binary_integer_literal] = ACTIONS(468), - [sym_decimal_floating_point_literal] = ACTIONS(468), - [sym_hex_floating_point_literal] = ACTIONS(470), - [sym_true] = ACTIONS(470), - [sym_false] = ACTIONS(470), - [sym_character_literal] = ACTIONS(468), - [sym_string_literal] = ACTIONS(470), - [sym_text_block] = ACTIONS(468), - [sym_null_literal] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_final] = ACTIONS(470), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(468), - [anon_sym_PLUS_PLUS] = ACTIONS(468), - [anon_sym_DASH_DASH] = ACTIONS(468), - [anon_sym_new] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_RBRACE] = ACTIONS(468), - [anon_sym_case] = ACTIONS(470), - [anon_sym_default] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_assert] = ACTIONS(470), - [anon_sym_do] = ACTIONS(470), - [anon_sym_while] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_return] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(470), - [anon_sym_synchronized] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_try] = ACTIONS(470), - [anon_sym_if] = ACTIONS(470), - [anon_sym_else] = ACTIONS(470), - [anon_sym_for] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_open] = ACTIONS(470), - [anon_sym_module] = ACTIONS(470), - [anon_sym_static] = ACTIONS(470), - [anon_sym_package] = ACTIONS(470), - [anon_sym_import] = ACTIONS(470), - [anon_sym_enum] = ACTIONS(470), - [anon_sym_public] = ACTIONS(470), - [anon_sym_protected] = ACTIONS(470), - [anon_sym_private] = ACTIONS(470), - [anon_sym_abstract] = ACTIONS(470), - [anon_sym_strictfp] = ACTIONS(470), - [anon_sym_native] = ACTIONS(470), - [anon_sym_transient] = ACTIONS(470), - [anon_sym_volatile] = ACTIONS(470), - [anon_sym_sealed] = ACTIONS(470), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(470), - [anon_sym_ATinterface] = ACTIONS(468), - [anon_sym_interface] = ACTIONS(470), - [anon_sym_byte] = ACTIONS(470), - [anon_sym_short] = ACTIONS(470), - [anon_sym_int] = ACTIONS(470), - [anon_sym_long] = ACTIONS(470), - [anon_sym_char] = ACTIONS(470), - [anon_sym_float] = ACTIONS(470), - [anon_sym_double] = ACTIONS(470), - [sym_boolean_type] = ACTIONS(470), - [sym_void_type] = ACTIONS(470), - [sym_this] = ACTIONS(470), - [sym_super] = ACTIONS(470), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(576), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(424), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(472), - [sym_identifier] = ACTIONS(474), - [sym_decimal_integer_literal] = ACTIONS(474), - [sym_hex_integer_literal] = ACTIONS(474), - [sym_octal_integer_literal] = ACTIONS(472), - [sym_binary_integer_literal] = ACTIONS(472), - [sym_decimal_floating_point_literal] = ACTIONS(472), - [sym_hex_floating_point_literal] = ACTIONS(474), - [sym_true] = ACTIONS(474), - [sym_false] = ACTIONS(474), - [sym_character_literal] = ACTIONS(472), - [sym_string_literal] = ACTIONS(474), - [sym_text_block] = ACTIONS(472), - [sym_null_literal] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_final] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(472), - [anon_sym_DASH_DASH] = ACTIONS(472), - [anon_sym_new] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_case] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_assert] = ACTIONS(474), - [anon_sym_do] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [anon_sym_break] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_yield] = ACTIONS(474), - [anon_sym_synchronized] = ACTIONS(474), - [anon_sym_throw] = ACTIONS(474), - [anon_sym_try] = ACTIONS(474), - [anon_sym_if] = ACTIONS(474), - [anon_sym_else] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_open] = ACTIONS(474), - [anon_sym_module] = ACTIONS(474), - [anon_sym_static] = ACTIONS(474), - [anon_sym_package] = ACTIONS(474), - [anon_sym_import] = ACTIONS(474), - [anon_sym_enum] = ACTIONS(474), - [anon_sym_public] = ACTIONS(474), - [anon_sym_protected] = ACTIONS(474), - [anon_sym_private] = ACTIONS(474), - [anon_sym_abstract] = ACTIONS(474), - [anon_sym_strictfp] = ACTIONS(474), - [anon_sym_native] = ACTIONS(474), - [anon_sym_transient] = ACTIONS(474), - [anon_sym_volatile] = ACTIONS(474), - [anon_sym_sealed] = ACTIONS(474), - [anon_sym_non_DASHsealed] = ACTIONS(472), - [anon_sym_record] = ACTIONS(474), - [anon_sym_ATinterface] = ACTIONS(472), - [anon_sym_interface] = ACTIONS(474), - [anon_sym_byte] = ACTIONS(474), - [anon_sym_short] = ACTIONS(474), - [anon_sym_int] = ACTIONS(474), - [anon_sym_long] = ACTIONS(474), - [anon_sym_char] = ACTIONS(474), - [anon_sym_float] = ACTIONS(474), - [anon_sym_double] = ACTIONS(474), - [sym_boolean_type] = ACTIONS(474), - [sym_void_type] = ACTIONS(474), - [sym_this] = ACTIONS(474), - [sym_super] = ACTIONS(474), + [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(426), + [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), + [sym_null_literal] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_final] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(426), + [anon_sym_DASH_DASH] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_class] = ACTIONS(428), + [anon_sym_switch] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_case] = ACTIONS(428), + [anon_sym_default] = 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_catch] = ACTIONS(428), + [anon_sym_finally] = 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_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), }, [131] = { - [ts_builtin_sym_end] = ACTIONS(476), - [sym_identifier] = ACTIONS(478), - [sym_decimal_integer_literal] = ACTIONS(478), - [sym_hex_integer_literal] = ACTIONS(478), - [sym_octal_integer_literal] = ACTIONS(476), - [sym_binary_integer_literal] = ACTIONS(476), - [sym_decimal_floating_point_literal] = ACTIONS(476), - [sym_hex_floating_point_literal] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_character_literal] = ACTIONS(476), - [sym_string_literal] = ACTIONS(478), - [sym_text_block] = ACTIONS(476), - [sym_null_literal] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_final] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [anon_sym_new] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_case] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(476), - [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_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(476), - [anon_sym_record] = ACTIONS(478), - [anon_sym_ATinterface] = ACTIONS(476), - [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__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(430), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [132] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(482), - [sym_decimal_integer_literal] = ACTIONS(482), - [sym_hex_integer_literal] = ACTIONS(482), - [sym_octal_integer_literal] = ACTIONS(480), - [sym_binary_integer_literal] = ACTIONS(480), - [sym_decimal_floating_point_literal] = ACTIONS(480), - [sym_hex_floating_point_literal] = ACTIONS(482), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_character_literal] = ACTIONS(480), - [sym_string_literal] = ACTIONS(482), - [sym_text_block] = ACTIONS(480), - [sym_null_literal] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_final] = ACTIONS(482), - [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(482), - [anon_sym_class] = ACTIONS(482), - [anon_sym_switch] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_case] = ACTIONS(482), - [anon_sym_default] = ACTIONS(482), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_assert] = ACTIONS(482), - [anon_sym_do] = ACTIONS(482), - [anon_sym_while] = ACTIONS(482), - [anon_sym_break] = ACTIONS(482), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_return] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_synchronized] = ACTIONS(482), - [anon_sym_throw] = ACTIONS(482), - [anon_sym_try] = ACTIONS(482), - [anon_sym_if] = ACTIONS(482), - [anon_sym_else] = ACTIONS(482), - [anon_sym_for] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(482), - [anon_sym_open] = ACTIONS(482), - [anon_sym_module] = ACTIONS(482), - [anon_sym_static] = ACTIONS(482), - [anon_sym_package] = ACTIONS(482), - [anon_sym_import] = ACTIONS(482), - [anon_sym_enum] = ACTIONS(482), - [anon_sym_public] = ACTIONS(482), - [anon_sym_protected] = ACTIONS(482), - [anon_sym_private] = ACTIONS(482), - [anon_sym_abstract] = ACTIONS(482), - [anon_sym_strictfp] = ACTIONS(482), - [anon_sym_native] = ACTIONS(482), - [anon_sym_transient] = ACTIONS(482), - [anon_sym_volatile] = ACTIONS(482), - [anon_sym_sealed] = ACTIONS(482), - [anon_sym_non_DASHsealed] = ACTIONS(480), - [anon_sym_record] = ACTIONS(482), - [anon_sym_ATinterface] = ACTIONS(480), - [anon_sym_interface] = ACTIONS(482), - [anon_sym_byte] = ACTIONS(482), - [anon_sym_short] = ACTIONS(482), - [anon_sym_int] = ACTIONS(482), - [anon_sym_long] = ACTIONS(482), - [anon_sym_char] = ACTIONS(482), - [anon_sym_float] = ACTIONS(482), - [anon_sym_double] = ACTIONS(482), - [sym_boolean_type] = ACTIONS(482), - [sym_void_type] = ACTIONS(482), - [sym_this] = ACTIONS(482), - [sym_super] = ACTIONS(482), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(630), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [133] = { - [ts_builtin_sym_end] = ACTIONS(484), - [sym_identifier] = ACTIONS(486), - [sym_decimal_integer_literal] = ACTIONS(486), - [sym_hex_integer_literal] = ACTIONS(486), - [sym_octal_integer_literal] = ACTIONS(484), - [sym_binary_integer_literal] = ACTIONS(484), - [sym_decimal_floating_point_literal] = ACTIONS(484), - [sym_hex_floating_point_literal] = ACTIONS(486), - [sym_true] = ACTIONS(486), - [sym_false] = ACTIONS(486), - [sym_character_literal] = ACTIONS(484), - [sym_string_literal] = ACTIONS(486), - [sym_text_block] = ACTIONS(484), - [sym_null_literal] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_final] = ACTIONS(486), - [anon_sym_BANG] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(484), - [anon_sym_PLUS_PLUS] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(484), - [anon_sym_new] = ACTIONS(486), - [anon_sym_class] = ACTIONS(486), - [anon_sym_switch] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_case] = ACTIONS(486), - [anon_sym_default] = ACTIONS(486), - [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_do] = ACTIONS(486), - [anon_sym_while] = ACTIONS(486), - [anon_sym_break] = ACTIONS(486), - [anon_sym_continue] = ACTIONS(486), - [anon_sym_return] = ACTIONS(486), - [anon_sym_yield] = ACTIONS(486), - [anon_sym_synchronized] = ACTIONS(486), - [anon_sym_throw] = ACTIONS(486), - [anon_sym_try] = ACTIONS(486), - [anon_sym_if] = ACTIONS(486), - [anon_sym_else] = ACTIONS(486), - [anon_sym_for] = ACTIONS(486), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_open] = ACTIONS(486), - [anon_sym_module] = ACTIONS(486), - [anon_sym_static] = ACTIONS(486), - [anon_sym_package] = ACTIONS(486), - [anon_sym_import] = ACTIONS(486), - [anon_sym_enum] = ACTIONS(486), - [anon_sym_public] = ACTIONS(486), - [anon_sym_protected] = ACTIONS(486), - [anon_sym_private] = ACTIONS(486), - [anon_sym_abstract] = ACTIONS(486), - [anon_sym_strictfp] = ACTIONS(486), - [anon_sym_native] = ACTIONS(486), - [anon_sym_transient] = ACTIONS(486), - [anon_sym_volatile] = ACTIONS(486), - [anon_sym_sealed] = ACTIONS(486), - [anon_sym_non_DASHsealed] = ACTIONS(484), - [anon_sym_record] = ACTIONS(486), - [anon_sym_ATinterface] = ACTIONS(484), - [anon_sym_interface] = ACTIONS(486), - [anon_sym_byte] = ACTIONS(486), - [anon_sym_short] = ACTIONS(486), - [anon_sym_int] = ACTIONS(486), - [anon_sym_long] = ACTIONS(486), - [anon_sym_char] = ACTIONS(486), - [anon_sym_float] = ACTIONS(486), - [anon_sym_double] = ACTIONS(486), - [sym_boolean_type] = ACTIONS(486), - [sym_void_type] = ACTIONS(486), - [sym_this] = ACTIONS(486), - [sym_super] = ACTIONS(486), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(588), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(434), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [134] = { - [ts_builtin_sym_end] = ACTIONS(488), - [sym_identifier] = ACTIONS(490), - [sym_decimal_integer_literal] = ACTIONS(490), - [sym_hex_integer_literal] = ACTIONS(490), - [sym_octal_integer_literal] = ACTIONS(488), - [sym_binary_integer_literal] = ACTIONS(488), - [sym_decimal_floating_point_literal] = ACTIONS(488), - [sym_hex_floating_point_literal] = ACTIONS(490), - [sym_true] = ACTIONS(490), - [sym_false] = ACTIONS(490), - [sym_character_literal] = ACTIONS(488), - [sym_string_literal] = ACTIONS(490), - [sym_text_block] = ACTIONS(488), - [sym_null_literal] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_final] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_PLUS_PLUS] = ACTIONS(488), - [anon_sym_DASH_DASH] = ACTIONS(488), - [anon_sym_new] = ACTIONS(490), - [anon_sym_class] = ACTIONS(490), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_case] = ACTIONS(490), - [anon_sym_default] = ACTIONS(490), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_assert] = ACTIONS(490), - [anon_sym_do] = ACTIONS(490), - [anon_sym_while] = ACTIONS(490), - [anon_sym_break] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_return] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_synchronized] = ACTIONS(490), - [anon_sym_throw] = ACTIONS(490), - [anon_sym_try] = ACTIONS(490), - [anon_sym_if] = ACTIONS(490), - [anon_sym_else] = ACTIONS(490), - [anon_sym_for] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(490), - [anon_sym_open] = ACTIONS(490), - [anon_sym_module] = ACTIONS(490), - [anon_sym_static] = ACTIONS(490), - [anon_sym_package] = ACTIONS(490), - [anon_sym_import] = ACTIONS(490), - [anon_sym_enum] = ACTIONS(490), - [anon_sym_public] = ACTIONS(490), - [anon_sym_protected] = ACTIONS(490), - [anon_sym_private] = ACTIONS(490), - [anon_sym_abstract] = ACTIONS(490), - [anon_sym_strictfp] = ACTIONS(490), - [anon_sym_native] = ACTIONS(490), - [anon_sym_transient] = ACTIONS(490), - [anon_sym_volatile] = ACTIONS(490), - [anon_sym_sealed] = ACTIONS(490), - [anon_sym_non_DASHsealed] = ACTIONS(488), - [anon_sym_record] = ACTIONS(490), - [anon_sym_ATinterface] = ACTIONS(488), - [anon_sym_interface] = ACTIONS(490), - [anon_sym_byte] = ACTIONS(490), - [anon_sym_short] = ACTIONS(490), - [anon_sym_int] = ACTIONS(490), - [anon_sym_long] = ACTIONS(490), - [anon_sym_char] = ACTIONS(490), - [anon_sym_float] = ACTIONS(490), - [anon_sym_double] = ACTIONS(490), - [sym_boolean_type] = ACTIONS(490), - [sym_void_type] = ACTIONS(490), - [sym_this] = ACTIONS(490), - [sym_super] = ACTIONS(490), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_identifier] = ACTIONS(289), + [sym_decimal_integer_literal] = ACTIONS(289), + [sym_hex_integer_literal] = ACTIONS(289), + [sym_octal_integer_literal] = ACTIONS(287), + [sym_binary_integer_literal] = ACTIONS(287), + [sym_decimal_floating_point_literal] = ACTIONS(287), + [sym_hex_floating_point_literal] = ACTIONS(289), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + [sym_character_literal] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [sym_null_literal] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_final] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_new] = ACTIONS(289), + [anon_sym_class] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_case] = ACTIONS(289), + [anon_sym_default] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_synchronized] = ACTIONS(289), + [anon_sym_throw] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_finally] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_static] = ACTIONS(289), + [anon_sym_package] = ACTIONS(289), + [anon_sym_import] = ACTIONS(289), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_public] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_abstract] = ACTIONS(289), + [anon_sym_strictfp] = ACTIONS(289), + [anon_sym_native] = ACTIONS(289), + [anon_sym_transient] = ACTIONS(289), + [anon_sym_volatile] = ACTIONS(289), + [anon_sym_sealed] = ACTIONS(289), + [anon_sym_non_DASHsealed] = ACTIONS(287), + [anon_sym_record] = ACTIONS(289), + [anon_sym_ATinterface] = ACTIONS(287), + [anon_sym_interface] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(289), + [anon_sym_short] = ACTIONS(289), + [anon_sym_int] = ACTIONS(289), + [anon_sym_long] = ACTIONS(289), + [anon_sym_char] = ACTIONS(289), + [anon_sym_float] = ACTIONS(289), + [anon_sym_double] = ACTIONS(289), + [sym_boolean_type] = ACTIONS(289), + [sym_void_type] = ACTIONS(289), + [sym_this] = ACTIONS(289), + [sym_super] = ACTIONS(289), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(492), - [sym_identifier] = ACTIONS(494), - [sym_decimal_integer_literal] = ACTIONS(494), - [sym_hex_integer_literal] = ACTIONS(494), - [sym_octal_integer_literal] = ACTIONS(492), - [sym_binary_integer_literal] = ACTIONS(492), - [sym_decimal_floating_point_literal] = ACTIONS(492), - [sym_hex_floating_point_literal] = ACTIONS(494), - [sym_true] = ACTIONS(494), - [sym_false] = ACTIONS(494), - [sym_character_literal] = ACTIONS(492), - [sym_string_literal] = ACTIONS(494), - [sym_text_block] = ACTIONS(492), - [sym_null_literal] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_final] = ACTIONS(494), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(492), - [anon_sym_PLUS_PLUS] = ACTIONS(492), - [anon_sym_DASH_DASH] = ACTIONS(492), - [anon_sym_new] = ACTIONS(494), - [anon_sym_class] = ACTIONS(494), - [anon_sym_switch] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_case] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_assert] = ACTIONS(494), - [anon_sym_do] = ACTIONS(494), - [anon_sym_while] = ACTIONS(494), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), - [anon_sym_return] = ACTIONS(494), - [anon_sym_yield] = ACTIONS(494), - [anon_sym_synchronized] = ACTIONS(494), - [anon_sym_throw] = ACTIONS(494), - [anon_sym_try] = ACTIONS(494), - [anon_sym_if] = ACTIONS(494), - [anon_sym_else] = ACTIONS(494), - [anon_sym_for] = ACTIONS(494), - [anon_sym_AT] = ACTIONS(494), - [anon_sym_open] = ACTIONS(494), - [anon_sym_module] = ACTIONS(494), - [anon_sym_static] = ACTIONS(494), - [anon_sym_package] = ACTIONS(494), - [anon_sym_import] = ACTIONS(494), - [anon_sym_enum] = ACTIONS(494), - [anon_sym_public] = ACTIONS(494), - [anon_sym_protected] = ACTIONS(494), - [anon_sym_private] = ACTIONS(494), - [anon_sym_abstract] = ACTIONS(494), - [anon_sym_strictfp] = ACTIONS(494), - [anon_sym_native] = ACTIONS(494), - [anon_sym_transient] = ACTIONS(494), - [anon_sym_volatile] = ACTIONS(494), - [anon_sym_sealed] = ACTIONS(494), - [anon_sym_non_DASHsealed] = ACTIONS(492), - [anon_sym_record] = ACTIONS(494), - [anon_sym_ATinterface] = ACTIONS(492), - [anon_sym_interface] = ACTIONS(494), - [anon_sym_byte] = ACTIONS(494), - [anon_sym_short] = ACTIONS(494), - [anon_sym_int] = ACTIONS(494), - [anon_sym_long] = ACTIONS(494), - [anon_sym_char] = ACTIONS(494), - [anon_sym_float] = ACTIONS(494), - [anon_sym_double] = ACTIONS(494), - [sym_boolean_type] = ACTIONS(494), - [sym_void_type] = ACTIONS(494), - [sym_this] = ACTIONS(494), - [sym_super] = ACTIONS(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(570), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(436), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [136] = { - [ts_builtin_sym_end] = ACTIONS(496), - [sym_identifier] = ACTIONS(498), - [sym_decimal_integer_literal] = ACTIONS(498), - [sym_hex_integer_literal] = ACTIONS(498), - [sym_octal_integer_literal] = ACTIONS(496), - [sym_binary_integer_literal] = ACTIONS(496), - [sym_decimal_floating_point_literal] = ACTIONS(496), - [sym_hex_floating_point_literal] = ACTIONS(498), - [sym_true] = ACTIONS(498), - [sym_false] = ACTIONS(498), - [sym_character_literal] = ACTIONS(496), - [sym_string_literal] = ACTIONS(498), - [sym_text_block] = ACTIONS(496), - [sym_null_literal] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_final] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(496), - [anon_sym_DASH_DASH] = ACTIONS(496), - [anon_sym_new] = ACTIONS(498), - [anon_sym_class] = ACTIONS(498), - [anon_sym_switch] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_case] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_assert] = ACTIONS(498), - [anon_sym_do] = ACTIONS(498), - [anon_sym_while] = ACTIONS(498), - [anon_sym_break] = ACTIONS(498), - [anon_sym_continue] = ACTIONS(498), - [anon_sym_return] = ACTIONS(498), - [anon_sym_yield] = ACTIONS(498), - [anon_sym_synchronized] = ACTIONS(498), - [anon_sym_throw] = ACTIONS(498), - [anon_sym_try] = ACTIONS(498), - [anon_sym_if] = ACTIONS(498), - [anon_sym_else] = ACTIONS(498), - [anon_sym_for] = ACTIONS(498), - [anon_sym_AT] = ACTIONS(498), - [anon_sym_open] = ACTIONS(498), - [anon_sym_module] = ACTIONS(498), - [anon_sym_static] = ACTIONS(498), - [anon_sym_package] = ACTIONS(498), - [anon_sym_import] = ACTIONS(498), - [anon_sym_enum] = ACTIONS(498), - [anon_sym_public] = ACTIONS(498), - [anon_sym_protected] = ACTIONS(498), - [anon_sym_private] = ACTIONS(498), - [anon_sym_abstract] = ACTIONS(498), - [anon_sym_strictfp] = ACTIONS(498), - [anon_sym_native] = ACTIONS(498), - [anon_sym_transient] = ACTIONS(498), - [anon_sym_volatile] = ACTIONS(498), - [anon_sym_sealed] = ACTIONS(498), - [anon_sym_non_DASHsealed] = ACTIONS(496), - [anon_sym_record] = ACTIONS(498), - [anon_sym_ATinterface] = ACTIONS(496), - [anon_sym_interface] = ACTIONS(498), - [anon_sym_byte] = ACTIONS(498), - [anon_sym_short] = ACTIONS(498), - [anon_sym_int] = ACTIONS(498), - [anon_sym_long] = ACTIONS(498), - [anon_sym_char] = ACTIONS(498), - [anon_sym_float] = ACTIONS(498), - [anon_sym_double] = ACTIONS(498), - [sym_boolean_type] = ACTIONS(498), - [sym_void_type] = ACTIONS(498), - [sym_this] = ACTIONS(498), - [sym_super] = ACTIONS(498), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(633), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [137] = { - [ts_builtin_sym_end] = ACTIONS(500), - [sym_identifier] = ACTIONS(502), - [sym_decimal_integer_literal] = ACTIONS(502), - [sym_hex_integer_literal] = ACTIONS(502), - [sym_octal_integer_literal] = ACTIONS(500), - [sym_binary_integer_literal] = ACTIONS(500), - [sym_decimal_floating_point_literal] = ACTIONS(500), - [sym_hex_floating_point_literal] = ACTIONS(502), - [sym_true] = ACTIONS(502), - [sym_false] = ACTIONS(502), - [sym_character_literal] = ACTIONS(500), - [sym_string_literal] = ACTIONS(502), - [sym_text_block] = ACTIONS(500), - [sym_null_literal] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_final] = ACTIONS(502), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_class] = ACTIONS(502), - [anon_sym_switch] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_case] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_assert] = ACTIONS(502), - [anon_sym_do] = ACTIONS(502), - [anon_sym_while] = ACTIONS(502), - [anon_sym_break] = ACTIONS(502), - [anon_sym_continue] = ACTIONS(502), - [anon_sym_return] = ACTIONS(502), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_synchronized] = ACTIONS(502), - [anon_sym_throw] = ACTIONS(502), - [anon_sym_try] = ACTIONS(502), - [anon_sym_if] = ACTIONS(502), - [anon_sym_else] = ACTIONS(502), - [anon_sym_for] = ACTIONS(502), - [anon_sym_AT] = ACTIONS(502), - [anon_sym_open] = ACTIONS(502), - [anon_sym_module] = ACTIONS(502), - [anon_sym_static] = ACTIONS(502), - [anon_sym_package] = ACTIONS(502), - [anon_sym_import] = ACTIONS(502), - [anon_sym_enum] = ACTIONS(502), - [anon_sym_public] = ACTIONS(502), - [anon_sym_protected] = ACTIONS(502), - [anon_sym_private] = ACTIONS(502), - [anon_sym_abstract] = ACTIONS(502), - [anon_sym_strictfp] = ACTIONS(502), - [anon_sym_native] = ACTIONS(502), - [anon_sym_transient] = ACTIONS(502), - [anon_sym_volatile] = ACTIONS(502), - [anon_sym_sealed] = ACTIONS(502), - [anon_sym_non_DASHsealed] = ACTIONS(500), - [anon_sym_record] = ACTIONS(502), - [anon_sym_ATinterface] = ACTIONS(500), - [anon_sym_interface] = ACTIONS(502), - [anon_sym_byte] = ACTIONS(502), - [anon_sym_short] = ACTIONS(502), - [anon_sym_int] = ACTIONS(502), - [anon_sym_long] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_float] = ACTIONS(502), - [anon_sym_double] = ACTIONS(502), - [sym_boolean_type] = ACTIONS(502), - [sym_void_type] = ACTIONS(502), - [sym_this] = ACTIONS(502), - [sym_super] = ACTIONS(502), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(617), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [138] = { - [ts_builtin_sym_end] = ACTIONS(504), - [sym_identifier] = ACTIONS(506), - [sym_decimal_integer_literal] = ACTIONS(506), - [sym_hex_integer_literal] = ACTIONS(506), - [sym_octal_integer_literal] = ACTIONS(504), - [sym_binary_integer_literal] = ACTIONS(504), - [sym_decimal_floating_point_literal] = ACTIONS(504), - [sym_hex_floating_point_literal] = ACTIONS(506), - [sym_true] = ACTIONS(506), - [sym_false] = ACTIONS(506), - [sym_character_literal] = ACTIONS(504), - [sym_string_literal] = ACTIONS(506), - [sym_text_block] = ACTIONS(504), - [sym_null_literal] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_final] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [anon_sym_new] = ACTIONS(506), - [anon_sym_class] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(506), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_case] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_assert] = ACTIONS(506), - [anon_sym_do] = ACTIONS(506), - [anon_sym_while] = ACTIONS(506), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), - [anon_sym_return] = ACTIONS(506), - [anon_sym_yield] = ACTIONS(506), - [anon_sym_synchronized] = ACTIONS(506), - [anon_sym_throw] = ACTIONS(506), - [anon_sym_try] = ACTIONS(506), - [anon_sym_if] = ACTIONS(506), - [anon_sym_else] = ACTIONS(506), - [anon_sym_for] = ACTIONS(506), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_open] = ACTIONS(506), - [anon_sym_module] = ACTIONS(506), - [anon_sym_static] = ACTIONS(506), - [anon_sym_package] = ACTIONS(506), - [anon_sym_import] = ACTIONS(506), - [anon_sym_enum] = ACTIONS(506), - [anon_sym_public] = ACTIONS(506), - [anon_sym_protected] = ACTIONS(506), - [anon_sym_private] = ACTIONS(506), - [anon_sym_abstract] = ACTIONS(506), - [anon_sym_strictfp] = ACTIONS(506), - [anon_sym_native] = ACTIONS(506), - [anon_sym_transient] = ACTIONS(506), - [anon_sym_volatile] = ACTIONS(506), - [anon_sym_sealed] = ACTIONS(506), - [anon_sym_non_DASHsealed] = ACTIONS(504), - [anon_sym_record] = ACTIONS(506), - [anon_sym_ATinterface] = ACTIONS(504), - [anon_sym_interface] = ACTIONS(506), - [anon_sym_byte] = ACTIONS(506), - [anon_sym_short] = ACTIONS(506), - [anon_sym_int] = ACTIONS(506), - [anon_sym_long] = ACTIONS(506), - [anon_sym_char] = ACTIONS(506), - [anon_sym_float] = ACTIONS(506), - [anon_sym_double] = ACTIONS(506), - [sym_boolean_type] = ACTIONS(506), - [sym_void_type] = ACTIONS(506), - [sym_this] = ACTIONS(506), - [sym_super] = ACTIONS(506), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(636), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_decimal_integer_literal] = ACTIONS(510), - [sym_hex_integer_literal] = ACTIONS(510), - [sym_octal_integer_literal] = ACTIONS(508), - [sym_binary_integer_literal] = ACTIONS(508), - [sym_decimal_floating_point_literal] = ACTIONS(508), - [sym_hex_floating_point_literal] = ACTIONS(510), - [sym_true] = ACTIONS(510), - [sym_false] = ACTIONS(510), - [sym_character_literal] = ACTIONS(508), - [sym_string_literal] = ACTIONS(510), - [sym_text_block] = ACTIONS(508), - [sym_null_literal] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_final] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(508), - [anon_sym_DASH_DASH] = ACTIONS(508), - [anon_sym_new] = ACTIONS(510), - [anon_sym_class] = ACTIONS(510), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_case] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_assert] = ACTIONS(510), - [anon_sym_do] = ACTIONS(510), - [anon_sym_while] = ACTIONS(510), - [anon_sym_break] = ACTIONS(510), - [anon_sym_continue] = ACTIONS(510), - [anon_sym_return] = ACTIONS(510), - [anon_sym_yield] = ACTIONS(510), - [anon_sym_synchronized] = ACTIONS(510), - [anon_sym_throw] = ACTIONS(510), - [anon_sym_try] = ACTIONS(510), - [anon_sym_if] = ACTIONS(510), - [anon_sym_else] = ACTIONS(510), - [anon_sym_for] = ACTIONS(510), - [anon_sym_AT] = ACTIONS(510), - [anon_sym_open] = ACTIONS(510), - [anon_sym_module] = ACTIONS(510), - [anon_sym_static] = ACTIONS(510), - [anon_sym_package] = ACTIONS(510), - [anon_sym_import] = ACTIONS(510), - [anon_sym_enum] = ACTIONS(510), - [anon_sym_public] = ACTIONS(510), - [anon_sym_protected] = ACTIONS(510), - [anon_sym_private] = ACTIONS(510), - [anon_sym_abstract] = ACTIONS(510), - [anon_sym_strictfp] = ACTIONS(510), - [anon_sym_native] = ACTIONS(510), - [anon_sym_transient] = ACTIONS(510), - [anon_sym_volatile] = ACTIONS(510), - [anon_sym_sealed] = ACTIONS(510), - [anon_sym_non_DASHsealed] = ACTIONS(508), - [anon_sym_record] = ACTIONS(510), - [anon_sym_ATinterface] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(510), - [anon_sym_byte] = ACTIONS(510), - [anon_sym_short] = ACTIONS(510), - [anon_sym_int] = ACTIONS(510), - [anon_sym_long] = ACTIONS(510), - [anon_sym_char] = ACTIONS(510), - [anon_sym_float] = ACTIONS(510), - [anon_sym_double] = ACTIONS(510), - [sym_boolean_type] = ACTIONS(510), - [sym_void_type] = ACTIONS(510), - [sym_this] = ACTIONS(510), - [sym_super] = ACTIONS(510), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(628), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(512), - [sym_identifier] = ACTIONS(514), - [sym_decimal_integer_literal] = ACTIONS(514), - [sym_hex_integer_literal] = ACTIONS(514), - [sym_octal_integer_literal] = ACTIONS(512), - [sym_binary_integer_literal] = ACTIONS(512), - [sym_decimal_floating_point_literal] = ACTIONS(512), - [sym_hex_floating_point_literal] = ACTIONS(514), - [sym_true] = ACTIONS(514), - [sym_false] = ACTIONS(514), - [sym_character_literal] = ACTIONS(512), - [sym_string_literal] = ACTIONS(514), - [sym_text_block] = ACTIONS(512), - [sym_null_literal] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_final] = ACTIONS(514), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(512), - [anon_sym_DASH_DASH] = ACTIONS(512), - [anon_sym_new] = ACTIONS(514), - [anon_sym_class] = ACTIONS(514), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_case] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_assert] = ACTIONS(514), - [anon_sym_do] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [anon_sym_break] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(514), - [anon_sym_synchronized] = ACTIONS(514), - [anon_sym_throw] = ACTIONS(514), - [anon_sym_try] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_else] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_AT] = ACTIONS(514), - [anon_sym_open] = ACTIONS(514), - [anon_sym_module] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_package] = ACTIONS(514), - [anon_sym_import] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_public] = ACTIONS(514), - [anon_sym_protected] = ACTIONS(514), - [anon_sym_private] = ACTIONS(514), - [anon_sym_abstract] = ACTIONS(514), - [anon_sym_strictfp] = ACTIONS(514), - [anon_sym_native] = ACTIONS(514), - [anon_sym_transient] = ACTIONS(514), - [anon_sym_volatile] = ACTIONS(514), - [anon_sym_sealed] = ACTIONS(514), - [anon_sym_non_DASHsealed] = ACTIONS(512), - [anon_sym_record] = ACTIONS(514), - [anon_sym_ATinterface] = ACTIONS(512), - [anon_sym_interface] = ACTIONS(514), - [anon_sym_byte] = ACTIONS(514), - [anon_sym_short] = ACTIONS(514), - [anon_sym_int] = ACTIONS(514), - [anon_sym_long] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_float] = ACTIONS(514), - [anon_sym_double] = ACTIONS(514), - [sym_boolean_type] = ACTIONS(514), - [sym_void_type] = ACTIONS(514), - [sym_this] = ACTIONS(514), - [sym_super] = ACTIONS(514), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(285), + [sym_decimal_integer_literal] = ACTIONS(285), + [sym_hex_integer_literal] = ACTIONS(285), + [sym_octal_integer_literal] = ACTIONS(283), + [sym_binary_integer_literal] = ACTIONS(283), + [sym_decimal_floating_point_literal] = ACTIONS(283), + [sym_hex_floating_point_literal] = ACTIONS(285), + [sym_true] = ACTIONS(285), + [sym_false] = ACTIONS(285), + [sym_character_literal] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(283), + [sym_null_literal] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_new] = ACTIONS(285), + [anon_sym_class] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_case] = ACTIONS(285), + [anon_sym_default] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_while] = ACTIONS(285), + [anon_sym_break] = ACTIONS(285), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_return] = ACTIONS(285), + [anon_sym_yield] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_throw] = ACTIONS(285), + [anon_sym_try] = ACTIONS(285), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_finally] = ACTIONS(285), + [anon_sym_if] = ACTIONS(285), + [anon_sym_else] = ACTIONS(285), + [anon_sym_for] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(285), + [anon_sym_open] = ACTIONS(285), + [anon_sym_module] = ACTIONS(285), + [anon_sym_static] = ACTIONS(285), + [anon_sym_package] = ACTIONS(285), + [anon_sym_import] = ACTIONS(285), + [anon_sym_enum] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(283), + [anon_sym_record] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(283), + [anon_sym_interface] = ACTIONS(285), + [anon_sym_byte] = ACTIONS(285), + [anon_sym_short] = ACTIONS(285), + [anon_sym_int] = ACTIONS(285), + [anon_sym_long] = ACTIONS(285), + [anon_sym_char] = ACTIONS(285), + [anon_sym_float] = ACTIONS(285), + [anon_sym_double] = ACTIONS(285), + [sym_boolean_type] = ACTIONS(285), + [sym_void_type] = ACTIONS(285), + [sym_this] = ACTIONS(285), + [sym_super] = ACTIONS(285), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(516), - [sym_identifier] = ACTIONS(518), - [sym_decimal_integer_literal] = ACTIONS(518), - [sym_hex_integer_literal] = ACTIONS(518), - [sym_octal_integer_literal] = ACTIONS(516), - [sym_binary_integer_literal] = ACTIONS(516), - [sym_decimal_floating_point_literal] = ACTIONS(516), - [sym_hex_floating_point_literal] = ACTIONS(518), - [sym_true] = ACTIONS(518), - [sym_false] = ACTIONS(518), - [sym_character_literal] = ACTIONS(516), - [sym_string_literal] = ACTIONS(518), - [sym_text_block] = ACTIONS(516), - [sym_null_literal] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_final] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(516), - [anon_sym_TILDE] = ACTIONS(516), - [anon_sym_PLUS_PLUS] = ACTIONS(516), - [anon_sym_DASH_DASH] = ACTIONS(516), - [anon_sym_new] = ACTIONS(518), - [anon_sym_class] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(518), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_case] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_assert] = ACTIONS(518), - [anon_sym_do] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), - [anon_sym_return] = ACTIONS(518), - [anon_sym_yield] = ACTIONS(518), - [anon_sym_synchronized] = ACTIONS(518), - [anon_sym_throw] = ACTIONS(518), - [anon_sym_try] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_else] = ACTIONS(518), - [anon_sym_for] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(518), - [anon_sym_open] = ACTIONS(518), - [anon_sym_module] = ACTIONS(518), - [anon_sym_static] = ACTIONS(518), - [anon_sym_package] = ACTIONS(518), - [anon_sym_import] = ACTIONS(518), - [anon_sym_enum] = ACTIONS(518), - [anon_sym_public] = ACTIONS(518), - [anon_sym_protected] = ACTIONS(518), - [anon_sym_private] = ACTIONS(518), - [anon_sym_abstract] = ACTIONS(518), - [anon_sym_strictfp] = ACTIONS(518), - [anon_sym_native] = ACTIONS(518), - [anon_sym_transient] = ACTIONS(518), - [anon_sym_volatile] = ACTIONS(518), - [anon_sym_sealed] = ACTIONS(518), - [anon_sym_non_DASHsealed] = ACTIONS(516), - [anon_sym_record] = ACTIONS(518), - [anon_sym_ATinterface] = ACTIONS(516), - [anon_sym_interface] = ACTIONS(518), - [anon_sym_byte] = ACTIONS(518), - [anon_sym_short] = ACTIONS(518), - [anon_sym_int] = ACTIONS(518), - [anon_sym_long] = ACTIONS(518), - [anon_sym_char] = ACTIONS(518), - [anon_sym_float] = ACTIONS(518), - [anon_sym_double] = ACTIONS(518), - [sym_boolean_type] = ACTIONS(518), - [sym_void_type] = ACTIONS(518), - [sym_this] = ACTIONS(518), - [sym_super] = ACTIONS(518), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [142] = { - [ts_builtin_sym_end] = ACTIONS(520), - [sym_identifier] = ACTIONS(522), - [sym_decimal_integer_literal] = ACTIONS(522), - [sym_hex_integer_literal] = ACTIONS(522), - [sym_octal_integer_literal] = ACTIONS(520), - [sym_binary_integer_literal] = ACTIONS(520), - [sym_decimal_floating_point_literal] = ACTIONS(520), - [sym_hex_floating_point_literal] = ACTIONS(522), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_character_literal] = ACTIONS(520), - [sym_string_literal] = ACTIONS(522), - [sym_text_block] = ACTIONS(520), - [sym_null_literal] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_final] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [anon_sym_new] = ACTIONS(522), - [anon_sym_class] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_case] = ACTIONS(522), - [anon_sym_default] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_assert] = ACTIONS(522), - [anon_sym_do] = ACTIONS(522), - [anon_sym_while] = ACTIONS(522), - [anon_sym_break] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_return] = ACTIONS(522), - [anon_sym_yield] = ACTIONS(522), - [anon_sym_synchronized] = ACTIONS(522), - [anon_sym_throw] = ACTIONS(522), - [anon_sym_try] = ACTIONS(522), - [anon_sym_if] = ACTIONS(522), - [anon_sym_else] = ACTIONS(522), - [anon_sym_for] = ACTIONS(522), - [anon_sym_AT] = ACTIONS(522), - [anon_sym_open] = ACTIONS(522), - [anon_sym_module] = ACTIONS(522), - [anon_sym_static] = ACTIONS(522), - [anon_sym_package] = ACTIONS(522), - [anon_sym_import] = ACTIONS(522), - [anon_sym_enum] = ACTIONS(522), - [anon_sym_public] = ACTIONS(522), - [anon_sym_protected] = ACTIONS(522), - [anon_sym_private] = ACTIONS(522), - [anon_sym_abstract] = ACTIONS(522), - [anon_sym_strictfp] = ACTIONS(522), - [anon_sym_native] = ACTIONS(522), - [anon_sym_transient] = ACTIONS(522), - [anon_sym_volatile] = ACTIONS(522), - [anon_sym_sealed] = ACTIONS(522), - [anon_sym_non_DASHsealed] = ACTIONS(520), - [anon_sym_record] = ACTIONS(522), - [anon_sym_ATinterface] = ACTIONS(520), - [anon_sym_interface] = ACTIONS(522), - [anon_sym_byte] = ACTIONS(522), - [anon_sym_short] = ACTIONS(522), - [anon_sym_int] = ACTIONS(522), - [anon_sym_long] = ACTIONS(522), - [anon_sym_char] = ACTIONS(522), - [anon_sym_float] = ACTIONS(522), - [anon_sym_double] = ACTIONS(522), - [sym_boolean_type] = ACTIONS(522), - [sym_void_type] = ACTIONS(522), - [sym_this] = ACTIONS(522), - [sym_super] = ACTIONS(522), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(563), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(448), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(524), - [sym_identifier] = ACTIONS(526), - [sym_decimal_integer_literal] = ACTIONS(526), - [sym_hex_integer_literal] = ACTIONS(526), - [sym_octal_integer_literal] = ACTIONS(524), - [sym_binary_integer_literal] = ACTIONS(524), - [sym_decimal_floating_point_literal] = ACTIONS(524), - [sym_hex_floating_point_literal] = ACTIONS(526), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_character_literal] = ACTIONS(524), - [sym_string_literal] = ACTIONS(526), - [sym_text_block] = ACTIONS(524), - [sym_null_literal] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_DASH_DASH] = ACTIONS(524), - [anon_sym_new] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_case] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_assert] = ACTIONS(526), - [anon_sym_do] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_yield] = ACTIONS(526), - [anon_sym_synchronized] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_try] = ACTIONS(526), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_open] = ACTIONS(526), - [anon_sym_module] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_package] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_protected] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_strictfp] = ACTIONS(526), - [anon_sym_native] = ACTIONS(526), - [anon_sym_transient] = ACTIONS(526), - [anon_sym_volatile] = ACTIONS(526), - [anon_sym_sealed] = ACTIONS(526), - [anon_sym_non_DASHsealed] = ACTIONS(524), - [anon_sym_record] = ACTIONS(526), - [anon_sym_ATinterface] = ACTIONS(524), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_byte] = ACTIONS(526), - [anon_sym_short] = ACTIONS(526), - [anon_sym_int] = ACTIONS(526), - [anon_sym_long] = ACTIONS(526), - [anon_sym_char] = ACTIONS(526), - [anon_sym_float] = ACTIONS(526), - [anon_sym_double] = ACTIONS(526), - [sym_boolean_type] = ACTIONS(526), - [sym_void_type] = ACTIONS(526), - [sym_this] = ACTIONS(526), - [sym_super] = ACTIONS(526), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(567), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(450), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [144] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(605), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(584), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym_array_initializer] = STATE(1110), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -25666,1735 +26907,1736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(530), - [sym_identifier] = ACTIONS(532), - [sym_decimal_integer_literal] = ACTIONS(532), - [sym_hex_integer_literal] = ACTIONS(532), - [sym_octal_integer_literal] = ACTIONS(530), - [sym_binary_integer_literal] = ACTIONS(530), - [sym_decimal_floating_point_literal] = ACTIONS(530), - [sym_hex_floating_point_literal] = ACTIONS(532), - [sym_true] = ACTIONS(532), - [sym_false] = ACTIONS(532), - [sym_character_literal] = ACTIONS(530), - [sym_string_literal] = ACTIONS(532), - [sym_text_block] = ACTIONS(530), - [sym_null_literal] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_final] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_TILDE] = ACTIONS(530), - [anon_sym_PLUS_PLUS] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(530), - [anon_sym_new] = ACTIONS(532), - [anon_sym_class] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(530), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_case] = ACTIONS(532), - [anon_sym_default] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_assert] = ACTIONS(532), - [anon_sym_do] = ACTIONS(532), - [anon_sym_while] = ACTIONS(532), - [anon_sym_break] = ACTIONS(532), - [anon_sym_continue] = ACTIONS(532), - [anon_sym_return] = ACTIONS(532), - [anon_sym_yield] = ACTIONS(532), - [anon_sym_synchronized] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(532), - [anon_sym_try] = ACTIONS(532), - [anon_sym_if] = ACTIONS(532), - [anon_sym_else] = ACTIONS(532), - [anon_sym_for] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(532), - [anon_sym_open] = ACTIONS(532), - [anon_sym_module] = ACTIONS(532), - [anon_sym_static] = ACTIONS(532), - [anon_sym_package] = ACTIONS(532), - [anon_sym_import] = ACTIONS(532), - [anon_sym_enum] = ACTIONS(532), - [anon_sym_public] = ACTIONS(532), - [anon_sym_protected] = ACTIONS(532), - [anon_sym_private] = ACTIONS(532), - [anon_sym_abstract] = ACTIONS(532), - [anon_sym_strictfp] = ACTIONS(532), - [anon_sym_native] = ACTIONS(532), - [anon_sym_transient] = ACTIONS(532), - [anon_sym_volatile] = ACTIONS(532), - [anon_sym_sealed] = ACTIONS(532), - [anon_sym_non_DASHsealed] = ACTIONS(530), - [anon_sym_record] = ACTIONS(532), - [anon_sym_ATinterface] = ACTIONS(530), - [anon_sym_interface] = ACTIONS(532), - [anon_sym_byte] = ACTIONS(532), - [anon_sym_short] = ACTIONS(532), - [anon_sym_int] = ACTIONS(532), - [anon_sym_long] = ACTIONS(532), - [anon_sym_char] = ACTIONS(532), - [anon_sym_float] = ACTIONS(532), - [anon_sym_double] = ACTIONS(532), - [sym_boolean_type] = ACTIONS(532), - [sym_void_type] = ACTIONS(532), - [sym_this] = ACTIONS(532), - [sym_super] = ACTIONS(532), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(640), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [146] = { - [ts_builtin_sym_end] = ACTIONS(534), - [sym_identifier] = ACTIONS(536), - [sym_decimal_integer_literal] = ACTIONS(536), - [sym_hex_integer_literal] = ACTIONS(536), - [sym_octal_integer_literal] = ACTIONS(534), - [sym_binary_integer_literal] = ACTIONS(534), - [sym_decimal_floating_point_literal] = ACTIONS(534), - [sym_hex_floating_point_literal] = ACTIONS(536), - [sym_true] = ACTIONS(536), - [sym_false] = ACTIONS(536), - [sym_character_literal] = ACTIONS(534), - [sym_string_literal] = ACTIONS(536), - [sym_text_block] = ACTIONS(534), - [sym_null_literal] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(536), - [anon_sym_final] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_TILDE] = ACTIONS(534), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), - [anon_sym_class] = ACTIONS(536), - [anon_sym_switch] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(534), - [anon_sym_RBRACE] = ACTIONS(534), - [anon_sym_case] = ACTIONS(536), - [anon_sym_default] = ACTIONS(536), - [anon_sym_SEMI] = ACTIONS(534), - [anon_sym_assert] = ACTIONS(536), - [anon_sym_do] = ACTIONS(536), - [anon_sym_while] = ACTIONS(536), - [anon_sym_break] = ACTIONS(536), - [anon_sym_continue] = ACTIONS(536), - [anon_sym_return] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(536), - [anon_sym_synchronized] = ACTIONS(536), - [anon_sym_throw] = ACTIONS(536), - [anon_sym_try] = ACTIONS(536), - [anon_sym_if] = ACTIONS(536), - [anon_sym_else] = ACTIONS(536), - [anon_sym_for] = ACTIONS(536), - [anon_sym_AT] = ACTIONS(536), - [anon_sym_open] = ACTIONS(536), - [anon_sym_module] = ACTIONS(536), - [anon_sym_static] = ACTIONS(536), - [anon_sym_package] = ACTIONS(536), - [anon_sym_import] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(536), - [anon_sym_public] = ACTIONS(536), - [anon_sym_protected] = ACTIONS(536), - [anon_sym_private] = ACTIONS(536), - [anon_sym_abstract] = ACTIONS(536), - [anon_sym_strictfp] = ACTIONS(536), - [anon_sym_native] = ACTIONS(536), - [anon_sym_transient] = ACTIONS(536), - [anon_sym_volatile] = ACTIONS(536), - [anon_sym_sealed] = ACTIONS(536), - [anon_sym_non_DASHsealed] = ACTIONS(534), - [anon_sym_record] = ACTIONS(536), - [anon_sym_ATinterface] = ACTIONS(534), - [anon_sym_interface] = ACTIONS(536), - [anon_sym_byte] = ACTIONS(536), - [anon_sym_short] = ACTIONS(536), - [anon_sym_int] = ACTIONS(536), - [anon_sym_long] = ACTIONS(536), - [anon_sym_char] = ACTIONS(536), - [anon_sym_float] = ACTIONS(536), - [anon_sym_double] = ACTIONS(536), - [sym_boolean_type] = ACTIONS(536), - [sym_void_type] = ACTIONS(536), - [sym_this] = ACTIONS(536), - [sym_super] = ACTIONS(536), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(595), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [147] = { - [ts_builtin_sym_end] = ACTIONS(538), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(540), - [sym_hex_integer_literal] = ACTIONS(540), - [sym_octal_integer_literal] = ACTIONS(538), - [sym_binary_integer_literal] = ACTIONS(538), - [sym_decimal_floating_point_literal] = ACTIONS(538), - [sym_hex_floating_point_literal] = ACTIONS(540), - [sym_true] = ACTIONS(540), - [sym_false] = ACTIONS(540), - [sym_character_literal] = ACTIONS(538), - [sym_string_literal] = ACTIONS(540), - [sym_text_block] = ACTIONS(538), - [sym_null_literal] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_final] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_DASH_DASH] = ACTIONS(538), - [anon_sym_new] = ACTIONS(540), - [anon_sym_class] = ACTIONS(540), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_case] = ACTIONS(540), - [anon_sym_default] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_assert] = ACTIONS(540), - [anon_sym_do] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_yield] = ACTIONS(540), - [anon_sym_synchronized] = ACTIONS(540), - [anon_sym_throw] = ACTIONS(540), - [anon_sym_try] = ACTIONS(540), - [anon_sym_if] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(540), - [anon_sym_open] = ACTIONS(540), - [anon_sym_module] = ACTIONS(540), - [anon_sym_static] = ACTIONS(540), - [anon_sym_package] = ACTIONS(540), - [anon_sym_import] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_public] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(540), - [anon_sym_strictfp] = ACTIONS(540), - [anon_sym_native] = ACTIONS(540), - [anon_sym_transient] = ACTIONS(540), - [anon_sym_volatile] = ACTIONS(540), - [anon_sym_sealed] = ACTIONS(540), - [anon_sym_non_DASHsealed] = ACTIONS(538), - [anon_sym_record] = ACTIONS(540), - [anon_sym_ATinterface] = ACTIONS(538), - [anon_sym_interface] = ACTIONS(540), - [anon_sym_byte] = ACTIONS(540), - [anon_sym_short] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_long] = ACTIONS(540), - [anon_sym_char] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [sym_boolean_type] = ACTIONS(540), - [sym_void_type] = ACTIONS(540), - [sym_this] = ACTIONS(540), - [sym_super] = ACTIONS(540), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [sym_decimal_integer_literal] = ACTIONS(544), - [sym_hex_integer_literal] = ACTIONS(544), - [sym_octal_integer_literal] = ACTIONS(542), - [sym_binary_integer_literal] = ACTIONS(542), - [sym_decimal_floating_point_literal] = ACTIONS(542), - [sym_hex_floating_point_literal] = ACTIONS(544), - [sym_true] = ACTIONS(544), - [sym_false] = ACTIONS(544), - [sym_character_literal] = ACTIONS(542), - [sym_string_literal] = ACTIONS(544), - [sym_text_block] = ACTIONS(542), - [sym_null_literal] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_new] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_case] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_do] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_yield] = ACTIONS(544), - [anon_sym_synchronized] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_try] = ACTIONS(544), - [anon_sym_if] = ACTIONS(544), - [anon_sym_else] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_open] = ACTIONS(544), - [anon_sym_module] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_package] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_protected] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_strictfp] = ACTIONS(544), - [anon_sym_native] = ACTIONS(544), - [anon_sym_transient] = ACTIONS(544), - [anon_sym_volatile] = ACTIONS(544), - [anon_sym_sealed] = ACTIONS(544), - [anon_sym_non_DASHsealed] = ACTIONS(542), - [anon_sym_record] = ACTIONS(544), - [anon_sym_ATinterface] = ACTIONS(542), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_byte] = ACTIONS(544), - [anon_sym_short] = ACTIONS(544), - [anon_sym_int] = ACTIONS(544), - [anon_sym_long] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_float] = ACTIONS(544), - [anon_sym_double] = ACTIONS(544), - [sym_boolean_type] = ACTIONS(544), - [sym_void_type] = ACTIONS(544), - [sym_this] = ACTIONS(544), - [sym_super] = ACTIONS(544), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(521), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(546), - [sym_identifier] = ACTIONS(548), - [sym_decimal_integer_literal] = ACTIONS(548), - [sym_hex_integer_literal] = ACTIONS(548), - [sym_octal_integer_literal] = ACTIONS(546), - [sym_binary_integer_literal] = ACTIONS(546), - [sym_decimal_floating_point_literal] = ACTIONS(546), - [sym_hex_floating_point_literal] = ACTIONS(548), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_character_literal] = ACTIONS(546), - [sym_string_literal] = ACTIONS(548), - [sym_text_block] = ACTIONS(546), - [sym_null_literal] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_final] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [anon_sym_PLUS_PLUS] = ACTIONS(546), - [anon_sym_DASH_DASH] = ACTIONS(546), - [anon_sym_new] = ACTIONS(548), - [anon_sym_class] = ACTIONS(548), - [anon_sym_switch] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(546), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_case] = ACTIONS(548), - [anon_sym_default] = ACTIONS(548), - [anon_sym_SEMI] = ACTIONS(546), - [anon_sym_assert] = ACTIONS(548), - [anon_sym_do] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_break] = ACTIONS(548), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_return] = ACTIONS(548), - [anon_sym_yield] = ACTIONS(548), - [anon_sym_synchronized] = ACTIONS(548), - [anon_sym_throw] = ACTIONS(548), - [anon_sym_try] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_else] = ACTIONS(548), - [anon_sym_for] = ACTIONS(548), - [anon_sym_AT] = ACTIONS(548), - [anon_sym_open] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_static] = ACTIONS(548), - [anon_sym_package] = ACTIONS(548), - [anon_sym_import] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_abstract] = ACTIONS(548), - [anon_sym_strictfp] = ACTIONS(548), - [anon_sym_native] = ACTIONS(548), - [anon_sym_transient] = ACTIONS(548), - [anon_sym_volatile] = ACTIONS(548), - [anon_sym_sealed] = ACTIONS(548), - [anon_sym_non_DASHsealed] = ACTIONS(546), - [anon_sym_record] = ACTIONS(548), - [anon_sym_ATinterface] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_byte] = ACTIONS(548), - [anon_sym_short] = ACTIONS(548), - [anon_sym_int] = ACTIONS(548), - [anon_sym_long] = ACTIONS(548), - [anon_sym_char] = ACTIONS(548), - [anon_sym_float] = ACTIONS(548), - [anon_sym_double] = ACTIONS(548), - [sym_boolean_type] = ACTIONS(548), - [sym_void_type] = ACTIONS(548), - [sym_this] = ACTIONS(548), - [sym_super] = ACTIONS(548), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(530), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_decimal_integer_literal] = ACTIONS(552), - [sym_hex_integer_literal] = ACTIONS(552), - [sym_octal_integer_literal] = ACTIONS(550), - [sym_binary_integer_literal] = ACTIONS(550), - [sym_decimal_floating_point_literal] = ACTIONS(550), - [sym_hex_floating_point_literal] = ACTIONS(552), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_character_literal] = ACTIONS(550), - [sym_string_literal] = ACTIONS(552), - [sym_text_block] = ACTIONS(550), - [sym_null_literal] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(552), - [anon_sym_final] = ACTIONS(552), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_PLUS_PLUS] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(550), - [anon_sym_new] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_switch] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_do] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_synchronized] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(552), - [anon_sym_open] = ACTIONS(552), - [anon_sym_module] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_package] = ACTIONS(552), - [anon_sym_import] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_public] = ACTIONS(552), - [anon_sym_protected] = ACTIONS(552), - [anon_sym_private] = ACTIONS(552), - [anon_sym_abstract] = ACTIONS(552), - [anon_sym_strictfp] = ACTIONS(552), - [anon_sym_native] = ACTIONS(552), - [anon_sym_transient] = ACTIONS(552), - [anon_sym_volatile] = ACTIONS(552), - [anon_sym_sealed] = ACTIONS(552), - [anon_sym_non_DASHsealed] = ACTIONS(550), - [anon_sym_record] = ACTIONS(552), - [anon_sym_ATinterface] = ACTIONS(550), - [anon_sym_interface] = ACTIONS(552), - [anon_sym_byte] = ACTIONS(552), - [anon_sym_short] = ACTIONS(552), - [anon_sym_int] = ACTIONS(552), - [anon_sym_long] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_float] = ACTIONS(552), - [anon_sym_double] = ACTIONS(552), - [sym_boolean_type] = ACTIONS(552), - [sym_void_type] = ACTIONS(552), - [sym_this] = ACTIONS(552), - [sym_super] = ACTIONS(552), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(529), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [151] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [sym_decimal_integer_literal] = ACTIONS(556), - [sym_hex_integer_literal] = ACTIONS(556), - [sym_octal_integer_literal] = ACTIONS(554), - [sym_binary_integer_literal] = ACTIONS(554), - [sym_decimal_floating_point_literal] = ACTIONS(554), - [sym_hex_floating_point_literal] = ACTIONS(556), - [sym_true] = ACTIONS(556), - [sym_false] = ACTIONS(556), - [sym_character_literal] = ACTIONS(554), - [sym_string_literal] = ACTIONS(556), - [sym_text_block] = ACTIONS(554), - [sym_null_literal] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_final] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_TILDE] = ACTIONS(554), - [anon_sym_PLUS_PLUS] = ACTIONS(554), - [anon_sym_DASH_DASH] = ACTIONS(554), - [anon_sym_new] = ACTIONS(556), - [anon_sym_class] = ACTIONS(556), - [anon_sym_switch] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_case] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_assert] = ACTIONS(556), - [anon_sym_do] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_synchronized] = ACTIONS(556), - [anon_sym_throw] = ACTIONS(556), - [anon_sym_try] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_else] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_open] = ACTIONS(556), - [anon_sym_module] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_package] = ACTIONS(556), - [anon_sym_import] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_public] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(556), - [anon_sym_strictfp] = ACTIONS(556), - [anon_sym_native] = ACTIONS(556), - [anon_sym_transient] = ACTIONS(556), - [anon_sym_volatile] = ACTIONS(556), - [anon_sym_sealed] = ACTIONS(556), - [anon_sym_non_DASHsealed] = ACTIONS(554), - [anon_sym_record] = ACTIONS(556), - [anon_sym_ATinterface] = ACTIONS(554), - [anon_sym_interface] = ACTIONS(556), - [anon_sym_byte] = ACTIONS(556), - [anon_sym_short] = ACTIONS(556), - [anon_sym_int] = ACTIONS(556), - [anon_sym_long] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_float] = ACTIONS(556), - [anon_sym_double] = ACTIONS(556), - [sym_boolean_type] = ACTIONS(556), - [sym_void_type] = ACTIONS(556), - [sym_this] = ACTIONS(556), - [sym_super] = ACTIONS(556), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(538), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [152] = { - [ts_builtin_sym_end] = ACTIONS(558), - [sym_identifier] = ACTIONS(560), - [sym_decimal_integer_literal] = ACTIONS(560), - [sym_hex_integer_literal] = ACTIONS(560), - [sym_octal_integer_literal] = ACTIONS(558), - [sym_binary_integer_literal] = ACTIONS(558), - [sym_decimal_floating_point_literal] = ACTIONS(558), - [sym_hex_floating_point_literal] = ACTIONS(560), - [sym_true] = ACTIONS(560), - [sym_false] = ACTIONS(560), - [sym_character_literal] = ACTIONS(558), - [sym_string_literal] = ACTIONS(560), - [sym_text_block] = ACTIONS(558), - [sym_null_literal] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_final] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(558), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_new] = ACTIONS(560), - [anon_sym_class] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_case] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_assert] = ACTIONS(560), - [anon_sym_do] = ACTIONS(560), - [anon_sym_while] = ACTIONS(560), - [anon_sym_break] = ACTIONS(560), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_return] = ACTIONS(560), - [anon_sym_yield] = ACTIONS(560), - [anon_sym_synchronized] = ACTIONS(560), - [anon_sym_throw] = ACTIONS(560), - [anon_sym_try] = ACTIONS(560), - [anon_sym_if] = ACTIONS(560), - [anon_sym_else] = ACTIONS(560), - [anon_sym_for] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(560), - [anon_sym_open] = ACTIONS(560), - [anon_sym_module] = ACTIONS(560), - [anon_sym_static] = ACTIONS(560), - [anon_sym_package] = ACTIONS(560), - [anon_sym_import] = ACTIONS(560), - [anon_sym_enum] = ACTIONS(560), - [anon_sym_public] = ACTIONS(560), - [anon_sym_protected] = ACTIONS(560), - [anon_sym_private] = ACTIONS(560), - [anon_sym_abstract] = ACTIONS(560), - [anon_sym_strictfp] = ACTIONS(560), - [anon_sym_native] = ACTIONS(560), - [anon_sym_transient] = ACTIONS(560), - [anon_sym_volatile] = ACTIONS(560), - [anon_sym_sealed] = ACTIONS(560), - [anon_sym_non_DASHsealed] = ACTIONS(558), - [anon_sym_record] = ACTIONS(560), - [anon_sym_ATinterface] = ACTIONS(558), - [anon_sym_interface] = ACTIONS(560), - [anon_sym_byte] = ACTIONS(560), - [anon_sym_short] = ACTIONS(560), - [anon_sym_int] = ACTIONS(560), - [anon_sym_long] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_float] = ACTIONS(560), - [anon_sym_double] = ACTIONS(560), - [sym_boolean_type] = ACTIONS(560), - [sym_void_type] = ACTIONS(560), - [sym_this] = ACTIONS(560), - [sym_super] = ACTIONS(560), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(637), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [153] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [sym_decimal_integer_literal] = ACTIONS(564), - [sym_hex_integer_literal] = ACTIONS(564), - [sym_octal_integer_literal] = ACTIONS(562), - [sym_binary_integer_literal] = ACTIONS(562), - [sym_decimal_floating_point_literal] = ACTIONS(562), - [sym_hex_floating_point_literal] = ACTIONS(564), - [sym_true] = ACTIONS(564), - [sym_false] = ACTIONS(564), - [sym_character_literal] = ACTIONS(562), - [sym_string_literal] = ACTIONS(564), - [sym_text_block] = ACTIONS(562), - [sym_null_literal] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_new] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_case] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_assert] = ACTIONS(564), - [anon_sym_do] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_synchronized] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_try] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_else] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_open] = ACTIONS(564), - [anon_sym_module] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_protected] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_strictfp] = ACTIONS(564), - [anon_sym_native] = ACTIONS(564), - [anon_sym_transient] = ACTIONS(564), - [anon_sym_volatile] = ACTIONS(564), - [anon_sym_sealed] = ACTIONS(564), - [anon_sym_non_DASHsealed] = ACTIONS(562), - [anon_sym_record] = ACTIONS(564), - [anon_sym_ATinterface] = ACTIONS(562), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_byte] = ACTIONS(564), - [anon_sym_short] = ACTIONS(564), - [anon_sym_int] = ACTIONS(564), - [anon_sym_long] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_float] = ACTIONS(564), - [anon_sym_double] = ACTIONS(564), - [sym_boolean_type] = ACTIONS(564), - [sym_void_type] = ACTIONS(564), - [sym_this] = ACTIONS(564), - [sym_super] = ACTIONS(564), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [154] = { - [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(566), - [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), - [sym_string_literal] = ACTIONS(568), - [sym_text_block] = 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_RBRACE] = 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_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), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [155] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [sym_decimal_integer_literal] = ACTIONS(572), - [sym_hex_integer_literal] = ACTIONS(572), - [sym_octal_integer_literal] = ACTIONS(570), - [sym_binary_integer_literal] = ACTIONS(570), - [sym_decimal_floating_point_literal] = ACTIONS(570), - [sym_hex_floating_point_literal] = ACTIONS(572), - [sym_true] = ACTIONS(572), - [sym_false] = ACTIONS(572), - [sym_character_literal] = ACTIONS(570), - [sym_string_literal] = ACTIONS(572), - [sym_text_block] = ACTIONS(570), - [sym_null_literal] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_final] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_class] = ACTIONS(572), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_case] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_assert] = ACTIONS(572), - [anon_sym_do] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(572), - [anon_sym_synchronized] = ACTIONS(572), - [anon_sym_throw] = ACTIONS(572), - [anon_sym_try] = ACTIONS(572), - [anon_sym_if] = ACTIONS(572), - [anon_sym_else] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(572), - [anon_sym_open] = ACTIONS(572), - [anon_sym_module] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_package] = ACTIONS(572), - [anon_sym_import] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_public] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(572), - [anon_sym_strictfp] = ACTIONS(572), - [anon_sym_native] = ACTIONS(572), - [anon_sym_transient] = ACTIONS(572), - [anon_sym_volatile] = ACTIONS(572), - [anon_sym_sealed] = ACTIONS(572), - [anon_sym_non_DASHsealed] = ACTIONS(570), - [anon_sym_record] = ACTIONS(572), - [anon_sym_ATinterface] = ACTIONS(570), - [anon_sym_interface] = ACTIONS(572), - [anon_sym_byte] = ACTIONS(572), - [anon_sym_short] = ACTIONS(572), - [anon_sym_int] = ACTIONS(572), - [anon_sym_long] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_float] = ACTIONS(572), - [anon_sym_double] = ACTIONS(572), - [sym_boolean_type] = ACTIONS(572), - [sym_void_type] = ACTIONS(572), - [sym_this] = ACTIONS(572), - [sym_super] = ACTIONS(572), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [156] = { - [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(574), - [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), - [sym_string_literal] = ACTIONS(576), - [sym_text_block] = 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_RBRACE] = 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_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_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), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [sym_decimal_integer_literal] = ACTIONS(580), - [sym_hex_integer_literal] = ACTIONS(580), - [sym_octal_integer_literal] = ACTIONS(578), - [sym_binary_integer_literal] = ACTIONS(578), - [sym_decimal_floating_point_literal] = ACTIONS(578), - [sym_hex_floating_point_literal] = ACTIONS(580), - [sym_true] = ACTIONS(580), - [sym_false] = ACTIONS(580), - [sym_character_literal] = ACTIONS(578), - [sym_string_literal] = ACTIONS(580), - [sym_text_block] = ACTIONS(578), - [sym_null_literal] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_final] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_PLUS_PLUS] = ACTIONS(578), - [anon_sym_DASH_DASH] = ACTIONS(578), - [anon_sym_new] = ACTIONS(580), - [anon_sym_class] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_case] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_do] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_synchronized] = ACTIONS(580), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_try] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_else] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_open] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_package] = ACTIONS(580), - [anon_sym_import] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_abstract] = ACTIONS(580), - [anon_sym_strictfp] = ACTIONS(580), - [anon_sym_native] = ACTIONS(580), - [anon_sym_transient] = ACTIONS(580), - [anon_sym_volatile] = ACTIONS(580), - [anon_sym_sealed] = ACTIONS(580), - [anon_sym_non_DASHsealed] = ACTIONS(578), - [anon_sym_record] = ACTIONS(580), - [anon_sym_ATinterface] = ACTIONS(578), - [anon_sym_interface] = ACTIONS(580), - [anon_sym_byte] = ACTIONS(580), - [anon_sym_short] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_long] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_double] = ACTIONS(580), - [sym_boolean_type] = ACTIONS(580), - [sym_void_type] = ACTIONS(580), - [sym_this] = ACTIONS(580), - [sym_super] = ACTIONS(580), + [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(454), + [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), + [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_RBRACE] = 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_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_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), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [sym_decimal_integer_literal] = ACTIONS(584), - [sym_hex_integer_literal] = ACTIONS(584), - [sym_octal_integer_literal] = ACTIONS(582), - [sym_binary_integer_literal] = ACTIONS(582), - [sym_decimal_floating_point_literal] = ACTIONS(582), - [sym_hex_floating_point_literal] = ACTIONS(584), - [sym_true] = ACTIONS(584), - [sym_false] = ACTIONS(584), - [sym_character_literal] = ACTIONS(582), - [sym_string_literal] = ACTIONS(584), - [sym_text_block] = ACTIONS(582), - [sym_null_literal] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_final] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [anon_sym_new] = ACTIONS(584), - [anon_sym_class] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_case] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(584), - [anon_sym_do] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_yield] = ACTIONS(584), - [anon_sym_synchronized] = ACTIONS(584), - [anon_sym_throw] = ACTIONS(584), - [anon_sym_try] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_else] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_open] = ACTIONS(584), - [anon_sym_module] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_package] = ACTIONS(584), - [anon_sym_import] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_public] = ACTIONS(584), - [anon_sym_protected] = ACTIONS(584), - [anon_sym_private] = ACTIONS(584), - [anon_sym_abstract] = ACTIONS(584), - [anon_sym_strictfp] = ACTIONS(584), - [anon_sym_native] = ACTIONS(584), - [anon_sym_transient] = ACTIONS(584), - [anon_sym_volatile] = ACTIONS(584), - [anon_sym_sealed] = ACTIONS(584), - [anon_sym_non_DASHsealed] = ACTIONS(582), - [anon_sym_record] = ACTIONS(584), - [anon_sym_ATinterface] = ACTIONS(582), - [anon_sym_interface] = ACTIONS(584), - [anon_sym_byte] = ACTIONS(584), - [anon_sym_short] = ACTIONS(584), - [anon_sym_int] = ACTIONS(584), - [anon_sym_long] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_float] = ACTIONS(584), - [anon_sym_double] = ACTIONS(584), - [sym_boolean_type] = ACTIONS(584), - [sym_void_type] = ACTIONS(584), - [sym_this] = ACTIONS(584), - [sym_super] = ACTIONS(584), + [ts_builtin_sym_end] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [sym_decimal_integer_literal] = ACTIONS(460), + [sym_hex_integer_literal] = ACTIONS(460), + [sym_octal_integer_literal] = ACTIONS(458), + [sym_binary_integer_literal] = ACTIONS(458), + [sym_decimal_floating_point_literal] = ACTIONS(458), + [sym_hex_floating_point_literal] = ACTIONS(460), + [sym_true] = ACTIONS(460), + [sym_false] = ACTIONS(460), + [sym_character_literal] = ACTIONS(458), + [anon_sym_DQUOTE] = ACTIONS(460), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(458), + [sym_null_literal] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_final] = ACTIONS(460), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_new] = ACTIONS(460), + [anon_sym_class] = ACTIONS(460), + [anon_sym_switch] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_case] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_assert] = ACTIONS(460), + [anon_sym_do] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [anon_sym_break] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(460), + [anon_sym_synchronized] = ACTIONS(460), + [anon_sym_throw] = ACTIONS(460), + [anon_sym_try] = ACTIONS(460), + [anon_sym_if] = ACTIONS(460), + [anon_sym_else] = ACTIONS(460), + [anon_sym_for] = ACTIONS(460), + [anon_sym_AT] = ACTIONS(460), + [anon_sym_open] = ACTIONS(460), + [anon_sym_module] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_package] = ACTIONS(460), + [anon_sym_import] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_public] = ACTIONS(460), + [anon_sym_protected] = ACTIONS(460), + [anon_sym_private] = ACTIONS(460), + [anon_sym_abstract] = ACTIONS(460), + [anon_sym_strictfp] = ACTIONS(460), + [anon_sym_native] = ACTIONS(460), + [anon_sym_transient] = ACTIONS(460), + [anon_sym_volatile] = ACTIONS(460), + [anon_sym_sealed] = ACTIONS(460), + [anon_sym_non_DASHsealed] = ACTIONS(458), + [anon_sym_record] = ACTIONS(460), + [anon_sym_ATinterface] = ACTIONS(458), + [anon_sym_interface] = ACTIONS(460), + [anon_sym_byte] = ACTIONS(460), + [anon_sym_short] = ACTIONS(460), + [anon_sym_int] = ACTIONS(460), + [anon_sym_long] = ACTIONS(460), + [anon_sym_char] = ACTIONS(460), + [anon_sym_float] = ACTIONS(460), + [anon_sym_double] = ACTIONS(460), + [sym_boolean_type] = ACTIONS(460), + [sym_void_type] = ACTIONS(460), + [sym_this] = ACTIONS(460), + [sym_super] = ACTIONS(460), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [sym_decimal_integer_literal] = ACTIONS(588), - [sym_hex_integer_literal] = ACTIONS(588), - [sym_octal_integer_literal] = ACTIONS(586), - [sym_binary_integer_literal] = ACTIONS(586), - [sym_decimal_floating_point_literal] = ACTIONS(586), - [sym_hex_floating_point_literal] = ACTIONS(588), - [sym_true] = ACTIONS(588), - [sym_false] = ACTIONS(588), - [sym_character_literal] = ACTIONS(586), - [sym_string_literal] = ACTIONS(588), - [sym_text_block] = ACTIONS(586), - [sym_null_literal] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_final] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_new] = ACTIONS(588), - [anon_sym_class] = ACTIONS(588), - [anon_sym_switch] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_assert] = ACTIONS(588), - [anon_sym_do] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_synchronized] = ACTIONS(588), - [anon_sym_throw] = ACTIONS(588), - [anon_sym_try] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_else] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_open] = ACTIONS(588), - [anon_sym_module] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_package] = ACTIONS(588), - [anon_sym_import] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_public] = ACTIONS(588), - [anon_sym_protected] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(588), - [anon_sym_strictfp] = ACTIONS(588), - [anon_sym_native] = ACTIONS(588), - [anon_sym_transient] = ACTIONS(588), - [anon_sym_volatile] = ACTIONS(588), - [anon_sym_sealed] = ACTIONS(588), - [anon_sym_non_DASHsealed] = ACTIONS(586), - [anon_sym_record] = ACTIONS(588), - [anon_sym_ATinterface] = ACTIONS(586), - [anon_sym_interface] = ACTIONS(588), - [anon_sym_byte] = ACTIONS(588), - [anon_sym_short] = ACTIONS(588), - [anon_sym_int] = ACTIONS(588), - [anon_sym_long] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_float] = ACTIONS(588), - [anon_sym_double] = ACTIONS(588), - [sym_boolean_type] = ACTIONS(588), - [sym_void_type] = ACTIONS(588), - [sym_this] = ACTIONS(588), - [sym_super] = ACTIONS(588), + [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(462), + [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), + [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_RBRACE] = 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), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [sym_decimal_integer_literal] = ACTIONS(592), - [sym_hex_integer_literal] = ACTIONS(592), - [sym_octal_integer_literal] = ACTIONS(590), - [sym_binary_integer_literal] = ACTIONS(590), - [sym_decimal_floating_point_literal] = ACTIONS(590), - [sym_hex_floating_point_literal] = ACTIONS(592), - [sym_true] = ACTIONS(592), - [sym_false] = ACTIONS(592), - [sym_character_literal] = ACTIONS(590), - [sym_string_literal] = ACTIONS(592), - [sym_text_block] = ACTIONS(590), - [sym_null_literal] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_final] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [anon_sym_new] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_case] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(592), - [anon_sym_do] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_synchronized] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_try] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_else] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_open] = ACTIONS(592), - [anon_sym_module] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_package] = ACTIONS(592), - [anon_sym_import] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_public] = ACTIONS(592), - [anon_sym_protected] = ACTIONS(592), - [anon_sym_private] = ACTIONS(592), - [anon_sym_abstract] = ACTIONS(592), - [anon_sym_strictfp] = ACTIONS(592), - [anon_sym_native] = ACTIONS(592), - [anon_sym_transient] = ACTIONS(592), - [anon_sym_volatile] = ACTIONS(592), - [anon_sym_sealed] = ACTIONS(592), - [anon_sym_non_DASHsealed] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_ATinterface] = ACTIONS(590), - [anon_sym_interface] = ACTIONS(592), - [anon_sym_byte] = ACTIONS(592), - [anon_sym_short] = ACTIONS(592), - [anon_sym_int] = ACTIONS(592), - [anon_sym_long] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_float] = ACTIONS(592), - [anon_sym_double] = ACTIONS(592), - [sym_boolean_type] = ACTIONS(592), - [sym_void_type] = ACTIONS(592), - [sym_this] = ACTIONS(592), - [sym_super] = ACTIONS(592), + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [sym_decimal_integer_literal] = ACTIONS(468), + [sym_hex_integer_literal] = ACTIONS(468), + [sym_octal_integer_literal] = ACTIONS(466), + [sym_binary_integer_literal] = ACTIONS(466), + [sym_decimal_floating_point_literal] = ACTIONS(466), + [sym_hex_floating_point_literal] = ACTIONS(468), + [sym_true] = ACTIONS(468), + [sym_false] = ACTIONS(468), + [sym_character_literal] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(466), + [sym_null_literal] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(466), + [anon_sym_new] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [anon_sym_switch] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_assert] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_synchronized] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_else] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_open] = ACTIONS(468), + [anon_sym_module] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_public] = ACTIONS(468), + [anon_sym_protected] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_strictfp] = ACTIONS(468), + [anon_sym_native] = ACTIONS(468), + [anon_sym_transient] = ACTIONS(468), + [anon_sym_volatile] = ACTIONS(468), + [anon_sym_sealed] = ACTIONS(468), + [anon_sym_non_DASHsealed] = ACTIONS(466), + [anon_sym_record] = ACTIONS(468), + [anon_sym_ATinterface] = ACTIONS(466), + [anon_sym_interface] = ACTIONS(468), + [anon_sym_byte] = ACTIONS(468), + [anon_sym_short] = ACTIONS(468), + [anon_sym_int] = ACTIONS(468), + [anon_sym_long] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_float] = ACTIONS(468), + [anon_sym_double] = ACTIONS(468), + [sym_boolean_type] = ACTIONS(468), + [sym_void_type] = ACTIONS(468), + [sym_this] = ACTIONS(468), + [sym_super] = ACTIONS(468), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [161] = { - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), - [sym_decimal_integer_literal] = ACTIONS(596), - [sym_hex_integer_literal] = ACTIONS(596), - [sym_octal_integer_literal] = ACTIONS(594), - [sym_binary_integer_literal] = ACTIONS(594), - [sym_decimal_floating_point_literal] = ACTIONS(594), - [sym_hex_floating_point_literal] = ACTIONS(596), - [sym_true] = ACTIONS(596), - [sym_false] = ACTIONS(596), - [sym_character_literal] = ACTIONS(594), - [sym_string_literal] = ACTIONS(596), - [sym_text_block] = ACTIONS(594), - [sym_null_literal] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_final] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS_PLUS] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(594), - [anon_sym_new] = ACTIONS(596), - [anon_sym_class] = ACTIONS(596), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_case] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_assert] = ACTIONS(596), - [anon_sym_do] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_synchronized] = ACTIONS(596), - [anon_sym_throw] = ACTIONS(596), - [anon_sym_try] = ACTIONS(596), - [anon_sym_if] = ACTIONS(596), - [anon_sym_else] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_open] = ACTIONS(596), - [anon_sym_module] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_package] = ACTIONS(596), - [anon_sym_import] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_public] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(596), - [anon_sym_strictfp] = ACTIONS(596), - [anon_sym_native] = ACTIONS(596), - [anon_sym_transient] = ACTIONS(596), - [anon_sym_volatile] = ACTIONS(596), - [anon_sym_sealed] = ACTIONS(596), - [anon_sym_non_DASHsealed] = ACTIONS(594), - [anon_sym_record] = ACTIONS(596), - [anon_sym_ATinterface] = ACTIONS(594), - [anon_sym_interface] = ACTIONS(596), - [anon_sym_byte] = ACTIONS(596), - [anon_sym_short] = ACTIONS(596), - [anon_sym_int] = ACTIONS(596), - [anon_sym_long] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_float] = ACTIONS(596), - [anon_sym_double] = ACTIONS(596), - [sym_boolean_type] = ACTIONS(596), - [sym_void_type] = ACTIONS(596), - [sym_this] = ACTIONS(596), - [sym_super] = ACTIONS(596), + [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(470), + [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), + [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_RBRACE] = 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_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), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(598), - [sym_identifier] = ACTIONS(600), - [sym_decimal_integer_literal] = ACTIONS(600), - [sym_hex_integer_literal] = ACTIONS(600), - [sym_octal_integer_literal] = ACTIONS(598), - [sym_binary_integer_literal] = ACTIONS(598), - [sym_decimal_floating_point_literal] = ACTIONS(598), - [sym_hex_floating_point_literal] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_character_literal] = ACTIONS(598), - [sym_string_literal] = ACTIONS(600), - [sym_text_block] = ACTIONS(598), - [sym_null_literal] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_final] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_new] = ACTIONS(600), - [anon_sym_class] = ACTIONS(600), - [anon_sym_switch] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_case] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_assert] = ACTIONS(600), - [anon_sym_do] = ACTIONS(600), - [anon_sym_while] = ACTIONS(600), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), - [anon_sym_return] = ACTIONS(600), - [anon_sym_yield] = ACTIONS(600), - [anon_sym_synchronized] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(600), - [anon_sym_try] = ACTIONS(600), - [anon_sym_if] = ACTIONS(600), - [anon_sym_else] = ACTIONS(600), - [anon_sym_for] = ACTIONS(600), - [anon_sym_AT] = ACTIONS(600), - [anon_sym_open] = ACTIONS(600), - [anon_sym_module] = ACTIONS(600), - [anon_sym_static] = ACTIONS(600), - [anon_sym_package] = ACTIONS(600), - [anon_sym_import] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(600), - [anon_sym_public] = ACTIONS(600), - [anon_sym_protected] = ACTIONS(600), - [anon_sym_private] = ACTIONS(600), - [anon_sym_abstract] = ACTIONS(600), - [anon_sym_strictfp] = ACTIONS(600), - [anon_sym_native] = ACTIONS(600), - [anon_sym_transient] = ACTIONS(600), - [anon_sym_volatile] = ACTIONS(600), - [anon_sym_sealed] = ACTIONS(600), - [anon_sym_non_DASHsealed] = ACTIONS(598), - [anon_sym_record] = ACTIONS(600), - [anon_sym_ATinterface] = ACTIONS(598), - [anon_sym_interface] = ACTIONS(600), - [anon_sym_byte] = ACTIONS(600), - [anon_sym_short] = ACTIONS(600), - [anon_sym_int] = ACTIONS(600), - [anon_sym_long] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_float] = ACTIONS(600), - [anon_sym_double] = ACTIONS(600), - [sym_boolean_type] = ACTIONS(600), - [sym_void_type] = ACTIONS(600), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), + [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(474), + [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), + [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_RBRACE] = 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), }, [163] = { - [ts_builtin_sym_end] = ACTIONS(602), - [sym_identifier] = ACTIONS(604), - [sym_decimal_integer_literal] = ACTIONS(604), - [sym_hex_integer_literal] = ACTIONS(604), - [sym_octal_integer_literal] = ACTIONS(602), - [sym_binary_integer_literal] = ACTIONS(602), - [sym_decimal_floating_point_literal] = ACTIONS(602), - [sym_hex_floating_point_literal] = ACTIONS(604), - [sym_true] = ACTIONS(604), - [sym_false] = ACTIONS(604), - [sym_character_literal] = ACTIONS(602), - [sym_string_literal] = ACTIONS(604), - [sym_text_block] = ACTIONS(602), - [sym_null_literal] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_final] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_TILDE] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(602), - [anon_sym_DASH_DASH] = ACTIONS(602), - [anon_sym_new] = ACTIONS(604), - [anon_sym_class] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_case] = ACTIONS(604), - [anon_sym_default] = ACTIONS(604), - [anon_sym_SEMI] = ACTIONS(602), - [anon_sym_assert] = ACTIONS(604), - [anon_sym_do] = ACTIONS(604), - [anon_sym_while] = ACTIONS(604), - [anon_sym_break] = ACTIONS(604), - [anon_sym_continue] = ACTIONS(604), - [anon_sym_return] = ACTIONS(604), - [anon_sym_yield] = ACTIONS(604), - [anon_sym_synchronized] = ACTIONS(604), - [anon_sym_throw] = ACTIONS(604), - [anon_sym_try] = ACTIONS(604), - [anon_sym_if] = ACTIONS(604), - [anon_sym_else] = ACTIONS(604), - [anon_sym_for] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(604), - [anon_sym_open] = ACTIONS(604), - [anon_sym_module] = ACTIONS(604), - [anon_sym_static] = ACTIONS(604), - [anon_sym_package] = ACTIONS(604), - [anon_sym_import] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(604), - [anon_sym_public] = ACTIONS(604), - [anon_sym_protected] = ACTIONS(604), - [anon_sym_private] = ACTIONS(604), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_strictfp] = ACTIONS(604), - [anon_sym_native] = ACTIONS(604), - [anon_sym_transient] = ACTIONS(604), - [anon_sym_volatile] = ACTIONS(604), - [anon_sym_sealed] = ACTIONS(604), - [anon_sym_non_DASHsealed] = ACTIONS(602), - [anon_sym_record] = ACTIONS(604), - [anon_sym_ATinterface] = ACTIONS(602), - [anon_sym_interface] = ACTIONS(604), - [anon_sym_byte] = ACTIONS(604), - [anon_sym_short] = ACTIONS(604), - [anon_sym_int] = ACTIONS(604), - [anon_sym_long] = ACTIONS(604), - [anon_sym_char] = ACTIONS(604), - [anon_sym_float] = ACTIONS(604), - [anon_sym_double] = ACTIONS(604), - [sym_boolean_type] = ACTIONS(604), - [sym_void_type] = ACTIONS(604), - [sym_this] = ACTIONS(604), - [sym_super] = ACTIONS(604), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(606), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [164] = { - [ts_builtin_sym_end] = ACTIONS(606), - [sym_identifier] = ACTIONS(608), - [sym_decimal_integer_literal] = ACTIONS(608), - [sym_hex_integer_literal] = ACTIONS(608), - [sym_octal_integer_literal] = ACTIONS(606), - [sym_binary_integer_literal] = ACTIONS(606), - [sym_decimal_floating_point_literal] = ACTIONS(606), - [sym_hex_floating_point_literal] = ACTIONS(608), - [sym_true] = ACTIONS(608), - [sym_false] = ACTIONS(608), - [sym_character_literal] = ACTIONS(606), - [sym_string_literal] = ACTIONS(608), - [sym_text_block] = ACTIONS(606), - [sym_null_literal] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_final] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_PLUS_PLUS] = ACTIONS(606), - [anon_sym_DASH_DASH] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_class] = ACTIONS(608), - [anon_sym_switch] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_case] = ACTIONS(608), - [anon_sym_default] = ACTIONS(608), - [anon_sym_SEMI] = ACTIONS(606), - [anon_sym_assert] = ACTIONS(608), - [anon_sym_do] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_break] = ACTIONS(608), - [anon_sym_continue] = ACTIONS(608), - [anon_sym_return] = ACTIONS(608), - [anon_sym_yield] = ACTIONS(608), - [anon_sym_synchronized] = ACTIONS(608), - [anon_sym_throw] = ACTIONS(608), - [anon_sym_try] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_else] = ACTIONS(608), - [anon_sym_for] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_open] = ACTIONS(608), - [anon_sym_module] = ACTIONS(608), - [anon_sym_static] = ACTIONS(608), - [anon_sym_package] = ACTIONS(608), - [anon_sym_import] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(608), - [anon_sym_public] = ACTIONS(608), - [anon_sym_protected] = ACTIONS(608), - [anon_sym_private] = ACTIONS(608), - [anon_sym_abstract] = ACTIONS(608), - [anon_sym_strictfp] = ACTIONS(608), - [anon_sym_native] = ACTIONS(608), - [anon_sym_transient] = ACTIONS(608), - [anon_sym_volatile] = ACTIONS(608), - [anon_sym_sealed] = ACTIONS(608), - [anon_sym_non_DASHsealed] = ACTIONS(606), - [anon_sym_record] = ACTIONS(608), - [anon_sym_ATinterface] = ACTIONS(606), - [anon_sym_interface] = ACTIONS(608), - [anon_sym_byte] = ACTIONS(608), - [anon_sym_short] = ACTIONS(608), - [anon_sym_int] = ACTIONS(608), - [anon_sym_long] = ACTIONS(608), - [anon_sym_char] = ACTIONS(608), - [anon_sym_float] = ACTIONS(608), - [anon_sym_double] = ACTIONS(608), - [sym_boolean_type] = ACTIONS(608), - [sym_void_type] = ACTIONS(608), - [sym_this] = ACTIONS(608), - [sym_super] = ACTIONS(608), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(610), - [sym_identifier] = ACTIONS(612), - [sym_decimal_integer_literal] = ACTIONS(612), - [sym_hex_integer_literal] = ACTIONS(612), - [sym_octal_integer_literal] = ACTIONS(610), - [sym_binary_integer_literal] = ACTIONS(610), - [sym_decimal_floating_point_literal] = ACTIONS(610), - [sym_hex_floating_point_literal] = ACTIONS(612), - [sym_true] = ACTIONS(612), - [sym_false] = ACTIONS(612), - [sym_character_literal] = ACTIONS(610), - [sym_string_literal] = ACTIONS(612), - [sym_text_block] = ACTIONS(610), - [sym_null_literal] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_final] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_PLUS_PLUS] = ACTIONS(610), - [anon_sym_DASH_DASH] = ACTIONS(610), - [anon_sym_new] = ACTIONS(612), - [anon_sym_class] = ACTIONS(612), - [anon_sym_switch] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_case] = ACTIONS(612), - [anon_sym_default] = ACTIONS(612), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_assert] = ACTIONS(612), - [anon_sym_do] = ACTIONS(612), - [anon_sym_while] = ACTIONS(612), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_return] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(612), - [anon_sym_synchronized] = ACTIONS(612), - [anon_sym_throw] = ACTIONS(612), - [anon_sym_try] = ACTIONS(612), - [anon_sym_if] = ACTIONS(612), - [anon_sym_else] = ACTIONS(612), - [anon_sym_for] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(612), - [anon_sym_open] = ACTIONS(612), - [anon_sym_module] = ACTIONS(612), - [anon_sym_static] = ACTIONS(612), - [anon_sym_package] = ACTIONS(612), - [anon_sym_import] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(612), - [anon_sym_public] = ACTIONS(612), - [anon_sym_protected] = ACTIONS(612), - [anon_sym_private] = ACTIONS(612), - [anon_sym_abstract] = ACTIONS(612), - [anon_sym_strictfp] = ACTIONS(612), - [anon_sym_native] = ACTIONS(612), - [anon_sym_transient] = ACTIONS(612), - [anon_sym_volatile] = ACTIONS(612), - [anon_sym_sealed] = ACTIONS(612), - [anon_sym_non_DASHsealed] = ACTIONS(610), - [anon_sym_record] = ACTIONS(612), - [anon_sym_ATinterface] = ACTIONS(610), - [anon_sym_interface] = ACTIONS(612), - [anon_sym_byte] = ACTIONS(612), - [anon_sym_short] = ACTIONS(612), - [anon_sym_int] = ACTIONS(612), - [anon_sym_long] = ACTIONS(612), - [anon_sym_char] = ACTIONS(612), - [anon_sym_float] = ACTIONS(612), - [anon_sym_double] = ACTIONS(612), - [sym_boolean_type] = ACTIONS(612), - [sym_void_type] = ACTIONS(612), - [sym_this] = ACTIONS(612), - [sym_super] = ACTIONS(612), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [166] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(605), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(572), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym_array_initializer] = STATE(1110), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -27404,472 +28646,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(616), - [sym_identifier] = ACTIONS(618), - [sym_decimal_integer_literal] = ACTIONS(618), - [sym_hex_integer_literal] = ACTIONS(618), - [sym_octal_integer_literal] = ACTIONS(616), - [sym_binary_integer_literal] = ACTIONS(616), - [sym_decimal_floating_point_literal] = ACTIONS(616), - [sym_hex_floating_point_literal] = ACTIONS(618), - [sym_true] = ACTIONS(618), - [sym_false] = ACTIONS(618), - [sym_character_literal] = ACTIONS(616), - [sym_string_literal] = ACTIONS(618), - [sym_text_block] = ACTIONS(616), - [sym_null_literal] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_final] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(616), - [anon_sym_new] = ACTIONS(618), - [anon_sym_class] = ACTIONS(618), - [anon_sym_switch] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_case] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_assert] = ACTIONS(618), - [anon_sym_do] = ACTIONS(618), - [anon_sym_while] = ACTIONS(618), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(618), - [anon_sym_synchronized] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(618), - [anon_sym_try] = ACTIONS(618), - [anon_sym_if] = ACTIONS(618), - [anon_sym_else] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_AT] = ACTIONS(618), - [anon_sym_open] = ACTIONS(618), - [anon_sym_module] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_package] = ACTIONS(618), - [anon_sym_import] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_public] = ACTIONS(618), - [anon_sym_protected] = ACTIONS(618), - [anon_sym_private] = ACTIONS(618), - [anon_sym_abstract] = ACTIONS(618), - [anon_sym_strictfp] = ACTIONS(618), - [anon_sym_native] = ACTIONS(618), - [anon_sym_transient] = ACTIONS(618), - [anon_sym_volatile] = ACTIONS(618), - [anon_sym_sealed] = ACTIONS(618), - [anon_sym_non_DASHsealed] = ACTIONS(616), - [anon_sym_record] = ACTIONS(618), - [anon_sym_ATinterface] = ACTIONS(616), - [anon_sym_interface] = ACTIONS(618), - [anon_sym_byte] = ACTIONS(618), - [anon_sym_short] = ACTIONS(618), - [anon_sym_int] = ACTIONS(618), - [anon_sym_long] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_float] = ACTIONS(618), - [anon_sym_double] = ACTIONS(618), - [sym_boolean_type] = ACTIONS(618), - [sym_void_type] = ACTIONS(618), - [sym_this] = ACTIONS(618), - [sym_super] = ACTIONS(618), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [168] = { - [ts_builtin_sym_end] = ACTIONS(620), - [sym_identifier] = ACTIONS(622), - [sym_decimal_integer_literal] = ACTIONS(622), - [sym_hex_integer_literal] = ACTIONS(622), - [sym_octal_integer_literal] = ACTIONS(620), - [sym_binary_integer_literal] = ACTIONS(620), - [sym_decimal_floating_point_literal] = ACTIONS(620), - [sym_hex_floating_point_literal] = ACTIONS(622), - [sym_true] = ACTIONS(622), - [sym_false] = ACTIONS(622), - [sym_character_literal] = ACTIONS(620), - [sym_string_literal] = ACTIONS(622), - [sym_text_block] = ACTIONS(620), - [sym_null_literal] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_final] = ACTIONS(622), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_new] = ACTIONS(622), - [anon_sym_class] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_assert] = ACTIONS(622), - [anon_sym_do] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_synchronized] = ACTIONS(622), - [anon_sym_throw] = ACTIONS(622), - [anon_sym_try] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_else] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_AT] = ACTIONS(622), - [anon_sym_open] = ACTIONS(622), - [anon_sym_module] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_package] = ACTIONS(622), - [anon_sym_import] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_public] = ACTIONS(622), - [anon_sym_protected] = ACTIONS(622), - [anon_sym_private] = ACTIONS(622), - [anon_sym_abstract] = ACTIONS(622), - [anon_sym_strictfp] = ACTIONS(622), - [anon_sym_native] = ACTIONS(622), - [anon_sym_transient] = ACTIONS(622), - [anon_sym_volatile] = ACTIONS(622), - [anon_sym_sealed] = ACTIONS(622), - [anon_sym_non_DASHsealed] = ACTIONS(620), - [anon_sym_record] = ACTIONS(622), - [anon_sym_ATinterface] = ACTIONS(620), - [anon_sym_interface] = ACTIONS(622), - [anon_sym_byte] = ACTIONS(622), - [anon_sym_short] = ACTIONS(622), - [anon_sym_int] = ACTIONS(622), - [anon_sym_long] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [anon_sym_float] = ACTIONS(622), - [anon_sym_double] = ACTIONS(622), - [sym_boolean_type] = ACTIONS(622), - [sym_void_type] = ACTIONS(622), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(622), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(518), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [169] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_identifier] = ACTIONS(626), - [sym_decimal_integer_literal] = ACTIONS(626), - [sym_hex_integer_literal] = ACTIONS(626), - [sym_octal_integer_literal] = ACTIONS(624), - [sym_binary_integer_literal] = ACTIONS(624), - [sym_decimal_floating_point_literal] = ACTIONS(624), - [sym_hex_floating_point_literal] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_character_literal] = ACTIONS(624), - [sym_string_literal] = ACTIONS(626), - [sym_text_block] = ACTIONS(624), - [sym_null_literal] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_final] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_TILDE] = ACTIONS(624), - [anon_sym_PLUS_PLUS] = ACTIONS(624), - [anon_sym_DASH_DASH] = ACTIONS(624), - [anon_sym_new] = ACTIONS(626), - [anon_sym_class] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_do] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_synchronized] = ACTIONS(626), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_try] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_else] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(626), - [anon_sym_open] = ACTIONS(626), - [anon_sym_module] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_package] = ACTIONS(626), - [anon_sym_import] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_public] = ACTIONS(626), - [anon_sym_protected] = ACTIONS(626), - [anon_sym_private] = ACTIONS(626), - [anon_sym_abstract] = ACTIONS(626), - [anon_sym_strictfp] = ACTIONS(626), - [anon_sym_native] = ACTIONS(626), - [anon_sym_transient] = ACTIONS(626), - [anon_sym_volatile] = ACTIONS(626), - [anon_sym_sealed] = ACTIONS(626), - [anon_sym_non_DASHsealed] = ACTIONS(624), - [anon_sym_record] = ACTIONS(626), - [anon_sym_ATinterface] = ACTIONS(624), - [anon_sym_interface] = ACTIONS(626), - [anon_sym_byte] = ACTIONS(626), - [anon_sym_short] = ACTIONS(626), - [anon_sym_int] = ACTIONS(626), - [anon_sym_long] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_float] = ACTIONS(626), - [anon_sym_double] = ACTIONS(626), - [sym_boolean_type] = ACTIONS(626), - [sym_void_type] = ACTIONS(626), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), + [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(478), + [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), + [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_RBRACE] = 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_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), }, [170] = { - [ts_builtin_sym_end] = ACTIONS(628), - [sym_identifier] = ACTIONS(630), - [sym_decimal_integer_literal] = ACTIONS(630), - [sym_hex_integer_literal] = ACTIONS(630), - [sym_octal_integer_literal] = ACTIONS(628), - [sym_binary_integer_literal] = ACTIONS(628), - [sym_decimal_floating_point_literal] = ACTIONS(628), - [sym_hex_floating_point_literal] = ACTIONS(630), - [sym_true] = ACTIONS(630), - [sym_false] = ACTIONS(630), - [sym_character_literal] = ACTIONS(628), - [sym_string_literal] = ACTIONS(630), - [sym_text_block] = ACTIONS(628), - [sym_null_literal] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_final] = ACTIONS(630), - [anon_sym_BANG] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(628), - [anon_sym_PLUS_PLUS] = ACTIONS(628), - [anon_sym_DASH_DASH] = ACTIONS(628), - [anon_sym_new] = ACTIONS(630), - [anon_sym_class] = ACTIONS(630), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_case] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_assert] = ACTIONS(630), - [anon_sym_do] = ACTIONS(630), - [anon_sym_while] = ACTIONS(630), - [anon_sym_break] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_return] = ACTIONS(630), - [anon_sym_yield] = ACTIONS(630), - [anon_sym_synchronized] = ACTIONS(630), - [anon_sym_throw] = ACTIONS(630), - [anon_sym_try] = ACTIONS(630), - [anon_sym_if] = ACTIONS(630), - [anon_sym_else] = ACTIONS(630), - [anon_sym_for] = ACTIONS(630), - [anon_sym_AT] = ACTIONS(630), - [anon_sym_open] = ACTIONS(630), - [anon_sym_module] = ACTIONS(630), - [anon_sym_static] = ACTIONS(630), - [anon_sym_package] = ACTIONS(630), - [anon_sym_import] = ACTIONS(630), - [anon_sym_enum] = ACTIONS(630), - [anon_sym_public] = ACTIONS(630), - [anon_sym_protected] = ACTIONS(630), - [anon_sym_private] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(630), - [anon_sym_strictfp] = ACTIONS(630), - [anon_sym_native] = ACTIONS(630), - [anon_sym_transient] = ACTIONS(630), - [anon_sym_volatile] = ACTIONS(630), - [anon_sym_sealed] = ACTIONS(630), - [anon_sym_non_DASHsealed] = ACTIONS(628), - [anon_sym_record] = ACTIONS(630), - [anon_sym_ATinterface] = ACTIONS(628), - [anon_sym_interface] = ACTIONS(630), - [anon_sym_byte] = ACTIONS(630), - [anon_sym_short] = ACTIONS(630), - [anon_sym_int] = ACTIONS(630), - [anon_sym_long] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_float] = ACTIONS(630), - [anon_sym_double] = ACTIONS(630), - [sym_boolean_type] = ACTIONS(630), - [sym_void_type] = ACTIONS(630), - [sym_this] = ACTIONS(630), - [sym_super] = ACTIONS(630), + [ts_builtin_sym_end] = ACTIONS(482), + [sym_identifier] = ACTIONS(484), + [sym_decimal_integer_literal] = ACTIONS(484), + [sym_hex_integer_literal] = ACTIONS(484), + [sym_octal_integer_literal] = ACTIONS(482), + [sym_binary_integer_literal] = ACTIONS(482), + [sym_decimal_floating_point_literal] = ACTIONS(482), + [sym_hex_floating_point_literal] = ACTIONS(484), + [sym_true] = ACTIONS(484), + [sym_false] = ACTIONS(484), + [sym_character_literal] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(482), + [sym_null_literal] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_final] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_PLUS_PLUS] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(482), + [anon_sym_new] = ACTIONS(484), + [anon_sym_class] = ACTIONS(484), + [anon_sym_switch] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_case] = ACTIONS(484), + [anon_sym_default] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_assert] = ACTIONS(484), + [anon_sym_do] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [anon_sym_break] = ACTIONS(484), + [anon_sym_continue] = ACTIONS(484), + [anon_sym_return] = ACTIONS(484), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_synchronized] = ACTIONS(484), + [anon_sym_throw] = ACTIONS(484), + [anon_sym_try] = ACTIONS(484), + [anon_sym_if] = ACTIONS(484), + [anon_sym_else] = ACTIONS(484), + [anon_sym_for] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_open] = ACTIONS(484), + [anon_sym_module] = ACTIONS(484), + [anon_sym_static] = ACTIONS(484), + [anon_sym_package] = ACTIONS(484), + [anon_sym_import] = ACTIONS(484), + [anon_sym_enum] = ACTIONS(484), + [anon_sym_public] = ACTIONS(484), + [anon_sym_protected] = ACTIONS(484), + [anon_sym_private] = ACTIONS(484), + [anon_sym_abstract] = ACTIONS(484), + [anon_sym_strictfp] = ACTIONS(484), + [anon_sym_native] = ACTIONS(484), + [anon_sym_transient] = ACTIONS(484), + [anon_sym_volatile] = ACTIONS(484), + [anon_sym_sealed] = ACTIONS(484), + [anon_sym_non_DASHsealed] = ACTIONS(482), + [anon_sym_record] = ACTIONS(484), + [anon_sym_ATinterface] = ACTIONS(482), + [anon_sym_interface] = ACTIONS(484), + [anon_sym_byte] = ACTIONS(484), + [anon_sym_short] = ACTIONS(484), + [anon_sym_int] = ACTIONS(484), + [anon_sym_long] = ACTIONS(484), + [anon_sym_char] = ACTIONS(484), + [anon_sym_float] = ACTIONS(484), + [anon_sym_double] = ACTIONS(484), + [sym_boolean_type] = ACTIONS(484), + [sym_void_type] = ACTIONS(484), + [sym_this] = ACTIONS(484), + [sym_super] = ACTIONS(484), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [171] = { - [ts_builtin_sym_end] = ACTIONS(632), - [sym_identifier] = ACTIONS(634), - [sym_decimal_integer_literal] = ACTIONS(634), - [sym_hex_integer_literal] = ACTIONS(634), - [sym_octal_integer_literal] = ACTIONS(632), - [sym_binary_integer_literal] = ACTIONS(632), - [sym_decimal_floating_point_literal] = ACTIONS(632), - [sym_hex_floating_point_literal] = ACTIONS(634), - [sym_true] = ACTIONS(634), - [sym_false] = ACTIONS(634), - [sym_character_literal] = ACTIONS(632), - [sym_string_literal] = ACTIONS(634), - [sym_text_block] = ACTIONS(632), - [sym_null_literal] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_final] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(632), - [anon_sym_PLUS_PLUS] = ACTIONS(632), - [anon_sym_DASH_DASH] = ACTIONS(632), - [anon_sym_new] = ACTIONS(634), - [anon_sym_class] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_yield] = ACTIONS(634), - [anon_sym_synchronized] = ACTIONS(634), - [anon_sym_throw] = ACTIONS(634), - [anon_sym_try] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_else] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(634), - [anon_sym_open] = ACTIONS(634), - [anon_sym_module] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_package] = ACTIONS(634), - [anon_sym_import] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_public] = ACTIONS(634), - [anon_sym_protected] = ACTIONS(634), - [anon_sym_private] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(634), - [anon_sym_strictfp] = ACTIONS(634), - [anon_sym_native] = ACTIONS(634), - [anon_sym_transient] = ACTIONS(634), - [anon_sym_volatile] = ACTIONS(634), - [anon_sym_sealed] = ACTIONS(634), - [anon_sym_non_DASHsealed] = ACTIONS(632), - [anon_sym_record] = ACTIONS(634), - [anon_sym_ATinterface] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_byte] = ACTIONS(634), - [anon_sym_short] = ACTIONS(634), - [anon_sym_int] = ACTIONS(634), - [anon_sym_long] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_float] = ACTIONS(634), - [anon_sym_double] = ACTIONS(634), - [sym_boolean_type] = ACTIONS(634), - [sym_void_type] = ACTIONS(634), - [sym_this] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [172] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(623), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym__element_value] = STATE(1211), - [sym_element_value_array_initializer] = STATE(1211), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -27879,471 +29041,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [172] = { + [ts_builtin_sym_end] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [sym_decimal_integer_literal] = ACTIONS(488), + [sym_hex_integer_literal] = ACTIONS(488), + [sym_octal_integer_literal] = ACTIONS(486), + [sym_binary_integer_literal] = ACTIONS(486), + [sym_decimal_floating_point_literal] = ACTIONS(486), + [sym_hex_floating_point_literal] = ACTIONS(488), + [sym_true] = ACTIONS(488), + [sym_false] = ACTIONS(488), + [sym_character_literal] = ACTIONS(486), + [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [sym_null_literal] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LT] = ACTIONS(486), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_final] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_new] = ACTIONS(488), + [anon_sym_class] = ACTIONS(488), + [anon_sym_switch] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_case] = ACTIONS(488), + [anon_sym_default] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_assert] = ACTIONS(488), + [anon_sym_do] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [anon_sym_break] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(488), + [anon_sym_return] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_synchronized] = ACTIONS(488), + [anon_sym_throw] = ACTIONS(488), + [anon_sym_try] = ACTIONS(488), + [anon_sym_if] = ACTIONS(488), + [anon_sym_else] = ACTIONS(488), + [anon_sym_for] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_open] = ACTIONS(488), + [anon_sym_module] = ACTIONS(488), + [anon_sym_static] = ACTIONS(488), + [anon_sym_package] = ACTIONS(488), + [anon_sym_import] = ACTIONS(488), + [anon_sym_enum] = ACTIONS(488), + [anon_sym_public] = ACTIONS(488), + [anon_sym_protected] = ACTIONS(488), + [anon_sym_private] = ACTIONS(488), + [anon_sym_abstract] = ACTIONS(488), + [anon_sym_strictfp] = ACTIONS(488), + [anon_sym_native] = ACTIONS(488), + [anon_sym_transient] = ACTIONS(488), + [anon_sym_volatile] = ACTIONS(488), + [anon_sym_sealed] = ACTIONS(488), + [anon_sym_non_DASHsealed] = ACTIONS(486), + [anon_sym_record] = ACTIONS(488), + [anon_sym_ATinterface] = ACTIONS(486), + [anon_sym_interface] = ACTIONS(488), + [anon_sym_byte] = ACTIONS(488), + [anon_sym_short] = ACTIONS(488), + [anon_sym_int] = ACTIONS(488), + [anon_sym_long] = ACTIONS(488), + [anon_sym_char] = ACTIONS(488), + [anon_sym_float] = ACTIONS(488), + [anon_sym_double] = ACTIONS(488), + [sym_boolean_type] = ACTIONS(488), + [sym_void_type] = ACTIONS(488), + [sym_this] = ACTIONS(488), + [sym_super] = ACTIONS(488), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(636), - [sym_identifier] = ACTIONS(638), - [sym_decimal_integer_literal] = ACTIONS(638), - [sym_hex_integer_literal] = ACTIONS(638), - [sym_octal_integer_literal] = ACTIONS(636), - [sym_binary_integer_literal] = ACTIONS(636), - [sym_decimal_floating_point_literal] = ACTIONS(636), - [sym_hex_floating_point_literal] = ACTIONS(638), - [sym_true] = ACTIONS(638), - [sym_false] = ACTIONS(638), - [sym_character_literal] = ACTIONS(636), - [sym_string_literal] = ACTIONS(638), - [sym_text_block] = ACTIONS(636), - [sym_null_literal] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_final] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(636), - [anon_sym_DASH_DASH] = ACTIONS(636), - [anon_sym_new] = ACTIONS(638), - [anon_sym_class] = ACTIONS(638), - [anon_sym_switch] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_assert] = ACTIONS(638), - [anon_sym_do] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_yield] = ACTIONS(638), - [anon_sym_synchronized] = ACTIONS(638), - [anon_sym_throw] = ACTIONS(638), - [anon_sym_try] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_else] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(638), - [anon_sym_open] = ACTIONS(638), - [anon_sym_module] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_package] = ACTIONS(638), - [anon_sym_import] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_public] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_abstract] = ACTIONS(638), - [anon_sym_strictfp] = ACTIONS(638), - [anon_sym_native] = ACTIONS(638), - [anon_sym_transient] = ACTIONS(638), - [anon_sym_volatile] = ACTIONS(638), - [anon_sym_sealed] = ACTIONS(638), - [anon_sym_non_DASHsealed] = ACTIONS(636), - [anon_sym_record] = ACTIONS(638), - [anon_sym_ATinterface] = ACTIONS(636), - [anon_sym_interface] = ACTIONS(638), - [anon_sym_byte] = ACTIONS(638), - [anon_sym_short] = ACTIONS(638), - [anon_sym_int] = ACTIONS(638), - [anon_sym_long] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_float] = ACTIONS(638), - [anon_sym_double] = ACTIONS(638), - [sym_boolean_type] = ACTIONS(638), - [sym_void_type] = ACTIONS(638), - [sym_this] = ACTIONS(638), - [sym_super] = ACTIONS(638), + [ts_builtin_sym_end] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), + [sym_decimal_integer_literal] = ACTIONS(492), + [sym_hex_integer_literal] = ACTIONS(492), + [sym_octal_integer_literal] = ACTIONS(490), + [sym_binary_integer_literal] = ACTIONS(490), + [sym_decimal_floating_point_literal] = ACTIONS(490), + [sym_hex_floating_point_literal] = ACTIONS(492), + [sym_true] = ACTIONS(492), + [sym_false] = ACTIONS(492), + [sym_character_literal] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(490), + [sym_null_literal] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_final] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_DASH_DASH] = ACTIONS(490), + [anon_sym_new] = ACTIONS(492), + [anon_sym_class] = ACTIONS(492), + [anon_sym_switch] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_case] = ACTIONS(492), + [anon_sym_default] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_assert] = ACTIONS(492), + [anon_sym_do] = ACTIONS(492), + [anon_sym_while] = ACTIONS(492), + [anon_sym_break] = ACTIONS(492), + [anon_sym_continue] = ACTIONS(492), + [anon_sym_return] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(492), + [anon_sym_synchronized] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(492), + [anon_sym_try] = ACTIONS(492), + [anon_sym_if] = ACTIONS(492), + [anon_sym_else] = ACTIONS(492), + [anon_sym_for] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_open] = ACTIONS(492), + [anon_sym_module] = ACTIONS(492), + [anon_sym_static] = ACTIONS(492), + [anon_sym_package] = ACTIONS(492), + [anon_sym_import] = ACTIONS(492), + [anon_sym_enum] = ACTIONS(492), + [anon_sym_public] = ACTIONS(492), + [anon_sym_protected] = ACTIONS(492), + [anon_sym_private] = ACTIONS(492), + [anon_sym_abstract] = ACTIONS(492), + [anon_sym_strictfp] = ACTIONS(492), + [anon_sym_native] = ACTIONS(492), + [anon_sym_transient] = ACTIONS(492), + [anon_sym_volatile] = ACTIONS(492), + [anon_sym_sealed] = ACTIONS(492), + [anon_sym_non_DASHsealed] = ACTIONS(490), + [anon_sym_record] = ACTIONS(492), + [anon_sym_ATinterface] = ACTIONS(490), + [anon_sym_interface] = ACTIONS(492), + [anon_sym_byte] = ACTIONS(492), + [anon_sym_short] = ACTIONS(492), + [anon_sym_int] = ACTIONS(492), + [anon_sym_long] = ACTIONS(492), + [anon_sym_char] = ACTIONS(492), + [anon_sym_float] = ACTIONS(492), + [anon_sym_double] = ACTIONS(492), + [sym_boolean_type] = ACTIONS(492), + [sym_void_type] = ACTIONS(492), + [sym_this] = ACTIONS(492), + [sym_super] = ACTIONS(492), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [174] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym__element_value] = STATE(1083), - [sym_element_value_array_initializer] = STATE(1083), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(494), + [sym_identifier] = ACTIONS(496), + [sym_decimal_integer_literal] = ACTIONS(496), + [sym_hex_integer_literal] = ACTIONS(496), + [sym_octal_integer_literal] = ACTIONS(494), + [sym_binary_integer_literal] = ACTIONS(494), + [sym_decimal_floating_point_literal] = ACTIONS(494), + [sym_hex_floating_point_literal] = ACTIONS(496), + [sym_true] = ACTIONS(496), + [sym_false] = ACTIONS(496), + [sym_character_literal] = ACTIONS(494), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(494), + [sym_null_literal] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_final] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(494), + [anon_sym_DASH_DASH] = ACTIONS(494), + [anon_sym_new] = ACTIONS(496), + [anon_sym_class] = ACTIONS(496), + [anon_sym_switch] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_case] = ACTIONS(496), + [anon_sym_default] = ACTIONS(496), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_assert] = ACTIONS(496), + [anon_sym_do] = ACTIONS(496), + [anon_sym_while] = ACTIONS(496), + [anon_sym_break] = ACTIONS(496), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_return] = ACTIONS(496), + [anon_sym_yield] = ACTIONS(496), + [anon_sym_synchronized] = ACTIONS(496), + [anon_sym_throw] = ACTIONS(496), + [anon_sym_try] = ACTIONS(496), + [anon_sym_if] = ACTIONS(496), + [anon_sym_else] = ACTIONS(496), + [anon_sym_for] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_open] = ACTIONS(496), + [anon_sym_module] = ACTIONS(496), + [anon_sym_static] = ACTIONS(496), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(496), + [anon_sym_enum] = ACTIONS(496), + [anon_sym_public] = ACTIONS(496), + [anon_sym_protected] = ACTIONS(496), + [anon_sym_private] = ACTIONS(496), + [anon_sym_abstract] = ACTIONS(496), + [anon_sym_strictfp] = ACTIONS(496), + [anon_sym_native] = ACTIONS(496), + [anon_sym_transient] = ACTIONS(496), + [anon_sym_volatile] = ACTIONS(496), + [anon_sym_sealed] = ACTIONS(496), + [anon_sym_non_DASHsealed] = ACTIONS(494), + [anon_sym_record] = ACTIONS(496), + [anon_sym_ATinterface] = ACTIONS(494), + [anon_sym_interface] = ACTIONS(496), + [anon_sym_byte] = ACTIONS(496), + [anon_sym_short] = ACTIONS(496), + [anon_sym_int] = ACTIONS(496), + [anon_sym_long] = ACTIONS(496), + [anon_sym_char] = ACTIONS(496), + [anon_sym_float] = ACTIONS(496), + [anon_sym_double] = ACTIONS(496), + [sym_boolean_type] = ACTIONS(496), + [sym_void_type] = ACTIONS(496), + [sym_this] = ACTIONS(496), + [sym_super] = ACTIONS(496), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [175] = { - [ts_builtin_sym_end] = ACTIONS(640), - [sym_identifier] = ACTIONS(642), - [sym_decimal_integer_literal] = ACTIONS(642), - [sym_hex_integer_literal] = ACTIONS(642), - [sym_octal_integer_literal] = ACTIONS(640), - [sym_binary_integer_literal] = ACTIONS(640), - [sym_decimal_floating_point_literal] = ACTIONS(640), - [sym_hex_floating_point_literal] = ACTIONS(642), - [sym_true] = ACTIONS(642), - [sym_false] = ACTIONS(642), - [sym_character_literal] = ACTIONS(640), - [sym_string_literal] = ACTIONS(642), - [sym_text_block] = ACTIONS(640), - [sym_null_literal] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_final] = ACTIONS(642), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_new] = ACTIONS(642), - [anon_sym_class] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_assert] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_yield] = ACTIONS(642), - [anon_sym_synchronized] = ACTIONS(642), - [anon_sym_throw] = ACTIONS(642), - [anon_sym_try] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_else] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_open] = ACTIONS(642), - [anon_sym_module] = ACTIONS(642), - [anon_sym_static] = ACTIONS(642), - [anon_sym_package] = ACTIONS(642), - [anon_sym_import] = ACTIONS(642), - [anon_sym_enum] = ACTIONS(642), - [anon_sym_public] = ACTIONS(642), - [anon_sym_protected] = ACTIONS(642), - [anon_sym_private] = ACTIONS(642), - [anon_sym_abstract] = ACTIONS(642), - [anon_sym_strictfp] = ACTIONS(642), - [anon_sym_native] = ACTIONS(642), - [anon_sym_transient] = ACTIONS(642), - [anon_sym_volatile] = ACTIONS(642), - [anon_sym_sealed] = ACTIONS(642), - [anon_sym_non_DASHsealed] = ACTIONS(640), - [anon_sym_record] = ACTIONS(642), - [anon_sym_ATinterface] = ACTIONS(640), - [anon_sym_interface] = ACTIONS(642), - [anon_sym_byte] = ACTIONS(642), - [anon_sym_short] = ACTIONS(642), - [anon_sym_int] = ACTIONS(642), - [anon_sym_long] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_float] = ACTIONS(642), - [anon_sym_double] = ACTIONS(642), - [sym_boolean_type] = ACTIONS(642), - [sym_void_type] = ACTIONS(642), - [sym_this] = ACTIONS(642), - [sym_super] = ACTIONS(642), + [ts_builtin_sym_end] = ACTIONS(498), + [sym_identifier] = ACTIONS(500), + [sym_decimal_integer_literal] = ACTIONS(500), + [sym_hex_integer_literal] = ACTIONS(500), + [sym_octal_integer_literal] = ACTIONS(498), + [sym_binary_integer_literal] = ACTIONS(498), + [sym_decimal_floating_point_literal] = ACTIONS(498), + [sym_hex_floating_point_literal] = ACTIONS(500), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_character_literal] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(498), + [sym_null_literal] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_final] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_PLUS_PLUS] = ACTIONS(498), + [anon_sym_DASH_DASH] = ACTIONS(498), + [anon_sym_new] = ACTIONS(500), + [anon_sym_class] = ACTIONS(500), + [anon_sym_switch] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_case] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_assert] = ACTIONS(500), + [anon_sym_do] = ACTIONS(500), + [anon_sym_while] = ACTIONS(500), + [anon_sym_break] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(500), + [anon_sym_return] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_synchronized] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(500), + [anon_sym_try] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_else] = ACTIONS(500), + [anon_sym_for] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_open] = ACTIONS(500), + [anon_sym_module] = ACTIONS(500), + [anon_sym_static] = ACTIONS(500), + [anon_sym_package] = ACTIONS(500), + [anon_sym_import] = ACTIONS(500), + [anon_sym_enum] = ACTIONS(500), + [anon_sym_public] = ACTIONS(500), + [anon_sym_protected] = ACTIONS(500), + [anon_sym_private] = ACTIONS(500), + [anon_sym_abstract] = ACTIONS(500), + [anon_sym_strictfp] = ACTIONS(500), + [anon_sym_native] = ACTIONS(500), + [anon_sym_transient] = ACTIONS(500), + [anon_sym_volatile] = ACTIONS(500), + [anon_sym_sealed] = ACTIONS(500), + [anon_sym_non_DASHsealed] = ACTIONS(498), + [anon_sym_record] = ACTIONS(500), + [anon_sym_ATinterface] = ACTIONS(498), + [anon_sym_interface] = ACTIONS(500), + [anon_sym_byte] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [anon_sym_int] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_float] = ACTIONS(500), + [anon_sym_double] = ACTIONS(500), + [sym_boolean_type] = ACTIONS(500), + [sym_void_type] = ACTIONS(500), + [sym_this] = ACTIONS(500), + [sym_super] = ACTIONS(500), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [176] = { - [ts_builtin_sym_end] = ACTIONS(644), - [sym_identifier] = ACTIONS(646), - [sym_decimal_integer_literal] = ACTIONS(646), - [sym_hex_integer_literal] = ACTIONS(646), - [sym_octal_integer_literal] = ACTIONS(644), - [sym_binary_integer_literal] = ACTIONS(644), - [sym_decimal_floating_point_literal] = ACTIONS(644), - [sym_hex_floating_point_literal] = ACTIONS(646), - [sym_true] = ACTIONS(646), - [sym_false] = ACTIONS(646), - [sym_character_literal] = ACTIONS(644), - [sym_string_literal] = ACTIONS(646), - [sym_text_block] = ACTIONS(644), - [sym_null_literal] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_final] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(644), - [anon_sym_DASH_DASH] = ACTIONS(644), - [anon_sym_new] = ACTIONS(646), - [anon_sym_class] = ACTIONS(646), - [anon_sym_switch] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_assert] = ACTIONS(646), - [anon_sym_do] = ACTIONS(646), - [anon_sym_while] = ACTIONS(646), - [anon_sym_break] = ACTIONS(646), - [anon_sym_continue] = ACTIONS(646), - [anon_sym_return] = ACTIONS(646), - [anon_sym_yield] = ACTIONS(646), - [anon_sym_synchronized] = ACTIONS(646), - [anon_sym_throw] = ACTIONS(646), - [anon_sym_try] = ACTIONS(646), - [anon_sym_if] = ACTIONS(646), - [anon_sym_else] = ACTIONS(646), - [anon_sym_for] = ACTIONS(646), - [anon_sym_AT] = ACTIONS(646), - [anon_sym_open] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_static] = ACTIONS(646), - [anon_sym_package] = ACTIONS(646), - [anon_sym_import] = ACTIONS(646), - [anon_sym_enum] = ACTIONS(646), - [anon_sym_public] = ACTIONS(646), - [anon_sym_protected] = ACTIONS(646), - [anon_sym_private] = ACTIONS(646), - [anon_sym_abstract] = ACTIONS(646), - [anon_sym_strictfp] = ACTIONS(646), - [anon_sym_native] = ACTIONS(646), - [anon_sym_transient] = ACTIONS(646), - [anon_sym_volatile] = ACTIONS(646), - [anon_sym_sealed] = ACTIONS(646), - [anon_sym_non_DASHsealed] = ACTIONS(644), - [anon_sym_record] = ACTIONS(646), - [anon_sym_ATinterface] = ACTIONS(644), - [anon_sym_interface] = ACTIONS(646), - [anon_sym_byte] = ACTIONS(646), - [anon_sym_short] = ACTIONS(646), - [anon_sym_int] = ACTIONS(646), - [anon_sym_long] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_float] = ACTIONS(646), - [anon_sym_double] = ACTIONS(646), - [sym_boolean_type] = ACTIONS(646), - [sym_void_type] = ACTIONS(646), - [sym_this] = ACTIONS(646), - [sym_super] = ACTIONS(646), + [ts_builtin_sym_end] = ACTIONS(502), + [sym_identifier] = ACTIONS(504), + [sym_decimal_integer_literal] = ACTIONS(504), + [sym_hex_integer_literal] = ACTIONS(504), + [sym_octal_integer_literal] = ACTIONS(502), + [sym_binary_integer_literal] = ACTIONS(502), + [sym_decimal_floating_point_literal] = ACTIONS(502), + [sym_hex_floating_point_literal] = ACTIONS(504), + [sym_true] = ACTIONS(504), + [sym_false] = ACTIONS(504), + [sym_character_literal] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(504), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [sym_null_literal] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_final] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(504), + [anon_sym_class] = ACTIONS(504), + [anon_sym_switch] = ACTIONS(504), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_case] = ACTIONS(504), + [anon_sym_default] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_assert] = ACTIONS(504), + [anon_sym_do] = ACTIONS(504), + [anon_sym_while] = ACTIONS(504), + [anon_sym_break] = ACTIONS(504), + [anon_sym_continue] = ACTIONS(504), + [anon_sym_return] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(504), + [anon_sym_synchronized] = ACTIONS(504), + [anon_sym_throw] = ACTIONS(504), + [anon_sym_try] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_for] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_open] = ACTIONS(504), + [anon_sym_module] = ACTIONS(504), + [anon_sym_static] = ACTIONS(504), + [anon_sym_package] = ACTIONS(504), + [anon_sym_import] = ACTIONS(504), + [anon_sym_enum] = ACTIONS(504), + [anon_sym_public] = ACTIONS(504), + [anon_sym_protected] = ACTIONS(504), + [anon_sym_private] = ACTIONS(504), + [anon_sym_abstract] = ACTIONS(504), + [anon_sym_strictfp] = ACTIONS(504), + [anon_sym_native] = ACTIONS(504), + [anon_sym_transient] = ACTIONS(504), + [anon_sym_volatile] = ACTIONS(504), + [anon_sym_sealed] = ACTIONS(504), + [anon_sym_non_DASHsealed] = ACTIONS(502), + [anon_sym_record] = ACTIONS(504), + [anon_sym_ATinterface] = ACTIONS(502), + [anon_sym_interface] = ACTIONS(504), + [anon_sym_byte] = ACTIONS(504), + [anon_sym_short] = ACTIONS(504), + [anon_sym_int] = ACTIONS(504), + [anon_sym_long] = ACTIONS(504), + [anon_sym_char] = ACTIONS(504), + [anon_sym_float] = ACTIONS(504), + [anon_sym_double] = ACTIONS(504), + [sym_boolean_type] = ACTIONS(504), + [sym_void_type] = ACTIONS(504), + [sym_this] = ACTIONS(504), + [sym_super] = ACTIONS(504), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [177] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_identifier] = ACTIONS(650), - [sym_decimal_integer_literal] = ACTIONS(650), - [sym_hex_integer_literal] = ACTIONS(650), - [sym_octal_integer_literal] = ACTIONS(648), - [sym_binary_integer_literal] = ACTIONS(648), - [sym_decimal_floating_point_literal] = ACTIONS(648), - [sym_hex_floating_point_literal] = ACTIONS(650), - [sym_true] = ACTIONS(650), - [sym_false] = ACTIONS(650), - [sym_character_literal] = ACTIONS(648), - [sym_string_literal] = ACTIONS(650), - [sym_text_block] = ACTIONS(648), - [sym_null_literal] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_final] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_new] = ACTIONS(650), - [anon_sym_class] = ACTIONS(650), - [anon_sym_switch] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_assert] = ACTIONS(650), - [anon_sym_do] = ACTIONS(650), - [anon_sym_while] = ACTIONS(650), - [anon_sym_break] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [anon_sym_return] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(650), - [anon_sym_synchronized] = ACTIONS(650), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_try] = ACTIONS(650), - [anon_sym_if] = ACTIONS(650), - [anon_sym_else] = ACTIONS(650), - [anon_sym_for] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_open] = ACTIONS(650), - [anon_sym_module] = ACTIONS(650), - [anon_sym_static] = ACTIONS(650), - [anon_sym_package] = ACTIONS(650), - [anon_sym_import] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(650), - [anon_sym_public] = ACTIONS(650), - [anon_sym_protected] = ACTIONS(650), - [anon_sym_private] = ACTIONS(650), - [anon_sym_abstract] = ACTIONS(650), - [anon_sym_strictfp] = ACTIONS(650), - [anon_sym_native] = ACTIONS(650), - [anon_sym_transient] = ACTIONS(650), - [anon_sym_volatile] = ACTIONS(650), - [anon_sym_sealed] = ACTIONS(650), - [anon_sym_non_DASHsealed] = ACTIONS(648), - [anon_sym_record] = ACTIONS(650), - [anon_sym_ATinterface] = ACTIONS(648), - [anon_sym_interface] = ACTIONS(650), - [anon_sym_byte] = ACTIONS(650), - [anon_sym_short] = ACTIONS(650), - [anon_sym_int] = ACTIONS(650), - [anon_sym_long] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_float] = ACTIONS(650), - [anon_sym_double] = ACTIONS(650), - [sym_boolean_type] = ACTIONS(650), - [sym_void_type] = ACTIONS(650), - [sym_this] = ACTIONS(650), - [sym_super] = ACTIONS(650), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [178] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(641), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(710), - [sym_marker_annotation] = STATE(710), - [sym_annotation] = STATE(710), - [sym__element_value] = STATE(1170), - [sym_element_value_array_initializer] = STATE(1170), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28353,1870 +29594,1182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [179] = { - [ts_builtin_sym_end] = ACTIONS(652), - [sym_identifier] = ACTIONS(654), - [sym_decimal_integer_literal] = ACTIONS(654), - [sym_hex_integer_literal] = ACTIONS(654), - [sym_octal_integer_literal] = ACTIONS(652), - [sym_binary_integer_literal] = ACTIONS(652), - [sym_decimal_floating_point_literal] = ACTIONS(652), - [sym_hex_floating_point_literal] = ACTIONS(654), - [sym_true] = ACTIONS(654), - [sym_false] = ACTIONS(654), - [sym_character_literal] = ACTIONS(652), - [sym_string_literal] = ACTIONS(654), - [sym_text_block] = ACTIONS(652), - [sym_null_literal] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_final] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [anon_sym_new] = ACTIONS(654), - [anon_sym_class] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_assert] = ACTIONS(654), - [anon_sym_do] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_synchronized] = ACTIONS(654), - [anon_sym_throw] = ACTIONS(654), - [anon_sym_try] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_else] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_open] = ACTIONS(654), - [anon_sym_module] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_package] = ACTIONS(654), - [anon_sym_import] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_public] = ACTIONS(654), - [anon_sym_protected] = ACTIONS(654), - [anon_sym_private] = ACTIONS(654), - [anon_sym_abstract] = ACTIONS(654), - [anon_sym_strictfp] = ACTIONS(654), - [anon_sym_native] = ACTIONS(654), - [anon_sym_transient] = ACTIONS(654), - [anon_sym_volatile] = ACTIONS(654), - [anon_sym_sealed] = ACTIONS(654), - [anon_sym_non_DASHsealed] = ACTIONS(652), - [anon_sym_record] = ACTIONS(654), - [anon_sym_ATinterface] = ACTIONS(652), - [anon_sym_interface] = ACTIONS(654), - [anon_sym_byte] = ACTIONS(654), - [anon_sym_short] = ACTIONS(654), - [anon_sym_int] = ACTIONS(654), - [anon_sym_long] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_float] = ACTIONS(654), - [anon_sym_double] = ACTIONS(654), - [sym_boolean_type] = ACTIONS(654), - [sym_void_type] = ACTIONS(654), - [sym_this] = ACTIONS(654), - [sym_super] = ACTIONS(654), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(582), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [180] = { - [ts_builtin_sym_end] = ACTIONS(656), - [sym_identifier] = ACTIONS(658), - [sym_decimal_integer_literal] = ACTIONS(658), - [sym_hex_integer_literal] = ACTIONS(658), - [sym_octal_integer_literal] = ACTIONS(656), - [sym_binary_integer_literal] = ACTIONS(656), - [sym_decimal_floating_point_literal] = ACTIONS(656), - [sym_hex_floating_point_literal] = ACTIONS(658), - [sym_true] = ACTIONS(658), - [sym_false] = ACTIONS(658), - [sym_character_literal] = ACTIONS(656), - [sym_string_literal] = ACTIONS(658), - [sym_text_block] = ACTIONS(656), - [sym_null_literal] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_final] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(656), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_new] = ACTIONS(658), - [anon_sym_class] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_assert] = ACTIONS(658), - [anon_sym_do] = ACTIONS(658), - [anon_sym_while] = ACTIONS(658), - [anon_sym_break] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(658), - [anon_sym_return] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(658), - [anon_sym_synchronized] = ACTIONS(658), - [anon_sym_throw] = ACTIONS(658), - [anon_sym_try] = ACTIONS(658), - [anon_sym_if] = ACTIONS(658), - [anon_sym_else] = ACTIONS(658), - [anon_sym_for] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(658), - [anon_sym_open] = ACTIONS(658), - [anon_sym_module] = ACTIONS(658), - [anon_sym_static] = ACTIONS(658), - [anon_sym_package] = ACTIONS(658), - [anon_sym_import] = ACTIONS(658), - [anon_sym_enum] = ACTIONS(658), - [anon_sym_public] = ACTIONS(658), - [anon_sym_protected] = ACTIONS(658), - [anon_sym_private] = ACTIONS(658), - [anon_sym_abstract] = ACTIONS(658), - [anon_sym_strictfp] = ACTIONS(658), - [anon_sym_native] = ACTIONS(658), - [anon_sym_transient] = ACTIONS(658), - [anon_sym_volatile] = ACTIONS(658), - [anon_sym_sealed] = ACTIONS(658), - [anon_sym_non_DASHsealed] = ACTIONS(656), - [anon_sym_record] = ACTIONS(658), - [anon_sym_ATinterface] = ACTIONS(656), - [anon_sym_interface] = ACTIONS(658), - [anon_sym_byte] = ACTIONS(658), - [anon_sym_short] = ACTIONS(658), - [anon_sym_int] = ACTIONS(658), - [anon_sym_long] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_float] = ACTIONS(658), - [anon_sym_double] = ACTIONS(658), - [sym_boolean_type] = ACTIONS(658), - [sym_void_type] = ACTIONS(658), - [sym_this] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(660), - [sym_identifier] = ACTIONS(662), - [sym_decimal_integer_literal] = ACTIONS(662), - [sym_hex_integer_literal] = ACTIONS(662), - [sym_octal_integer_literal] = ACTIONS(660), - [sym_binary_integer_literal] = ACTIONS(660), - [sym_decimal_floating_point_literal] = ACTIONS(660), - [sym_hex_floating_point_literal] = ACTIONS(662), - [sym_true] = ACTIONS(662), - [sym_false] = ACTIONS(662), - [sym_character_literal] = ACTIONS(660), - [sym_string_literal] = ACTIONS(662), - [sym_text_block] = ACTIONS(660), - [sym_null_literal] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_final] = ACTIONS(662), - [anon_sym_BANG] = ACTIONS(660), - [anon_sym_TILDE] = ACTIONS(660), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [anon_sym_new] = ACTIONS(662), - [anon_sym_class] = ACTIONS(662), - [anon_sym_switch] = ACTIONS(662), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_assert] = ACTIONS(662), - [anon_sym_do] = ACTIONS(662), - [anon_sym_while] = ACTIONS(662), - [anon_sym_break] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(662), - [anon_sym_return] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(662), - [anon_sym_synchronized] = ACTIONS(662), - [anon_sym_throw] = ACTIONS(662), - [anon_sym_try] = ACTIONS(662), - [anon_sym_if] = ACTIONS(662), - [anon_sym_else] = ACTIONS(662), - [anon_sym_for] = ACTIONS(662), - [anon_sym_AT] = ACTIONS(662), - [anon_sym_open] = ACTIONS(662), - [anon_sym_module] = ACTIONS(662), - [anon_sym_static] = ACTIONS(662), - [anon_sym_package] = ACTIONS(662), - [anon_sym_import] = ACTIONS(662), - [anon_sym_enum] = ACTIONS(662), - [anon_sym_public] = ACTIONS(662), - [anon_sym_protected] = ACTIONS(662), - [anon_sym_private] = ACTIONS(662), - [anon_sym_abstract] = ACTIONS(662), - [anon_sym_strictfp] = ACTIONS(662), - [anon_sym_native] = ACTIONS(662), - [anon_sym_transient] = ACTIONS(662), - [anon_sym_volatile] = ACTIONS(662), - [anon_sym_sealed] = ACTIONS(662), - [anon_sym_non_DASHsealed] = ACTIONS(660), - [anon_sym_record] = ACTIONS(662), - [anon_sym_ATinterface] = ACTIONS(660), - [anon_sym_interface] = ACTIONS(662), - [anon_sym_byte] = ACTIONS(662), - [anon_sym_short] = ACTIONS(662), - [anon_sym_int] = ACTIONS(662), - [anon_sym_long] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_float] = ACTIONS(662), - [anon_sym_double] = ACTIONS(662), - [sym_boolean_type] = ACTIONS(662), - [sym_void_type] = ACTIONS(662), - [sym_this] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(586), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(593), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(664), - [sym_identifier] = ACTIONS(666), - [sym_decimal_integer_literal] = ACTIONS(666), - [sym_hex_integer_literal] = ACTIONS(666), - [sym_octal_integer_literal] = ACTIONS(664), - [sym_binary_integer_literal] = ACTIONS(664), - [sym_decimal_floating_point_literal] = ACTIONS(664), - [sym_hex_floating_point_literal] = ACTIONS(666), - [sym_true] = ACTIONS(666), - [sym_false] = ACTIONS(666), - [sym_character_literal] = ACTIONS(664), - [sym_string_literal] = ACTIONS(666), - [sym_text_block] = ACTIONS(664), - [sym_null_literal] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_final] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_PLUS_PLUS] = ACTIONS(664), - [anon_sym_DASH_DASH] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_class] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_break] = ACTIONS(666), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_synchronized] = ACTIONS(666), - [anon_sym_throw] = ACTIONS(666), - [anon_sym_try] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_else] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_open] = ACTIONS(666), - [anon_sym_module] = ACTIONS(666), - [anon_sym_static] = ACTIONS(666), - [anon_sym_package] = ACTIONS(666), - [anon_sym_import] = ACTIONS(666), - [anon_sym_enum] = ACTIONS(666), - [anon_sym_public] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_strictfp] = ACTIONS(666), - [anon_sym_native] = ACTIONS(666), - [anon_sym_transient] = ACTIONS(666), - [anon_sym_volatile] = ACTIONS(666), - [anon_sym_sealed] = ACTIONS(666), - [anon_sym_non_DASHsealed] = ACTIONS(664), - [anon_sym_record] = ACTIONS(666), - [anon_sym_ATinterface] = ACTIONS(664), - [anon_sym_interface] = ACTIONS(666), - [anon_sym_byte] = ACTIONS(666), - [anon_sym_short] = ACTIONS(666), - [anon_sym_int] = ACTIONS(666), - [anon_sym_long] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_float] = ACTIONS(666), - [anon_sym_double] = ACTIONS(666), - [sym_boolean_type] = ACTIONS(666), - [sym_void_type] = ACTIONS(666), - [sym_this] = ACTIONS(666), - [sym_super] = ACTIONS(666), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(521), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(668), - [sym_identifier] = ACTIONS(670), - [sym_decimal_integer_literal] = ACTIONS(670), - [sym_hex_integer_literal] = ACTIONS(670), - [sym_octal_integer_literal] = ACTIONS(668), - [sym_binary_integer_literal] = ACTIONS(668), - [sym_decimal_floating_point_literal] = ACTIONS(668), - [sym_hex_floating_point_literal] = ACTIONS(670), - [sym_true] = ACTIONS(670), - [sym_false] = ACTIONS(670), - [sym_character_literal] = ACTIONS(668), - [sym_string_literal] = ACTIONS(670), - [sym_text_block] = ACTIONS(668), - [sym_null_literal] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_final] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(668), - [anon_sym_DASH_DASH] = ACTIONS(668), - [anon_sym_new] = ACTIONS(670), - [anon_sym_class] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_case] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(668), - [anon_sym_assert] = ACTIONS(670), - [anon_sym_do] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_yield] = ACTIONS(670), - [anon_sym_synchronized] = ACTIONS(670), - [anon_sym_throw] = ACTIONS(670), - [anon_sym_try] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_else] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(670), - [anon_sym_open] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_package] = ACTIONS(670), - [anon_sym_import] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_public] = ACTIONS(670), - [anon_sym_protected] = ACTIONS(670), - [anon_sym_private] = ACTIONS(670), - [anon_sym_abstract] = ACTIONS(670), - [anon_sym_strictfp] = ACTIONS(670), - [anon_sym_native] = ACTIONS(670), - [anon_sym_transient] = ACTIONS(670), - [anon_sym_volatile] = ACTIONS(670), - [anon_sym_sealed] = ACTIONS(670), - [anon_sym_non_DASHsealed] = ACTIONS(668), - [anon_sym_record] = ACTIONS(670), - [anon_sym_ATinterface] = ACTIONS(668), - [anon_sym_interface] = ACTIONS(670), - [anon_sym_byte] = ACTIONS(670), - [anon_sym_short] = ACTIONS(670), - [anon_sym_int] = ACTIONS(670), - [anon_sym_long] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_float] = ACTIONS(670), - [anon_sym_double] = ACTIONS(670), - [sym_boolean_type] = ACTIONS(670), - [sym_void_type] = ACTIONS(670), - [sym_this] = ACTIONS(670), - [sym_super] = ACTIONS(670), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(594), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(672), - [sym_identifier] = ACTIONS(674), - [sym_decimal_integer_literal] = ACTIONS(674), - [sym_hex_integer_literal] = ACTIONS(674), - [sym_octal_integer_literal] = ACTIONS(672), - [sym_binary_integer_literal] = ACTIONS(672), - [sym_decimal_floating_point_literal] = ACTIONS(672), - [sym_hex_floating_point_literal] = ACTIONS(674), - [sym_true] = ACTIONS(674), - [sym_false] = ACTIONS(674), - [sym_character_literal] = ACTIONS(672), - [sym_string_literal] = ACTIONS(674), - [sym_text_block] = ACTIONS(672), - [sym_null_literal] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_final] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(672), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_new] = ACTIONS(674), - [anon_sym_class] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_assert] = ACTIONS(674), - [anon_sym_do] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_yield] = ACTIONS(674), - [anon_sym_synchronized] = ACTIONS(674), - [anon_sym_throw] = ACTIONS(674), - [anon_sym_try] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_else] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(674), - [anon_sym_open] = ACTIONS(674), - [anon_sym_module] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_package] = ACTIONS(674), - [anon_sym_import] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_public] = ACTIONS(674), - [anon_sym_protected] = ACTIONS(674), - [anon_sym_private] = ACTIONS(674), - [anon_sym_abstract] = ACTIONS(674), - [anon_sym_strictfp] = ACTIONS(674), - [anon_sym_native] = ACTIONS(674), - [anon_sym_transient] = ACTIONS(674), - [anon_sym_volatile] = ACTIONS(674), - [anon_sym_sealed] = ACTIONS(674), - [anon_sym_non_DASHsealed] = ACTIONS(672), - [anon_sym_record] = ACTIONS(674), - [anon_sym_ATinterface] = ACTIONS(672), - [anon_sym_interface] = ACTIONS(674), - [anon_sym_byte] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [sym_boolean_type] = ACTIONS(674), - [sym_void_type] = ACTIONS(674), - [sym_this] = ACTIONS(674), - [sym_super] = ACTIONS(674), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(597), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [185] = { - [ts_builtin_sym_end] = ACTIONS(676), - [sym_identifier] = ACTIONS(678), - [sym_decimal_integer_literal] = ACTIONS(678), - [sym_hex_integer_literal] = ACTIONS(678), - [sym_octal_integer_literal] = ACTIONS(676), - [sym_binary_integer_literal] = ACTIONS(676), - [sym_decimal_floating_point_literal] = ACTIONS(676), - [sym_hex_floating_point_literal] = ACTIONS(678), - [sym_true] = ACTIONS(678), - [sym_false] = ACTIONS(678), - [sym_character_literal] = ACTIONS(676), - [sym_string_literal] = ACTIONS(678), - [sym_text_block] = ACTIONS(676), - [sym_null_literal] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_final] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_PLUS_PLUS] = ACTIONS(676), - [anon_sym_DASH_DASH] = ACTIONS(676), - [anon_sym_new] = ACTIONS(678), - [anon_sym_class] = ACTIONS(678), - [anon_sym_switch] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_case] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_assert] = ACTIONS(678), - [anon_sym_do] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_synchronized] = ACTIONS(678), - [anon_sym_throw] = ACTIONS(678), - [anon_sym_try] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_else] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(678), - [anon_sym_open] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_package] = ACTIONS(678), - [anon_sym_import] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_public] = ACTIONS(678), - [anon_sym_protected] = ACTIONS(678), - [anon_sym_private] = ACTIONS(678), - [anon_sym_abstract] = ACTIONS(678), - [anon_sym_strictfp] = ACTIONS(678), - [anon_sym_native] = ACTIONS(678), - [anon_sym_transient] = ACTIONS(678), - [anon_sym_volatile] = ACTIONS(678), - [anon_sym_sealed] = ACTIONS(678), - [anon_sym_non_DASHsealed] = ACTIONS(676), - [anon_sym_record] = ACTIONS(678), - [anon_sym_ATinterface] = ACTIONS(676), - [anon_sym_interface] = ACTIONS(678), - [anon_sym_byte] = ACTIONS(678), - [anon_sym_short] = ACTIONS(678), - [anon_sym_int] = ACTIONS(678), - [anon_sym_long] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_float] = ACTIONS(678), - [anon_sym_double] = ACTIONS(678), - [sym_boolean_type] = ACTIONS(678), - [sym_void_type] = ACTIONS(678), - [sym_this] = ACTIONS(678), - [sym_super] = ACTIONS(678), + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [sym_decimal_integer_literal] = ACTIONS(508), + [sym_hex_integer_literal] = ACTIONS(508), + [sym_octal_integer_literal] = ACTIONS(506), + [sym_binary_integer_literal] = ACTIONS(506), + [sym_decimal_floating_point_literal] = ACTIONS(506), + [sym_hex_floating_point_literal] = ACTIONS(508), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_character_literal] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(508), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(506), + [sym_null_literal] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_final] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(506), + [anon_sym_new] = ACTIONS(508), + [anon_sym_class] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_case] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_assert] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_synchronized] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_open] = ACTIONS(508), + [anon_sym_module] = ACTIONS(508), + [anon_sym_static] = ACTIONS(508), + [anon_sym_package] = ACTIONS(508), + [anon_sym_import] = ACTIONS(508), + [anon_sym_enum] = ACTIONS(508), + [anon_sym_public] = ACTIONS(508), + [anon_sym_protected] = ACTIONS(508), + [anon_sym_private] = ACTIONS(508), + [anon_sym_abstract] = ACTIONS(508), + [anon_sym_strictfp] = ACTIONS(508), + [anon_sym_native] = ACTIONS(508), + [anon_sym_transient] = ACTIONS(508), + [anon_sym_volatile] = ACTIONS(508), + [anon_sym_sealed] = ACTIONS(508), + [anon_sym_non_DASHsealed] = ACTIONS(506), + [anon_sym_record] = ACTIONS(508), + [anon_sym_ATinterface] = ACTIONS(506), + [anon_sym_interface] = ACTIONS(508), + [anon_sym_byte] = ACTIONS(508), + [anon_sym_short] = ACTIONS(508), + [anon_sym_int] = ACTIONS(508), + [anon_sym_long] = ACTIONS(508), + [anon_sym_char] = ACTIONS(508), + [anon_sym_float] = ACTIONS(508), + [anon_sym_double] = ACTIONS(508), + [sym_boolean_type] = ACTIONS(508), + [sym_void_type] = ACTIONS(508), + [sym_this] = ACTIONS(508), + [sym_super] = ACTIONS(508), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(680), - [sym_identifier] = ACTIONS(682), - [sym_decimal_integer_literal] = ACTIONS(682), - [sym_hex_integer_literal] = ACTIONS(682), - [sym_octal_integer_literal] = ACTIONS(680), - [sym_binary_integer_literal] = ACTIONS(680), - [sym_decimal_floating_point_literal] = ACTIONS(680), - [sym_hex_floating_point_literal] = ACTIONS(682), - [sym_true] = ACTIONS(682), - [sym_false] = ACTIONS(682), - [sym_character_literal] = ACTIONS(680), - [sym_string_literal] = ACTIONS(682), - [sym_text_block] = ACTIONS(680), - [sym_null_literal] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_final] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), - [anon_sym_new] = ACTIONS(682), - [anon_sym_class] = ACTIONS(682), - [anon_sym_switch] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_case] = ACTIONS(682), - [anon_sym_default] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_assert] = ACTIONS(682), - [anon_sym_do] = ACTIONS(682), - [anon_sym_while] = ACTIONS(682), - [anon_sym_break] = ACTIONS(682), - [anon_sym_continue] = ACTIONS(682), - [anon_sym_return] = ACTIONS(682), - [anon_sym_yield] = ACTIONS(682), - [anon_sym_synchronized] = ACTIONS(682), - [anon_sym_throw] = ACTIONS(682), - [anon_sym_try] = ACTIONS(682), - [anon_sym_if] = ACTIONS(682), - [anon_sym_else] = ACTIONS(682), - [anon_sym_for] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(682), - [anon_sym_open] = ACTIONS(682), - [anon_sym_module] = ACTIONS(682), - [anon_sym_static] = ACTIONS(682), - [anon_sym_package] = ACTIONS(682), - [anon_sym_import] = ACTIONS(682), - [anon_sym_enum] = ACTIONS(682), - [anon_sym_public] = ACTIONS(682), - [anon_sym_protected] = ACTIONS(682), - [anon_sym_private] = ACTIONS(682), - [anon_sym_abstract] = ACTIONS(682), - [anon_sym_strictfp] = ACTIONS(682), - [anon_sym_native] = ACTIONS(682), - [anon_sym_transient] = ACTIONS(682), - [anon_sym_volatile] = ACTIONS(682), - [anon_sym_sealed] = ACTIONS(682), - [anon_sym_non_DASHsealed] = ACTIONS(680), - [anon_sym_record] = ACTIONS(682), - [anon_sym_ATinterface] = ACTIONS(680), - [anon_sym_interface] = ACTIONS(682), - [anon_sym_byte] = ACTIONS(682), - [anon_sym_short] = ACTIONS(682), - [anon_sym_int] = ACTIONS(682), - [anon_sym_long] = ACTIONS(682), - [anon_sym_char] = ACTIONS(682), - [anon_sym_float] = ACTIONS(682), - [anon_sym_double] = ACTIONS(682), - [sym_boolean_type] = ACTIONS(682), - [sym_void_type] = ACTIONS(682), - [sym_this] = ACTIONS(682), - [sym_super] = ACTIONS(682), + [ts_builtin_sym_end] = ACTIONS(510), + [sym_identifier] = ACTIONS(512), + [sym_decimal_integer_literal] = ACTIONS(512), + [sym_hex_integer_literal] = ACTIONS(512), + [sym_octal_integer_literal] = ACTIONS(510), + [sym_binary_integer_literal] = ACTIONS(510), + [sym_decimal_floating_point_literal] = ACTIONS(510), + [sym_hex_floating_point_literal] = ACTIONS(512), + [sym_true] = ACTIONS(512), + [sym_false] = ACTIONS(512), + [sym_character_literal] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(512), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(510), + [sym_null_literal] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_final] = ACTIONS(512), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_PLUS_PLUS] = ACTIONS(510), + [anon_sym_DASH_DASH] = ACTIONS(510), + [anon_sym_new] = ACTIONS(512), + [anon_sym_class] = ACTIONS(512), + [anon_sym_switch] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_case] = ACTIONS(512), + [anon_sym_default] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_assert] = ACTIONS(512), + [anon_sym_do] = ACTIONS(512), + [anon_sym_while] = ACTIONS(512), + [anon_sym_break] = ACTIONS(512), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_return] = ACTIONS(512), + [anon_sym_yield] = ACTIONS(512), + [anon_sym_synchronized] = ACTIONS(512), + [anon_sym_throw] = ACTIONS(512), + [anon_sym_try] = ACTIONS(512), + [anon_sym_if] = ACTIONS(512), + [anon_sym_else] = ACTIONS(512), + [anon_sym_for] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_open] = ACTIONS(512), + [anon_sym_module] = ACTIONS(512), + [anon_sym_static] = ACTIONS(512), + [anon_sym_package] = ACTIONS(512), + [anon_sym_import] = ACTIONS(512), + [anon_sym_enum] = ACTIONS(512), + [anon_sym_public] = ACTIONS(512), + [anon_sym_protected] = ACTIONS(512), + [anon_sym_private] = ACTIONS(512), + [anon_sym_abstract] = ACTIONS(512), + [anon_sym_strictfp] = ACTIONS(512), + [anon_sym_native] = ACTIONS(512), + [anon_sym_transient] = ACTIONS(512), + [anon_sym_volatile] = ACTIONS(512), + [anon_sym_sealed] = ACTIONS(512), + [anon_sym_non_DASHsealed] = ACTIONS(510), + [anon_sym_record] = ACTIONS(512), + [anon_sym_ATinterface] = ACTIONS(510), + [anon_sym_interface] = ACTIONS(512), + [anon_sym_byte] = ACTIONS(512), + [anon_sym_short] = ACTIONS(512), + [anon_sym_int] = ACTIONS(512), + [anon_sym_long] = ACTIONS(512), + [anon_sym_char] = ACTIONS(512), + [anon_sym_float] = ACTIONS(512), + [anon_sym_double] = ACTIONS(512), + [sym_boolean_type] = ACTIONS(512), + [sym_void_type] = ACTIONS(512), + [sym_this] = ACTIONS(512), + [sym_super] = ACTIONS(512), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [187] = { - [ts_builtin_sym_end] = ACTIONS(323), - [sym_identifier] = ACTIONS(325), - [sym_decimal_integer_literal] = ACTIONS(325), - [sym_hex_integer_literal] = ACTIONS(325), - [sym_octal_integer_literal] = ACTIONS(323), - [sym_binary_integer_literal] = ACTIONS(323), - [sym_decimal_floating_point_literal] = ACTIONS(323), - [sym_hex_floating_point_literal] = ACTIONS(325), - [sym_true] = ACTIONS(325), - [sym_false] = ACTIONS(325), - [sym_character_literal] = ACTIONS(323), - [sym_string_literal] = ACTIONS(325), - [sym_text_block] = ACTIONS(323), - [sym_null_literal] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_DASH] = ACTIONS(325), - [anon_sym_final] = ACTIONS(325), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_PLUS_PLUS] = ACTIONS(323), - [anon_sym_DASH_DASH] = ACTIONS(323), - [anon_sym_new] = ACTIONS(325), - [anon_sym_class] = ACTIONS(325), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_case] = ACTIONS(325), - [anon_sym_default] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_assert] = ACTIONS(325), - [anon_sym_do] = ACTIONS(325), - [anon_sym_while] = ACTIONS(325), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(325), - [anon_sym_return] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(325), - [anon_sym_synchronized] = ACTIONS(325), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_try] = ACTIONS(325), - [anon_sym_if] = ACTIONS(325), - [anon_sym_else] = ACTIONS(325), - [anon_sym_for] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_open] = ACTIONS(325), - [anon_sym_module] = ACTIONS(325), - [anon_sym_static] = ACTIONS(325), - [anon_sym_package] = ACTIONS(325), - [anon_sym_import] = ACTIONS(325), - [anon_sym_enum] = ACTIONS(325), - [anon_sym_public] = ACTIONS(325), - [anon_sym_protected] = ACTIONS(325), - [anon_sym_private] = ACTIONS(325), - [anon_sym_abstract] = ACTIONS(325), - [anon_sym_strictfp] = ACTIONS(325), - [anon_sym_native] = ACTIONS(325), - [anon_sym_transient] = ACTIONS(325), - [anon_sym_volatile] = ACTIONS(325), - [anon_sym_sealed] = ACTIONS(325), - [anon_sym_non_DASHsealed] = ACTIONS(323), - [anon_sym_record] = ACTIONS(325), - [anon_sym_ATinterface] = ACTIONS(323), - [anon_sym_interface] = ACTIONS(325), - [anon_sym_byte] = ACTIONS(325), - [anon_sym_short] = ACTIONS(325), - [anon_sym_int] = ACTIONS(325), - [anon_sym_long] = ACTIONS(325), - [anon_sym_char] = ACTIONS(325), - [anon_sym_float] = ACTIONS(325), - [anon_sym_double] = ACTIONS(325), - [sym_boolean_type] = ACTIONS(325), - [sym_void_type] = ACTIONS(325), - [sym_this] = ACTIONS(325), - [sym_super] = ACTIONS(325), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [188] = { - [ts_builtin_sym_end] = ACTIONS(684), - [sym_identifier] = ACTIONS(686), - [sym_decimal_integer_literal] = ACTIONS(686), - [sym_hex_integer_literal] = ACTIONS(686), - [sym_octal_integer_literal] = ACTIONS(684), - [sym_binary_integer_literal] = ACTIONS(684), - [sym_decimal_floating_point_literal] = ACTIONS(684), - [sym_hex_floating_point_literal] = ACTIONS(686), - [sym_true] = ACTIONS(686), - [sym_false] = ACTIONS(686), - [sym_character_literal] = ACTIONS(684), - [sym_string_literal] = ACTIONS(686), - [sym_text_block] = ACTIONS(684), - [sym_null_literal] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_final] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_TILDE] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_class] = ACTIONS(686), - [anon_sym_switch] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(686), - [anon_sym_default] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_assert] = ACTIONS(686), - [anon_sym_do] = ACTIONS(686), - [anon_sym_while] = ACTIONS(686), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(686), - [anon_sym_return] = ACTIONS(686), - [anon_sym_yield] = ACTIONS(686), - [anon_sym_synchronized] = ACTIONS(686), - [anon_sym_throw] = ACTIONS(686), - [anon_sym_try] = ACTIONS(686), - [anon_sym_if] = ACTIONS(686), - [anon_sym_else] = ACTIONS(686), - [anon_sym_for] = ACTIONS(686), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_open] = ACTIONS(686), - [anon_sym_module] = ACTIONS(686), - [anon_sym_static] = ACTIONS(686), - [anon_sym_package] = ACTIONS(686), - [anon_sym_import] = ACTIONS(686), - [anon_sym_enum] = ACTIONS(686), - [anon_sym_public] = ACTIONS(686), - [anon_sym_protected] = ACTIONS(686), - [anon_sym_private] = ACTIONS(686), - [anon_sym_abstract] = ACTIONS(686), - [anon_sym_strictfp] = ACTIONS(686), - [anon_sym_native] = ACTIONS(686), - [anon_sym_transient] = ACTIONS(686), - [anon_sym_volatile] = ACTIONS(686), - [anon_sym_sealed] = ACTIONS(686), - [anon_sym_non_DASHsealed] = ACTIONS(684), - [anon_sym_record] = ACTIONS(686), - [anon_sym_ATinterface] = ACTIONS(684), - [anon_sym_interface] = ACTIONS(686), - [anon_sym_byte] = ACTIONS(686), - [anon_sym_short] = ACTIONS(686), - [anon_sym_int] = ACTIONS(686), - [anon_sym_long] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_float] = ACTIONS(686), - [anon_sym_double] = ACTIONS(686), - [sym_boolean_type] = ACTIONS(686), - [sym_void_type] = ACTIONS(686), - [sym_this] = ACTIONS(686), - [sym_super] = ACTIONS(686), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(600), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [189] = { - [ts_builtin_sym_end] = ACTIONS(688), - [sym_identifier] = ACTIONS(690), - [sym_decimal_integer_literal] = ACTIONS(690), - [sym_hex_integer_literal] = ACTIONS(690), - [sym_octal_integer_literal] = ACTIONS(688), - [sym_binary_integer_literal] = ACTIONS(688), - [sym_decimal_floating_point_literal] = ACTIONS(688), - [sym_hex_floating_point_literal] = ACTIONS(690), - [sym_true] = ACTIONS(690), - [sym_false] = ACTIONS(690), - [sym_character_literal] = ACTIONS(688), - [sym_string_literal] = ACTIONS(690), - [sym_text_block] = ACTIONS(688), - [sym_null_literal] = ACTIONS(690), - [anon_sym_LPAREN] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_final] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_TILDE] = ACTIONS(688), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_class] = ACTIONS(690), - [anon_sym_switch] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(688), - [anon_sym_case] = ACTIONS(690), - [anon_sym_default] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(690), - [anon_sym_do] = ACTIONS(690), - [anon_sym_while] = ACTIONS(690), - [anon_sym_break] = ACTIONS(690), - [anon_sym_continue] = ACTIONS(690), - [anon_sym_return] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(690), - [anon_sym_synchronized] = ACTIONS(690), - [anon_sym_throw] = ACTIONS(690), - [anon_sym_try] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_else] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(690), - [anon_sym_open] = ACTIONS(690), - [anon_sym_module] = ACTIONS(690), - [anon_sym_static] = ACTIONS(690), - [anon_sym_package] = ACTIONS(690), - [anon_sym_import] = ACTIONS(690), - [anon_sym_enum] = ACTIONS(690), - [anon_sym_public] = ACTIONS(690), - [anon_sym_protected] = ACTIONS(690), - [anon_sym_private] = ACTIONS(690), - [anon_sym_abstract] = ACTIONS(690), - [anon_sym_strictfp] = ACTIONS(690), - [anon_sym_native] = ACTIONS(690), - [anon_sym_transient] = ACTIONS(690), - [anon_sym_volatile] = ACTIONS(690), - [anon_sym_sealed] = ACTIONS(690), - [anon_sym_non_DASHsealed] = ACTIONS(688), - [anon_sym_record] = ACTIONS(690), - [anon_sym_ATinterface] = ACTIONS(688), - [anon_sym_interface] = ACTIONS(690), - [anon_sym_byte] = ACTIONS(690), - [anon_sym_short] = ACTIONS(690), - [anon_sym_int] = ACTIONS(690), - [anon_sym_long] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_float] = ACTIONS(690), - [anon_sym_double] = ACTIONS(690), - [sym_boolean_type] = ACTIONS(690), - [sym_void_type] = ACTIONS(690), - [sym_this] = ACTIONS(690), - [sym_super] = ACTIONS(690), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(602), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [190] = { - [ts_builtin_sym_end] = ACTIONS(692), - [sym_identifier] = ACTIONS(694), - [sym_decimal_integer_literal] = ACTIONS(694), - [sym_hex_integer_literal] = ACTIONS(694), - [sym_octal_integer_literal] = ACTIONS(692), - [sym_binary_integer_literal] = ACTIONS(692), - [sym_decimal_floating_point_literal] = ACTIONS(692), - [sym_hex_floating_point_literal] = ACTIONS(694), - [sym_true] = ACTIONS(694), - [sym_false] = ACTIONS(694), - [sym_character_literal] = ACTIONS(692), - [sym_string_literal] = ACTIONS(694), - [sym_text_block] = ACTIONS(692), - [sym_null_literal] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_new] = ACTIONS(694), - [anon_sym_class] = ACTIONS(694), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_case] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(692), - [anon_sym_assert] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_yield] = ACTIONS(694), - [anon_sym_synchronized] = ACTIONS(694), - [anon_sym_throw] = ACTIONS(694), - [anon_sym_try] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_open] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_package] = ACTIONS(694), - [anon_sym_import] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_abstract] = ACTIONS(694), - [anon_sym_strictfp] = ACTIONS(694), - [anon_sym_native] = ACTIONS(694), - [anon_sym_transient] = ACTIONS(694), - [anon_sym_volatile] = ACTIONS(694), - [anon_sym_sealed] = ACTIONS(694), - [anon_sym_non_DASHsealed] = ACTIONS(692), - [anon_sym_record] = ACTIONS(694), - [anon_sym_ATinterface] = ACTIONS(692), - [anon_sym_interface] = ACTIONS(694), - [anon_sym_byte] = ACTIONS(694), - [anon_sym_short] = ACTIONS(694), - [anon_sym_int] = ACTIONS(694), - [anon_sym_long] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_float] = ACTIONS(694), - [anon_sym_double] = ACTIONS(694), - [sym_boolean_type] = ACTIONS(694), - [sym_void_type] = ACTIONS(694), - [sym_this] = ACTIONS(694), - [sym_super] = ACTIONS(694), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(614), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [191] = { - [ts_builtin_sym_end] = ACTIONS(696), - [sym_identifier] = ACTIONS(698), - [sym_decimal_integer_literal] = ACTIONS(698), - [sym_hex_integer_literal] = ACTIONS(698), - [sym_octal_integer_literal] = ACTIONS(696), - [sym_binary_integer_literal] = ACTIONS(696), - [sym_decimal_floating_point_literal] = ACTIONS(696), - [sym_hex_floating_point_literal] = ACTIONS(698), - [sym_true] = ACTIONS(698), - [sym_false] = ACTIONS(698), - [sym_character_literal] = ACTIONS(696), - [sym_string_literal] = ACTIONS(698), - [sym_text_block] = ACTIONS(696), - [sym_null_literal] = ACTIONS(698), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(698), - [anon_sym_final] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_new] = ACTIONS(698), - [anon_sym_class] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_case] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_assert] = ACTIONS(698), - [anon_sym_do] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(698), - [anon_sym_synchronized] = ACTIONS(698), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_try] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_else] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(698), - [anon_sym_open] = ACTIONS(698), - [anon_sym_module] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_package] = ACTIONS(698), - [anon_sym_import] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_public] = ACTIONS(698), - [anon_sym_protected] = ACTIONS(698), - [anon_sym_private] = ACTIONS(698), - [anon_sym_abstract] = ACTIONS(698), - [anon_sym_strictfp] = ACTIONS(698), - [anon_sym_native] = ACTIONS(698), - [anon_sym_transient] = ACTIONS(698), - [anon_sym_volatile] = ACTIONS(698), - [anon_sym_sealed] = ACTIONS(698), - [anon_sym_non_DASHsealed] = ACTIONS(696), - [anon_sym_record] = ACTIONS(698), - [anon_sym_ATinterface] = ACTIONS(696), - [anon_sym_interface] = ACTIONS(698), - [anon_sym_byte] = ACTIONS(698), - [anon_sym_short] = ACTIONS(698), - [anon_sym_int] = ACTIONS(698), - [anon_sym_long] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_float] = ACTIONS(698), - [anon_sym_double] = ACTIONS(698), - [sym_boolean_type] = ACTIONS(698), - [sym_void_type] = ACTIONS(698), - [sym_this] = ACTIONS(698), - [sym_super] = ACTIONS(698), + [ts_builtin_sym_end] = ACTIONS(514), + [sym_identifier] = ACTIONS(516), + [sym_decimal_integer_literal] = ACTIONS(516), + [sym_hex_integer_literal] = ACTIONS(516), + [sym_octal_integer_literal] = ACTIONS(514), + [sym_binary_integer_literal] = ACTIONS(514), + [sym_decimal_floating_point_literal] = ACTIONS(514), + [sym_hex_floating_point_literal] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_character_literal] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(514), + [sym_null_literal] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_final] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_PLUS_PLUS] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(514), + [anon_sym_new] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_case] = ACTIONS(516), + [anon_sym_default] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_assert] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_while] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_yield] = ACTIONS(516), + [anon_sym_synchronized] = ACTIONS(516), + [anon_sym_throw] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_open] = ACTIONS(516), + [anon_sym_module] = ACTIONS(516), + [anon_sym_static] = ACTIONS(516), + [anon_sym_package] = ACTIONS(516), + [anon_sym_import] = ACTIONS(516), + [anon_sym_enum] = ACTIONS(516), + [anon_sym_public] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(516), + [anon_sym_strictfp] = ACTIONS(516), + [anon_sym_native] = ACTIONS(516), + [anon_sym_transient] = ACTIONS(516), + [anon_sym_volatile] = ACTIONS(516), + [anon_sym_sealed] = ACTIONS(516), + [anon_sym_non_DASHsealed] = ACTIONS(514), + [anon_sym_record] = ACTIONS(516), + [anon_sym_ATinterface] = ACTIONS(514), + [anon_sym_interface] = ACTIONS(516), + [anon_sym_byte] = ACTIONS(516), + [anon_sym_short] = ACTIONS(516), + [anon_sym_int] = ACTIONS(516), + [anon_sym_long] = ACTIONS(516), + [anon_sym_char] = ACTIONS(516), + [anon_sym_float] = ACTIONS(516), + [anon_sym_double] = ACTIONS(516), + [sym_boolean_type] = ACTIONS(516), + [sym_void_type] = ACTIONS(516), + [sym_this] = ACTIONS(516), + [sym_super] = ACTIONS(516), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [192] = { - [ts_builtin_sym_end] = ACTIONS(700), - [sym_identifier] = ACTIONS(702), - [sym_decimal_integer_literal] = ACTIONS(702), - [sym_hex_integer_literal] = ACTIONS(702), - [sym_octal_integer_literal] = ACTIONS(700), - [sym_binary_integer_literal] = ACTIONS(700), - [sym_decimal_floating_point_literal] = ACTIONS(700), - [sym_hex_floating_point_literal] = ACTIONS(702), - [sym_true] = ACTIONS(702), - [sym_false] = ACTIONS(702), - [sym_character_literal] = ACTIONS(700), - [sym_string_literal] = ACTIONS(702), - [sym_text_block] = ACTIONS(700), - [sym_null_literal] = ACTIONS(702), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_final] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(700), - [anon_sym_DASH_DASH] = ACTIONS(700), - [anon_sym_new] = ACTIONS(702), - [anon_sym_class] = ACTIONS(702), - [anon_sym_switch] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_RBRACE] = ACTIONS(700), - [anon_sym_case] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(700), - [anon_sym_assert] = ACTIONS(702), - [anon_sym_do] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_yield] = ACTIONS(702), - [anon_sym_synchronized] = ACTIONS(702), - [anon_sym_throw] = ACTIONS(702), - [anon_sym_try] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_else] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(702), - [anon_sym_open] = ACTIONS(702), - [anon_sym_module] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_package] = ACTIONS(702), - [anon_sym_import] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_public] = ACTIONS(702), - [anon_sym_protected] = ACTIONS(702), - [anon_sym_private] = ACTIONS(702), - [anon_sym_abstract] = ACTIONS(702), - [anon_sym_strictfp] = ACTIONS(702), - [anon_sym_native] = ACTIONS(702), - [anon_sym_transient] = ACTIONS(702), - [anon_sym_volatile] = ACTIONS(702), - [anon_sym_sealed] = ACTIONS(702), - [anon_sym_non_DASHsealed] = ACTIONS(700), - [anon_sym_record] = ACTIONS(702), - [anon_sym_ATinterface] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(702), - [anon_sym_byte] = ACTIONS(702), - [anon_sym_short] = ACTIONS(702), - [anon_sym_int] = ACTIONS(702), - [anon_sym_long] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_float] = ACTIONS(702), - [anon_sym_double] = ACTIONS(702), - [sym_boolean_type] = ACTIONS(702), - [sym_void_type] = ACTIONS(702), - [sym_this] = ACTIONS(702), - [sym_super] = ACTIONS(702), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(704), - [sym_identifier] = ACTIONS(706), - [sym_decimal_integer_literal] = ACTIONS(706), - [sym_hex_integer_literal] = ACTIONS(706), - [sym_octal_integer_literal] = ACTIONS(704), - [sym_binary_integer_literal] = ACTIONS(704), - [sym_decimal_floating_point_literal] = ACTIONS(704), - [sym_hex_floating_point_literal] = ACTIONS(706), - [sym_true] = ACTIONS(706), - [sym_false] = ACTIONS(706), - [sym_character_literal] = ACTIONS(704), - [sym_string_literal] = ACTIONS(706), - [sym_text_block] = ACTIONS(704), - [sym_null_literal] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_final] = ACTIONS(706), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_TILDE] = ACTIONS(704), - [anon_sym_PLUS_PLUS] = ACTIONS(704), - [anon_sym_DASH_DASH] = ACTIONS(704), - [anon_sym_new] = ACTIONS(706), - [anon_sym_class] = ACTIONS(706), - [anon_sym_switch] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(704), - [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_case] = ACTIONS(706), - [anon_sym_default] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_assert] = ACTIONS(706), - [anon_sym_do] = ACTIONS(706), - [anon_sym_while] = ACTIONS(706), - [anon_sym_break] = ACTIONS(706), - [anon_sym_continue] = ACTIONS(706), - [anon_sym_return] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(706), - [anon_sym_synchronized] = ACTIONS(706), - [anon_sym_throw] = ACTIONS(706), - [anon_sym_try] = ACTIONS(706), - [anon_sym_if] = ACTIONS(706), - [anon_sym_else] = ACTIONS(706), - [anon_sym_for] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_open] = ACTIONS(706), - [anon_sym_module] = ACTIONS(706), - [anon_sym_static] = ACTIONS(706), - [anon_sym_package] = ACTIONS(706), - [anon_sym_import] = ACTIONS(706), - [anon_sym_enum] = ACTIONS(706), - [anon_sym_public] = ACTIONS(706), - [anon_sym_protected] = ACTIONS(706), - [anon_sym_private] = ACTIONS(706), - [anon_sym_abstract] = ACTIONS(706), - [anon_sym_strictfp] = ACTIONS(706), - [anon_sym_native] = ACTIONS(706), - [anon_sym_transient] = ACTIONS(706), - [anon_sym_volatile] = ACTIONS(706), - [anon_sym_sealed] = ACTIONS(706), - [anon_sym_non_DASHsealed] = ACTIONS(704), - [anon_sym_record] = ACTIONS(706), - [anon_sym_ATinterface] = ACTIONS(704), - [anon_sym_interface] = ACTIONS(706), - [anon_sym_byte] = ACTIONS(706), - [anon_sym_short] = ACTIONS(706), - [anon_sym_int] = ACTIONS(706), - [anon_sym_long] = ACTIONS(706), - [anon_sym_char] = ACTIONS(706), - [anon_sym_float] = ACTIONS(706), - [anon_sym_double] = ACTIONS(706), - [sym_boolean_type] = ACTIONS(706), - [sym_void_type] = ACTIONS(706), - [sym_this] = ACTIONS(706), - [sym_super] = ACTIONS(706), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(708), - [sym_identifier] = ACTIONS(710), - [sym_decimal_integer_literal] = ACTIONS(710), - [sym_hex_integer_literal] = ACTIONS(710), - [sym_octal_integer_literal] = ACTIONS(708), - [sym_binary_integer_literal] = ACTIONS(708), - [sym_decimal_floating_point_literal] = ACTIONS(708), - [sym_hex_floating_point_literal] = ACTIONS(710), - [sym_true] = ACTIONS(710), - [sym_false] = ACTIONS(710), - [sym_character_literal] = ACTIONS(708), - [sym_string_literal] = ACTIONS(710), - [sym_text_block] = ACTIONS(708), - [sym_null_literal] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_final] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_new] = ACTIONS(710), - [anon_sym_class] = ACTIONS(710), - [anon_sym_switch] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_case] = ACTIONS(710), - [anon_sym_default] = ACTIONS(710), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_assert] = ACTIONS(710), - [anon_sym_do] = ACTIONS(710), - [anon_sym_while] = ACTIONS(710), - [anon_sym_break] = ACTIONS(710), - [anon_sym_continue] = ACTIONS(710), - [anon_sym_return] = ACTIONS(710), - [anon_sym_yield] = ACTIONS(710), - [anon_sym_synchronized] = ACTIONS(710), - [anon_sym_throw] = ACTIONS(710), - [anon_sym_try] = ACTIONS(710), - [anon_sym_if] = ACTIONS(710), - [anon_sym_else] = ACTIONS(710), - [anon_sym_for] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_open] = ACTIONS(710), - [anon_sym_module] = ACTIONS(710), - [anon_sym_static] = ACTIONS(710), - [anon_sym_package] = ACTIONS(710), - [anon_sym_import] = ACTIONS(710), - [anon_sym_enum] = ACTIONS(710), - [anon_sym_public] = ACTIONS(710), - [anon_sym_protected] = ACTIONS(710), - [anon_sym_private] = ACTIONS(710), - [anon_sym_abstract] = ACTIONS(710), - [anon_sym_strictfp] = ACTIONS(710), - [anon_sym_native] = ACTIONS(710), - [anon_sym_transient] = ACTIONS(710), - [anon_sym_volatile] = ACTIONS(710), - [anon_sym_sealed] = ACTIONS(710), - [anon_sym_non_DASHsealed] = ACTIONS(708), - [anon_sym_record] = ACTIONS(710), - [anon_sym_ATinterface] = ACTIONS(708), - [anon_sym_interface] = ACTIONS(710), - [anon_sym_byte] = ACTIONS(710), - [anon_sym_short] = ACTIONS(710), - [anon_sym_int] = ACTIONS(710), - [anon_sym_long] = ACTIONS(710), - [anon_sym_char] = ACTIONS(710), - [anon_sym_float] = ACTIONS(710), - [anon_sym_double] = ACTIONS(710), - [sym_boolean_type] = ACTIONS(710), - [sym_void_type] = ACTIONS(710), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(710), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [195] = { - [ts_builtin_sym_end] = ACTIONS(712), - [sym_identifier] = ACTIONS(714), - [sym_decimal_integer_literal] = ACTIONS(714), - [sym_hex_integer_literal] = ACTIONS(714), - [sym_octal_integer_literal] = ACTIONS(712), - [sym_binary_integer_literal] = ACTIONS(712), - [sym_decimal_floating_point_literal] = ACTIONS(712), - [sym_hex_floating_point_literal] = ACTIONS(714), - [sym_true] = ACTIONS(714), - [sym_false] = ACTIONS(714), - [sym_character_literal] = ACTIONS(712), - [sym_string_literal] = ACTIONS(714), - [sym_text_block] = ACTIONS(712), - [sym_null_literal] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_final] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_DASH_DASH] = ACTIONS(712), - [anon_sym_new] = ACTIONS(714), - [anon_sym_class] = ACTIONS(714), - [anon_sym_switch] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_case] = ACTIONS(714), - [anon_sym_default] = ACTIONS(714), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(714), - [anon_sym_do] = ACTIONS(714), - [anon_sym_while] = ACTIONS(714), - [anon_sym_break] = ACTIONS(714), - [anon_sym_continue] = ACTIONS(714), - [anon_sym_return] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(714), - [anon_sym_synchronized] = ACTIONS(714), - [anon_sym_throw] = ACTIONS(714), - [anon_sym_try] = ACTIONS(714), - [anon_sym_if] = ACTIONS(714), - [anon_sym_else] = ACTIONS(714), - [anon_sym_for] = ACTIONS(714), - [anon_sym_AT] = ACTIONS(714), - [anon_sym_open] = ACTIONS(714), - [anon_sym_module] = ACTIONS(714), - [anon_sym_static] = ACTIONS(714), - [anon_sym_package] = ACTIONS(714), - [anon_sym_import] = ACTIONS(714), - [anon_sym_enum] = ACTIONS(714), - [anon_sym_public] = ACTIONS(714), - [anon_sym_protected] = ACTIONS(714), - [anon_sym_private] = ACTIONS(714), - [anon_sym_abstract] = ACTIONS(714), - [anon_sym_strictfp] = ACTIONS(714), - [anon_sym_native] = ACTIONS(714), - [anon_sym_transient] = ACTIONS(714), - [anon_sym_volatile] = ACTIONS(714), - [anon_sym_sealed] = ACTIONS(714), - [anon_sym_non_DASHsealed] = ACTIONS(712), - [anon_sym_record] = ACTIONS(714), - [anon_sym_ATinterface] = ACTIONS(712), - [anon_sym_interface] = ACTIONS(714), - [anon_sym_byte] = ACTIONS(714), - [anon_sym_short] = ACTIONS(714), - [anon_sym_int] = ACTIONS(714), - [anon_sym_long] = ACTIONS(714), - [anon_sym_char] = ACTIONS(714), - [anon_sym_float] = ACTIONS(714), - [anon_sym_double] = ACTIONS(714), - [sym_boolean_type] = ACTIONS(714), - [sym_void_type] = ACTIONS(714), - [sym_this] = ACTIONS(714), - [sym_super] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [196] = { - [ts_builtin_sym_end] = ACTIONS(716), - [sym_identifier] = ACTIONS(718), - [sym_decimal_integer_literal] = ACTIONS(718), - [sym_hex_integer_literal] = ACTIONS(718), - [sym_octal_integer_literal] = ACTIONS(716), - [sym_binary_integer_literal] = ACTIONS(716), - [sym_decimal_floating_point_literal] = ACTIONS(716), - [sym_hex_floating_point_literal] = ACTIONS(718), - [sym_true] = ACTIONS(718), - [sym_false] = ACTIONS(718), - [sym_character_literal] = ACTIONS(716), - [sym_string_literal] = ACTIONS(718), - [sym_text_block] = ACTIONS(716), - [sym_null_literal] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_final] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_TILDE] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [anon_sym_new] = ACTIONS(718), - [anon_sym_class] = ACTIONS(718), - [anon_sym_switch] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(716), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_case] = ACTIONS(718), - [anon_sym_default] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(716), - [anon_sym_assert] = ACTIONS(718), - [anon_sym_do] = ACTIONS(718), - [anon_sym_while] = ACTIONS(718), - [anon_sym_break] = ACTIONS(718), - [anon_sym_continue] = ACTIONS(718), - [anon_sym_return] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(718), - [anon_sym_synchronized] = ACTIONS(718), - [anon_sym_throw] = ACTIONS(718), - [anon_sym_try] = ACTIONS(718), - [anon_sym_if] = ACTIONS(718), - [anon_sym_else] = ACTIONS(718), - [anon_sym_for] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_open] = ACTIONS(718), - [anon_sym_module] = ACTIONS(718), - [anon_sym_static] = ACTIONS(718), - [anon_sym_package] = ACTIONS(718), - [anon_sym_import] = ACTIONS(718), - [anon_sym_enum] = ACTIONS(718), - [anon_sym_public] = ACTIONS(718), - [anon_sym_protected] = ACTIONS(718), - [anon_sym_private] = ACTIONS(718), - [anon_sym_abstract] = ACTIONS(718), - [anon_sym_strictfp] = ACTIONS(718), - [anon_sym_native] = ACTIONS(718), - [anon_sym_transient] = ACTIONS(718), - [anon_sym_volatile] = ACTIONS(718), - [anon_sym_sealed] = ACTIONS(718), - [anon_sym_non_DASHsealed] = ACTIONS(716), - [anon_sym_record] = ACTIONS(718), - [anon_sym_ATinterface] = ACTIONS(716), - [anon_sym_interface] = ACTIONS(718), - [anon_sym_byte] = ACTIONS(718), - [anon_sym_short] = ACTIONS(718), - [anon_sym_int] = ACTIONS(718), - [anon_sym_long] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_float] = ACTIONS(718), - [anon_sym_double] = ACTIONS(718), - [sym_boolean_type] = ACTIONS(718), - [sym_void_type] = ACTIONS(718), - [sym_this] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(720), - [sym_identifier] = ACTIONS(722), - [sym_decimal_integer_literal] = ACTIONS(722), - [sym_hex_integer_literal] = ACTIONS(722), - [sym_octal_integer_literal] = ACTIONS(720), - [sym_binary_integer_literal] = ACTIONS(720), - [sym_decimal_floating_point_literal] = ACTIONS(720), - [sym_hex_floating_point_literal] = ACTIONS(722), - [sym_true] = ACTIONS(722), - [sym_false] = ACTIONS(722), - [sym_character_literal] = ACTIONS(720), - [sym_string_literal] = ACTIONS(722), - [sym_text_block] = ACTIONS(720), - [sym_null_literal] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_final] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_TILDE] = ACTIONS(720), - [anon_sym_PLUS_PLUS] = ACTIONS(720), - [anon_sym_DASH_DASH] = ACTIONS(720), - [anon_sym_new] = ACTIONS(722), - [anon_sym_class] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_assert] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_break] = ACTIONS(722), - [anon_sym_continue] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_yield] = ACTIONS(722), - [anon_sym_synchronized] = ACTIONS(722), - [anon_sym_throw] = ACTIONS(722), - [anon_sym_try] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_else] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [anon_sym_open] = ACTIONS(722), - [anon_sym_module] = ACTIONS(722), - [anon_sym_static] = ACTIONS(722), - [anon_sym_package] = ACTIONS(722), - [anon_sym_import] = ACTIONS(722), - [anon_sym_enum] = ACTIONS(722), - [anon_sym_public] = ACTIONS(722), - [anon_sym_protected] = ACTIONS(722), - [anon_sym_private] = ACTIONS(722), - [anon_sym_abstract] = ACTIONS(722), - [anon_sym_strictfp] = ACTIONS(722), - [anon_sym_native] = ACTIONS(722), - [anon_sym_transient] = ACTIONS(722), - [anon_sym_volatile] = ACTIONS(722), - [anon_sym_sealed] = ACTIONS(722), - [anon_sym_non_DASHsealed] = ACTIONS(720), - [anon_sym_record] = ACTIONS(722), - [anon_sym_ATinterface] = ACTIONS(720), - [anon_sym_interface] = ACTIONS(722), - [anon_sym_byte] = ACTIONS(722), - [anon_sym_short] = ACTIONS(722), - [anon_sym_int] = ACTIONS(722), - [anon_sym_long] = ACTIONS(722), - [anon_sym_char] = ACTIONS(722), - [anon_sym_float] = ACTIONS(722), - [anon_sym_double] = ACTIONS(722), - [sym_boolean_type] = ACTIONS(722), - [sym_void_type] = ACTIONS(722), - [sym_this] = ACTIONS(722), - [sym_super] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [198] = { - [ts_builtin_sym_end] = ACTIONS(724), - [sym_identifier] = ACTIONS(726), - [sym_decimal_integer_literal] = ACTIONS(726), - [sym_hex_integer_literal] = ACTIONS(726), - [sym_octal_integer_literal] = ACTIONS(724), - [sym_binary_integer_literal] = ACTIONS(724), - [sym_decimal_floating_point_literal] = ACTIONS(724), - [sym_hex_floating_point_literal] = ACTIONS(726), - [sym_true] = ACTIONS(726), - [sym_false] = ACTIONS(726), - [sym_character_literal] = ACTIONS(724), - [sym_string_literal] = ACTIONS(726), - [sym_text_block] = ACTIONS(724), - [sym_null_literal] = ACTIONS(726), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_final] = ACTIONS(726), - [anon_sym_BANG] = ACTIONS(724), - [anon_sym_TILDE] = ACTIONS(724), - [anon_sym_PLUS_PLUS] = ACTIONS(724), - [anon_sym_DASH_DASH] = ACTIONS(724), - [anon_sym_new] = ACTIONS(726), - [anon_sym_class] = ACTIONS(726), - [anon_sym_switch] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_case] = ACTIONS(726), - [anon_sym_default] = ACTIONS(726), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_assert] = ACTIONS(726), - [anon_sym_do] = ACTIONS(726), - [anon_sym_while] = ACTIONS(726), - [anon_sym_break] = ACTIONS(726), - [anon_sym_continue] = ACTIONS(726), - [anon_sym_return] = ACTIONS(726), - [anon_sym_yield] = ACTIONS(726), - [anon_sym_synchronized] = ACTIONS(726), - [anon_sym_throw] = ACTIONS(726), - [anon_sym_try] = ACTIONS(726), - [anon_sym_if] = ACTIONS(726), - [anon_sym_else] = ACTIONS(726), - [anon_sym_for] = ACTIONS(726), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_open] = ACTIONS(726), - [anon_sym_module] = ACTIONS(726), - [anon_sym_static] = ACTIONS(726), - [anon_sym_package] = ACTIONS(726), - [anon_sym_import] = ACTIONS(726), - [anon_sym_enum] = ACTIONS(726), - [anon_sym_public] = ACTIONS(726), - [anon_sym_protected] = ACTIONS(726), - [anon_sym_private] = ACTIONS(726), - [anon_sym_abstract] = ACTIONS(726), - [anon_sym_strictfp] = ACTIONS(726), - [anon_sym_native] = ACTIONS(726), - [anon_sym_transient] = ACTIONS(726), - [anon_sym_volatile] = ACTIONS(726), - [anon_sym_sealed] = ACTIONS(726), - [anon_sym_non_DASHsealed] = ACTIONS(724), - [anon_sym_record] = ACTIONS(726), - [anon_sym_ATinterface] = ACTIONS(724), - [anon_sym_interface] = ACTIONS(726), - [anon_sym_byte] = ACTIONS(726), - [anon_sym_short] = ACTIONS(726), - [anon_sym_int] = ACTIONS(726), - [anon_sym_long] = ACTIONS(726), - [anon_sym_char] = ACTIONS(726), - [anon_sym_float] = ACTIONS(726), - [anon_sym_double] = ACTIONS(726), - [sym_boolean_type] = ACTIONS(726), - [sym_void_type] = ACTIONS(726), - [sym_this] = ACTIONS(726), - [sym_super] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(728), - [sym_identifier] = ACTIONS(730), - [sym_decimal_integer_literal] = ACTIONS(730), - [sym_hex_integer_literal] = ACTIONS(730), - [sym_octal_integer_literal] = ACTIONS(728), - [sym_binary_integer_literal] = ACTIONS(728), - [sym_decimal_floating_point_literal] = ACTIONS(728), - [sym_hex_floating_point_literal] = ACTIONS(730), - [sym_true] = ACTIONS(730), - [sym_false] = ACTIONS(730), - [sym_character_literal] = ACTIONS(728), - [sym_string_literal] = ACTIONS(730), - [sym_text_block] = ACTIONS(728), - [sym_null_literal] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(730), - [anon_sym_final] = ACTIONS(730), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(728), - [anon_sym_DASH_DASH] = ACTIONS(728), - [anon_sym_new] = ACTIONS(730), - [anon_sym_class] = ACTIONS(730), - [anon_sym_switch] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_case] = ACTIONS(730), - [anon_sym_default] = ACTIONS(730), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_assert] = ACTIONS(730), - [anon_sym_do] = ACTIONS(730), - [anon_sym_while] = ACTIONS(730), - [anon_sym_break] = ACTIONS(730), - [anon_sym_continue] = ACTIONS(730), - [anon_sym_return] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(730), - [anon_sym_synchronized] = ACTIONS(730), - [anon_sym_throw] = ACTIONS(730), - [anon_sym_try] = ACTIONS(730), - [anon_sym_if] = ACTIONS(730), - [anon_sym_else] = ACTIONS(730), - [anon_sym_for] = ACTIONS(730), - [anon_sym_AT] = ACTIONS(730), - [anon_sym_open] = ACTIONS(730), - [anon_sym_module] = ACTIONS(730), - [anon_sym_static] = ACTIONS(730), - [anon_sym_package] = ACTIONS(730), - [anon_sym_import] = ACTIONS(730), - [anon_sym_enum] = ACTIONS(730), - [anon_sym_public] = ACTIONS(730), - [anon_sym_protected] = ACTIONS(730), - [anon_sym_private] = ACTIONS(730), - [anon_sym_abstract] = ACTIONS(730), - [anon_sym_strictfp] = ACTIONS(730), - [anon_sym_native] = ACTIONS(730), - [anon_sym_transient] = ACTIONS(730), - [anon_sym_volatile] = ACTIONS(730), - [anon_sym_sealed] = ACTIONS(730), - [anon_sym_non_DASHsealed] = ACTIONS(728), - [anon_sym_record] = ACTIONS(730), - [anon_sym_ATinterface] = ACTIONS(728), - [anon_sym_interface] = ACTIONS(730), - [anon_sym_byte] = ACTIONS(730), - [anon_sym_short] = ACTIONS(730), - [anon_sym_int] = ACTIONS(730), - [anon_sym_long] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_float] = ACTIONS(730), - [anon_sym_double] = ACTIONS(730), - [sym_boolean_type] = ACTIONS(730), - [sym_void_type] = ACTIONS(730), - [sym_this] = ACTIONS(730), - [sym_super] = ACTIONS(730), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [200] = { - [ts_builtin_sym_end] = ACTIONS(732), - [sym_identifier] = ACTIONS(734), - [sym_decimal_integer_literal] = ACTIONS(734), - [sym_hex_integer_literal] = ACTIONS(734), - [sym_octal_integer_literal] = ACTIONS(732), - [sym_binary_integer_literal] = ACTIONS(732), - [sym_decimal_floating_point_literal] = ACTIONS(732), - [sym_hex_floating_point_literal] = ACTIONS(734), - [sym_true] = ACTIONS(734), - [sym_false] = ACTIONS(734), - [sym_character_literal] = ACTIONS(732), - [sym_string_literal] = ACTIONS(734), - [sym_text_block] = ACTIONS(732), - [sym_null_literal] = ACTIONS(734), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(734), - [anon_sym_DASH] = ACTIONS(734), - [anon_sym_final] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_PLUS_PLUS] = ACTIONS(732), - [anon_sym_DASH_DASH] = ACTIONS(732), - [anon_sym_new] = ACTIONS(734), - [anon_sym_class] = ACTIONS(734), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_case] = ACTIONS(734), - [anon_sym_default] = ACTIONS(734), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_assert] = ACTIONS(734), - [anon_sym_do] = ACTIONS(734), - [anon_sym_while] = ACTIONS(734), - [anon_sym_break] = ACTIONS(734), - [anon_sym_continue] = ACTIONS(734), - [anon_sym_return] = ACTIONS(734), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_synchronized] = ACTIONS(734), - [anon_sym_throw] = ACTIONS(734), - [anon_sym_try] = ACTIONS(734), - [anon_sym_if] = ACTIONS(734), - [anon_sym_else] = ACTIONS(734), - [anon_sym_for] = ACTIONS(734), - [anon_sym_AT] = ACTIONS(734), - [anon_sym_open] = ACTIONS(734), - [anon_sym_module] = ACTIONS(734), - [anon_sym_static] = ACTIONS(734), - [anon_sym_package] = ACTIONS(734), - [anon_sym_import] = ACTIONS(734), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_public] = ACTIONS(734), - [anon_sym_protected] = ACTIONS(734), - [anon_sym_private] = ACTIONS(734), - [anon_sym_abstract] = ACTIONS(734), - [anon_sym_strictfp] = ACTIONS(734), - [anon_sym_native] = ACTIONS(734), - [anon_sym_transient] = ACTIONS(734), - [anon_sym_volatile] = ACTIONS(734), - [anon_sym_sealed] = ACTIONS(734), - [anon_sym_non_DASHsealed] = ACTIONS(732), - [anon_sym_record] = ACTIONS(734), - [anon_sym_ATinterface] = ACTIONS(732), - [anon_sym_interface] = ACTIONS(734), - [anon_sym_byte] = ACTIONS(734), - [anon_sym_short] = ACTIONS(734), - [anon_sym_int] = ACTIONS(734), - [anon_sym_long] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_float] = ACTIONS(734), - [anon_sym_double] = ACTIONS(734), - [sym_boolean_type] = ACTIONS(734), - [sym_void_type] = ACTIONS(734), - [sym_this] = ACTIONS(734), - [sym_super] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [201] = { - [ts_builtin_sym_end] = ACTIONS(736), - [sym_identifier] = ACTIONS(738), - [sym_decimal_integer_literal] = ACTIONS(738), - [sym_hex_integer_literal] = ACTIONS(738), - [sym_octal_integer_literal] = ACTIONS(736), - [sym_binary_integer_literal] = ACTIONS(736), - [sym_decimal_floating_point_literal] = ACTIONS(736), - [sym_hex_floating_point_literal] = ACTIONS(738), - [sym_true] = ACTIONS(738), - [sym_false] = ACTIONS(738), - [sym_character_literal] = ACTIONS(736), - [sym_string_literal] = ACTIONS(738), - [sym_text_block] = ACTIONS(736), - [sym_null_literal] = ACTIONS(738), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(738), - [anon_sym_final] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(736), - [anon_sym_TILDE] = ACTIONS(736), - [anon_sym_PLUS_PLUS] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(736), - [anon_sym_new] = ACTIONS(738), - [anon_sym_class] = ACTIONS(738), - [anon_sym_switch] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_case] = ACTIONS(738), - [anon_sym_default] = ACTIONS(738), - [anon_sym_SEMI] = ACTIONS(736), - [anon_sym_assert] = ACTIONS(738), - [anon_sym_do] = ACTIONS(738), - [anon_sym_while] = ACTIONS(738), - [anon_sym_break] = ACTIONS(738), - [anon_sym_continue] = ACTIONS(738), - [anon_sym_return] = ACTIONS(738), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_synchronized] = ACTIONS(738), - [anon_sym_throw] = ACTIONS(738), - [anon_sym_try] = ACTIONS(738), - [anon_sym_if] = ACTIONS(738), - [anon_sym_else] = ACTIONS(738), - [anon_sym_for] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(738), - [anon_sym_open] = ACTIONS(738), - [anon_sym_module] = ACTIONS(738), - [anon_sym_static] = ACTIONS(738), - [anon_sym_package] = ACTIONS(738), - [anon_sym_import] = ACTIONS(738), - [anon_sym_enum] = ACTIONS(738), - [anon_sym_public] = ACTIONS(738), - [anon_sym_protected] = ACTIONS(738), - [anon_sym_private] = ACTIONS(738), - [anon_sym_abstract] = ACTIONS(738), - [anon_sym_strictfp] = ACTIONS(738), - [anon_sym_native] = ACTIONS(738), - [anon_sym_transient] = ACTIONS(738), - [anon_sym_volatile] = ACTIONS(738), - [anon_sym_sealed] = ACTIONS(738), - [anon_sym_non_DASHsealed] = ACTIONS(736), - [anon_sym_record] = ACTIONS(738), - [anon_sym_ATinterface] = ACTIONS(736), - [anon_sym_interface] = ACTIONS(738), - [anon_sym_byte] = ACTIONS(738), - [anon_sym_short] = ACTIONS(738), - [anon_sym_int] = ACTIONS(738), - [anon_sym_long] = ACTIONS(738), - [anon_sym_char] = ACTIONS(738), - [anon_sym_float] = ACTIONS(738), - [anon_sym_double] = ACTIONS(738), - [sym_boolean_type] = ACTIONS(738), - [sym_void_type] = ACTIONS(738), - [sym_this] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(527), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym_block] = STATE(520), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30226,75 +30779,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(581), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym_block] = STATE(519), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), + [194] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(601), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30304,4209 +30858,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(283), - [sym_decimal_integer_literal] = ACTIONS(283), - [sym_hex_integer_literal] = ACTIONS(283), - [sym_octal_integer_literal] = ACTIONS(281), - [sym_binary_integer_literal] = ACTIONS(281), - [sym_decimal_floating_point_literal] = ACTIONS(281), - [sym_hex_floating_point_literal] = ACTIONS(283), - [sym_true] = ACTIONS(283), - [sym_false] = ACTIONS(283), - [sym_character_literal] = ACTIONS(281), - [sym_string_literal] = ACTIONS(283), - [sym_text_block] = ACTIONS(281), - [sym_null_literal] = ACTIONS(283), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_final] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(281), - [anon_sym_DASH_DASH] = ACTIONS(281), - [anon_sym_new] = ACTIONS(283), - [anon_sym_class] = ACTIONS(283), - [anon_sym_switch] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_case] = ACTIONS(283), - [anon_sym_default] = ACTIONS(283), - [anon_sym_SEMI] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(283), - [anon_sym_do] = ACTIONS(283), - [anon_sym_while] = ACTIONS(283), - [anon_sym_break] = ACTIONS(283), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_return] = ACTIONS(283), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_synchronized] = ACTIONS(283), - [anon_sym_throw] = ACTIONS(283), - [anon_sym_try] = ACTIONS(283), - [anon_sym_if] = ACTIONS(283), - [anon_sym_else] = ACTIONS(283), - [anon_sym_for] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [anon_sym_open] = ACTIONS(283), - [anon_sym_module] = ACTIONS(283), - [anon_sym_static] = ACTIONS(283), - [anon_sym_package] = ACTIONS(283), - [anon_sym_import] = ACTIONS(283), - [anon_sym_enum] = ACTIONS(283), - [anon_sym_public] = ACTIONS(283), - [anon_sym_protected] = ACTIONS(283), - [anon_sym_private] = ACTIONS(283), - [anon_sym_abstract] = ACTIONS(283), - [anon_sym_strictfp] = ACTIONS(283), - [anon_sym_native] = ACTIONS(283), - [anon_sym_transient] = ACTIONS(283), - [anon_sym_volatile] = ACTIONS(283), - [anon_sym_sealed] = ACTIONS(283), - [anon_sym_non_DASHsealed] = ACTIONS(281), - [anon_sym_record] = ACTIONS(283), - [anon_sym_ATinterface] = ACTIONS(281), - [anon_sym_interface] = ACTIONS(283), - [anon_sym_byte] = ACTIONS(283), - [anon_sym_short] = ACTIONS(283), - [anon_sym_int] = ACTIONS(283), - [anon_sym_long] = ACTIONS(283), - [anon_sym_char] = ACTIONS(283), - [anon_sym_float] = ACTIONS(283), - [anon_sym_double] = ACTIONS(283), - [sym_boolean_type] = ACTIONS(283), - [sym_void_type] = ACTIONS(283), - [sym_this] = ACTIONS(283), - [sym_super] = ACTIONS(283), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [ts_builtin_sym_end] = ACTIONS(752), - [sym_identifier] = ACTIONS(754), - [sym_decimal_integer_literal] = ACTIONS(754), - [sym_hex_integer_literal] = ACTIONS(754), - [sym_octal_integer_literal] = ACTIONS(752), - [sym_binary_integer_literal] = ACTIONS(752), - [sym_decimal_floating_point_literal] = ACTIONS(752), - [sym_hex_floating_point_literal] = ACTIONS(754), - [sym_true] = ACTIONS(754), - [sym_false] = ACTIONS(754), - [sym_character_literal] = ACTIONS(752), - [sym_string_literal] = ACTIONS(754), - [sym_text_block] = ACTIONS(752), - [sym_null_literal] = ACTIONS(754), - [anon_sym_LPAREN] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_final] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_new] = ACTIONS(754), - [anon_sym_class] = ACTIONS(754), - [anon_sym_switch] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_case] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_assert] = ACTIONS(754), - [anon_sym_do] = ACTIONS(754), - [anon_sym_while] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_yield] = ACTIONS(754), - [anon_sym_synchronized] = ACTIONS(754), - [anon_sym_throw] = ACTIONS(754), - [anon_sym_try] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_else] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(754), - [anon_sym_open] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_static] = ACTIONS(754), - [anon_sym_package] = ACTIONS(754), - [anon_sym_import] = ACTIONS(754), - [anon_sym_enum] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_abstract] = ACTIONS(754), - [anon_sym_strictfp] = ACTIONS(754), - [anon_sym_native] = ACTIONS(754), - [anon_sym_transient] = ACTIONS(754), - [anon_sym_volatile] = ACTIONS(754), - [anon_sym_sealed] = ACTIONS(754), - [anon_sym_non_DASHsealed] = ACTIONS(752), - [anon_sym_record] = ACTIONS(754), - [anon_sym_ATinterface] = ACTIONS(752), - [anon_sym_interface] = ACTIONS(754), - [anon_sym_byte] = ACTIONS(754), - [anon_sym_short] = ACTIONS(754), - [anon_sym_int] = ACTIONS(754), - [anon_sym_long] = ACTIONS(754), - [anon_sym_char] = ACTIONS(754), - [anon_sym_float] = ACTIONS(754), - [anon_sym_double] = ACTIONS(754), - [sym_boolean_type] = ACTIONS(754), - [sym_void_type] = ACTIONS(754), - [sym_this] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(756), - [sym_identifier] = ACTIONS(758), - [sym_decimal_integer_literal] = ACTIONS(758), - [sym_hex_integer_literal] = ACTIONS(758), - [sym_octal_integer_literal] = ACTIONS(756), - [sym_binary_integer_literal] = ACTIONS(756), - [sym_decimal_floating_point_literal] = ACTIONS(756), - [sym_hex_floating_point_literal] = ACTIONS(758), - [sym_true] = ACTIONS(758), - [sym_false] = ACTIONS(758), - [sym_character_literal] = ACTIONS(756), - [sym_string_literal] = ACTIONS(758), - [sym_text_block] = ACTIONS(756), - [sym_null_literal] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_final] = ACTIONS(758), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_TILDE] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(756), - [anon_sym_DASH_DASH] = ACTIONS(756), - [anon_sym_new] = ACTIONS(758), - [anon_sym_class] = ACTIONS(758), - [anon_sym_switch] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_case] = ACTIONS(758), - [anon_sym_default] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_do] = ACTIONS(758), - [anon_sym_while] = ACTIONS(758), - [anon_sym_break] = ACTIONS(758), - [anon_sym_continue] = ACTIONS(758), - [anon_sym_return] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_synchronized] = ACTIONS(758), - [anon_sym_throw] = ACTIONS(758), - [anon_sym_try] = ACTIONS(758), - [anon_sym_if] = ACTIONS(758), - [anon_sym_else] = ACTIONS(758), - [anon_sym_for] = ACTIONS(758), - [anon_sym_AT] = ACTIONS(758), - [anon_sym_open] = ACTIONS(758), - [anon_sym_module] = ACTIONS(758), - [anon_sym_static] = ACTIONS(758), - [anon_sym_package] = ACTIONS(758), - [anon_sym_import] = ACTIONS(758), - [anon_sym_enum] = ACTIONS(758), - [anon_sym_public] = ACTIONS(758), - [anon_sym_protected] = ACTIONS(758), - [anon_sym_private] = ACTIONS(758), - [anon_sym_abstract] = ACTIONS(758), - [anon_sym_strictfp] = ACTIONS(758), - [anon_sym_native] = ACTIONS(758), - [anon_sym_transient] = ACTIONS(758), - [anon_sym_volatile] = ACTIONS(758), - [anon_sym_sealed] = ACTIONS(758), - [anon_sym_non_DASHsealed] = ACTIONS(756), - [anon_sym_record] = ACTIONS(758), - [anon_sym_ATinterface] = ACTIONS(756), - [anon_sym_interface] = ACTIONS(758), - [anon_sym_byte] = ACTIONS(758), - [anon_sym_short] = ACTIONS(758), - [anon_sym_int] = ACTIONS(758), - [anon_sym_long] = ACTIONS(758), - [anon_sym_char] = ACTIONS(758), - [anon_sym_float] = ACTIONS(758), - [anon_sym_double] = ACTIONS(758), - [sym_boolean_type] = ACTIONS(758), - [sym_void_type] = ACTIONS(758), - [sym_this] = ACTIONS(758), - [sym_super] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(760), - [sym_identifier] = ACTIONS(762), - [sym_decimal_integer_literal] = ACTIONS(762), - [sym_hex_integer_literal] = ACTIONS(762), - [sym_octal_integer_literal] = ACTIONS(760), - [sym_binary_integer_literal] = ACTIONS(760), - [sym_decimal_floating_point_literal] = ACTIONS(760), - [sym_hex_floating_point_literal] = ACTIONS(762), - [sym_true] = ACTIONS(762), - [sym_false] = ACTIONS(762), - [sym_character_literal] = ACTIONS(760), - [sym_string_literal] = ACTIONS(762), - [sym_text_block] = ACTIONS(760), - [sym_null_literal] = ACTIONS(762), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), - [anon_sym_final] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_TILDE] = ACTIONS(760), - [anon_sym_PLUS_PLUS] = ACTIONS(760), - [anon_sym_DASH_DASH] = ACTIONS(760), - [anon_sym_new] = ACTIONS(762), - [anon_sym_class] = ACTIONS(762), - [anon_sym_switch] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_RBRACE] = ACTIONS(760), - [anon_sym_case] = ACTIONS(762), - [anon_sym_default] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(760), - [anon_sym_assert] = ACTIONS(762), - [anon_sym_do] = ACTIONS(762), - [anon_sym_while] = ACTIONS(762), - [anon_sym_break] = ACTIONS(762), - [anon_sym_continue] = ACTIONS(762), - [anon_sym_return] = ACTIONS(762), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_synchronized] = ACTIONS(762), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_try] = ACTIONS(762), - [anon_sym_if] = ACTIONS(762), - [anon_sym_else] = ACTIONS(762), - [anon_sym_for] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_open] = ACTIONS(762), - [anon_sym_module] = ACTIONS(762), - [anon_sym_static] = ACTIONS(762), - [anon_sym_package] = ACTIONS(762), - [anon_sym_import] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(762), - [anon_sym_public] = ACTIONS(762), - [anon_sym_protected] = ACTIONS(762), - [anon_sym_private] = ACTIONS(762), - [anon_sym_abstract] = ACTIONS(762), - [anon_sym_strictfp] = ACTIONS(762), - [anon_sym_native] = ACTIONS(762), - [anon_sym_transient] = ACTIONS(762), - [anon_sym_volatile] = ACTIONS(762), - [anon_sym_sealed] = ACTIONS(762), - [anon_sym_non_DASHsealed] = ACTIONS(760), - [anon_sym_record] = ACTIONS(762), - [anon_sym_ATinterface] = ACTIONS(760), - [anon_sym_interface] = ACTIONS(762), - [anon_sym_byte] = ACTIONS(762), - [anon_sym_short] = ACTIONS(762), - [anon_sym_int] = ACTIONS(762), - [anon_sym_long] = ACTIONS(762), - [anon_sym_char] = ACTIONS(762), - [anon_sym_float] = ACTIONS(762), - [anon_sym_double] = ACTIONS(762), - [sym_boolean_type] = ACTIONS(762), - [sym_void_type] = ACTIONS(762), - [sym_this] = ACTIONS(762), - [sym_super] = ACTIONS(762), + [195] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(518), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [208] = { - [ts_builtin_sym_end] = ACTIONS(764), - [sym_identifier] = ACTIONS(766), - [sym_decimal_integer_literal] = ACTIONS(766), - [sym_hex_integer_literal] = ACTIONS(766), - [sym_octal_integer_literal] = ACTIONS(764), - [sym_binary_integer_literal] = ACTIONS(764), - [sym_decimal_floating_point_literal] = ACTIONS(764), - [sym_hex_floating_point_literal] = ACTIONS(766), - [sym_true] = ACTIONS(766), - [sym_false] = ACTIONS(766), - [sym_character_literal] = ACTIONS(764), - [sym_string_literal] = ACTIONS(766), - [sym_text_block] = ACTIONS(764), - [sym_null_literal] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_final] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_new] = ACTIONS(766), - [anon_sym_class] = ACTIONS(766), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_case] = ACTIONS(766), - [anon_sym_default] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_assert] = ACTIONS(766), - [anon_sym_do] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_return] = ACTIONS(766), - [anon_sym_yield] = ACTIONS(766), - [anon_sym_synchronized] = ACTIONS(766), - [anon_sym_throw] = ACTIONS(766), - [anon_sym_try] = ACTIONS(766), - [anon_sym_if] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_for] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_open] = ACTIONS(766), - [anon_sym_module] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_package] = ACTIONS(766), - [anon_sym_import] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_public] = ACTIONS(766), - [anon_sym_protected] = ACTIONS(766), - [anon_sym_private] = ACTIONS(766), - [anon_sym_abstract] = ACTIONS(766), - [anon_sym_strictfp] = ACTIONS(766), - [anon_sym_native] = ACTIONS(766), - [anon_sym_transient] = ACTIONS(766), - [anon_sym_volatile] = ACTIONS(766), - [anon_sym_sealed] = ACTIONS(766), - [anon_sym_non_DASHsealed] = ACTIONS(764), - [anon_sym_record] = ACTIONS(766), - [anon_sym_ATinterface] = ACTIONS(764), - [anon_sym_interface] = ACTIONS(766), - [anon_sym_byte] = ACTIONS(766), - [anon_sym_short] = ACTIONS(766), - [anon_sym_int] = ACTIONS(766), - [anon_sym_long] = ACTIONS(766), - [anon_sym_char] = ACTIONS(766), - [anon_sym_float] = ACTIONS(766), - [anon_sym_double] = ACTIONS(766), - [sym_boolean_type] = ACTIONS(766), - [sym_void_type] = ACTIONS(766), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(766), + [196] = { + [ts_builtin_sym_end] = ACTIONS(518), + [sym_identifier] = ACTIONS(520), + [sym_decimal_integer_literal] = ACTIONS(520), + [sym_hex_integer_literal] = ACTIONS(520), + [sym_octal_integer_literal] = ACTIONS(518), + [sym_binary_integer_literal] = ACTIONS(518), + [sym_decimal_floating_point_literal] = ACTIONS(518), + [sym_hex_floating_point_literal] = ACTIONS(520), + [sym_true] = ACTIONS(520), + [sym_false] = ACTIONS(520), + [sym_character_literal] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(520), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(518), + [sym_null_literal] = ACTIONS(520), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_final] = ACTIONS(520), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [anon_sym_new] = ACTIONS(520), + [anon_sym_class] = ACTIONS(520), + [anon_sym_switch] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_case] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_do] = ACTIONS(520), + [anon_sym_while] = ACTIONS(520), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_return] = ACTIONS(520), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_synchronized] = ACTIONS(520), + [anon_sym_throw] = ACTIONS(520), + [anon_sym_try] = ACTIONS(520), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_for] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_open] = ACTIONS(520), + [anon_sym_module] = ACTIONS(520), + [anon_sym_static] = ACTIONS(520), + [anon_sym_package] = ACTIONS(520), + [anon_sym_import] = ACTIONS(520), + [anon_sym_enum] = ACTIONS(520), + [anon_sym_public] = ACTIONS(520), + [anon_sym_protected] = ACTIONS(520), + [anon_sym_private] = ACTIONS(520), + [anon_sym_abstract] = ACTIONS(520), + [anon_sym_strictfp] = ACTIONS(520), + [anon_sym_native] = ACTIONS(520), + [anon_sym_transient] = ACTIONS(520), + [anon_sym_volatile] = ACTIONS(520), + [anon_sym_sealed] = ACTIONS(520), + [anon_sym_non_DASHsealed] = ACTIONS(518), + [anon_sym_record] = ACTIONS(520), + [anon_sym_ATinterface] = ACTIONS(518), + [anon_sym_interface] = ACTIONS(520), + [anon_sym_byte] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [anon_sym_int] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_char] = ACTIONS(520), + [anon_sym_float] = ACTIONS(520), + [anon_sym_double] = ACTIONS(520), + [sym_boolean_type] = ACTIONS(520), + [sym_void_type] = ACTIONS(520), + [sym_this] = ACTIONS(520), + [sym_super] = ACTIONS(520), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(768), - [sym_identifier] = ACTIONS(770), - [sym_decimal_integer_literal] = ACTIONS(770), - [sym_hex_integer_literal] = ACTIONS(770), - [sym_octal_integer_literal] = ACTIONS(768), - [sym_binary_integer_literal] = ACTIONS(768), - [sym_decimal_floating_point_literal] = ACTIONS(768), - [sym_hex_floating_point_literal] = ACTIONS(770), - [sym_true] = ACTIONS(770), - [sym_false] = ACTIONS(770), - [sym_character_literal] = ACTIONS(768), - [sym_string_literal] = ACTIONS(770), - [sym_text_block] = ACTIONS(768), - [sym_null_literal] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_final] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_new] = ACTIONS(770), - [anon_sym_class] = ACTIONS(770), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_case] = ACTIONS(770), - [anon_sym_default] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_assert] = ACTIONS(770), - [anon_sym_do] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_return] = ACTIONS(770), - [anon_sym_yield] = ACTIONS(770), - [anon_sym_synchronized] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_try] = ACTIONS(770), - [anon_sym_if] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_for] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_open] = ACTIONS(770), - [anon_sym_module] = ACTIONS(770), - [anon_sym_static] = ACTIONS(770), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_enum] = ACTIONS(770), - [anon_sym_public] = ACTIONS(770), - [anon_sym_protected] = ACTIONS(770), - [anon_sym_private] = ACTIONS(770), - [anon_sym_abstract] = ACTIONS(770), - [anon_sym_strictfp] = ACTIONS(770), - [anon_sym_native] = ACTIONS(770), - [anon_sym_transient] = ACTIONS(770), - [anon_sym_volatile] = ACTIONS(770), - [anon_sym_sealed] = ACTIONS(770), - [anon_sym_non_DASHsealed] = ACTIONS(768), - [anon_sym_record] = ACTIONS(770), - [anon_sym_ATinterface] = ACTIONS(768), - [anon_sym_interface] = ACTIONS(770), - [anon_sym_byte] = ACTIONS(770), - [anon_sym_short] = ACTIONS(770), - [anon_sym_int] = ACTIONS(770), - [anon_sym_long] = ACTIONS(770), - [anon_sym_char] = ACTIONS(770), - [anon_sym_float] = ACTIONS(770), - [anon_sym_double] = ACTIONS(770), - [sym_boolean_type] = ACTIONS(770), - [sym_void_type] = ACTIONS(770), - [sym_this] = ACTIONS(770), - [sym_super] = ACTIONS(770), + [197] = { + [ts_builtin_sym_end] = ACTIONS(522), + [sym_identifier] = ACTIONS(524), + [sym_decimal_integer_literal] = ACTIONS(524), + [sym_hex_integer_literal] = ACTIONS(524), + [sym_octal_integer_literal] = ACTIONS(522), + [sym_binary_integer_literal] = ACTIONS(522), + [sym_decimal_floating_point_literal] = ACTIONS(522), + [sym_hex_floating_point_literal] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_character_literal] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(524), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(522), + [sym_null_literal] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_final] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_DASH_DASH] = ACTIONS(522), + [anon_sym_new] = ACTIONS(524), + [anon_sym_class] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_case] = ACTIONS(524), + [anon_sym_default] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_assert] = ACTIONS(524), + [anon_sym_do] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_synchronized] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(524), + [anon_sym_try] = ACTIONS(524), + [anon_sym_if] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_open] = ACTIONS(524), + [anon_sym_module] = ACTIONS(524), + [anon_sym_static] = ACTIONS(524), + [anon_sym_package] = ACTIONS(524), + [anon_sym_import] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_public] = ACTIONS(524), + [anon_sym_protected] = ACTIONS(524), + [anon_sym_private] = ACTIONS(524), + [anon_sym_abstract] = ACTIONS(524), + [anon_sym_strictfp] = ACTIONS(524), + [anon_sym_native] = ACTIONS(524), + [anon_sym_transient] = ACTIONS(524), + [anon_sym_volatile] = ACTIONS(524), + [anon_sym_sealed] = ACTIONS(524), + [anon_sym_non_DASHsealed] = ACTIONS(522), + [anon_sym_record] = ACTIONS(524), + [anon_sym_ATinterface] = ACTIONS(522), + [anon_sym_interface] = ACTIONS(524), + [anon_sym_byte] = ACTIONS(524), + [anon_sym_short] = ACTIONS(524), + [anon_sym_int] = ACTIONS(524), + [anon_sym_long] = ACTIONS(524), + [anon_sym_char] = ACTIONS(524), + [anon_sym_float] = ACTIONS(524), + [anon_sym_double] = ACTIONS(524), + [sym_boolean_type] = ACTIONS(524), + [sym_void_type] = ACTIONS(524), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(774), - [sym_decimal_integer_literal] = ACTIONS(774), - [sym_hex_integer_literal] = ACTIONS(774), - [sym_octal_integer_literal] = ACTIONS(772), - [sym_binary_integer_literal] = ACTIONS(772), - [sym_decimal_floating_point_literal] = ACTIONS(772), - [sym_hex_floating_point_literal] = ACTIONS(774), - [sym_true] = ACTIONS(774), - [sym_false] = ACTIONS(774), - [sym_character_literal] = ACTIONS(772), - [sym_string_literal] = ACTIONS(774), - [sym_text_block] = ACTIONS(772), - [sym_null_literal] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_final] = ACTIONS(774), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_class] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_case] = ACTIONS(774), - [anon_sym_default] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_assert] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_yield] = ACTIONS(774), - [anon_sym_synchronized] = ACTIONS(774), - [anon_sym_throw] = ACTIONS(774), - [anon_sym_try] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_for] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(774), - [anon_sym_open] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_static] = ACTIONS(774), - [anon_sym_package] = ACTIONS(774), - [anon_sym_import] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_abstract] = ACTIONS(774), - [anon_sym_strictfp] = ACTIONS(774), - [anon_sym_native] = ACTIONS(774), - [anon_sym_transient] = ACTIONS(774), - [anon_sym_volatile] = ACTIONS(774), - [anon_sym_sealed] = ACTIONS(774), - [anon_sym_non_DASHsealed] = ACTIONS(772), - [anon_sym_record] = ACTIONS(774), - [anon_sym_ATinterface] = ACTIONS(772), - [anon_sym_interface] = ACTIONS(774), - [anon_sym_byte] = ACTIONS(774), - [anon_sym_short] = ACTIONS(774), - [anon_sym_int] = ACTIONS(774), - [anon_sym_long] = ACTIONS(774), - [anon_sym_char] = ACTIONS(774), - [anon_sym_float] = ACTIONS(774), - [anon_sym_double] = ACTIONS(774), - [sym_boolean_type] = ACTIONS(774), - [sym_void_type] = ACTIONS(774), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(774), + [198] = { + [ts_builtin_sym_end] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [sym_decimal_integer_literal] = ACTIONS(528), + [sym_hex_integer_literal] = ACTIONS(528), + [sym_octal_integer_literal] = ACTIONS(526), + [sym_binary_integer_literal] = ACTIONS(526), + [sym_decimal_floating_point_literal] = ACTIONS(526), + [sym_hex_floating_point_literal] = ACTIONS(528), + [sym_true] = ACTIONS(528), + [sym_false] = ACTIONS(528), + [sym_character_literal] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), + [sym_null_literal] = ACTIONS(528), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(528), + [anon_sym_final] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_PLUS_PLUS] = ACTIONS(526), + [anon_sym_DASH_DASH] = ACTIONS(526), + [anon_sym_new] = ACTIONS(528), + [anon_sym_class] = ACTIONS(528), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_case] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(528), + [anon_sym_do] = ACTIONS(528), + [anon_sym_while] = ACTIONS(528), + [anon_sym_break] = ACTIONS(528), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_return] = ACTIONS(528), + [anon_sym_yield] = ACTIONS(528), + [anon_sym_synchronized] = ACTIONS(528), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_try] = ACTIONS(528), + [anon_sym_if] = ACTIONS(528), + [anon_sym_else] = ACTIONS(528), + [anon_sym_for] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_open] = ACTIONS(528), + [anon_sym_module] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_package] = ACTIONS(528), + [anon_sym_import] = ACTIONS(528), + [anon_sym_enum] = ACTIONS(528), + [anon_sym_public] = ACTIONS(528), + [anon_sym_protected] = ACTIONS(528), + [anon_sym_private] = ACTIONS(528), + [anon_sym_abstract] = ACTIONS(528), + [anon_sym_strictfp] = ACTIONS(528), + [anon_sym_native] = ACTIONS(528), + [anon_sym_transient] = ACTIONS(528), + [anon_sym_volatile] = ACTIONS(528), + [anon_sym_sealed] = ACTIONS(528), + [anon_sym_non_DASHsealed] = ACTIONS(526), + [anon_sym_record] = ACTIONS(528), + [anon_sym_ATinterface] = ACTIONS(526), + [anon_sym_interface] = ACTIONS(528), + [anon_sym_byte] = ACTIONS(528), + [anon_sym_short] = ACTIONS(528), + [anon_sym_int] = ACTIONS(528), + [anon_sym_long] = ACTIONS(528), + [anon_sym_char] = ACTIONS(528), + [anon_sym_float] = ACTIONS(528), + [anon_sym_double] = ACTIONS(528), + [sym_boolean_type] = ACTIONS(528), + [sym_void_type] = ACTIONS(528), + [sym_this] = ACTIONS(528), + [sym_super] = ACTIONS(528), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(776), - [sym_identifier] = ACTIONS(778), - [sym_decimal_integer_literal] = ACTIONS(778), - [sym_hex_integer_literal] = ACTIONS(778), - [sym_octal_integer_literal] = ACTIONS(776), - [sym_binary_integer_literal] = ACTIONS(776), - [sym_decimal_floating_point_literal] = ACTIONS(776), - [sym_hex_floating_point_literal] = ACTIONS(778), - [sym_true] = ACTIONS(778), - [sym_false] = ACTIONS(778), - [sym_character_literal] = ACTIONS(776), - [sym_string_literal] = ACTIONS(778), - [sym_text_block] = ACTIONS(776), - [sym_null_literal] = ACTIONS(778), - [anon_sym_LPAREN] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_final] = ACTIONS(778), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(776), - [anon_sym_new] = ACTIONS(778), - [anon_sym_class] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(776), - [anon_sym_case] = ACTIONS(778), - [anon_sym_default] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(776), - [anon_sym_assert] = ACTIONS(778), - [anon_sym_do] = ACTIONS(778), - [anon_sym_while] = ACTIONS(778), - [anon_sym_break] = ACTIONS(778), - [anon_sym_continue] = ACTIONS(778), - [anon_sym_return] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(778), - [anon_sym_synchronized] = ACTIONS(778), - [anon_sym_throw] = ACTIONS(778), - [anon_sym_try] = ACTIONS(778), - [anon_sym_if] = ACTIONS(778), - [anon_sym_else] = ACTIONS(778), - [anon_sym_for] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(778), - [anon_sym_open] = ACTIONS(778), - [anon_sym_module] = ACTIONS(778), - [anon_sym_static] = ACTIONS(778), - [anon_sym_package] = ACTIONS(778), - [anon_sym_import] = ACTIONS(778), - [anon_sym_enum] = ACTIONS(778), - [anon_sym_public] = ACTIONS(778), - [anon_sym_protected] = ACTIONS(778), - [anon_sym_private] = ACTIONS(778), - [anon_sym_abstract] = ACTIONS(778), - [anon_sym_strictfp] = ACTIONS(778), - [anon_sym_native] = ACTIONS(778), - [anon_sym_transient] = ACTIONS(778), - [anon_sym_volatile] = ACTIONS(778), - [anon_sym_sealed] = ACTIONS(778), - [anon_sym_non_DASHsealed] = ACTIONS(776), - [anon_sym_record] = ACTIONS(778), - [anon_sym_ATinterface] = ACTIONS(776), - [anon_sym_interface] = ACTIONS(778), - [anon_sym_byte] = ACTIONS(778), - [anon_sym_short] = ACTIONS(778), - [anon_sym_int] = ACTIONS(778), - [anon_sym_long] = ACTIONS(778), - [anon_sym_char] = ACTIONS(778), - [anon_sym_float] = ACTIONS(778), - [anon_sym_double] = ACTIONS(778), - [sym_boolean_type] = ACTIONS(778), - [sym_void_type] = ACTIONS(778), - [sym_this] = ACTIONS(778), - [sym_super] = ACTIONS(778), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(780), - [sym_identifier] = ACTIONS(782), - [sym_decimal_integer_literal] = ACTIONS(782), - [sym_hex_integer_literal] = ACTIONS(782), - [sym_octal_integer_literal] = ACTIONS(780), - [sym_binary_integer_literal] = ACTIONS(780), - [sym_decimal_floating_point_literal] = ACTIONS(780), - [sym_hex_floating_point_literal] = ACTIONS(782), - [sym_true] = ACTIONS(782), - [sym_false] = ACTIONS(782), - [sym_character_literal] = ACTIONS(780), - [sym_string_literal] = ACTIONS(782), - [sym_text_block] = ACTIONS(780), - [sym_null_literal] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_final] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_PLUS_PLUS] = ACTIONS(780), - [anon_sym_DASH_DASH] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_class] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_case] = ACTIONS(782), - [anon_sym_default] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_assert] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [anon_sym_break] = ACTIONS(782), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_yield] = ACTIONS(782), - [anon_sym_synchronized] = ACTIONS(782), - [anon_sym_throw] = ACTIONS(782), - [anon_sym_try] = ACTIONS(782), - [anon_sym_if] = ACTIONS(782), - [anon_sym_else] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_AT] = ACTIONS(782), - [anon_sym_open] = ACTIONS(782), - [anon_sym_module] = ACTIONS(782), - [anon_sym_static] = ACTIONS(782), - [anon_sym_package] = ACTIONS(782), - [anon_sym_import] = ACTIONS(782), - [anon_sym_enum] = ACTIONS(782), - [anon_sym_public] = ACTIONS(782), - [anon_sym_protected] = ACTIONS(782), - [anon_sym_private] = ACTIONS(782), - [anon_sym_abstract] = ACTIONS(782), - [anon_sym_strictfp] = ACTIONS(782), - [anon_sym_native] = ACTIONS(782), - [anon_sym_transient] = ACTIONS(782), - [anon_sym_volatile] = ACTIONS(782), - [anon_sym_sealed] = ACTIONS(782), - [anon_sym_non_DASHsealed] = ACTIONS(780), - [anon_sym_record] = ACTIONS(782), - [anon_sym_ATinterface] = ACTIONS(780), - [anon_sym_interface] = ACTIONS(782), - [anon_sym_byte] = ACTIONS(782), - [anon_sym_short] = ACTIONS(782), - [anon_sym_int] = ACTIONS(782), - [anon_sym_long] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), - [anon_sym_float] = ACTIONS(782), - [anon_sym_double] = ACTIONS(782), - [sym_boolean_type] = ACTIONS(782), - [sym_void_type] = ACTIONS(782), - [sym_this] = ACTIONS(782), - [sym_super] = ACTIONS(782), + [199] = { + [ts_builtin_sym_end] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), + [sym_decimal_integer_literal] = ACTIONS(532), + [sym_hex_integer_literal] = ACTIONS(532), + [sym_octal_integer_literal] = ACTIONS(530), + [sym_binary_integer_literal] = ACTIONS(530), + [sym_decimal_floating_point_literal] = ACTIONS(530), + [sym_hex_floating_point_literal] = ACTIONS(532), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_character_literal] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(530), + [sym_null_literal] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_final] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_new] = ACTIONS(532), + [anon_sym_class] = ACTIONS(532), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_case] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_assert] = ACTIONS(532), + [anon_sym_do] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_yield] = ACTIONS(532), + [anon_sym_synchronized] = ACTIONS(532), + [anon_sym_throw] = ACTIONS(532), + [anon_sym_try] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_open] = ACTIONS(532), + [anon_sym_module] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_package] = ACTIONS(532), + [anon_sym_import] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_public] = ACTIONS(532), + [anon_sym_protected] = ACTIONS(532), + [anon_sym_private] = ACTIONS(532), + [anon_sym_abstract] = ACTIONS(532), + [anon_sym_strictfp] = ACTIONS(532), + [anon_sym_native] = ACTIONS(532), + [anon_sym_transient] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_sealed] = ACTIONS(532), + [anon_sym_non_DASHsealed] = ACTIONS(530), + [anon_sym_record] = ACTIONS(532), + [anon_sym_ATinterface] = ACTIONS(530), + [anon_sym_interface] = ACTIONS(532), + [anon_sym_byte] = ACTIONS(532), + [anon_sym_short] = ACTIONS(532), + [anon_sym_int] = ACTIONS(532), + [anon_sym_long] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_float] = ACTIONS(532), + [anon_sym_double] = ACTIONS(532), + [sym_boolean_type] = ACTIONS(532), + [sym_void_type] = ACTIONS(532), + [sym_this] = ACTIONS(532), + [sym_super] = ACTIONS(532), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(784), - [sym_identifier] = ACTIONS(786), - [sym_decimal_integer_literal] = ACTIONS(786), - [sym_hex_integer_literal] = ACTIONS(786), - [sym_octal_integer_literal] = ACTIONS(784), - [sym_binary_integer_literal] = ACTIONS(784), - [sym_decimal_floating_point_literal] = ACTIONS(784), - [sym_hex_floating_point_literal] = ACTIONS(786), - [sym_true] = ACTIONS(786), - [sym_false] = ACTIONS(786), - [sym_character_literal] = ACTIONS(784), - [sym_string_literal] = ACTIONS(786), - [sym_text_block] = ACTIONS(784), - [sym_null_literal] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_final] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_new] = ACTIONS(786), - [anon_sym_class] = ACTIONS(786), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(784), - [anon_sym_RBRACE] = ACTIONS(784), - [anon_sym_case] = ACTIONS(786), - [anon_sym_default] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(784), - [anon_sym_assert] = ACTIONS(786), - [anon_sym_do] = ACTIONS(786), - [anon_sym_while] = ACTIONS(786), - [anon_sym_break] = ACTIONS(786), - [anon_sym_continue] = ACTIONS(786), - [anon_sym_return] = ACTIONS(786), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_synchronized] = ACTIONS(786), - [anon_sym_throw] = ACTIONS(786), - [anon_sym_try] = ACTIONS(786), - [anon_sym_if] = ACTIONS(786), - [anon_sym_else] = ACTIONS(786), - [anon_sym_for] = ACTIONS(786), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_open] = ACTIONS(786), - [anon_sym_module] = ACTIONS(786), - [anon_sym_static] = ACTIONS(786), - [anon_sym_package] = ACTIONS(786), - [anon_sym_import] = ACTIONS(786), - [anon_sym_enum] = ACTIONS(786), - [anon_sym_public] = ACTIONS(786), - [anon_sym_protected] = ACTIONS(786), - [anon_sym_private] = ACTIONS(786), - [anon_sym_abstract] = ACTIONS(786), - [anon_sym_strictfp] = ACTIONS(786), - [anon_sym_native] = ACTIONS(786), - [anon_sym_transient] = ACTIONS(786), - [anon_sym_volatile] = ACTIONS(786), - [anon_sym_sealed] = ACTIONS(786), - [anon_sym_non_DASHsealed] = ACTIONS(784), - [anon_sym_record] = ACTIONS(786), - [anon_sym_ATinterface] = ACTIONS(784), - [anon_sym_interface] = ACTIONS(786), - [anon_sym_byte] = ACTIONS(786), - [anon_sym_short] = ACTIONS(786), - [anon_sym_int] = ACTIONS(786), - [anon_sym_long] = ACTIONS(786), - [anon_sym_char] = ACTIONS(786), - [anon_sym_float] = ACTIONS(786), - [anon_sym_double] = ACTIONS(786), - [sym_boolean_type] = ACTIONS(786), - [sym_void_type] = ACTIONS(786), - [sym_this] = ACTIONS(786), - [sym_super] = ACTIONS(786), + [200] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(788), - [sym_identifier] = ACTIONS(790), - [sym_decimal_integer_literal] = ACTIONS(790), - [sym_hex_integer_literal] = ACTIONS(790), - [sym_octal_integer_literal] = ACTIONS(788), - [sym_binary_integer_literal] = ACTIONS(788), - [sym_decimal_floating_point_literal] = ACTIONS(788), - [sym_hex_floating_point_literal] = ACTIONS(790), - [sym_true] = ACTIONS(790), - [sym_false] = ACTIONS(790), - [sym_character_literal] = ACTIONS(788), - [sym_string_literal] = ACTIONS(790), - [sym_text_block] = ACTIONS(788), - [sym_null_literal] = ACTIONS(790), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(790), - [anon_sym_final] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_PLUS_PLUS] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(788), - [anon_sym_new] = ACTIONS(790), - [anon_sym_class] = ACTIONS(790), - [anon_sym_switch] = ACTIONS(790), - [anon_sym_LBRACE] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_case] = ACTIONS(790), - [anon_sym_default] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_assert] = ACTIONS(790), - [anon_sym_do] = ACTIONS(790), - [anon_sym_while] = ACTIONS(790), - [anon_sym_break] = ACTIONS(790), - [anon_sym_continue] = ACTIONS(790), - [anon_sym_return] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(790), - [anon_sym_synchronized] = ACTIONS(790), - [anon_sym_throw] = ACTIONS(790), - [anon_sym_try] = ACTIONS(790), - [anon_sym_if] = ACTIONS(790), - [anon_sym_else] = ACTIONS(790), - [anon_sym_for] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(790), - [anon_sym_open] = ACTIONS(790), - [anon_sym_module] = ACTIONS(790), - [anon_sym_static] = ACTIONS(790), - [anon_sym_package] = ACTIONS(790), - [anon_sym_import] = ACTIONS(790), - [anon_sym_enum] = ACTIONS(790), - [anon_sym_public] = ACTIONS(790), - [anon_sym_protected] = ACTIONS(790), - [anon_sym_private] = ACTIONS(790), - [anon_sym_abstract] = ACTIONS(790), - [anon_sym_strictfp] = ACTIONS(790), - [anon_sym_native] = ACTIONS(790), - [anon_sym_transient] = ACTIONS(790), - [anon_sym_volatile] = ACTIONS(790), - [anon_sym_sealed] = ACTIONS(790), - [anon_sym_non_DASHsealed] = ACTIONS(788), - [anon_sym_record] = ACTIONS(790), - [anon_sym_ATinterface] = ACTIONS(788), - [anon_sym_interface] = ACTIONS(790), - [anon_sym_byte] = ACTIONS(790), - [anon_sym_short] = ACTIONS(790), - [anon_sym_int] = ACTIONS(790), - [anon_sym_long] = ACTIONS(790), - [anon_sym_char] = ACTIONS(790), - [anon_sym_float] = ACTIONS(790), - [anon_sym_double] = ACTIONS(790), - [sym_boolean_type] = ACTIONS(790), - [sym_void_type] = ACTIONS(790), - [sym_this] = ACTIONS(790), - [sym_super] = ACTIONS(790), + [201] = { + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [sym_decimal_integer_literal] = ACTIONS(536), + [sym_hex_integer_literal] = ACTIONS(536), + [sym_octal_integer_literal] = ACTIONS(534), + [sym_binary_integer_literal] = ACTIONS(534), + [sym_decimal_floating_point_literal] = ACTIONS(534), + [sym_hex_floating_point_literal] = ACTIONS(536), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_character_literal] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(536), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [sym_null_literal] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_final] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_case] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_assert] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_synchronized] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_open] = ACTIONS(536), + [anon_sym_module] = ACTIONS(536), + [anon_sym_static] = ACTIONS(536), + [anon_sym_package] = ACTIONS(536), + [anon_sym_import] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_public] = ACTIONS(536), + [anon_sym_protected] = ACTIONS(536), + [anon_sym_private] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(536), + [anon_sym_strictfp] = ACTIONS(536), + [anon_sym_native] = ACTIONS(536), + [anon_sym_transient] = ACTIONS(536), + [anon_sym_volatile] = ACTIONS(536), + [anon_sym_sealed] = ACTIONS(536), + [anon_sym_non_DASHsealed] = ACTIONS(534), + [anon_sym_record] = ACTIONS(536), + [anon_sym_ATinterface] = ACTIONS(534), + [anon_sym_interface] = ACTIONS(536), + [anon_sym_byte] = ACTIONS(536), + [anon_sym_short] = ACTIONS(536), + [anon_sym_int] = ACTIONS(536), + [anon_sym_long] = ACTIONS(536), + [anon_sym_char] = ACTIONS(536), + [anon_sym_float] = ACTIONS(536), + [anon_sym_double] = ACTIONS(536), + [sym_boolean_type] = ACTIONS(536), + [sym_void_type] = ACTIONS(536), + [sym_this] = ACTIONS(536), + [sym_super] = ACTIONS(536), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(792), - [sym_identifier] = ACTIONS(794), - [sym_decimal_integer_literal] = ACTIONS(794), - [sym_hex_integer_literal] = ACTIONS(794), - [sym_octal_integer_literal] = ACTIONS(792), - [sym_binary_integer_literal] = ACTIONS(792), - [sym_decimal_floating_point_literal] = ACTIONS(792), - [sym_hex_floating_point_literal] = ACTIONS(794), - [sym_true] = ACTIONS(794), - [sym_false] = ACTIONS(794), - [sym_character_literal] = ACTIONS(792), - [sym_string_literal] = ACTIONS(794), - [sym_text_block] = ACTIONS(792), - [sym_null_literal] = ACTIONS(794), - [anon_sym_LPAREN] = ACTIONS(792), - [anon_sym_PLUS] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_final] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(792), - [anon_sym_DASH_DASH] = ACTIONS(792), - [anon_sym_new] = ACTIONS(794), - [anon_sym_class] = ACTIONS(794), - [anon_sym_switch] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(792), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_case] = ACTIONS(794), - [anon_sym_default] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_assert] = ACTIONS(794), - [anon_sym_do] = ACTIONS(794), - [anon_sym_while] = ACTIONS(794), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(794), - [anon_sym_return] = ACTIONS(794), - [anon_sym_yield] = ACTIONS(794), - [anon_sym_synchronized] = ACTIONS(794), - [anon_sym_throw] = ACTIONS(794), - [anon_sym_try] = ACTIONS(794), - [anon_sym_if] = ACTIONS(794), - [anon_sym_else] = ACTIONS(794), - [anon_sym_for] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(794), - [anon_sym_open] = ACTIONS(794), - [anon_sym_module] = ACTIONS(794), - [anon_sym_static] = ACTIONS(794), - [anon_sym_package] = ACTIONS(794), - [anon_sym_import] = ACTIONS(794), - [anon_sym_enum] = ACTIONS(794), - [anon_sym_public] = ACTIONS(794), - [anon_sym_protected] = ACTIONS(794), - [anon_sym_private] = ACTIONS(794), - [anon_sym_abstract] = ACTIONS(794), - [anon_sym_strictfp] = ACTIONS(794), - [anon_sym_native] = ACTIONS(794), - [anon_sym_transient] = ACTIONS(794), - [anon_sym_volatile] = ACTIONS(794), - [anon_sym_sealed] = ACTIONS(794), - [anon_sym_non_DASHsealed] = ACTIONS(792), - [anon_sym_record] = ACTIONS(794), - [anon_sym_ATinterface] = ACTIONS(792), - [anon_sym_interface] = ACTIONS(794), - [anon_sym_byte] = ACTIONS(794), - [anon_sym_short] = ACTIONS(794), - [anon_sym_int] = ACTIONS(794), - [anon_sym_long] = ACTIONS(794), - [anon_sym_char] = ACTIONS(794), - [anon_sym_float] = ACTIONS(794), - [anon_sym_double] = ACTIONS(794), - [sym_boolean_type] = ACTIONS(794), - [sym_void_type] = ACTIONS(794), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(794), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(796), - [sym_identifier] = ACTIONS(798), - [sym_decimal_integer_literal] = ACTIONS(798), - [sym_hex_integer_literal] = ACTIONS(798), - [sym_octal_integer_literal] = ACTIONS(796), - [sym_binary_integer_literal] = ACTIONS(796), - [sym_decimal_floating_point_literal] = ACTIONS(796), - [sym_hex_floating_point_literal] = ACTIONS(798), - [sym_true] = ACTIONS(798), - [sym_false] = ACTIONS(798), - [sym_character_literal] = ACTIONS(796), - [sym_string_literal] = ACTIONS(798), - [sym_text_block] = ACTIONS(796), - [sym_null_literal] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_final] = ACTIONS(798), - [anon_sym_BANG] = ACTIONS(796), - [anon_sym_TILDE] = ACTIONS(796), - [anon_sym_PLUS_PLUS] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(796), - [anon_sym_new] = ACTIONS(798), - [anon_sym_class] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(796), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_assert] = ACTIONS(798), - [anon_sym_do] = ACTIONS(798), - [anon_sym_while] = ACTIONS(798), - [anon_sym_break] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_return] = ACTIONS(798), - [anon_sym_yield] = ACTIONS(798), - [anon_sym_synchronized] = ACTIONS(798), - [anon_sym_throw] = ACTIONS(798), - [anon_sym_try] = ACTIONS(798), - [anon_sym_if] = ACTIONS(798), - [anon_sym_else] = ACTIONS(798), - [anon_sym_for] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(798), - [anon_sym_open] = ACTIONS(798), - [anon_sym_module] = ACTIONS(798), - [anon_sym_static] = ACTIONS(798), - [anon_sym_package] = ACTIONS(798), - [anon_sym_import] = ACTIONS(798), - [anon_sym_enum] = ACTIONS(798), - [anon_sym_public] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_abstract] = ACTIONS(798), - [anon_sym_strictfp] = ACTIONS(798), - [anon_sym_native] = ACTIONS(798), - [anon_sym_transient] = ACTIONS(798), - [anon_sym_volatile] = ACTIONS(798), - [anon_sym_sealed] = ACTIONS(798), - [anon_sym_non_DASHsealed] = ACTIONS(796), - [anon_sym_record] = ACTIONS(798), - [anon_sym_ATinterface] = ACTIONS(796), - [anon_sym_interface] = ACTIONS(798), - [anon_sym_byte] = ACTIONS(798), - [anon_sym_short] = ACTIONS(798), - [anon_sym_int] = ACTIONS(798), - [anon_sym_long] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_float] = ACTIONS(798), - [anon_sym_double] = ACTIONS(798), - [sym_boolean_type] = ACTIONS(798), - [sym_void_type] = ACTIONS(798), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(798), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(800), - [sym_identifier] = ACTIONS(802), - [sym_decimal_integer_literal] = ACTIONS(802), - [sym_hex_integer_literal] = ACTIONS(802), - [sym_octal_integer_literal] = ACTIONS(800), - [sym_binary_integer_literal] = ACTIONS(800), - [sym_decimal_floating_point_literal] = ACTIONS(800), - [sym_hex_floating_point_literal] = ACTIONS(802), - [sym_true] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_character_literal] = ACTIONS(800), - [sym_string_literal] = ACTIONS(802), - [sym_text_block] = ACTIONS(800), - [sym_null_literal] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(802), - [anon_sym_final] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(800), - [anon_sym_DASH_DASH] = ACTIONS(800), - [anon_sym_new] = ACTIONS(802), - [anon_sym_class] = ACTIONS(802), - [anon_sym_switch] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_case] = ACTIONS(802), - [anon_sym_default] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_assert] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_while] = ACTIONS(802), - [anon_sym_break] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_yield] = ACTIONS(802), - [anon_sym_synchronized] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_try] = ACTIONS(802), - [anon_sym_if] = ACTIONS(802), - [anon_sym_else] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [anon_sym_AT] = ACTIONS(802), - [anon_sym_open] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_static] = ACTIONS(802), - [anon_sym_package] = ACTIONS(802), - [anon_sym_import] = ACTIONS(802), - [anon_sym_enum] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_abstract] = ACTIONS(802), - [anon_sym_strictfp] = ACTIONS(802), - [anon_sym_native] = ACTIONS(802), - [anon_sym_transient] = ACTIONS(802), - [anon_sym_volatile] = ACTIONS(802), - [anon_sym_sealed] = ACTIONS(802), - [anon_sym_non_DASHsealed] = ACTIONS(800), - [anon_sym_record] = ACTIONS(802), - [anon_sym_ATinterface] = ACTIONS(800), - [anon_sym_interface] = ACTIONS(802), - [anon_sym_byte] = ACTIONS(802), - [anon_sym_short] = ACTIONS(802), - [anon_sym_int] = ACTIONS(802), - [anon_sym_long] = ACTIONS(802), - [anon_sym_char] = ACTIONS(802), - [anon_sym_float] = ACTIONS(802), - [anon_sym_double] = ACTIONS(802), - [sym_boolean_type] = ACTIONS(802), - [sym_void_type] = ACTIONS(802), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(802), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(605), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym_array_initializer] = STATE(1110), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [ts_builtin_sym_end] = ACTIONS(804), - [sym_identifier] = ACTIONS(806), - [sym_decimal_integer_literal] = ACTIONS(806), - [sym_hex_integer_literal] = ACTIONS(806), - [sym_octal_integer_literal] = ACTIONS(804), - [sym_binary_integer_literal] = ACTIONS(804), - [sym_decimal_floating_point_literal] = ACTIONS(804), - [sym_hex_floating_point_literal] = ACTIONS(806), - [sym_true] = ACTIONS(806), - [sym_false] = ACTIONS(806), - [sym_character_literal] = ACTIONS(804), - [sym_string_literal] = ACTIONS(806), - [sym_text_block] = ACTIONS(804), - [sym_null_literal] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_final] = ACTIONS(806), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_TILDE] = ACTIONS(804), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_new] = ACTIONS(806), - [anon_sym_class] = ACTIONS(806), - [anon_sym_switch] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_case] = ACTIONS(806), - [anon_sym_default] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_assert] = ACTIONS(806), - [anon_sym_do] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_yield] = ACTIONS(806), - [anon_sym_synchronized] = ACTIONS(806), - [anon_sym_throw] = ACTIONS(806), - [anon_sym_try] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_else] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_AT] = ACTIONS(806), - [anon_sym_open] = ACTIONS(806), - [anon_sym_module] = ACTIONS(806), - [anon_sym_static] = ACTIONS(806), - [anon_sym_package] = ACTIONS(806), - [anon_sym_import] = ACTIONS(806), - [anon_sym_enum] = ACTIONS(806), - [anon_sym_public] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_abstract] = ACTIONS(806), - [anon_sym_strictfp] = ACTIONS(806), - [anon_sym_native] = ACTIONS(806), - [anon_sym_transient] = ACTIONS(806), - [anon_sym_volatile] = ACTIONS(806), - [anon_sym_sealed] = ACTIONS(806), - [anon_sym_non_DASHsealed] = ACTIONS(804), - [anon_sym_record] = ACTIONS(806), - [anon_sym_ATinterface] = ACTIONS(804), - [anon_sym_interface] = ACTIONS(806), - [anon_sym_byte] = ACTIONS(806), - [anon_sym_short] = ACTIONS(806), - [anon_sym_int] = ACTIONS(806), - [anon_sym_long] = ACTIONS(806), - [anon_sym_char] = ACTIONS(806), - [anon_sym_float] = ACTIONS(806), - [anon_sym_double] = ACTIONS(806), - [sym_boolean_type] = ACTIONS(806), - [sym_void_type] = ACTIONS(806), - [sym_this] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), - [sym_decimal_integer_literal] = ACTIONS(810), - [sym_hex_integer_literal] = ACTIONS(810), - [sym_octal_integer_literal] = ACTIONS(808), - [sym_binary_integer_literal] = ACTIONS(808), - [sym_decimal_floating_point_literal] = ACTIONS(808), - [sym_hex_floating_point_literal] = ACTIONS(810), - [sym_true] = ACTIONS(810), - [sym_false] = ACTIONS(810), - [sym_character_literal] = ACTIONS(808), - [sym_string_literal] = ACTIONS(810), - [sym_text_block] = ACTIONS(808), - [sym_null_literal] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_final] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_TILDE] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(808), - [anon_sym_DASH_DASH] = ACTIONS(808), - [anon_sym_new] = ACTIONS(810), - [anon_sym_class] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_RBRACE] = ACTIONS(808), - [anon_sym_case] = ACTIONS(810), - [anon_sym_default] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(808), - [anon_sym_assert] = ACTIONS(810), - [anon_sym_do] = ACTIONS(810), - [anon_sym_while] = ACTIONS(810), - [anon_sym_break] = ACTIONS(810), - [anon_sym_continue] = ACTIONS(810), - [anon_sym_return] = ACTIONS(810), - [anon_sym_yield] = ACTIONS(810), - [anon_sym_synchronized] = ACTIONS(810), - [anon_sym_throw] = ACTIONS(810), - [anon_sym_try] = ACTIONS(810), - [anon_sym_if] = ACTIONS(810), - [anon_sym_else] = ACTIONS(810), - [anon_sym_for] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(810), - [anon_sym_open] = ACTIONS(810), - [anon_sym_module] = ACTIONS(810), - [anon_sym_static] = ACTIONS(810), - [anon_sym_package] = ACTIONS(810), - [anon_sym_import] = ACTIONS(810), - [anon_sym_enum] = ACTIONS(810), - [anon_sym_public] = ACTIONS(810), - [anon_sym_protected] = ACTIONS(810), - [anon_sym_private] = ACTIONS(810), - [anon_sym_abstract] = ACTIONS(810), - [anon_sym_strictfp] = ACTIONS(810), - [anon_sym_native] = ACTIONS(810), - [anon_sym_transient] = ACTIONS(810), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym_sealed] = ACTIONS(810), - [anon_sym_non_DASHsealed] = ACTIONS(808), - [anon_sym_record] = ACTIONS(810), - [anon_sym_ATinterface] = ACTIONS(808), - [anon_sym_interface] = ACTIONS(810), - [anon_sym_byte] = ACTIONS(810), - [anon_sym_short] = ACTIONS(810), - [anon_sym_int] = ACTIONS(810), - [anon_sym_long] = ACTIONS(810), - [anon_sym_char] = ACTIONS(810), - [anon_sym_float] = ACTIONS(810), - [anon_sym_double] = ACTIONS(810), - [sym_boolean_type] = ACTIONS(810), - [sym_void_type] = ACTIONS(810), - [sym_this] = ACTIONS(810), - [sym_super] = ACTIONS(810), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [221] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(587), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym_block] = STATE(520), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(812), - [sym_identifier] = ACTIONS(814), - [sym_decimal_integer_literal] = ACTIONS(814), - [sym_hex_integer_literal] = ACTIONS(814), - [sym_octal_integer_literal] = ACTIONS(812), - [sym_binary_integer_literal] = ACTIONS(812), - [sym_decimal_floating_point_literal] = ACTIONS(812), - [sym_hex_floating_point_literal] = ACTIONS(814), - [sym_true] = ACTIONS(814), - [sym_false] = ACTIONS(814), - [sym_character_literal] = ACTIONS(812), - [sym_string_literal] = ACTIONS(814), - [sym_text_block] = ACTIONS(812), - [sym_null_literal] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(812), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(812), - [anon_sym_RBRACE] = ACTIONS(812), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_assert] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_yield] = ACTIONS(814), - [anon_sym_synchronized] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_try] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_for] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_open] = ACTIONS(814), - [anon_sym_module] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_strictfp] = ACTIONS(814), - [anon_sym_native] = ACTIONS(814), - [anon_sym_transient] = ACTIONS(814), - [anon_sym_volatile] = ACTIONS(814), - [anon_sym_sealed] = ACTIONS(814), - [anon_sym_non_DASHsealed] = ACTIONS(812), - [anon_sym_record] = ACTIONS(814), - [anon_sym_ATinterface] = ACTIONS(812), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_byte] = ACTIONS(814), - [anon_sym_short] = ACTIONS(814), - [anon_sym_int] = ACTIONS(814), - [anon_sym_long] = ACTIONS(814), - [anon_sym_char] = ACTIONS(814), - [anon_sym_float] = ACTIONS(814), - [anon_sym_double] = ACTIONS(814), - [sym_boolean_type] = ACTIONS(814), - [sym_void_type] = ACTIONS(814), - [sym_this] = ACTIONS(814), - [sym_super] = ACTIONS(814), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(816), - [sym_identifier] = ACTIONS(818), - [sym_decimal_integer_literal] = ACTIONS(818), - [sym_hex_integer_literal] = ACTIONS(818), - [sym_octal_integer_literal] = ACTIONS(816), - [sym_binary_integer_literal] = ACTIONS(816), - [sym_decimal_floating_point_literal] = ACTIONS(816), - [sym_hex_floating_point_literal] = ACTIONS(818), - [sym_true] = ACTIONS(818), - [sym_false] = ACTIONS(818), - [sym_character_literal] = ACTIONS(816), - [sym_string_literal] = ACTIONS(818), - [sym_text_block] = ACTIONS(816), - [sym_null_literal] = ACTIONS(818), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_final] = ACTIONS(818), - [anon_sym_BANG] = ACTIONS(816), - [anon_sym_TILDE] = ACTIONS(816), - [anon_sym_PLUS_PLUS] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(816), - [anon_sym_new] = ACTIONS(818), - [anon_sym_class] = ACTIONS(818), - [anon_sym_switch] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_case] = ACTIONS(818), - [anon_sym_default] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(816), - [anon_sym_assert] = ACTIONS(818), - [anon_sym_do] = ACTIONS(818), - [anon_sym_while] = ACTIONS(818), - [anon_sym_break] = ACTIONS(818), - [anon_sym_continue] = ACTIONS(818), - [anon_sym_return] = ACTIONS(818), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_synchronized] = ACTIONS(818), - [anon_sym_throw] = ACTIONS(818), - [anon_sym_try] = ACTIONS(818), - [anon_sym_if] = ACTIONS(818), - [anon_sym_else] = ACTIONS(818), - [anon_sym_for] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(818), - [anon_sym_open] = ACTIONS(818), - [anon_sym_module] = ACTIONS(818), - [anon_sym_static] = ACTIONS(818), - [anon_sym_package] = ACTIONS(818), - [anon_sym_import] = ACTIONS(818), - [anon_sym_enum] = ACTIONS(818), - [anon_sym_public] = ACTIONS(818), - [anon_sym_protected] = ACTIONS(818), - [anon_sym_private] = ACTIONS(818), - [anon_sym_abstract] = ACTIONS(818), - [anon_sym_strictfp] = ACTIONS(818), - [anon_sym_native] = ACTIONS(818), - [anon_sym_transient] = ACTIONS(818), - [anon_sym_volatile] = ACTIONS(818), - [anon_sym_sealed] = ACTIONS(818), - [anon_sym_non_DASHsealed] = ACTIONS(816), - [anon_sym_record] = ACTIONS(818), - [anon_sym_ATinterface] = ACTIONS(816), - [anon_sym_interface] = ACTIONS(818), - [anon_sym_byte] = ACTIONS(818), - [anon_sym_short] = ACTIONS(818), - [anon_sym_int] = ACTIONS(818), - [anon_sym_long] = ACTIONS(818), - [anon_sym_char] = ACTIONS(818), - [anon_sym_float] = ACTIONS(818), - [anon_sym_double] = ACTIONS(818), - [sym_boolean_type] = ACTIONS(818), - [sym_void_type] = ACTIONS(818), - [sym_this] = ACTIONS(818), - [sym_super] = ACTIONS(818), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(820), - [sym_identifier] = ACTIONS(822), - [sym_decimal_integer_literal] = ACTIONS(822), - [sym_hex_integer_literal] = ACTIONS(822), - [sym_octal_integer_literal] = ACTIONS(820), - [sym_binary_integer_literal] = ACTIONS(820), - [sym_decimal_floating_point_literal] = ACTIONS(820), - [sym_hex_floating_point_literal] = ACTIONS(822), - [sym_true] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [sym_character_literal] = ACTIONS(820), - [sym_string_literal] = ACTIONS(822), - [sym_text_block] = ACTIONS(820), - [sym_null_literal] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(822), - [anon_sym_final] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_new] = ACTIONS(822), - [anon_sym_class] = ACTIONS(822), - [anon_sym_switch] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_case] = ACTIONS(822), - [anon_sym_default] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_assert] = ACTIONS(822), - [anon_sym_do] = ACTIONS(822), - [anon_sym_while] = ACTIONS(822), - [anon_sym_break] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(822), - [anon_sym_return] = ACTIONS(822), - [anon_sym_yield] = ACTIONS(822), - [anon_sym_synchronized] = ACTIONS(822), - [anon_sym_throw] = ACTIONS(822), - [anon_sym_try] = ACTIONS(822), - [anon_sym_if] = ACTIONS(822), - [anon_sym_else] = ACTIONS(822), - [anon_sym_for] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(822), - [anon_sym_open] = ACTIONS(822), - [anon_sym_module] = ACTIONS(822), - [anon_sym_static] = ACTIONS(822), - [anon_sym_package] = ACTIONS(822), - [anon_sym_import] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(822), - [anon_sym_public] = ACTIONS(822), - [anon_sym_protected] = ACTIONS(822), - [anon_sym_private] = ACTIONS(822), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_strictfp] = ACTIONS(822), - [anon_sym_native] = ACTIONS(822), - [anon_sym_transient] = ACTIONS(822), - [anon_sym_volatile] = ACTIONS(822), - [anon_sym_sealed] = ACTIONS(822), - [anon_sym_non_DASHsealed] = ACTIONS(820), - [anon_sym_record] = ACTIONS(822), - [anon_sym_ATinterface] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_byte] = ACTIONS(822), - [anon_sym_short] = ACTIONS(822), - [anon_sym_int] = ACTIONS(822), - [anon_sym_long] = ACTIONS(822), - [anon_sym_char] = ACTIONS(822), - [anon_sym_float] = ACTIONS(822), - [anon_sym_double] = ACTIONS(822), - [sym_boolean_type] = ACTIONS(822), - [sym_void_type] = ACTIONS(822), - [sym_this] = ACTIONS(822), - [sym_super] = ACTIONS(822), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(525), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym_block] = STATE(519), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(824), - [sym_identifier] = ACTIONS(826), - [sym_decimal_integer_literal] = ACTIONS(826), - [sym_hex_integer_literal] = ACTIONS(826), - [sym_octal_integer_literal] = ACTIONS(824), - [sym_binary_integer_literal] = ACTIONS(824), - [sym_decimal_floating_point_literal] = ACTIONS(824), - [sym_hex_floating_point_literal] = ACTIONS(826), - [sym_true] = ACTIONS(826), - [sym_false] = ACTIONS(826), - [sym_character_literal] = ACTIONS(824), - [sym_string_literal] = ACTIONS(826), - [sym_text_block] = ACTIONS(824), - [sym_null_literal] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_final] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym_new] = ACTIONS(826), - [anon_sym_class] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_case] = ACTIONS(826), - [anon_sym_default] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_yield] = ACTIONS(826), - [anon_sym_synchronized] = ACTIONS(826), - [anon_sym_throw] = ACTIONS(826), - [anon_sym_try] = ACTIONS(826), - [anon_sym_if] = ACTIONS(826), - [anon_sym_else] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_AT] = ACTIONS(826), - [anon_sym_open] = ACTIONS(826), - [anon_sym_module] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_package] = ACTIONS(826), - [anon_sym_import] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [anon_sym_public] = ACTIONS(826), - [anon_sym_protected] = ACTIONS(826), - [anon_sym_private] = ACTIONS(826), - [anon_sym_abstract] = ACTIONS(826), - [anon_sym_strictfp] = ACTIONS(826), - [anon_sym_native] = ACTIONS(826), - [anon_sym_transient] = ACTIONS(826), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_sealed] = ACTIONS(826), - [anon_sym_non_DASHsealed] = ACTIONS(824), - [anon_sym_record] = ACTIONS(826), - [anon_sym_ATinterface] = ACTIONS(824), - [anon_sym_interface] = ACTIONS(826), - [anon_sym_byte] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_int] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_char] = ACTIONS(826), - [anon_sym_float] = ACTIONS(826), - [anon_sym_double] = ACTIONS(826), - [sym_boolean_type] = ACTIONS(826), - [sym_void_type] = ACTIONS(826), - [sym_this] = ACTIONS(826), - [sym_super] = ACTIONS(826), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(828), - [sym_identifier] = ACTIONS(830), - [sym_decimal_integer_literal] = ACTIONS(830), - [sym_hex_integer_literal] = ACTIONS(830), - [sym_octal_integer_literal] = ACTIONS(828), - [sym_binary_integer_literal] = ACTIONS(828), - [sym_decimal_floating_point_literal] = ACTIONS(828), - [sym_hex_floating_point_literal] = ACTIONS(830), - [sym_true] = ACTIONS(830), - [sym_false] = ACTIONS(830), - [sym_character_literal] = ACTIONS(828), - [sym_string_literal] = ACTIONS(830), - [sym_text_block] = ACTIONS(828), - [sym_null_literal] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(830), - [anon_sym_final] = ACTIONS(830), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_PLUS_PLUS] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(828), - [anon_sym_new] = ACTIONS(830), - [anon_sym_class] = ACTIONS(830), - [anon_sym_switch] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_case] = ACTIONS(830), - [anon_sym_default] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_assert] = ACTIONS(830), - [anon_sym_do] = ACTIONS(830), - [anon_sym_while] = ACTIONS(830), - [anon_sym_break] = ACTIONS(830), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(830), - [anon_sym_synchronized] = ACTIONS(830), - [anon_sym_throw] = ACTIONS(830), - [anon_sym_try] = ACTIONS(830), - [anon_sym_if] = ACTIONS(830), - [anon_sym_else] = ACTIONS(830), - [anon_sym_for] = ACTIONS(830), - [anon_sym_AT] = ACTIONS(830), - [anon_sym_open] = ACTIONS(830), - [anon_sym_module] = ACTIONS(830), - [anon_sym_static] = ACTIONS(830), - [anon_sym_package] = ACTIONS(830), - [anon_sym_import] = ACTIONS(830), - [anon_sym_enum] = ACTIONS(830), - [anon_sym_public] = ACTIONS(830), - [anon_sym_protected] = ACTIONS(830), - [anon_sym_private] = ACTIONS(830), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_strictfp] = ACTIONS(830), - [anon_sym_native] = ACTIONS(830), - [anon_sym_transient] = ACTIONS(830), - [anon_sym_volatile] = ACTIONS(830), - [anon_sym_sealed] = ACTIONS(830), - [anon_sym_non_DASHsealed] = ACTIONS(828), - [anon_sym_record] = ACTIONS(830), - [anon_sym_ATinterface] = ACTIONS(828), - [anon_sym_interface] = ACTIONS(830), - [anon_sym_byte] = ACTIONS(830), - [anon_sym_short] = ACTIONS(830), - [anon_sym_int] = ACTIONS(830), - [anon_sym_long] = ACTIONS(830), - [anon_sym_char] = ACTIONS(830), - [anon_sym_float] = ACTIONS(830), - [anon_sym_double] = ACTIONS(830), - [sym_boolean_type] = ACTIONS(830), - [sym_void_type] = ACTIONS(830), - [sym_this] = ACTIONS(830), - [sym_super] = ACTIONS(830), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(832), - [sym_identifier] = ACTIONS(834), - [sym_decimal_integer_literal] = ACTIONS(834), - [sym_hex_integer_literal] = ACTIONS(834), - [sym_octal_integer_literal] = ACTIONS(832), - [sym_binary_integer_literal] = ACTIONS(832), - [sym_decimal_floating_point_literal] = ACTIONS(832), - [sym_hex_floating_point_literal] = ACTIONS(834), - [sym_true] = ACTIONS(834), - [sym_false] = ACTIONS(834), - [sym_character_literal] = ACTIONS(832), - [sym_string_literal] = ACTIONS(834), - [sym_text_block] = ACTIONS(832), - [sym_null_literal] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_final] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(832), - [anon_sym_TILDE] = ACTIONS(832), - [anon_sym_PLUS_PLUS] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(832), - [anon_sym_new] = ACTIONS(834), - [anon_sym_class] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_case] = ACTIONS(834), - [anon_sym_default] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_assert] = ACTIONS(834), - [anon_sym_do] = ACTIONS(834), - [anon_sym_while] = ACTIONS(834), - [anon_sym_break] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_return] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(834), - [anon_sym_synchronized] = ACTIONS(834), - [anon_sym_throw] = ACTIONS(834), - [anon_sym_try] = ACTIONS(834), - [anon_sym_if] = ACTIONS(834), - [anon_sym_else] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_open] = ACTIONS(834), - [anon_sym_module] = ACTIONS(834), - [anon_sym_static] = ACTIONS(834), - [anon_sym_package] = ACTIONS(834), - [anon_sym_import] = ACTIONS(834), - [anon_sym_enum] = ACTIONS(834), - [anon_sym_public] = ACTIONS(834), - [anon_sym_protected] = ACTIONS(834), - [anon_sym_private] = ACTIONS(834), - [anon_sym_abstract] = ACTIONS(834), - [anon_sym_strictfp] = ACTIONS(834), - [anon_sym_native] = ACTIONS(834), - [anon_sym_transient] = ACTIONS(834), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_sealed] = ACTIONS(834), - [anon_sym_non_DASHsealed] = ACTIONS(832), - [anon_sym_record] = ACTIONS(834), - [anon_sym_ATinterface] = ACTIONS(832), - [anon_sym_interface] = ACTIONS(834), - [anon_sym_byte] = ACTIONS(834), - [anon_sym_short] = ACTIONS(834), - [anon_sym_int] = ACTIONS(834), - [anon_sym_long] = ACTIONS(834), - [anon_sym_char] = ACTIONS(834), - [anon_sym_float] = ACTIONS(834), - [anon_sym_double] = ACTIONS(834), - [sym_boolean_type] = ACTIONS(834), - [sym_void_type] = ACTIONS(834), - [sym_this] = ACTIONS(834), - [sym_super] = ACTIONS(834), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(838), - [sym_decimal_integer_literal] = ACTIONS(838), - [sym_hex_integer_literal] = ACTIONS(838), - [sym_octal_integer_literal] = ACTIONS(836), - [sym_binary_integer_literal] = ACTIONS(836), - [sym_decimal_floating_point_literal] = ACTIONS(836), - [sym_hex_floating_point_literal] = ACTIONS(838), - [sym_true] = ACTIONS(838), - [sym_false] = ACTIONS(838), - [sym_character_literal] = ACTIONS(836), - [sym_string_literal] = ACTIONS(838), - [sym_text_block] = ACTIONS(836), - [sym_null_literal] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(838), - [anon_sym_final] = ACTIONS(838), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_new] = ACTIONS(838), - [anon_sym_class] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(838), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_assert] = ACTIONS(838), - [anon_sym_do] = ACTIONS(838), - [anon_sym_while] = ACTIONS(838), - [anon_sym_break] = ACTIONS(838), - [anon_sym_continue] = ACTIONS(838), - [anon_sym_return] = ACTIONS(838), - [anon_sym_yield] = ACTIONS(838), - [anon_sym_synchronized] = ACTIONS(838), - [anon_sym_throw] = ACTIONS(838), - [anon_sym_try] = ACTIONS(838), - [anon_sym_if] = ACTIONS(838), - [anon_sym_else] = ACTIONS(838), - [anon_sym_for] = ACTIONS(838), - [anon_sym_AT] = ACTIONS(838), - [anon_sym_open] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_static] = ACTIONS(838), - [anon_sym_package] = ACTIONS(838), - [anon_sym_import] = ACTIONS(838), - [anon_sym_enum] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_abstract] = ACTIONS(838), - [anon_sym_strictfp] = ACTIONS(838), - [anon_sym_native] = ACTIONS(838), - [anon_sym_transient] = ACTIONS(838), - [anon_sym_volatile] = ACTIONS(838), - [anon_sym_sealed] = ACTIONS(838), - [anon_sym_non_DASHsealed] = ACTIONS(836), - [anon_sym_record] = ACTIONS(838), - [anon_sym_ATinterface] = ACTIONS(836), - [anon_sym_interface] = ACTIONS(838), - [anon_sym_byte] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_int] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_char] = ACTIONS(838), - [anon_sym_float] = ACTIONS(838), - [anon_sym_double] = ACTIONS(838), - [sym_boolean_type] = ACTIONS(838), - [sym_void_type] = ACTIONS(838), - [sym_this] = ACTIONS(838), - [sym_super] = ACTIONS(838), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_identifier] = ACTIONS(842), - [sym_decimal_integer_literal] = ACTIONS(842), - [sym_hex_integer_literal] = ACTIONS(842), - [sym_octal_integer_literal] = ACTIONS(840), - [sym_binary_integer_literal] = ACTIONS(840), - [sym_decimal_floating_point_literal] = ACTIONS(840), - [sym_hex_floating_point_literal] = ACTIONS(842), - [sym_true] = ACTIONS(842), - [sym_false] = ACTIONS(842), - [sym_character_literal] = ACTIONS(840), - [sym_string_literal] = ACTIONS(842), - [sym_text_block] = ACTIONS(840), - [sym_null_literal] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_final] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(840), - [anon_sym_TILDE] = ACTIONS(840), - [anon_sym_PLUS_PLUS] = ACTIONS(840), - [anon_sym_DASH_DASH] = ACTIONS(840), - [anon_sym_new] = ACTIONS(842), - [anon_sym_class] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(840), - [anon_sym_RBRACE] = ACTIONS(840), - [anon_sym_case] = ACTIONS(842), - [anon_sym_default] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(842), - [anon_sym_do] = ACTIONS(842), - [anon_sym_while] = ACTIONS(842), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_return] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(842), - [anon_sym_synchronized] = ACTIONS(842), - [anon_sym_throw] = ACTIONS(842), - [anon_sym_try] = ACTIONS(842), - [anon_sym_if] = ACTIONS(842), - [anon_sym_else] = ACTIONS(842), - [anon_sym_for] = ACTIONS(842), - [anon_sym_AT] = ACTIONS(842), - [anon_sym_open] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_static] = ACTIONS(842), - [anon_sym_package] = ACTIONS(842), - [anon_sym_import] = ACTIONS(842), - [anon_sym_enum] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_abstract] = ACTIONS(842), - [anon_sym_strictfp] = ACTIONS(842), - [anon_sym_native] = ACTIONS(842), - [anon_sym_transient] = ACTIONS(842), - [anon_sym_volatile] = ACTIONS(842), - [anon_sym_sealed] = ACTIONS(842), - [anon_sym_non_DASHsealed] = ACTIONS(840), - [anon_sym_record] = ACTIONS(842), - [anon_sym_ATinterface] = ACTIONS(840), - [anon_sym_interface] = ACTIONS(842), - [anon_sym_byte] = ACTIONS(842), - [anon_sym_short] = ACTIONS(842), - [anon_sym_int] = ACTIONS(842), - [anon_sym_long] = ACTIONS(842), - [anon_sym_char] = ACTIONS(842), - [anon_sym_float] = ACTIONS(842), - [anon_sym_double] = ACTIONS(842), - [sym_boolean_type] = ACTIONS(842), - [sym_void_type] = ACTIONS(842), - [sym_this] = ACTIONS(842), - [sym_super] = ACTIONS(842), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(844), - [sym_identifier] = ACTIONS(846), - [sym_decimal_integer_literal] = ACTIONS(846), - [sym_hex_integer_literal] = ACTIONS(846), - [sym_octal_integer_literal] = ACTIONS(844), - [sym_binary_integer_literal] = ACTIONS(844), - [sym_decimal_floating_point_literal] = ACTIONS(844), - [sym_hex_floating_point_literal] = ACTIONS(846), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_character_literal] = ACTIONS(844), - [sym_string_literal] = ACTIONS(846), - [sym_text_block] = ACTIONS(844), - [sym_null_literal] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_final] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_new] = ACTIONS(846), - [anon_sym_class] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_case] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_assert] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_yield] = ACTIONS(846), - [anon_sym_synchronized] = ACTIONS(846), - [anon_sym_throw] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_else] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_AT] = ACTIONS(846), - [anon_sym_open] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_static] = ACTIONS(846), - [anon_sym_package] = ACTIONS(846), - [anon_sym_import] = ACTIONS(846), - [anon_sym_enum] = ACTIONS(846), - [anon_sym_public] = ACTIONS(846), - [anon_sym_protected] = ACTIONS(846), - [anon_sym_private] = ACTIONS(846), - [anon_sym_abstract] = ACTIONS(846), - [anon_sym_strictfp] = ACTIONS(846), - [anon_sym_native] = ACTIONS(846), - [anon_sym_transient] = ACTIONS(846), - [anon_sym_volatile] = ACTIONS(846), - [anon_sym_sealed] = ACTIONS(846), - [anon_sym_non_DASHsealed] = ACTIONS(844), - [anon_sym_record] = ACTIONS(846), - [anon_sym_ATinterface] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(846), - [anon_sym_byte] = ACTIONS(846), - [anon_sym_short] = ACTIONS(846), - [anon_sym_int] = ACTIONS(846), - [anon_sym_long] = ACTIONS(846), - [anon_sym_char] = ACTIONS(846), - [anon_sym_float] = ACTIONS(846), - [anon_sym_double] = ACTIONS(846), - [sym_boolean_type] = ACTIONS(846), - [sym_void_type] = ACTIONS(846), - [sym_this] = ACTIONS(846), - [sym_super] = ACTIONS(846), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(848), - [sym_identifier] = ACTIONS(850), - [sym_decimal_integer_literal] = ACTIONS(850), - [sym_hex_integer_literal] = ACTIONS(850), - [sym_octal_integer_literal] = ACTIONS(848), - [sym_binary_integer_literal] = ACTIONS(848), - [sym_decimal_floating_point_literal] = ACTIONS(848), - [sym_hex_floating_point_literal] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_character_literal] = ACTIONS(848), - [sym_string_literal] = ACTIONS(850), - [sym_text_block] = ACTIONS(848), - [sym_null_literal] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_final] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS_PLUS] = ACTIONS(848), - [anon_sym_DASH_DASH] = ACTIONS(848), - [anon_sym_new] = ACTIONS(850), - [anon_sym_class] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(848), - [anon_sym_assert] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_synchronized] = ACTIONS(850), - [anon_sym_throw] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_else] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_AT] = ACTIONS(850), - [anon_sym_open] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_static] = ACTIONS(850), - [anon_sym_package] = ACTIONS(850), - [anon_sym_import] = ACTIONS(850), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_public] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(850), - [anon_sym_strictfp] = ACTIONS(850), - [anon_sym_native] = ACTIONS(850), - [anon_sym_transient] = ACTIONS(850), - [anon_sym_volatile] = ACTIONS(850), - [anon_sym_sealed] = ACTIONS(850), - [anon_sym_non_DASHsealed] = ACTIONS(848), - [anon_sym_record] = ACTIONS(850), - [anon_sym_ATinterface] = ACTIONS(848), - [anon_sym_interface] = ACTIONS(850), - [anon_sym_byte] = ACTIONS(850), - [anon_sym_short] = ACTIONS(850), - [anon_sym_int] = ACTIONS(850), - [anon_sym_long] = ACTIONS(850), - [anon_sym_char] = ACTIONS(850), - [anon_sym_float] = ACTIONS(850), - [anon_sym_double] = ACTIONS(850), - [sym_boolean_type] = ACTIONS(850), - [sym_void_type] = ACTIONS(850), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(852), - [sym_identifier] = ACTIONS(854), - [sym_decimal_integer_literal] = ACTIONS(854), - [sym_hex_integer_literal] = ACTIONS(854), - [sym_octal_integer_literal] = ACTIONS(852), - [sym_binary_integer_literal] = ACTIONS(852), - [sym_decimal_floating_point_literal] = ACTIONS(852), - [sym_hex_floating_point_literal] = ACTIONS(854), - [sym_true] = ACTIONS(854), - [sym_false] = ACTIONS(854), - [sym_character_literal] = ACTIONS(852), - [sym_string_literal] = ACTIONS(854), - [sym_text_block] = ACTIONS(852), - [sym_null_literal] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_final] = ACTIONS(854), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_new] = ACTIONS(854), - [anon_sym_class] = ACTIONS(854), - [anon_sym_switch] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_case] = ACTIONS(854), - [anon_sym_default] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_assert] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_yield] = ACTIONS(854), - [anon_sym_synchronized] = ACTIONS(854), - [anon_sym_throw] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_else] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(854), - [anon_sym_open] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_static] = ACTIONS(854), - [anon_sym_package] = ACTIONS(854), - [anon_sym_import] = ACTIONS(854), - [anon_sym_enum] = ACTIONS(854), - [anon_sym_public] = ACTIONS(854), - [anon_sym_protected] = ACTIONS(854), - [anon_sym_private] = ACTIONS(854), - [anon_sym_abstract] = ACTIONS(854), - [anon_sym_strictfp] = ACTIONS(854), - [anon_sym_native] = ACTIONS(854), - [anon_sym_transient] = ACTIONS(854), - [anon_sym_volatile] = ACTIONS(854), - [anon_sym_sealed] = ACTIONS(854), - [anon_sym_non_DASHsealed] = ACTIONS(852), - [anon_sym_record] = ACTIONS(854), - [anon_sym_ATinterface] = ACTIONS(852), - [anon_sym_interface] = ACTIONS(854), - [anon_sym_byte] = ACTIONS(854), - [anon_sym_short] = ACTIONS(854), - [anon_sym_int] = ACTIONS(854), - [anon_sym_long] = ACTIONS(854), - [anon_sym_char] = ACTIONS(854), - [anon_sym_float] = ACTIONS(854), - [anon_sym_double] = ACTIONS(854), - [sym_boolean_type] = ACTIONS(854), - [sym_void_type] = ACTIONS(854), - [sym_this] = ACTIONS(854), - [sym_super] = ACTIONS(854), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(856), - [sym_identifier] = ACTIONS(858), - [sym_decimal_integer_literal] = ACTIONS(858), - [sym_hex_integer_literal] = ACTIONS(858), - [sym_octal_integer_literal] = ACTIONS(856), - [sym_binary_integer_literal] = ACTIONS(856), - [sym_decimal_floating_point_literal] = ACTIONS(856), - [sym_hex_floating_point_literal] = ACTIONS(858), - [sym_true] = ACTIONS(858), - [sym_false] = ACTIONS(858), - [sym_character_literal] = ACTIONS(856), - [sym_string_literal] = ACTIONS(858), - [sym_text_block] = ACTIONS(856), - [sym_null_literal] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_final] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(856), - [anon_sym_TILDE] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_class] = ACTIONS(858), - [anon_sym_switch] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(856), - [anon_sym_RBRACE] = ACTIONS(856), - [anon_sym_case] = ACTIONS(858), - [anon_sym_default] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_assert] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_synchronized] = ACTIONS(858), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_else] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(858), - [anon_sym_open] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_static] = ACTIONS(858), - [anon_sym_package] = ACTIONS(858), - [anon_sym_import] = ACTIONS(858), - [anon_sym_enum] = ACTIONS(858), - [anon_sym_public] = ACTIONS(858), - [anon_sym_protected] = ACTIONS(858), - [anon_sym_private] = ACTIONS(858), - [anon_sym_abstract] = ACTIONS(858), - [anon_sym_strictfp] = ACTIONS(858), - [anon_sym_native] = ACTIONS(858), - [anon_sym_transient] = ACTIONS(858), - [anon_sym_volatile] = ACTIONS(858), - [anon_sym_sealed] = ACTIONS(858), - [anon_sym_non_DASHsealed] = ACTIONS(856), - [anon_sym_record] = ACTIONS(858), - [anon_sym_ATinterface] = ACTIONS(856), - [anon_sym_interface] = ACTIONS(858), - [anon_sym_byte] = ACTIONS(858), - [anon_sym_short] = ACTIONS(858), - [anon_sym_int] = ACTIONS(858), - [anon_sym_long] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_float] = ACTIONS(858), - [anon_sym_double] = ACTIONS(858), - [sym_boolean_type] = ACTIONS(858), - [sym_void_type] = ACTIONS(858), - [sym_this] = ACTIONS(858), - [sym_super] = ACTIONS(858), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_switch_label] = STATE(1228), - [aux_sym_switch_block_statement_group_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(860), - [sym_decimal_integer_literal] = ACTIONS(860), - [sym_hex_integer_literal] = ACTIONS(860), - [sym_octal_integer_literal] = ACTIONS(862), - [sym_binary_integer_literal] = ACTIONS(862), - [sym_decimal_floating_point_literal] = ACTIONS(862), - [sym_hex_floating_point_literal] = ACTIONS(860), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_character_literal] = ACTIONS(862), - [sym_string_literal] = ACTIONS(860), - [sym_text_block] = ACTIONS(862), - [sym_null_literal] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_final] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_DASH_DASH] = ACTIONS(862), - [anon_sym_new] = ACTIONS(860), - [anon_sym_class] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_case] = ACTIONS(864), - [anon_sym_default] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_assert] = ACTIONS(860), - [anon_sym_do] = ACTIONS(860), - [anon_sym_while] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(860), - [anon_sym_synchronized] = ACTIONS(860), - [anon_sym_throw] = ACTIONS(860), - [anon_sym_try] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_open] = ACTIONS(860), - [anon_sym_module] = ACTIONS(860), - [anon_sym_static] = ACTIONS(860), - [anon_sym_package] = ACTIONS(860), - [anon_sym_import] = ACTIONS(860), - [anon_sym_enum] = ACTIONS(860), - [anon_sym_public] = ACTIONS(860), - [anon_sym_protected] = ACTIONS(860), - [anon_sym_private] = ACTIONS(860), - [anon_sym_abstract] = ACTIONS(860), - [anon_sym_strictfp] = ACTIONS(860), - [anon_sym_native] = ACTIONS(860), - [anon_sym_transient] = ACTIONS(860), - [anon_sym_volatile] = ACTIONS(860), - [anon_sym_sealed] = ACTIONS(860), - [anon_sym_non_DASHsealed] = ACTIONS(862), - [anon_sym_record] = ACTIONS(860), - [anon_sym_ATinterface] = ACTIONS(862), - [anon_sym_interface] = ACTIONS(860), - [anon_sym_byte] = ACTIONS(860), - [anon_sym_short] = ACTIONS(860), - [anon_sym_int] = ACTIONS(860), - [anon_sym_long] = ACTIONS(860), - [anon_sym_char] = ACTIONS(860), - [anon_sym_float] = ACTIONS(860), - [anon_sym_double] = ACTIONS(860), - [sym_boolean_type] = ACTIONS(860), - [sym_void_type] = ACTIONS(860), - [sym_this] = ACTIONS(860), - [sym_super] = ACTIONS(860), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(870), - [sym_identifier] = ACTIONS(872), - [sym_decimal_integer_literal] = ACTIONS(872), - [sym_hex_integer_literal] = ACTIONS(872), - [sym_octal_integer_literal] = ACTIONS(870), - [sym_binary_integer_literal] = ACTIONS(870), - [sym_decimal_floating_point_literal] = ACTIONS(870), - [sym_hex_floating_point_literal] = ACTIONS(872), - [sym_true] = ACTIONS(872), - [sym_false] = ACTIONS(872), - [sym_character_literal] = ACTIONS(870), - [sym_string_literal] = ACTIONS(872), - [sym_text_block] = ACTIONS(870), - [sym_null_literal] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(872), - [anon_sym_final] = ACTIONS(872), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(870), - [anon_sym_DASH_DASH] = ACTIONS(870), - [anon_sym_new] = ACTIONS(872), - [anon_sym_class] = ACTIONS(872), - [anon_sym_switch] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_RBRACE] = ACTIONS(870), - [anon_sym_case] = ACTIONS(872), - [anon_sym_default] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_assert] = ACTIONS(872), - [anon_sym_do] = ACTIONS(872), - [anon_sym_while] = ACTIONS(872), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(872), - [anon_sym_return] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(872), - [anon_sym_synchronized] = ACTIONS(872), - [anon_sym_throw] = ACTIONS(872), - [anon_sym_try] = ACTIONS(872), - [anon_sym_if] = ACTIONS(872), - [anon_sym_else] = ACTIONS(872), - [anon_sym_for] = ACTIONS(872), - [anon_sym_AT] = ACTIONS(872), - [anon_sym_open] = ACTIONS(872), - [anon_sym_module] = ACTIONS(872), - [anon_sym_static] = ACTIONS(872), - [anon_sym_package] = ACTIONS(872), - [anon_sym_import] = ACTIONS(872), - [anon_sym_enum] = ACTIONS(872), - [anon_sym_public] = ACTIONS(872), - [anon_sym_protected] = ACTIONS(872), - [anon_sym_private] = ACTIONS(872), - [anon_sym_abstract] = ACTIONS(872), - [anon_sym_strictfp] = ACTIONS(872), - [anon_sym_native] = ACTIONS(872), - [anon_sym_transient] = ACTIONS(872), - [anon_sym_volatile] = ACTIONS(872), - [anon_sym_sealed] = ACTIONS(872), - [anon_sym_non_DASHsealed] = ACTIONS(870), - [anon_sym_record] = ACTIONS(872), - [anon_sym_ATinterface] = ACTIONS(870), - [anon_sym_interface] = ACTIONS(872), - [anon_sym_byte] = ACTIONS(872), - [anon_sym_short] = ACTIONS(872), - [anon_sym_int] = ACTIONS(872), - [anon_sym_long] = ACTIONS(872), - [anon_sym_char] = ACTIONS(872), - [anon_sym_float] = ACTIONS(872), - [anon_sym_double] = ACTIONS(872), - [sym_boolean_type] = ACTIONS(872), - [sym_void_type] = ACTIONS(872), - [sym_this] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(327), - [sym_identifier] = ACTIONS(329), - [sym_decimal_integer_literal] = ACTIONS(329), - [sym_hex_integer_literal] = ACTIONS(329), - [sym_octal_integer_literal] = ACTIONS(327), - [sym_binary_integer_literal] = ACTIONS(327), - [sym_decimal_floating_point_literal] = ACTIONS(327), - [sym_hex_floating_point_literal] = ACTIONS(329), - [sym_true] = ACTIONS(329), - [sym_false] = ACTIONS(329), - [sym_character_literal] = ACTIONS(327), - [sym_string_literal] = ACTIONS(329), - [sym_text_block] = ACTIONS(327), - [sym_null_literal] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_final] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), - [anon_sym_TILDE] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(327), - [anon_sym_DASH_DASH] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_class] = ACTIONS(329), - [anon_sym_switch] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_case] = ACTIONS(329), - [anon_sym_default] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(327), - [anon_sym_assert] = ACTIONS(329), - [anon_sym_do] = ACTIONS(329), - [anon_sym_while] = ACTIONS(329), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_return] = ACTIONS(329), - [anon_sym_yield] = ACTIONS(329), - [anon_sym_synchronized] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_try] = ACTIONS(329), - [anon_sym_if] = ACTIONS(329), - [anon_sym_else] = ACTIONS(329), - [anon_sym_for] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_open] = ACTIONS(329), - [anon_sym_module] = ACTIONS(329), - [anon_sym_static] = ACTIONS(329), - [anon_sym_package] = ACTIONS(329), - [anon_sym_import] = ACTIONS(329), - [anon_sym_enum] = ACTIONS(329), - [anon_sym_public] = ACTIONS(329), - [anon_sym_protected] = ACTIONS(329), - [anon_sym_private] = ACTIONS(329), - [anon_sym_abstract] = ACTIONS(329), - [anon_sym_strictfp] = ACTIONS(329), - [anon_sym_native] = ACTIONS(329), - [anon_sym_transient] = ACTIONS(329), - [anon_sym_volatile] = ACTIONS(329), - [anon_sym_sealed] = ACTIONS(329), - [anon_sym_non_DASHsealed] = ACTIONS(327), - [anon_sym_record] = ACTIONS(329), - [anon_sym_ATinterface] = ACTIONS(327), - [anon_sym_interface] = ACTIONS(329), - [anon_sym_byte] = ACTIONS(329), - [anon_sym_short] = ACTIONS(329), - [anon_sym_int] = ACTIONS(329), - [anon_sym_long] = ACTIONS(329), - [anon_sym_char] = ACTIONS(329), - [anon_sym_float] = ACTIONS(329), - [anon_sym_double] = ACTIONS(329), - [sym_boolean_type] = ACTIONS(329), - [sym_void_type] = ACTIONS(329), - [sym_this] = ACTIONS(329), - [sym_super] = ACTIONS(329), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(874), - [sym_identifier] = ACTIONS(876), - [sym_decimal_integer_literal] = ACTIONS(876), - [sym_hex_integer_literal] = ACTIONS(876), - [sym_octal_integer_literal] = ACTIONS(874), - [sym_binary_integer_literal] = ACTIONS(874), - [sym_decimal_floating_point_literal] = ACTIONS(874), - [sym_hex_floating_point_literal] = ACTIONS(876), - [sym_true] = ACTIONS(876), - [sym_false] = ACTIONS(876), - [sym_character_literal] = ACTIONS(874), - [sym_string_literal] = ACTIONS(876), - [sym_text_block] = ACTIONS(874), - [sym_null_literal] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_final] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), - [anon_sym_class] = ACTIONS(876), - [anon_sym_switch] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_case] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_assert] = ACTIONS(876), - [anon_sym_do] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_synchronized] = ACTIONS(876), - [anon_sym_throw] = ACTIONS(876), - [anon_sym_try] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_AT] = ACTIONS(876), - [anon_sym_open] = ACTIONS(876), - [anon_sym_module] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_package] = ACTIONS(876), - [anon_sym_import] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(876), - [anon_sym_public] = ACTIONS(876), - [anon_sym_protected] = ACTIONS(876), - [anon_sym_private] = ACTIONS(876), - [anon_sym_abstract] = ACTIONS(876), - [anon_sym_strictfp] = ACTIONS(876), - [anon_sym_native] = ACTIONS(876), - [anon_sym_transient] = ACTIONS(876), - [anon_sym_volatile] = ACTIONS(876), - [anon_sym_sealed] = ACTIONS(876), - [anon_sym_non_DASHsealed] = ACTIONS(874), - [anon_sym_record] = ACTIONS(876), - [anon_sym_ATinterface] = ACTIONS(874), - [anon_sym_interface] = ACTIONS(876), - [anon_sym_byte] = ACTIONS(876), - [anon_sym_short] = ACTIONS(876), - [anon_sym_int] = ACTIONS(876), - [anon_sym_long] = ACTIONS(876), - [anon_sym_char] = ACTIONS(876), - [anon_sym_float] = ACTIONS(876), - [anon_sym_double] = ACTIONS(876), - [sym_boolean_type] = ACTIONS(876), - [sym_void_type] = ACTIONS(876), - [sym_this] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(878), - [sym_identifier] = ACTIONS(880), - [sym_decimal_integer_literal] = ACTIONS(880), - [sym_hex_integer_literal] = ACTIONS(880), - [sym_octal_integer_literal] = ACTIONS(878), - [sym_binary_integer_literal] = ACTIONS(878), - [sym_decimal_floating_point_literal] = ACTIONS(878), - [sym_hex_floating_point_literal] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_character_literal] = ACTIONS(878), - [sym_string_literal] = ACTIONS(880), - [sym_text_block] = ACTIONS(878), - [sym_null_literal] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_final] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(878), - [anon_sym_TILDE] = ACTIONS(878), - [anon_sym_PLUS_PLUS] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(878), - [anon_sym_new] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(878), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_case] = ACTIONS(880), - [anon_sym_default] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_assert] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_synchronized] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_else] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_open] = ACTIONS(880), - [anon_sym_module] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_package] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_enum] = ACTIONS(880), - [anon_sym_public] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(880), - [anon_sym_strictfp] = ACTIONS(880), - [anon_sym_native] = ACTIONS(880), - [anon_sym_transient] = ACTIONS(880), - [anon_sym_volatile] = ACTIONS(880), - [anon_sym_sealed] = ACTIONS(880), - [anon_sym_non_DASHsealed] = ACTIONS(878), - [anon_sym_record] = ACTIONS(880), - [anon_sym_ATinterface] = ACTIONS(878), - [anon_sym_interface] = ACTIONS(880), - [anon_sym_byte] = ACTIONS(880), - [anon_sym_short] = ACTIONS(880), - [anon_sym_int] = ACTIONS(880), - [anon_sym_long] = ACTIONS(880), - [anon_sym_char] = ACTIONS(880), - [anon_sym_float] = ACTIONS(880), - [anon_sym_double] = ACTIONS(880), - [sym_boolean_type] = ACTIONS(880), - [sym_void_type] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(884), - [sym_decimal_integer_literal] = ACTIONS(884), - [sym_hex_integer_literal] = ACTIONS(884), - [sym_octal_integer_literal] = ACTIONS(882), - [sym_binary_integer_literal] = ACTIONS(882), - [sym_decimal_floating_point_literal] = ACTIONS(882), - [sym_hex_floating_point_literal] = ACTIONS(884), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_character_literal] = ACTIONS(882), - [sym_string_literal] = ACTIONS(884), - [sym_text_block] = ACTIONS(882), - [sym_null_literal] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_final] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(882), - [anon_sym_TILDE] = ACTIONS(882), - [anon_sym_PLUS_PLUS] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(882), - [anon_sym_new] = ACTIONS(884), - [anon_sym_class] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(882), - [anon_sym_RBRACE] = ACTIONS(882), - [anon_sym_case] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_assert] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_synchronized] = ACTIONS(884), - [anon_sym_throw] = ACTIONS(884), - [anon_sym_try] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_else] = ACTIONS(886), - [anon_sym_for] = ACTIONS(884), - [anon_sym_AT] = ACTIONS(884), - [anon_sym_open] = ACTIONS(884), - [anon_sym_module] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), - [anon_sym_package] = ACTIONS(884), - [anon_sym_import] = ACTIONS(884), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_public] = ACTIONS(884), - [anon_sym_protected] = ACTIONS(884), - [anon_sym_private] = ACTIONS(884), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_strictfp] = ACTIONS(884), - [anon_sym_native] = ACTIONS(884), - [anon_sym_transient] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym_sealed] = ACTIONS(884), - [anon_sym_non_DASHsealed] = ACTIONS(882), - [anon_sym_record] = ACTIONS(884), - [anon_sym_ATinterface] = ACTIONS(882), - [anon_sym_interface] = ACTIONS(884), - [anon_sym_byte] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [anon_sym_int] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_char] = ACTIONS(884), - [anon_sym_float] = ACTIONS(884), - [anon_sym_double] = ACTIONS(884), - [sym_boolean_type] = ACTIONS(884), - [sym_void_type] = ACTIONS(884), - [sym_this] = ACTIONS(884), - [sym_super] = ACTIONS(884), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_decimal_integer_literal] = ACTIONS(890), - [sym_hex_integer_literal] = ACTIONS(890), - [sym_octal_integer_literal] = ACTIONS(888), - [sym_binary_integer_literal] = ACTIONS(888), - [sym_decimal_floating_point_literal] = ACTIONS(888), - [sym_hex_floating_point_literal] = ACTIONS(890), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_character_literal] = ACTIONS(888), - [sym_string_literal] = ACTIONS(890), - [sym_text_block] = ACTIONS(888), - [sym_null_literal] = ACTIONS(890), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_final] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), - [anon_sym_class] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_assert] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_yield] = ACTIONS(890), - [anon_sym_synchronized] = ACTIONS(890), - [anon_sym_throw] = ACTIONS(890), - [anon_sym_try] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_AT] = ACTIONS(890), - [anon_sym_open] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_static] = ACTIONS(890), - [anon_sym_package] = ACTIONS(890), - [anon_sym_import] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_abstract] = ACTIONS(890), - [anon_sym_strictfp] = ACTIONS(890), - [anon_sym_native] = ACTIONS(890), - [anon_sym_transient] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_sealed] = ACTIONS(890), - [anon_sym_non_DASHsealed] = ACTIONS(888), - [anon_sym_record] = ACTIONS(890), - [anon_sym_ATinterface] = ACTIONS(888), - [anon_sym_interface] = ACTIONS(890), - [anon_sym_byte] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [anon_sym_int] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_char] = ACTIONS(890), - [anon_sym_float] = ACTIONS(890), - [anon_sym_double] = ACTIONS(890), - [sym_boolean_type] = ACTIONS(890), - [sym_void_type] = ACTIONS(890), - [sym_this] = ACTIONS(890), - [sym_super] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(892), - [sym_identifier] = ACTIONS(894), - [sym_decimal_integer_literal] = ACTIONS(894), - [sym_hex_integer_literal] = ACTIONS(894), - [sym_octal_integer_literal] = ACTIONS(892), - [sym_binary_integer_literal] = ACTIONS(892), - [sym_decimal_floating_point_literal] = ACTIONS(892), - [sym_hex_floating_point_literal] = ACTIONS(894), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_character_literal] = ACTIONS(892), - [sym_string_literal] = ACTIONS(894), - [sym_text_block] = ACTIONS(892), - [sym_null_literal] = ACTIONS(894), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_final] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_new] = ACTIONS(894), - [anon_sym_class] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_assert] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_yield] = ACTIONS(894), - [anon_sym_synchronized] = ACTIONS(894), - [anon_sym_throw] = ACTIONS(894), - [anon_sym_try] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_AT] = ACTIONS(894), - [anon_sym_open] = ACTIONS(894), - [anon_sym_module] = ACTIONS(894), - [anon_sym_static] = ACTIONS(894), - [anon_sym_package] = ACTIONS(894), - [anon_sym_import] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_public] = ACTIONS(894), - [anon_sym_protected] = ACTIONS(894), - [anon_sym_private] = ACTIONS(894), - [anon_sym_abstract] = ACTIONS(894), - [anon_sym_strictfp] = ACTIONS(894), - [anon_sym_native] = ACTIONS(894), - [anon_sym_transient] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_sealed] = ACTIONS(894), - [anon_sym_non_DASHsealed] = ACTIONS(892), - [anon_sym_record] = ACTIONS(894), - [anon_sym_ATinterface] = ACTIONS(892), - [anon_sym_interface] = ACTIONS(894), - [anon_sym_byte] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [anon_sym_int] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_char] = ACTIONS(894), - [anon_sym_float] = ACTIONS(894), - [anon_sym_double] = ACTIONS(894), - [sym_boolean_type] = ACTIONS(894), - [sym_void_type] = ACTIONS(894), - [sym_this] = ACTIONS(894), - [sym_super] = ACTIONS(894), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(896), - [sym_identifier] = ACTIONS(898), - [sym_decimal_integer_literal] = ACTIONS(898), - [sym_hex_integer_literal] = ACTIONS(898), - [sym_octal_integer_literal] = ACTIONS(896), - [sym_binary_integer_literal] = ACTIONS(896), - [sym_decimal_floating_point_literal] = ACTIONS(896), - [sym_hex_floating_point_literal] = ACTIONS(898), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_character_literal] = ACTIONS(896), - [sym_string_literal] = ACTIONS(898), - [sym_text_block] = ACTIONS(896), - [sym_null_literal] = ACTIONS(898), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_final] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_new] = ACTIONS(898), - [anon_sym_class] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_assert] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_synchronized] = ACTIONS(898), - [anon_sym_throw] = ACTIONS(898), - [anon_sym_try] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_AT] = ACTIONS(898), - [anon_sym_open] = ACTIONS(898), - [anon_sym_module] = ACTIONS(898), - [anon_sym_static] = ACTIONS(898), - [anon_sym_package] = ACTIONS(898), - [anon_sym_import] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_public] = ACTIONS(898), - [anon_sym_protected] = ACTIONS(898), - [anon_sym_private] = ACTIONS(898), - [anon_sym_abstract] = ACTIONS(898), - [anon_sym_strictfp] = ACTIONS(898), - [anon_sym_native] = ACTIONS(898), - [anon_sym_transient] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_sealed] = ACTIONS(898), - [anon_sym_non_DASHsealed] = ACTIONS(896), - [anon_sym_record] = ACTIONS(898), - [anon_sym_ATinterface] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_byte] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [anon_sym_int] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_char] = ACTIONS(898), - [anon_sym_float] = ACTIONS(898), - [anon_sym_double] = ACTIONS(898), - [sym_boolean_type] = ACTIONS(898), - [sym_void_type] = ACTIONS(898), - [sym_this] = ACTIONS(898), - [sym_super] = ACTIONS(898), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(902), - [sym_decimal_integer_literal] = ACTIONS(902), - [sym_hex_integer_literal] = ACTIONS(902), - [sym_octal_integer_literal] = ACTIONS(900), - [sym_binary_integer_literal] = ACTIONS(900), - [sym_decimal_floating_point_literal] = ACTIONS(900), - [sym_hex_floating_point_literal] = ACTIONS(902), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_character_literal] = ACTIONS(900), - [sym_string_literal] = ACTIONS(902), - [sym_text_block] = ACTIONS(900), - [sym_null_literal] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_final] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_new] = ACTIONS(902), - [anon_sym_class] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_assert] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_yield] = ACTIONS(902), - [anon_sym_synchronized] = ACTIONS(902), - [anon_sym_throw] = ACTIONS(902), - [anon_sym_try] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_AT] = ACTIONS(902), - [anon_sym_open] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_static] = ACTIONS(902), - [anon_sym_package] = ACTIONS(902), - [anon_sym_import] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_abstract] = ACTIONS(902), - [anon_sym_strictfp] = ACTIONS(902), - [anon_sym_native] = ACTIONS(902), - [anon_sym_transient] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_sealed] = ACTIONS(902), - [anon_sym_non_DASHsealed] = ACTIONS(900), - [anon_sym_record] = ACTIONS(902), - [anon_sym_ATinterface] = ACTIONS(900), - [anon_sym_interface] = ACTIONS(902), - [anon_sym_byte] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [anon_sym_int] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_char] = ACTIONS(902), - [anon_sym_float] = ACTIONS(902), - [anon_sym_double] = ACTIONS(902), - [sym_boolean_type] = ACTIONS(902), - [sym_void_type] = ACTIONS(902), - [sym_this] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(904), - [sym_identifier] = ACTIONS(906), - [sym_decimal_integer_literal] = ACTIONS(906), - [sym_hex_integer_literal] = ACTIONS(906), - [sym_octal_integer_literal] = ACTIONS(904), - [sym_binary_integer_literal] = ACTIONS(904), - [sym_decimal_floating_point_literal] = ACTIONS(904), - [sym_hex_floating_point_literal] = ACTIONS(906), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_character_literal] = ACTIONS(904), - [sym_string_literal] = ACTIONS(906), - [sym_text_block] = ACTIONS(904), - [sym_null_literal] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_final] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_new] = ACTIONS(906), - [anon_sym_class] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_assert] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(906), - [anon_sym_synchronized] = ACTIONS(906), - [anon_sym_throw] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_open] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_static] = ACTIONS(906), - [anon_sym_package] = ACTIONS(906), - [anon_sym_import] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_abstract] = ACTIONS(906), - [anon_sym_strictfp] = ACTIONS(906), - [anon_sym_native] = ACTIONS(906), - [anon_sym_transient] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_sealed] = ACTIONS(906), - [anon_sym_non_DASHsealed] = ACTIONS(904), - [anon_sym_record] = ACTIONS(906), - [anon_sym_ATinterface] = ACTIONS(904), - [anon_sym_interface] = ACTIONS(906), - [anon_sym_byte] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [anon_sym_int] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_char] = ACTIONS(906), - [anon_sym_float] = ACTIONS(906), - [anon_sym_double] = ACTIONS(906), - [sym_boolean_type] = ACTIONS(906), - [sym_void_type] = ACTIONS(906), - [sym_this] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_decimal_integer_literal] = ACTIONS(910), - [sym_hex_integer_literal] = ACTIONS(910), - [sym_octal_integer_literal] = ACTIONS(908), - [sym_binary_integer_literal] = ACTIONS(908), - [sym_decimal_floating_point_literal] = ACTIONS(908), - [sym_hex_floating_point_literal] = ACTIONS(910), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_character_literal] = ACTIONS(908), - [sym_string_literal] = ACTIONS(910), - [sym_text_block] = ACTIONS(908), - [sym_null_literal] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_final] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_class] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_assert] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_yield] = ACTIONS(910), - [anon_sym_synchronized] = ACTIONS(910), - [anon_sym_throw] = ACTIONS(910), - [anon_sym_try] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_AT] = ACTIONS(910), - [anon_sym_open] = ACTIONS(910), - [anon_sym_module] = ACTIONS(910), - [anon_sym_static] = ACTIONS(910), - [anon_sym_package] = ACTIONS(910), - [anon_sym_import] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_public] = ACTIONS(910), - [anon_sym_protected] = ACTIONS(910), - [anon_sym_private] = ACTIONS(910), - [anon_sym_abstract] = ACTIONS(910), - [anon_sym_strictfp] = ACTIONS(910), - [anon_sym_native] = ACTIONS(910), - [anon_sym_transient] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_sealed] = ACTIONS(910), - [anon_sym_non_DASHsealed] = ACTIONS(908), - [anon_sym_record] = ACTIONS(910), - [anon_sym_ATinterface] = ACTIONS(908), - [anon_sym_interface] = ACTIONS(910), - [anon_sym_byte] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [anon_sym_int] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_char] = ACTIONS(910), - [anon_sym_float] = ACTIONS(910), - [anon_sym_double] = ACTIONS(910), - [sym_boolean_type] = ACTIONS(910), - [sym_void_type] = ACTIONS(910), - [sym_this] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_decimal_integer_literal] = ACTIONS(914), - [sym_hex_integer_literal] = ACTIONS(914), - [sym_octal_integer_literal] = ACTIONS(912), - [sym_binary_integer_literal] = ACTIONS(912), - [sym_decimal_floating_point_literal] = ACTIONS(912), - [sym_hex_floating_point_literal] = ACTIONS(914), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_character_literal] = ACTIONS(912), - [sym_string_literal] = ACTIONS(914), - [sym_text_block] = ACTIONS(912), - [sym_null_literal] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_final] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_new] = ACTIONS(914), - [anon_sym_class] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_assert] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(914), - [anon_sym_synchronized] = ACTIONS(914), - [anon_sym_throw] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_AT] = ACTIONS(914), - [anon_sym_open] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_static] = ACTIONS(914), - [anon_sym_package] = ACTIONS(914), - [anon_sym_import] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_public] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(914), - [anon_sym_strictfp] = ACTIONS(914), - [anon_sym_native] = ACTIONS(914), - [anon_sym_transient] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_sealed] = ACTIONS(914), - [anon_sym_non_DASHsealed] = ACTIONS(912), - [anon_sym_record] = ACTIONS(914), - [anon_sym_ATinterface] = ACTIONS(912), - [anon_sym_interface] = ACTIONS(914), - [anon_sym_byte] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [anon_sym_int] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_float] = ACTIONS(914), - [anon_sym_double] = ACTIONS(914), - [sym_boolean_type] = ACTIONS(914), - [sym_void_type] = ACTIONS(914), - [sym_this] = ACTIONS(914), - [sym_super] = ACTIONS(914), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(916), - [sym_identifier] = ACTIONS(918), - [sym_decimal_integer_literal] = ACTIONS(918), - [sym_hex_integer_literal] = ACTIONS(918), - [sym_octal_integer_literal] = ACTIONS(916), - [sym_binary_integer_literal] = ACTIONS(916), - [sym_decimal_floating_point_literal] = ACTIONS(916), - [sym_hex_floating_point_literal] = ACTIONS(918), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_character_literal] = ACTIONS(916), - [sym_string_literal] = ACTIONS(918), - [sym_text_block] = ACTIONS(916), - [sym_null_literal] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_final] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_new] = ACTIONS(918), - [anon_sym_class] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_assert] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_yield] = ACTIONS(918), - [anon_sym_synchronized] = ACTIONS(918), - [anon_sym_throw] = ACTIONS(918), - [anon_sym_try] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_AT] = ACTIONS(918), - [anon_sym_open] = ACTIONS(918), - [anon_sym_module] = ACTIONS(918), - [anon_sym_static] = ACTIONS(918), - [anon_sym_package] = ACTIONS(918), - [anon_sym_import] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_public] = ACTIONS(918), - [anon_sym_protected] = ACTIONS(918), - [anon_sym_private] = ACTIONS(918), - [anon_sym_abstract] = ACTIONS(918), - [anon_sym_strictfp] = ACTIONS(918), - [anon_sym_native] = ACTIONS(918), - [anon_sym_transient] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_sealed] = ACTIONS(918), - [anon_sym_non_DASHsealed] = ACTIONS(916), - [anon_sym_record] = ACTIONS(918), - [anon_sym_ATinterface] = ACTIONS(916), - [anon_sym_interface] = ACTIONS(918), - [anon_sym_byte] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [anon_sym_int] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_char] = ACTIONS(918), - [anon_sym_float] = ACTIONS(918), - [anon_sym_double] = ACTIONS(918), - [sym_boolean_type] = ACTIONS(918), - [sym_void_type] = ACTIONS(918), - [sym_this] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_decimal_integer_literal] = ACTIONS(922), - [sym_hex_integer_literal] = ACTIONS(922), - [sym_octal_integer_literal] = ACTIONS(920), - [sym_binary_integer_literal] = ACTIONS(920), - [sym_decimal_floating_point_literal] = ACTIONS(920), - [sym_hex_floating_point_literal] = ACTIONS(922), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_character_literal] = ACTIONS(920), - [sym_string_literal] = ACTIONS(922), - [sym_text_block] = ACTIONS(920), - [sym_null_literal] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_final] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_new] = ACTIONS(922), - [anon_sym_class] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_assert] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(922), - [anon_sym_synchronized] = ACTIONS(922), - [anon_sym_throw] = ACTIONS(922), - [anon_sym_try] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_open] = ACTIONS(922), - [anon_sym_module] = ACTIONS(922), - [anon_sym_static] = ACTIONS(922), - [anon_sym_package] = ACTIONS(922), - [anon_sym_import] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_public] = ACTIONS(922), - [anon_sym_protected] = ACTIONS(922), - [anon_sym_private] = ACTIONS(922), - [anon_sym_abstract] = ACTIONS(922), - [anon_sym_strictfp] = ACTIONS(922), - [anon_sym_native] = ACTIONS(922), - [anon_sym_transient] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_sealed] = ACTIONS(922), - [anon_sym_non_DASHsealed] = ACTIONS(920), - [anon_sym_record] = ACTIONS(922), - [anon_sym_ATinterface] = ACTIONS(920), - [anon_sym_interface] = ACTIONS(922), - [anon_sym_byte] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [anon_sym_int] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_char] = ACTIONS(922), - [anon_sym_float] = ACTIONS(922), - [anon_sym_double] = ACTIONS(922), - [sym_boolean_type] = ACTIONS(922), - [sym_void_type] = ACTIONS(922), - [sym_this] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_decimal_integer_literal] = ACTIONS(926), - [sym_hex_integer_literal] = ACTIONS(926), - [sym_octal_integer_literal] = ACTIONS(924), - [sym_binary_integer_literal] = ACTIONS(924), - [sym_decimal_floating_point_literal] = ACTIONS(924), - [sym_hex_floating_point_literal] = ACTIONS(926), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_character_literal] = ACTIONS(924), - [sym_string_literal] = ACTIONS(926), - [sym_text_block] = ACTIONS(924), - [sym_null_literal] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_new] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_assert] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_yield] = ACTIONS(926), - [anon_sym_synchronized] = ACTIONS(926), - [anon_sym_throw] = ACTIONS(926), - [anon_sym_try] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_open] = ACTIONS(926), - [anon_sym_module] = ACTIONS(926), - [anon_sym_static] = ACTIONS(926), - [anon_sym_package] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_public] = ACTIONS(926), - [anon_sym_protected] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_strictfp] = ACTIONS(926), - [anon_sym_native] = ACTIONS(926), - [anon_sym_transient] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_sealed] = ACTIONS(926), - [anon_sym_non_DASHsealed] = ACTIONS(924), - [anon_sym_record] = ACTIONS(926), - [anon_sym_ATinterface] = ACTIONS(924), - [anon_sym_interface] = ACTIONS(926), - [anon_sym_byte] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [anon_sym_int] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_char] = ACTIONS(926), - [anon_sym_float] = ACTIONS(926), - [anon_sym_double] = ACTIONS(926), - [sym_boolean_type] = ACTIONS(926), - [sym_void_type] = ACTIONS(926), - [sym_this] = ACTIONS(926), - [sym_super] = ACTIONS(926), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(928), - [sym_identifier] = ACTIONS(930), - [sym_decimal_integer_literal] = ACTIONS(930), - [sym_hex_integer_literal] = ACTIONS(930), - [sym_octal_integer_literal] = ACTIONS(928), - [sym_binary_integer_literal] = ACTIONS(928), - [sym_decimal_floating_point_literal] = ACTIONS(928), - [sym_hex_floating_point_literal] = ACTIONS(930), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_character_literal] = ACTIONS(928), - [sym_string_literal] = ACTIONS(930), - [sym_text_block] = ACTIONS(928), - [sym_null_literal] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_final] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_new] = ACTIONS(930), - [anon_sym_class] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_assert] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_yield] = ACTIONS(930), - [anon_sym_synchronized] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_try] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_AT] = ACTIONS(930), - [anon_sym_open] = ACTIONS(930), - [anon_sym_module] = ACTIONS(930), - [anon_sym_static] = ACTIONS(930), - [anon_sym_package] = ACTIONS(930), - [anon_sym_import] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_public] = ACTIONS(930), - [anon_sym_protected] = ACTIONS(930), - [anon_sym_private] = ACTIONS(930), - [anon_sym_abstract] = ACTIONS(930), - [anon_sym_strictfp] = ACTIONS(930), - [anon_sym_native] = ACTIONS(930), - [anon_sym_transient] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_sealed] = ACTIONS(930), - [anon_sym_non_DASHsealed] = ACTIONS(928), - [anon_sym_record] = ACTIONS(930), - [anon_sym_ATinterface] = ACTIONS(928), - [anon_sym_interface] = ACTIONS(930), - [anon_sym_byte] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [anon_sym_int] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_char] = ACTIONS(930), - [anon_sym_float] = ACTIONS(930), - [anon_sym_double] = ACTIONS(930), - [sym_boolean_type] = ACTIONS(930), - [sym_void_type] = ACTIONS(930), - [sym_this] = ACTIONS(930), - [sym_super] = ACTIONS(930), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_decimal_integer_literal] = ACTIONS(934), - [sym_hex_integer_literal] = ACTIONS(934), - [sym_octal_integer_literal] = ACTIONS(932), - [sym_binary_integer_literal] = ACTIONS(932), - [sym_decimal_floating_point_literal] = ACTIONS(932), - [sym_hex_floating_point_literal] = ACTIONS(934), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_character_literal] = ACTIONS(932), - [sym_string_literal] = ACTIONS(934), - [sym_text_block] = ACTIONS(932), - [sym_null_literal] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_final] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_new] = ACTIONS(934), - [anon_sym_class] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_assert] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(934), - [anon_sym_synchronized] = ACTIONS(934), - [anon_sym_throw] = ACTIONS(934), - [anon_sym_try] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_AT] = ACTIONS(934), - [anon_sym_open] = ACTIONS(934), - [anon_sym_module] = ACTIONS(934), - [anon_sym_static] = ACTIONS(934), - [anon_sym_package] = ACTIONS(934), - [anon_sym_import] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_public] = ACTIONS(934), - [anon_sym_protected] = ACTIONS(934), - [anon_sym_private] = ACTIONS(934), - [anon_sym_abstract] = ACTIONS(934), - [anon_sym_strictfp] = ACTIONS(934), - [anon_sym_native] = ACTIONS(934), - [anon_sym_transient] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_sealed] = ACTIONS(934), - [anon_sym_non_DASHsealed] = ACTIONS(932), - [anon_sym_record] = ACTIONS(934), - [anon_sym_ATinterface] = ACTIONS(932), - [anon_sym_interface] = ACTIONS(934), - [anon_sym_byte] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [anon_sym_int] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_char] = ACTIONS(934), - [anon_sym_float] = ACTIONS(934), - [anon_sym_double] = ACTIONS(934), - [sym_boolean_type] = ACTIONS(934), - [sym_void_type] = ACTIONS(934), - [sym_this] = ACTIONS(934), - [sym_super] = ACTIONS(934), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(936), - [sym_identifier] = ACTIONS(938), - [sym_decimal_integer_literal] = ACTIONS(938), - [sym_hex_integer_literal] = ACTIONS(938), - [sym_octal_integer_literal] = ACTIONS(936), - [sym_binary_integer_literal] = ACTIONS(936), - [sym_decimal_floating_point_literal] = ACTIONS(936), - [sym_hex_floating_point_literal] = ACTIONS(938), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_character_literal] = ACTIONS(936), - [sym_string_literal] = ACTIONS(938), - [sym_text_block] = ACTIONS(936), - [sym_null_literal] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_final] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_new] = ACTIONS(938), - [anon_sym_class] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_synchronized] = ACTIONS(938), - [anon_sym_throw] = ACTIONS(938), - [anon_sym_try] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_AT] = ACTIONS(938), - [anon_sym_open] = ACTIONS(938), - [anon_sym_module] = ACTIONS(938), - [anon_sym_static] = ACTIONS(938), - [anon_sym_package] = ACTIONS(938), - [anon_sym_import] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_public] = ACTIONS(938), - [anon_sym_protected] = ACTIONS(938), - [anon_sym_private] = ACTIONS(938), - [anon_sym_abstract] = ACTIONS(938), - [anon_sym_strictfp] = ACTIONS(938), - [anon_sym_native] = ACTIONS(938), - [anon_sym_transient] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_sealed] = ACTIONS(938), - [anon_sym_non_DASHsealed] = ACTIONS(936), - [anon_sym_record] = ACTIONS(938), - [anon_sym_ATinterface] = ACTIONS(936), - [anon_sym_interface] = ACTIONS(938), - [anon_sym_byte] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [anon_sym_int] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_char] = ACTIONS(938), - [anon_sym_float] = ACTIONS(938), - [anon_sym_double] = ACTIONS(938), - [sym_boolean_type] = ACTIONS(938), - [sym_void_type] = ACTIONS(938), - [sym_this] = ACTIONS(938), - [sym_super] = ACTIONS(938), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(940), - [sym_identifier] = ACTIONS(942), - [sym_decimal_integer_literal] = ACTIONS(942), - [sym_hex_integer_literal] = ACTIONS(942), - [sym_octal_integer_literal] = ACTIONS(940), - [sym_binary_integer_literal] = ACTIONS(940), - [sym_decimal_floating_point_literal] = ACTIONS(940), - [sym_hex_floating_point_literal] = ACTIONS(942), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_character_literal] = ACTIONS(940), - [sym_string_literal] = ACTIONS(942), - [sym_text_block] = ACTIONS(940), - [sym_null_literal] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_final] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), - [anon_sym_class] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_assert] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_yield] = ACTIONS(942), - [anon_sym_synchronized] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(942), - [anon_sym_try] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_open] = ACTIONS(942), - [anon_sym_module] = ACTIONS(942), - [anon_sym_static] = ACTIONS(942), - [anon_sym_package] = ACTIONS(942), - [anon_sym_import] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_public] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(942), - [anon_sym_strictfp] = ACTIONS(942), - [anon_sym_native] = ACTIONS(942), - [anon_sym_transient] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_sealed] = ACTIONS(942), - [anon_sym_non_DASHsealed] = ACTIONS(940), - [anon_sym_record] = ACTIONS(942), - [anon_sym_ATinterface] = ACTIONS(940), - [anon_sym_interface] = ACTIONS(942), - [anon_sym_byte] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [anon_sym_int] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_char] = ACTIONS(942), - [anon_sym_float] = ACTIONS(942), - [anon_sym_double] = ACTIONS(942), - [sym_boolean_type] = ACTIONS(942), - [sym_void_type] = ACTIONS(942), - [sym_this] = ACTIONS(942), - [sym_super] = ACTIONS(942), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_decimal_integer_literal] = ACTIONS(946), - [sym_hex_integer_literal] = ACTIONS(946), - [sym_octal_integer_literal] = ACTIONS(944), - [sym_binary_integer_literal] = ACTIONS(944), - [sym_decimal_floating_point_literal] = ACTIONS(944), - [sym_hex_floating_point_literal] = ACTIONS(946), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_character_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_text_block] = ACTIONS(944), - [sym_null_literal] = ACTIONS(946), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_final] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_new] = ACTIONS(946), - [anon_sym_class] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_assert] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_synchronized] = ACTIONS(946), - [anon_sym_throw] = ACTIONS(946), - [anon_sym_try] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_AT] = ACTIONS(946), - [anon_sym_open] = ACTIONS(946), - [anon_sym_module] = ACTIONS(946), - [anon_sym_static] = ACTIONS(946), - [anon_sym_package] = ACTIONS(946), - [anon_sym_import] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_public] = ACTIONS(946), - [anon_sym_protected] = ACTIONS(946), - [anon_sym_private] = ACTIONS(946), - [anon_sym_abstract] = ACTIONS(946), - [anon_sym_strictfp] = ACTIONS(946), - [anon_sym_native] = ACTIONS(946), - [anon_sym_transient] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_sealed] = ACTIONS(946), - [anon_sym_non_DASHsealed] = ACTIONS(944), - [anon_sym_record] = ACTIONS(946), - [anon_sym_ATinterface] = ACTIONS(944), - [anon_sym_interface] = ACTIONS(946), - [anon_sym_byte] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [anon_sym_int] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_char] = ACTIONS(946), - [anon_sym_float] = ACTIONS(946), - [anon_sym_double] = ACTIONS(946), - [sym_boolean_type] = ACTIONS(946), - [sym_void_type] = ACTIONS(946), - [sym_this] = ACTIONS(946), - [sym_super] = ACTIONS(946), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), - [sym_decimal_integer_literal] = ACTIONS(950), - [sym_hex_integer_literal] = ACTIONS(950), - [sym_octal_integer_literal] = ACTIONS(948), - [sym_binary_integer_literal] = ACTIONS(948), - [sym_decimal_floating_point_literal] = ACTIONS(948), - [sym_hex_floating_point_literal] = ACTIONS(950), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_character_literal] = ACTIONS(948), - [sym_string_literal] = ACTIONS(950), - [sym_text_block] = ACTIONS(948), - [sym_null_literal] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_final] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_new] = ACTIONS(950), - [anon_sym_class] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_assert] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_yield] = ACTIONS(950), - [anon_sym_synchronized] = ACTIONS(950), - [anon_sym_throw] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(950), - [anon_sym_open] = ACTIONS(950), - [anon_sym_module] = ACTIONS(950), - [anon_sym_static] = ACTIONS(950), - [anon_sym_package] = ACTIONS(950), - [anon_sym_import] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_public] = ACTIONS(950), - [anon_sym_protected] = ACTIONS(950), - [anon_sym_private] = ACTIONS(950), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_strictfp] = ACTIONS(950), - [anon_sym_native] = ACTIONS(950), - [anon_sym_transient] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_sealed] = ACTIONS(950), - [anon_sym_non_DASHsealed] = ACTIONS(948), - [anon_sym_record] = ACTIONS(950), - [anon_sym_ATinterface] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_byte] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [anon_sym_int] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_char] = ACTIONS(950), - [anon_sym_float] = ACTIONS(950), - [anon_sym_double] = ACTIONS(950), - [sym_boolean_type] = ACTIONS(950), - [sym_void_type] = ACTIONS(950), - [sym_this] = ACTIONS(950), - [sym_super] = ACTIONS(950), + [202] = { + [ts_builtin_sym_end] = ACTIONS(538), + [sym_identifier] = ACTIONS(540), + [sym_decimal_integer_literal] = ACTIONS(540), + [sym_hex_integer_literal] = ACTIONS(540), + [sym_octal_integer_literal] = ACTIONS(538), + [sym_binary_integer_literal] = ACTIONS(538), + [sym_decimal_floating_point_literal] = ACTIONS(538), + [sym_hex_floating_point_literal] = ACTIONS(540), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_character_literal] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(540), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(538), + [sym_null_literal] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_final] = ACTIONS(540), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(538), + [anon_sym_DASH_DASH] = ACTIONS(538), + [anon_sym_new] = ACTIONS(540), + [anon_sym_class] = ACTIONS(540), + [anon_sym_switch] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_case] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_assert] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_yield] = ACTIONS(540), + [anon_sym_synchronized] = ACTIONS(540), + [anon_sym_throw] = ACTIONS(540), + [anon_sym_try] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_open] = ACTIONS(540), + [anon_sym_module] = ACTIONS(540), + [anon_sym_static] = ACTIONS(540), + [anon_sym_package] = ACTIONS(540), + [anon_sym_import] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_public] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(540), + [anon_sym_strictfp] = ACTIONS(540), + [anon_sym_native] = ACTIONS(540), + [anon_sym_transient] = ACTIONS(540), + [anon_sym_volatile] = ACTIONS(540), + [anon_sym_sealed] = ACTIONS(540), + [anon_sym_non_DASHsealed] = ACTIONS(538), + [anon_sym_record] = ACTIONS(540), + [anon_sym_ATinterface] = ACTIONS(538), + [anon_sym_interface] = ACTIONS(540), + [anon_sym_byte] = ACTIONS(540), + [anon_sym_short] = ACTIONS(540), + [anon_sym_int] = ACTIONS(540), + [anon_sym_long] = ACTIONS(540), + [anon_sym_char] = ACTIONS(540), + [anon_sym_float] = ACTIONS(540), + [anon_sym_double] = ACTIONS(540), + [sym_boolean_type] = ACTIONS(540), + [sym_void_type] = ACTIONS(540), + [sym_this] = ACTIONS(540), + [sym_super] = ACTIONS(540), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [257] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(596), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym_array_initializer] = STATE(1021), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [203] = { + [ts_builtin_sym_end] = ACTIONS(542), + [sym_identifier] = ACTIONS(544), + [sym_decimal_integer_literal] = ACTIONS(544), + [sym_hex_integer_literal] = ACTIONS(544), + [sym_octal_integer_literal] = ACTIONS(542), + [sym_binary_integer_literal] = ACTIONS(542), + [sym_decimal_floating_point_literal] = ACTIONS(542), + [sym_hex_floating_point_literal] = ACTIONS(544), + [sym_true] = ACTIONS(544), + [sym_false] = ACTIONS(544), + [sym_character_literal] = ACTIONS(542), + [anon_sym_DQUOTE] = ACTIONS(544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(542), + [sym_null_literal] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_final] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_PLUS_PLUS] = ACTIONS(542), + [anon_sym_DASH_DASH] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_class] = ACTIONS(544), + [anon_sym_switch] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_case] = ACTIONS(544), + [anon_sym_default] = ACTIONS(544), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_assert] = ACTIONS(544), + [anon_sym_do] = ACTIONS(544), + [anon_sym_while] = ACTIONS(544), + [anon_sym_break] = ACTIONS(544), + [anon_sym_continue] = ACTIONS(544), + [anon_sym_return] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(544), + [anon_sym_synchronized] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(544), + [anon_sym_try] = ACTIONS(544), + [anon_sym_if] = ACTIONS(544), + [anon_sym_else] = ACTIONS(544), + [anon_sym_for] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_open] = ACTIONS(544), + [anon_sym_module] = ACTIONS(544), + [anon_sym_static] = ACTIONS(544), + [anon_sym_package] = ACTIONS(544), + [anon_sym_import] = ACTIONS(544), + [anon_sym_enum] = ACTIONS(544), + [anon_sym_public] = ACTIONS(544), + [anon_sym_protected] = ACTIONS(544), + [anon_sym_private] = ACTIONS(544), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_strictfp] = ACTIONS(544), + [anon_sym_native] = ACTIONS(544), + [anon_sym_transient] = ACTIONS(544), + [anon_sym_volatile] = ACTIONS(544), + [anon_sym_sealed] = ACTIONS(544), + [anon_sym_non_DASHsealed] = ACTIONS(542), + [anon_sym_record] = ACTIONS(544), + [anon_sym_ATinterface] = ACTIONS(542), + [anon_sym_interface] = ACTIONS(544), + [anon_sym_byte] = ACTIONS(544), + [anon_sym_short] = ACTIONS(544), + [anon_sym_int] = ACTIONS(544), + [anon_sym_long] = ACTIONS(544), + [anon_sym_char] = ACTIONS(544), + [anon_sym_float] = ACTIONS(544), + [anon_sym_double] = ACTIONS(544), + [sym_boolean_type] = ACTIONS(544), + [sym_void_type] = ACTIONS(544), + [sym_this] = ACTIONS(544), + [sym_super] = ACTIONS(544), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [204] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(559), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -34516,614 +31648,629 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(952), - [sym_identifier] = ACTIONS(954), - [sym_decimal_integer_literal] = ACTIONS(954), - [sym_hex_integer_literal] = ACTIONS(954), - [sym_octal_integer_literal] = ACTIONS(952), - [sym_binary_integer_literal] = ACTIONS(952), - [sym_decimal_floating_point_literal] = ACTIONS(952), - [sym_hex_floating_point_literal] = ACTIONS(954), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_character_literal] = ACTIONS(952), - [sym_string_literal] = ACTIONS(954), - [sym_text_block] = ACTIONS(952), - [sym_null_literal] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_final] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), - [anon_sym_class] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_assert] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_yield] = ACTIONS(954), - [anon_sym_synchronized] = ACTIONS(954), - [anon_sym_throw] = ACTIONS(954), - [anon_sym_try] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_AT] = ACTIONS(954), - [anon_sym_open] = ACTIONS(954), - [anon_sym_module] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_package] = ACTIONS(954), - [anon_sym_import] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_public] = ACTIONS(954), - [anon_sym_protected] = ACTIONS(954), - [anon_sym_private] = ACTIONS(954), - [anon_sym_abstract] = ACTIONS(954), - [anon_sym_strictfp] = ACTIONS(954), - [anon_sym_native] = ACTIONS(954), - [anon_sym_transient] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_sealed] = ACTIONS(954), - [anon_sym_non_DASHsealed] = ACTIONS(952), - [anon_sym_record] = ACTIONS(954), - [anon_sym_ATinterface] = ACTIONS(952), - [anon_sym_interface] = ACTIONS(954), - [anon_sym_byte] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [anon_sym_int] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_char] = ACTIONS(954), - [anon_sym_float] = ACTIONS(954), - [anon_sym_double] = ACTIONS(954), - [sym_boolean_type] = ACTIONS(954), - [sym_void_type] = ACTIONS(954), - [sym_this] = ACTIONS(954), - [sym_super] = ACTIONS(954), + [205] = { + [ts_builtin_sym_end] = ACTIONS(546), + [sym_identifier] = ACTIONS(548), + [sym_decimal_integer_literal] = ACTIONS(548), + [sym_hex_integer_literal] = ACTIONS(548), + [sym_octal_integer_literal] = ACTIONS(546), + [sym_binary_integer_literal] = ACTIONS(546), + [sym_decimal_floating_point_literal] = ACTIONS(546), + [sym_hex_floating_point_literal] = ACTIONS(548), + [sym_true] = ACTIONS(548), + [sym_false] = ACTIONS(548), + [sym_character_literal] = ACTIONS(546), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(546), + [sym_null_literal] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_final] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(546), + [anon_sym_DASH_DASH] = ACTIONS(546), + [anon_sym_new] = ACTIONS(548), + [anon_sym_class] = ACTIONS(548), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_case] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(548), + [anon_sym_do] = ACTIONS(548), + [anon_sym_while] = ACTIONS(548), + [anon_sym_break] = ACTIONS(548), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_return] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(548), + [anon_sym_synchronized] = ACTIONS(548), + [anon_sym_throw] = ACTIONS(548), + [anon_sym_try] = ACTIONS(548), + [anon_sym_if] = ACTIONS(548), + [anon_sym_else] = ACTIONS(548), + [anon_sym_for] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_open] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_static] = ACTIONS(548), + [anon_sym_package] = ACTIONS(548), + [anon_sym_import] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_abstract] = ACTIONS(548), + [anon_sym_strictfp] = ACTIONS(548), + [anon_sym_native] = ACTIONS(548), + [anon_sym_transient] = ACTIONS(548), + [anon_sym_volatile] = ACTIONS(548), + [anon_sym_sealed] = ACTIONS(548), + [anon_sym_non_DASHsealed] = ACTIONS(546), + [anon_sym_record] = ACTIONS(548), + [anon_sym_ATinterface] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_byte] = ACTIONS(548), + [anon_sym_short] = ACTIONS(548), + [anon_sym_int] = ACTIONS(548), + [anon_sym_long] = ACTIONS(548), + [anon_sym_char] = ACTIONS(548), + [anon_sym_float] = ACTIONS(548), + [anon_sym_double] = ACTIONS(548), + [sym_boolean_type] = ACTIONS(548), + [sym_void_type] = ACTIONS(548), + [sym_this] = ACTIONS(548), + [sym_super] = ACTIONS(548), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [259] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(612), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [206] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [sym_decimal_integer_literal] = ACTIONS(552), + [sym_hex_integer_literal] = ACTIONS(552), + [sym_octal_integer_literal] = ACTIONS(550), + [sym_binary_integer_literal] = ACTIONS(550), + [sym_decimal_floating_point_literal] = ACTIONS(550), + [sym_hex_floating_point_literal] = ACTIONS(552), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_character_literal] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(550), + [sym_null_literal] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_final] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_new] = ACTIONS(552), + [anon_sym_class] = ACTIONS(552), + [anon_sym_switch] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_case] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_assert] = ACTIONS(552), + [anon_sym_do] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_synchronized] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(552), + [anon_sym_try] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_open] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_package] = ACTIONS(552), + [anon_sym_import] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_abstract] = ACTIONS(552), + [anon_sym_strictfp] = ACTIONS(552), + [anon_sym_native] = ACTIONS(552), + [anon_sym_transient] = ACTIONS(552), + [anon_sym_volatile] = ACTIONS(552), + [anon_sym_sealed] = ACTIONS(552), + [anon_sym_non_DASHsealed] = ACTIONS(550), + [anon_sym_record] = ACTIONS(552), + [anon_sym_ATinterface] = ACTIONS(550), + [anon_sym_interface] = ACTIONS(552), + [anon_sym_byte] = ACTIONS(552), + [anon_sym_short] = ACTIONS(552), + [anon_sym_int] = ACTIONS(552), + [anon_sym_long] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_float] = ACTIONS(552), + [anon_sym_double] = ACTIONS(552), + [sym_boolean_type] = ACTIONS(552), + [sym_void_type] = ACTIONS(552), + [sym_this] = ACTIONS(552), + [sym_super] = ACTIONS(552), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [260] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(575), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [207] = { + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [sym_decimal_integer_literal] = ACTIONS(556), + [sym_hex_integer_literal] = ACTIONS(556), + [sym_octal_integer_literal] = ACTIONS(554), + [sym_binary_integer_literal] = ACTIONS(554), + [sym_decimal_floating_point_literal] = ACTIONS(554), + [sym_hex_floating_point_literal] = ACTIONS(556), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_character_literal] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [sym_null_literal] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_final] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_new] = ACTIONS(556), + [anon_sym_class] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_case] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_do] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_synchronized] = ACTIONS(556), + [anon_sym_throw] = ACTIONS(556), + [anon_sym_try] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_open] = ACTIONS(556), + [anon_sym_module] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_package] = ACTIONS(556), + [anon_sym_import] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_public] = ACTIONS(556), + [anon_sym_protected] = ACTIONS(556), + [anon_sym_private] = ACTIONS(556), + [anon_sym_abstract] = ACTIONS(556), + [anon_sym_strictfp] = ACTIONS(556), + [anon_sym_native] = ACTIONS(556), + [anon_sym_transient] = ACTIONS(556), + [anon_sym_volatile] = ACTIONS(556), + [anon_sym_sealed] = ACTIONS(556), + [anon_sym_non_DASHsealed] = ACTIONS(554), + [anon_sym_record] = ACTIONS(556), + [anon_sym_ATinterface] = ACTIONS(554), + [anon_sym_interface] = ACTIONS(556), + [anon_sym_byte] = ACTIONS(556), + [anon_sym_short] = ACTIONS(556), + [anon_sym_int] = ACTIONS(556), + [anon_sym_long] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_float] = ACTIONS(556), + [anon_sym_double] = ACTIONS(556), + [sym_boolean_type] = ACTIONS(556), + [sym_void_type] = ACTIONS(556), + [sym_this] = ACTIONS(556), + [sym_super] = ACTIONS(556), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [261] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(593), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [208] = { + [ts_builtin_sym_end] = ACTIONS(558), + [sym_identifier] = ACTIONS(560), + [sym_decimal_integer_literal] = ACTIONS(560), + [sym_hex_integer_literal] = ACTIONS(560), + [sym_octal_integer_literal] = ACTIONS(558), + [sym_binary_integer_literal] = ACTIONS(558), + [sym_decimal_floating_point_literal] = ACTIONS(558), + [sym_hex_floating_point_literal] = ACTIONS(560), + [sym_true] = ACTIONS(560), + [sym_false] = ACTIONS(560), + [sym_character_literal] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(558), + [sym_null_literal] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_final] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(558), + [anon_sym_new] = ACTIONS(560), + [anon_sym_class] = ACTIONS(560), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_assert] = ACTIONS(560), + [anon_sym_do] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(560), + [anon_sym_synchronized] = ACTIONS(560), + [anon_sym_throw] = ACTIONS(560), + [anon_sym_try] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_else] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_open] = ACTIONS(560), + [anon_sym_module] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_package] = ACTIONS(560), + [anon_sym_import] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_public] = ACTIONS(560), + [anon_sym_protected] = ACTIONS(560), + [anon_sym_private] = ACTIONS(560), + [anon_sym_abstract] = ACTIONS(560), + [anon_sym_strictfp] = ACTIONS(560), + [anon_sym_native] = ACTIONS(560), + [anon_sym_transient] = ACTIONS(560), + [anon_sym_volatile] = ACTIONS(560), + [anon_sym_sealed] = ACTIONS(560), + [anon_sym_non_DASHsealed] = ACTIONS(558), + [anon_sym_record] = ACTIONS(560), + [anon_sym_ATinterface] = ACTIONS(558), + [anon_sym_interface] = ACTIONS(560), + [anon_sym_byte] = ACTIONS(560), + [anon_sym_short] = ACTIONS(560), + [anon_sym_int] = ACTIONS(560), + [anon_sym_long] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_float] = ACTIONS(560), + [anon_sym_double] = ACTIONS(560), + [sym_boolean_type] = ACTIONS(560), + [sym_void_type] = ACTIONS(560), + [sym_this] = ACTIONS(560), + [sym_super] = ACTIONS(560), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [262] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(638), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [209] = { + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [sym_decimal_integer_literal] = ACTIONS(564), + [sym_hex_integer_literal] = ACTIONS(564), + [sym_octal_integer_literal] = ACTIONS(562), + [sym_binary_integer_literal] = ACTIONS(562), + [sym_decimal_floating_point_literal] = ACTIONS(562), + [sym_hex_floating_point_literal] = ACTIONS(564), + [sym_true] = ACTIONS(564), + [sym_false] = ACTIONS(564), + [sym_character_literal] = ACTIONS(562), + [anon_sym_DQUOTE] = ACTIONS(564), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(562), + [sym_null_literal] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_final] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(562), + [anon_sym_new] = ACTIONS(564), + [anon_sym_class] = ACTIONS(564), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_case] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_assert] = ACTIONS(564), + [anon_sym_do] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_synchronized] = ACTIONS(564), + [anon_sym_throw] = ACTIONS(564), + [anon_sym_try] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_else] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_open] = ACTIONS(564), + [anon_sym_module] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_package] = ACTIONS(564), + [anon_sym_import] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_public] = ACTIONS(564), + [anon_sym_protected] = ACTIONS(564), + [anon_sym_private] = ACTIONS(564), + [anon_sym_abstract] = ACTIONS(564), + [anon_sym_strictfp] = ACTIONS(564), + [anon_sym_native] = ACTIONS(564), + [anon_sym_transient] = ACTIONS(564), + [anon_sym_volatile] = ACTIONS(564), + [anon_sym_sealed] = ACTIONS(564), + [anon_sym_non_DASHsealed] = ACTIONS(562), + [anon_sym_record] = ACTIONS(564), + [anon_sym_ATinterface] = ACTIONS(562), + [anon_sym_interface] = ACTIONS(564), + [anon_sym_byte] = ACTIONS(564), + [anon_sym_short] = ACTIONS(564), + [anon_sym_int] = ACTIONS(564), + [anon_sym_long] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_float] = ACTIONS(564), + [anon_sym_double] = ACTIONS(564), + [sym_boolean_type] = ACTIONS(564), + [sym_void_type] = ACTIONS(564), + [sym_this] = ACTIONS(564), + [sym_super] = ACTIONS(564), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [263] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(578), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [210] = { + [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(566), + [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), + [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_RBRACE] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [264] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(634), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [211] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(572), + [sym_hex_integer_literal] = ACTIONS(572), + [sym_octal_integer_literal] = ACTIONS(570), + [sym_binary_integer_literal] = ACTIONS(570), + [sym_decimal_floating_point_literal] = ACTIONS(570), + [sym_hex_floating_point_literal] = ACTIONS(572), + [sym_true] = ACTIONS(572), + [sym_false] = ACTIONS(572), + [sym_character_literal] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(572), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(570), + [sym_null_literal] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_final] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS_PLUS] = ACTIONS(570), + [anon_sym_DASH_DASH] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(572), + [anon_sym_switch] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_assert] = ACTIONS(572), + [anon_sym_do] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_synchronized] = ACTIONS(572), + [anon_sym_throw] = ACTIONS(572), + [anon_sym_try] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_open] = ACTIONS(572), + [anon_sym_module] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_package] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_public] = ACTIONS(572), + [anon_sym_protected] = ACTIONS(572), + [anon_sym_private] = ACTIONS(572), + [anon_sym_abstract] = ACTIONS(572), + [anon_sym_strictfp] = ACTIONS(572), + [anon_sym_native] = ACTIONS(572), + [anon_sym_transient] = ACTIONS(572), + [anon_sym_volatile] = ACTIONS(572), + [anon_sym_sealed] = ACTIONS(572), + [anon_sym_non_DASHsealed] = ACTIONS(570), + [anon_sym_record] = ACTIONS(572), + [anon_sym_ATinterface] = ACTIONS(570), + [anon_sym_interface] = ACTIONS(572), + [anon_sym_byte] = ACTIONS(572), + [anon_sym_short] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_long] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_double] = ACTIONS(572), + [sym_boolean_type] = ACTIONS(572), + [sym_void_type] = ACTIONS(572), + [sym_this] = ACTIONS(572), + [sym_super] = ACTIONS(572), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [265] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(567), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [212] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(557), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35133,382 +32280,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [266] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(583), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [213] = { + [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(574), + [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), + [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_RBRACE] = 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_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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [267] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(571), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [214] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [sym_decimal_integer_literal] = ACTIONS(580), + [sym_hex_integer_literal] = ACTIONS(580), + [sym_octal_integer_literal] = ACTIONS(578), + [sym_binary_integer_literal] = ACTIONS(578), + [sym_decimal_floating_point_literal] = ACTIONS(578), + [sym_hex_floating_point_literal] = ACTIONS(580), + [sym_true] = ACTIONS(580), + [sym_false] = ACTIONS(580), + [sym_character_literal] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), + [sym_null_literal] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_final] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS_PLUS] = ACTIONS(578), + [anon_sym_DASH_DASH] = ACTIONS(578), + [anon_sym_new] = ACTIONS(580), + [anon_sym_class] = ACTIONS(580), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_case] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_assert] = ACTIONS(580), + [anon_sym_do] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_synchronized] = ACTIONS(580), + [anon_sym_throw] = ACTIONS(580), + [anon_sym_try] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_else] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_open] = ACTIONS(580), + [anon_sym_module] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_package] = ACTIONS(580), + [anon_sym_import] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_public] = ACTIONS(580), + [anon_sym_protected] = ACTIONS(580), + [anon_sym_private] = ACTIONS(580), + [anon_sym_abstract] = ACTIONS(580), + [anon_sym_strictfp] = ACTIONS(580), + [anon_sym_native] = ACTIONS(580), + [anon_sym_transient] = ACTIONS(580), + [anon_sym_volatile] = ACTIONS(580), + [anon_sym_sealed] = ACTIONS(580), + [anon_sym_non_DASHsealed] = ACTIONS(578), + [anon_sym_record] = ACTIONS(580), + [anon_sym_ATinterface] = ACTIONS(578), + [anon_sym_interface] = ACTIONS(580), + [anon_sym_byte] = ACTIONS(580), + [anon_sym_short] = ACTIONS(580), + [anon_sym_int] = ACTIONS(580), + [anon_sym_long] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_float] = ACTIONS(580), + [anon_sym_double] = ACTIONS(580), + [sym_boolean_type] = ACTIONS(580), + [sym_void_type] = ACTIONS(580), + [sym_this] = ACTIONS(580), + [sym_super] = ACTIONS(580), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [268] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [215] = { + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [sym_decimal_integer_literal] = ACTIONS(584), + [sym_hex_integer_literal] = ACTIONS(584), + [sym_octal_integer_literal] = ACTIONS(582), + [sym_binary_integer_literal] = ACTIONS(582), + [sym_decimal_floating_point_literal] = ACTIONS(582), + [sym_hex_floating_point_literal] = ACTIONS(584), + [sym_true] = ACTIONS(584), + [sym_false] = ACTIONS(584), + [sym_character_literal] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(582), + [sym_null_literal] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_new] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_assert] = ACTIONS(584), + [anon_sym_do] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_yield] = ACTIONS(584), + [anon_sym_synchronized] = ACTIONS(584), + [anon_sym_throw] = ACTIONS(584), + [anon_sym_try] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_else] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_open] = ACTIONS(584), + [anon_sym_module] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_public] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_strictfp] = ACTIONS(584), + [anon_sym_native] = ACTIONS(584), + [anon_sym_transient] = ACTIONS(584), + [anon_sym_volatile] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_non_DASHsealed] = ACTIONS(582), + [anon_sym_record] = ACTIONS(584), + [anon_sym_ATinterface] = ACTIONS(582), + [anon_sym_interface] = ACTIONS(584), + [anon_sym_byte] = ACTIONS(584), + [anon_sym_short] = ACTIONS(584), + [anon_sym_int] = ACTIONS(584), + [anon_sym_long] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_float] = ACTIONS(584), + [anon_sym_double] = ACTIONS(584), + [sym_boolean_type] = ACTIONS(584), + [sym_void_type] = ACTIONS(584), + [sym_this] = ACTIONS(584), + [sym_super] = ACTIONS(584), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [269] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(597), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [216] = { + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_decimal_integer_literal] = ACTIONS(588), + [sym_hex_integer_literal] = ACTIONS(588), + [sym_octal_integer_literal] = ACTIONS(586), + [sym_binary_integer_literal] = ACTIONS(586), + [sym_decimal_floating_point_literal] = ACTIONS(586), + [sym_hex_floating_point_literal] = ACTIONS(588), + [sym_true] = ACTIONS(588), + [sym_false] = ACTIONS(588), + [sym_character_literal] = ACTIONS(586), + [anon_sym_DQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [sym_null_literal] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_final] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_TILDE] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_new] = ACTIONS(588), + [anon_sym_class] = ACTIONS(588), + [anon_sym_switch] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(588), + [anon_sym_do] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_synchronized] = ACTIONS(588), + [anon_sym_throw] = ACTIONS(588), + [anon_sym_try] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_else] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_open] = ACTIONS(588), + [anon_sym_module] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_package] = ACTIONS(588), + [anon_sym_import] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_public] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(588), + [anon_sym_strictfp] = ACTIONS(588), + [anon_sym_native] = ACTIONS(588), + [anon_sym_transient] = ACTIONS(588), + [anon_sym_volatile] = ACTIONS(588), + [anon_sym_sealed] = ACTIONS(588), + [anon_sym_non_DASHsealed] = ACTIONS(586), + [anon_sym_record] = ACTIONS(588), + [anon_sym_ATinterface] = ACTIONS(586), + [anon_sym_interface] = ACTIONS(588), + [anon_sym_byte] = ACTIONS(588), + [anon_sym_short] = ACTIONS(588), + [anon_sym_int] = ACTIONS(588), + [anon_sym_long] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_float] = ACTIONS(588), + [anon_sym_double] = ACTIONS(588), + [sym_boolean_type] = ACTIONS(588), + [sym_void_type] = ACTIONS(588), + [sym_this] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [217] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(592), + [sym_hex_integer_literal] = ACTIONS(592), + [sym_octal_integer_literal] = ACTIONS(590), + [sym_binary_integer_literal] = ACTIONS(590), + [sym_decimal_floating_point_literal] = ACTIONS(590), + [sym_hex_floating_point_literal] = ACTIONS(592), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_character_literal] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [sym_null_literal] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_final] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_new] = ACTIONS(592), + [anon_sym_class] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_case] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_assert] = ACTIONS(592), + [anon_sym_do] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_synchronized] = ACTIONS(592), + [anon_sym_throw] = ACTIONS(592), + [anon_sym_try] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_else] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_open] = ACTIONS(592), + [anon_sym_module] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_package] = ACTIONS(592), + [anon_sym_import] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_public] = ACTIONS(592), + [anon_sym_protected] = ACTIONS(592), + [anon_sym_private] = ACTIONS(592), + [anon_sym_abstract] = ACTIONS(592), + [anon_sym_strictfp] = ACTIONS(592), + [anon_sym_native] = ACTIONS(592), + [anon_sym_transient] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(592), + [anon_sym_sealed] = ACTIONS(592), + [anon_sym_non_DASHsealed] = ACTIONS(590), + [anon_sym_record] = ACTIONS(592), + [anon_sym_ATinterface] = ACTIONS(590), + [anon_sym_interface] = ACTIONS(592), + [anon_sym_byte] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [anon_sym_int] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_float] = ACTIONS(592), + [anon_sym_double] = ACTIONS(592), + [sym_boolean_type] = ACTIONS(592), + [sym_void_type] = ACTIONS(592), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(592), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [270] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(633), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [218] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(590), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -35518,690 +32754,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(619), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [219] = { + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(596), + [sym_hex_integer_literal] = ACTIONS(596), + [sym_octal_integer_literal] = ACTIONS(594), + [sym_binary_integer_literal] = ACTIONS(594), + [sym_decimal_floating_point_literal] = ACTIONS(594), + [sym_hex_floating_point_literal] = ACTIONS(596), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_character_literal] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(594), + [sym_null_literal] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_final] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(594), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_new] = ACTIONS(596), + [anon_sym_class] = ACTIONS(596), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_case] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_assert] = ACTIONS(596), + [anon_sym_do] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_synchronized] = ACTIONS(596), + [anon_sym_throw] = ACTIONS(596), + [anon_sym_try] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_else] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_open] = ACTIONS(596), + [anon_sym_module] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_package] = ACTIONS(596), + [anon_sym_import] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_public] = ACTIONS(596), + [anon_sym_protected] = ACTIONS(596), + [anon_sym_private] = ACTIONS(596), + [anon_sym_abstract] = ACTIONS(596), + [anon_sym_strictfp] = ACTIONS(596), + [anon_sym_native] = ACTIONS(596), + [anon_sym_transient] = ACTIONS(596), + [anon_sym_volatile] = ACTIONS(596), + [anon_sym_sealed] = ACTIONS(596), + [anon_sym_non_DASHsealed] = ACTIONS(594), + [anon_sym_record] = ACTIONS(596), + [anon_sym_ATinterface] = ACTIONS(594), + [anon_sym_interface] = ACTIONS(596), + [anon_sym_byte] = ACTIONS(596), + [anon_sym_short] = ACTIONS(596), + [anon_sym_int] = ACTIONS(596), + [anon_sym_long] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_float] = ACTIONS(596), + [anon_sym_double] = ACTIONS(596), + [sym_boolean_type] = ACTIONS(596), + [sym_void_type] = ACTIONS(596), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(596), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [272] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(574), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [220] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(600), + [sym_hex_integer_literal] = ACTIONS(600), + [sym_octal_integer_literal] = ACTIONS(598), + [sym_binary_integer_literal] = ACTIONS(598), + [sym_decimal_floating_point_literal] = ACTIONS(598), + [sym_hex_floating_point_literal] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_character_literal] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(598), + [sym_null_literal] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_final] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS_PLUS] = ACTIONS(598), + [anon_sym_DASH_DASH] = ACTIONS(598), + [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(600), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_case] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(600), + [anon_sym_do] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_synchronized] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(600), + [anon_sym_try] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_else] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_open] = ACTIONS(600), + [anon_sym_module] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_package] = ACTIONS(600), + [anon_sym_import] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_public] = ACTIONS(600), + [anon_sym_protected] = ACTIONS(600), + [anon_sym_private] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(600), + [anon_sym_strictfp] = ACTIONS(600), + [anon_sym_native] = ACTIONS(600), + [anon_sym_transient] = ACTIONS(600), + [anon_sym_volatile] = ACTIONS(600), + [anon_sym_sealed] = ACTIONS(600), + [anon_sym_non_DASHsealed] = ACTIONS(598), + [anon_sym_record] = ACTIONS(600), + [anon_sym_ATinterface] = ACTIONS(598), + [anon_sym_interface] = ACTIONS(600), + [anon_sym_byte] = ACTIONS(600), + [anon_sym_short] = ACTIONS(600), + [anon_sym_int] = ACTIONS(600), + [anon_sym_long] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_float] = ACTIONS(600), + [anon_sym_double] = ACTIONS(600), + [sym_boolean_type] = ACTIONS(600), + [sym_void_type] = ACTIONS(600), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [221] = { + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(604), + [sym_hex_integer_literal] = ACTIONS(604), + [sym_octal_integer_literal] = ACTIONS(602), + [sym_binary_integer_literal] = ACTIONS(602), + [sym_decimal_floating_point_literal] = ACTIONS(602), + [sym_hex_floating_point_literal] = ACTIONS(604), + [sym_true] = ACTIONS(604), + [sym_false] = ACTIONS(604), + [sym_character_literal] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(602), + [sym_null_literal] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_final] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_new] = ACTIONS(604), + [anon_sym_class] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_case] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_assert] = ACTIONS(604), + [anon_sym_do] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_synchronized] = ACTIONS(604), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_try] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_else] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_open] = ACTIONS(604), + [anon_sym_module] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_package] = ACTIONS(604), + [anon_sym_import] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_public] = ACTIONS(604), + [anon_sym_protected] = ACTIONS(604), + [anon_sym_private] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_strictfp] = ACTIONS(604), + [anon_sym_native] = ACTIONS(604), + [anon_sym_transient] = ACTIONS(604), + [anon_sym_volatile] = ACTIONS(604), + [anon_sym_sealed] = ACTIONS(604), + [anon_sym_non_DASHsealed] = ACTIONS(602), + [anon_sym_record] = ACTIONS(604), + [anon_sym_ATinterface] = ACTIONS(602), + [anon_sym_interface] = ACTIONS(604), + [anon_sym_byte] = ACTIONS(604), + [anon_sym_short] = ACTIONS(604), + [anon_sym_int] = ACTIONS(604), + [anon_sym_long] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_float] = ACTIONS(604), + [anon_sym_double] = ACTIONS(604), + [sym_boolean_type] = ACTIONS(604), + [sym_void_type] = ACTIONS(604), + [sym_this] = ACTIONS(604), + [sym_super] = ACTIONS(604), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(618), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [222] = { + [ts_builtin_sym_end] = ACTIONS(606), + [sym_identifier] = ACTIONS(608), + [sym_decimal_integer_literal] = ACTIONS(608), + [sym_hex_integer_literal] = ACTIONS(608), + [sym_octal_integer_literal] = ACTIONS(606), + [sym_binary_integer_literal] = ACTIONS(606), + [sym_decimal_floating_point_literal] = ACTIONS(606), + [sym_hex_floating_point_literal] = ACTIONS(608), + [sym_true] = ACTIONS(608), + [sym_false] = ACTIONS(608), + [sym_character_literal] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(606), + [sym_null_literal] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_final] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_PLUS_PLUS] = ACTIONS(606), + [anon_sym_DASH_DASH] = ACTIONS(606), + [anon_sym_new] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_switch] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_case] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_assert] = ACTIONS(608), + [anon_sym_do] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(608), + [anon_sym_synchronized] = ACTIONS(608), + [anon_sym_throw] = ACTIONS(608), + [anon_sym_try] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_else] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_open] = ACTIONS(608), + [anon_sym_module] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_package] = ACTIONS(608), + [anon_sym_import] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(608), + [anon_sym_public] = ACTIONS(608), + [anon_sym_protected] = ACTIONS(608), + [anon_sym_private] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(608), + [anon_sym_strictfp] = ACTIONS(608), + [anon_sym_native] = ACTIONS(608), + [anon_sym_transient] = ACTIONS(608), + [anon_sym_volatile] = ACTIONS(608), + [anon_sym_sealed] = ACTIONS(608), + [anon_sym_non_DASHsealed] = ACTIONS(606), + [anon_sym_record] = ACTIONS(608), + [anon_sym_ATinterface] = ACTIONS(606), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_byte] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [anon_sym_int] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_float] = ACTIONS(608), + [anon_sym_double] = ACTIONS(608), + [sym_boolean_type] = ACTIONS(608), + [sym_void_type] = ACTIONS(608), + [sym_this] = ACTIONS(608), + [sym_super] = ACTIONS(608), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(572), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [223] = { + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [sym_decimal_integer_literal] = ACTIONS(612), + [sym_hex_integer_literal] = ACTIONS(612), + [sym_octal_integer_literal] = ACTIONS(610), + [sym_binary_integer_literal] = ACTIONS(610), + [sym_decimal_floating_point_literal] = ACTIONS(610), + [sym_hex_floating_point_literal] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_character_literal] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(612), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(610), + [sym_null_literal] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_final] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), + [anon_sym_new] = ACTIONS(612), + [anon_sym_class] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_assert] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_synchronized] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_open] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_static] = ACTIONS(612), + [anon_sym_package] = ACTIONS(612), + [anon_sym_import] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(612), + [anon_sym_public] = ACTIONS(612), + [anon_sym_protected] = ACTIONS(612), + [anon_sym_private] = ACTIONS(612), + [anon_sym_abstract] = ACTIONS(612), + [anon_sym_strictfp] = ACTIONS(612), + [anon_sym_native] = ACTIONS(612), + [anon_sym_transient] = ACTIONS(612), + [anon_sym_volatile] = ACTIONS(612), + [anon_sym_sealed] = ACTIONS(612), + [anon_sym_non_DASHsealed] = ACTIONS(610), + [anon_sym_record] = ACTIONS(612), + [anon_sym_ATinterface] = ACTIONS(610), + [anon_sym_interface] = ACTIONS(612), + [anon_sym_byte] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [anon_sym_int] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_float] = ACTIONS(612), + [anon_sym_double] = ACTIONS(612), + [sym_boolean_type] = ACTIONS(612), + [sym_void_type] = ACTIONS(612), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(619), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [224] = { + [ts_builtin_sym_end] = ACTIONS(614), + [sym_identifier] = ACTIONS(616), + [sym_decimal_integer_literal] = ACTIONS(616), + [sym_hex_integer_literal] = ACTIONS(616), + [sym_octal_integer_literal] = ACTIONS(614), + [sym_binary_integer_literal] = ACTIONS(614), + [sym_decimal_floating_point_literal] = ACTIONS(614), + [sym_hex_floating_point_literal] = ACTIONS(616), + [sym_true] = ACTIONS(616), + [sym_false] = ACTIONS(616), + [sym_character_literal] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(614), + [sym_null_literal] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_final] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(616), + [anon_sym_class] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(614), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_do] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_synchronized] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(616), + [anon_sym_try] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_else] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_open] = ACTIONS(616), + [anon_sym_module] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_package] = ACTIONS(616), + [anon_sym_import] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_public] = ACTIONS(616), + [anon_sym_protected] = ACTIONS(616), + [anon_sym_private] = ACTIONS(616), + [anon_sym_abstract] = ACTIONS(616), + [anon_sym_strictfp] = ACTIONS(616), + [anon_sym_native] = ACTIONS(616), + [anon_sym_transient] = ACTIONS(616), + [anon_sym_volatile] = ACTIONS(616), + [anon_sym_sealed] = ACTIONS(616), + [anon_sym_non_DASHsealed] = ACTIONS(614), + [anon_sym_record] = ACTIONS(616), + [anon_sym_ATinterface] = ACTIONS(614), + [anon_sym_interface] = ACTIONS(616), + [anon_sym_byte] = ACTIONS(616), + [anon_sym_short] = ACTIONS(616), + [anon_sym_int] = ACTIONS(616), + [anon_sym_long] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_float] = ACTIONS(616), + [anon_sym_double] = ACTIONS(616), + [sym_boolean_type] = ACTIONS(616), + [sym_void_type] = ACTIONS(616), + [sym_this] = ACTIONS(616), + [sym_super] = ACTIONS(616), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [276] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(632), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [225] = { + [ts_builtin_sym_end] = ACTIONS(618), + [sym_identifier] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(620), + [sym_hex_integer_literal] = ACTIONS(620), + [sym_octal_integer_literal] = ACTIONS(618), + [sym_binary_integer_literal] = ACTIONS(618), + [sym_decimal_floating_point_literal] = ACTIONS(618), + [sym_hex_floating_point_literal] = ACTIONS(620), + [sym_true] = ACTIONS(620), + [sym_false] = ACTIONS(620), + [sym_character_literal] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(620), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(618), + [sym_null_literal] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_final] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_new] = ACTIONS(620), + [anon_sym_class] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_case] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_assert] = ACTIONS(620), + [anon_sym_do] = ACTIONS(620), + [anon_sym_while] = ACTIONS(620), + [anon_sym_break] = ACTIONS(620), + [anon_sym_continue] = ACTIONS(620), + [anon_sym_return] = ACTIONS(620), + [anon_sym_yield] = ACTIONS(620), + [anon_sym_synchronized] = ACTIONS(620), + [anon_sym_throw] = ACTIONS(620), + [anon_sym_try] = ACTIONS(620), + [anon_sym_if] = ACTIONS(620), + [anon_sym_else] = ACTIONS(620), + [anon_sym_for] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_open] = ACTIONS(620), + [anon_sym_module] = ACTIONS(620), + [anon_sym_static] = ACTIONS(620), + [anon_sym_package] = ACTIONS(620), + [anon_sym_import] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(620), + [anon_sym_public] = ACTIONS(620), + [anon_sym_protected] = ACTIONS(620), + [anon_sym_private] = ACTIONS(620), + [anon_sym_abstract] = ACTIONS(620), + [anon_sym_strictfp] = ACTIONS(620), + [anon_sym_native] = ACTIONS(620), + [anon_sym_transient] = ACTIONS(620), + [anon_sym_volatile] = ACTIONS(620), + [anon_sym_sealed] = ACTIONS(620), + [anon_sym_non_DASHsealed] = ACTIONS(618), + [anon_sym_record] = ACTIONS(620), + [anon_sym_ATinterface] = ACTIONS(618), + [anon_sym_interface] = ACTIONS(620), + [anon_sym_byte] = ACTIONS(620), + [anon_sym_short] = ACTIONS(620), + [anon_sym_int] = ACTIONS(620), + [anon_sym_long] = ACTIONS(620), + [anon_sym_char] = ACTIONS(620), + [anon_sym_float] = ACTIONS(620), + [anon_sym_double] = ACTIONS(620), + [sym_boolean_type] = ACTIONS(620), + [sym_void_type] = ACTIONS(620), + [sym_this] = ACTIONS(620), + [sym_super] = ACTIONS(620), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(635), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [226] = { + [ts_builtin_sym_end] = ACTIONS(622), + [sym_identifier] = ACTIONS(624), + [sym_decimal_integer_literal] = ACTIONS(624), + [sym_hex_integer_literal] = ACTIONS(624), + [sym_octal_integer_literal] = ACTIONS(622), + [sym_binary_integer_literal] = ACTIONS(622), + [sym_decimal_floating_point_literal] = ACTIONS(622), + [sym_hex_floating_point_literal] = ACTIONS(624), + [sym_true] = ACTIONS(624), + [sym_false] = ACTIONS(624), + [sym_character_literal] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(622), + [sym_null_literal] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_final] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_new] = ACTIONS(624), + [anon_sym_class] = ACTIONS(624), + [anon_sym_switch] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_case] = ACTIONS(624), + [anon_sym_default] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_assert] = ACTIONS(624), + [anon_sym_do] = ACTIONS(624), + [anon_sym_while] = ACTIONS(624), + [anon_sym_break] = ACTIONS(624), + [anon_sym_continue] = ACTIONS(624), + [anon_sym_return] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(624), + [anon_sym_synchronized] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(624), + [anon_sym_try] = ACTIONS(624), + [anon_sym_if] = ACTIONS(624), + [anon_sym_else] = ACTIONS(624), + [anon_sym_for] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(624), + [anon_sym_open] = ACTIONS(624), + [anon_sym_module] = ACTIONS(624), + [anon_sym_static] = ACTIONS(624), + [anon_sym_package] = ACTIONS(624), + [anon_sym_import] = ACTIONS(624), + [anon_sym_enum] = ACTIONS(624), + [anon_sym_public] = ACTIONS(624), + [anon_sym_protected] = ACTIONS(624), + [anon_sym_private] = ACTIONS(624), + [anon_sym_abstract] = ACTIONS(624), + [anon_sym_strictfp] = ACTIONS(624), + [anon_sym_native] = ACTIONS(624), + [anon_sym_transient] = ACTIONS(624), + [anon_sym_volatile] = ACTIONS(624), + [anon_sym_sealed] = ACTIONS(624), + [anon_sym_non_DASHsealed] = ACTIONS(622), + [anon_sym_record] = ACTIONS(624), + [anon_sym_ATinterface] = ACTIONS(622), + [anon_sym_interface] = ACTIONS(624), + [anon_sym_byte] = ACTIONS(624), + [anon_sym_short] = ACTIONS(624), + [anon_sym_int] = ACTIONS(624), + [anon_sym_long] = ACTIONS(624), + [anon_sym_char] = ACTIONS(624), + [anon_sym_float] = ACTIONS(624), + [anon_sym_double] = ACTIONS(624), + [sym_boolean_type] = ACTIONS(624), + [sym_void_type] = ACTIONS(624), + [sym_this] = ACTIONS(624), + [sym_super] = ACTIONS(624), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(582), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [227] = { + [ts_builtin_sym_end] = ACTIONS(626), + [sym_identifier] = ACTIONS(628), + [sym_decimal_integer_literal] = ACTIONS(628), + [sym_hex_integer_literal] = ACTIONS(628), + [sym_octal_integer_literal] = ACTIONS(626), + [sym_binary_integer_literal] = ACTIONS(626), + [sym_decimal_floating_point_literal] = ACTIONS(626), + [sym_hex_floating_point_literal] = ACTIONS(628), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_character_literal] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(628), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(626), + [sym_null_literal] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(628), + [anon_sym_final] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(626), + [anon_sym_PLUS_PLUS] = ACTIONS(626), + [anon_sym_DASH_DASH] = ACTIONS(626), + [anon_sym_new] = ACTIONS(628), + [anon_sym_class] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(628), + [anon_sym_do] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_synchronized] = ACTIONS(628), + [anon_sym_throw] = ACTIONS(628), + [anon_sym_try] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_else] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(628), + [anon_sym_open] = ACTIONS(628), + [anon_sym_module] = ACTIONS(628), + [anon_sym_static] = ACTIONS(628), + [anon_sym_package] = ACTIONS(628), + [anon_sym_import] = ACTIONS(628), + [anon_sym_enum] = ACTIONS(628), + [anon_sym_public] = ACTIONS(628), + [anon_sym_protected] = ACTIONS(628), + [anon_sym_private] = ACTIONS(628), + [anon_sym_abstract] = ACTIONS(628), + [anon_sym_strictfp] = ACTIONS(628), + [anon_sym_native] = ACTIONS(628), + [anon_sym_transient] = ACTIONS(628), + [anon_sym_volatile] = ACTIONS(628), + [anon_sym_sealed] = ACTIONS(628), + [anon_sym_non_DASHsealed] = ACTIONS(626), + [anon_sym_record] = ACTIONS(628), + [anon_sym_ATinterface] = ACTIONS(626), + [anon_sym_interface] = ACTIONS(628), + [anon_sym_byte] = ACTIONS(628), + [anon_sym_short] = ACTIONS(628), + [anon_sym_int] = ACTIONS(628), + [anon_sym_long] = ACTIONS(628), + [anon_sym_char] = ACTIONS(628), + [anon_sym_float] = ACTIONS(628), + [anon_sym_double] = ACTIONS(628), + [sym_boolean_type] = ACTIONS(628), + [sym_void_type] = ACTIONS(628), + [sym_this] = ACTIONS(628), + [sym_super] = ACTIONS(628), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(611), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [228] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(634), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36211,74 +33544,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(628), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [229] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(580), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36288,151 +33623,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [281] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(562), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [230] = { + [ts_builtin_sym_end] = ACTIONS(630), + [sym_identifier] = ACTIONS(632), + [sym_decimal_integer_literal] = ACTIONS(632), + [sym_hex_integer_literal] = ACTIONS(632), + [sym_octal_integer_literal] = ACTIONS(630), + [sym_binary_integer_literal] = ACTIONS(630), + [sym_decimal_floating_point_literal] = ACTIONS(630), + [sym_hex_floating_point_literal] = ACTIONS(632), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_character_literal] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(632), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(630), + [sym_null_literal] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(632), + [anon_sym_final] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(630), + [anon_sym_DASH_DASH] = ACTIONS(630), + [anon_sym_new] = ACTIONS(632), + [anon_sym_class] = ACTIONS(632), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_case] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_assert] = ACTIONS(632), + [anon_sym_do] = ACTIONS(632), + [anon_sym_while] = ACTIONS(632), + [anon_sym_break] = ACTIONS(632), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_return] = ACTIONS(632), + [anon_sym_yield] = ACTIONS(632), + [anon_sym_synchronized] = ACTIONS(632), + [anon_sym_throw] = ACTIONS(632), + [anon_sym_try] = ACTIONS(632), + [anon_sym_if] = ACTIONS(632), + [anon_sym_else] = ACTIONS(632), + [anon_sym_for] = ACTIONS(632), + [anon_sym_AT] = ACTIONS(632), + [anon_sym_open] = ACTIONS(632), + [anon_sym_module] = ACTIONS(632), + [anon_sym_static] = ACTIONS(632), + [anon_sym_package] = ACTIONS(632), + [anon_sym_import] = ACTIONS(632), + [anon_sym_enum] = ACTIONS(632), + [anon_sym_public] = ACTIONS(632), + [anon_sym_protected] = ACTIONS(632), + [anon_sym_private] = ACTIONS(632), + [anon_sym_abstract] = ACTIONS(632), + [anon_sym_strictfp] = ACTIONS(632), + [anon_sym_native] = ACTIONS(632), + [anon_sym_transient] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym_sealed] = ACTIONS(632), + [anon_sym_non_DASHsealed] = ACTIONS(630), + [anon_sym_record] = ACTIONS(632), + [anon_sym_ATinterface] = ACTIONS(630), + [anon_sym_interface] = ACTIONS(632), + [anon_sym_byte] = ACTIONS(632), + [anon_sym_short] = ACTIONS(632), + [anon_sym_int] = ACTIONS(632), + [anon_sym_long] = ACTIONS(632), + [anon_sym_char] = ACTIONS(632), + [anon_sym_float] = ACTIONS(632), + [anon_sym_double] = ACTIONS(632), + [sym_boolean_type] = ACTIONS(632), + [sym_void_type] = ACTIONS(632), + [sym_this] = ACTIONS(632), + [sym_super] = ACTIONS(632), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [sym__literal] = STATE(461), + [231] = { + [ts_builtin_sym_end] = ACTIONS(634), + [sym_identifier] = ACTIONS(636), + [sym_decimal_integer_literal] = ACTIONS(636), + [sym_hex_integer_literal] = ACTIONS(636), + [sym_octal_integer_literal] = ACTIONS(634), + [sym_binary_integer_literal] = ACTIONS(634), + [sym_decimal_floating_point_literal] = ACTIONS(634), + [sym_hex_floating_point_literal] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_character_literal] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(636), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(634), + [sym_null_literal] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_PLUS] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(636), + [anon_sym_final] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_TILDE] = ACTIONS(634), + [anon_sym_PLUS_PLUS] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(634), + [anon_sym_new] = ACTIONS(636), + [anon_sym_class] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_assert] = ACTIONS(636), + [anon_sym_do] = ACTIONS(636), + [anon_sym_while] = ACTIONS(636), + [anon_sym_break] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_return] = ACTIONS(636), + [anon_sym_yield] = ACTIONS(636), + [anon_sym_synchronized] = ACTIONS(636), + [anon_sym_throw] = ACTIONS(636), + [anon_sym_try] = ACTIONS(636), + [anon_sym_if] = ACTIONS(636), + [anon_sym_else] = ACTIONS(636), + [anon_sym_for] = ACTIONS(636), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_open] = ACTIONS(636), + [anon_sym_module] = ACTIONS(636), + [anon_sym_static] = ACTIONS(636), + [anon_sym_package] = ACTIONS(636), + [anon_sym_import] = ACTIONS(636), + [anon_sym_enum] = ACTIONS(636), + [anon_sym_public] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_strictfp] = ACTIONS(636), + [anon_sym_native] = ACTIONS(636), + [anon_sym_transient] = ACTIONS(636), + [anon_sym_volatile] = ACTIONS(636), + [anon_sym_sealed] = ACTIONS(636), + [anon_sym_non_DASHsealed] = ACTIONS(634), + [anon_sym_record] = ACTIONS(636), + [anon_sym_ATinterface] = ACTIONS(634), + [anon_sym_interface] = ACTIONS(636), + [anon_sym_byte] = ACTIONS(636), + [anon_sym_short] = ACTIONS(636), + [anon_sym_int] = ACTIONS(636), + [anon_sym_long] = ACTIONS(636), + [anon_sym_char] = ACTIONS(636), + [anon_sym_float] = ACTIONS(636), + [anon_sym_double] = ACTIONS(636), + [sym_boolean_type] = ACTIONS(636), + [sym_void_type] = ACTIONS(636), + [sym_this] = ACTIONS(636), + [sym_super] = ACTIONS(636), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(638), + [sym_identifier] = ACTIONS(640), + [sym_decimal_integer_literal] = ACTIONS(640), + [sym_hex_integer_literal] = ACTIONS(640), + [sym_octal_integer_literal] = ACTIONS(638), + [sym_binary_integer_literal] = ACTIONS(638), + [sym_decimal_floating_point_literal] = ACTIONS(638), + [sym_hex_floating_point_literal] = ACTIONS(640), + [sym_true] = ACTIONS(640), + [sym_false] = ACTIONS(640), + [sym_character_literal] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(638), + [sym_null_literal] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_final] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_PLUS_PLUS] = ACTIONS(638), + [anon_sym_DASH_DASH] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_class] = ACTIONS(640), + [anon_sym_switch] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(638), + [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_case] = ACTIONS(640), + [anon_sym_default] = ACTIONS(640), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_assert] = ACTIONS(640), + [anon_sym_do] = ACTIONS(640), + [anon_sym_while] = ACTIONS(640), + [anon_sym_break] = ACTIONS(640), + [anon_sym_continue] = ACTIONS(640), + [anon_sym_return] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(640), + [anon_sym_synchronized] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(640), + [anon_sym_try] = ACTIONS(640), + [anon_sym_if] = ACTIONS(640), + [anon_sym_else] = ACTIONS(640), + [anon_sym_for] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym_open] = ACTIONS(640), + [anon_sym_module] = ACTIONS(640), + [anon_sym_static] = ACTIONS(640), + [anon_sym_package] = ACTIONS(640), + [anon_sym_import] = ACTIONS(640), + [anon_sym_enum] = ACTIONS(640), + [anon_sym_public] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(640), + [anon_sym_strictfp] = ACTIONS(640), + [anon_sym_native] = ACTIONS(640), + [anon_sym_transient] = ACTIONS(640), + [anon_sym_volatile] = ACTIONS(640), + [anon_sym_sealed] = ACTIONS(640), + [anon_sym_non_DASHsealed] = ACTIONS(638), + [anon_sym_record] = ACTIONS(640), + [anon_sym_ATinterface] = ACTIONS(638), + [anon_sym_interface] = ACTIONS(640), + [anon_sym_byte] = ACTIONS(640), + [anon_sym_short] = ACTIONS(640), + [anon_sym_int] = ACTIONS(640), + [anon_sym_long] = ACTIONS(640), + [anon_sym_char] = ACTIONS(640), + [anon_sym_float] = ACTIONS(640), + [anon_sym_double] = ACTIONS(640), + [sym_boolean_type] = ACTIONS(640), + [sym_void_type] = ACTIONS(640), + [sym_this] = ACTIONS(640), + [sym_super] = ACTIONS(640), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [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(642), + [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), + [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_RBRACE] = 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_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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(646), + [sym_identifier] = ACTIONS(648), + [sym_decimal_integer_literal] = ACTIONS(648), + [sym_hex_integer_literal] = ACTIONS(648), + [sym_octal_integer_literal] = ACTIONS(646), + [sym_binary_integer_literal] = ACTIONS(646), + [sym_decimal_floating_point_literal] = ACTIONS(646), + [sym_hex_floating_point_literal] = ACTIONS(648), + [sym_true] = ACTIONS(648), + [sym_false] = ACTIONS(648), + [sym_character_literal] = ACTIONS(646), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [sym_null_literal] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_final] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_TILDE] = ACTIONS(646), + [anon_sym_PLUS_PLUS] = ACTIONS(646), + [anon_sym_DASH_DASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(648), + [anon_sym_class] = ACTIONS(648), + [anon_sym_switch] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_assert] = ACTIONS(648), + [anon_sym_do] = ACTIONS(648), + [anon_sym_while] = ACTIONS(648), + [anon_sym_break] = ACTIONS(648), + [anon_sym_continue] = ACTIONS(648), + [anon_sym_return] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(648), + [anon_sym_synchronized] = ACTIONS(648), + [anon_sym_throw] = ACTIONS(648), + [anon_sym_try] = ACTIONS(648), + [anon_sym_if] = ACTIONS(648), + [anon_sym_else] = ACTIONS(648), + [anon_sym_for] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_open] = ACTIONS(648), + [anon_sym_module] = ACTIONS(648), + [anon_sym_static] = ACTIONS(648), + [anon_sym_package] = ACTIONS(648), + [anon_sym_import] = ACTIONS(648), + [anon_sym_enum] = ACTIONS(648), + [anon_sym_public] = ACTIONS(648), + [anon_sym_protected] = ACTIONS(648), + [anon_sym_private] = ACTIONS(648), + [anon_sym_abstract] = ACTIONS(648), + [anon_sym_strictfp] = ACTIONS(648), + [anon_sym_native] = ACTIONS(648), + [anon_sym_transient] = ACTIONS(648), + [anon_sym_volatile] = ACTIONS(648), + [anon_sym_sealed] = ACTIONS(648), + [anon_sym_non_DASHsealed] = ACTIONS(646), + [anon_sym_record] = ACTIONS(648), + [anon_sym_ATinterface] = ACTIONS(646), + [anon_sym_interface] = ACTIONS(648), + [anon_sym_byte] = ACTIONS(648), + [anon_sym_short] = ACTIONS(648), + [anon_sym_int] = ACTIONS(648), + [anon_sym_long] = ACTIONS(648), + [anon_sym_char] = ACTIONS(648), + [anon_sym_float] = ACTIONS(648), + [anon_sym_double] = ACTIONS(648), + [sym_boolean_type] = ACTIONS(648), + [sym_void_type] = ACTIONS(648), + [sym_this] = ACTIONS(648), + [sym_super] = ACTIONS(648), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), [sym_expression] = STATE(612), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36442,151 +34097,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(615), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [236] = { + [ts_builtin_sym_end] = ACTIONS(650), + [sym_identifier] = ACTIONS(652), + [sym_decimal_integer_literal] = ACTIONS(652), + [sym_hex_integer_literal] = ACTIONS(652), + [sym_octal_integer_literal] = ACTIONS(650), + [sym_binary_integer_literal] = ACTIONS(650), + [sym_decimal_floating_point_literal] = ACTIONS(650), + [sym_hex_floating_point_literal] = ACTIONS(652), + [sym_true] = ACTIONS(652), + [sym_false] = ACTIONS(652), + [sym_character_literal] = ACTIONS(650), + [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(650), + [sym_null_literal] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_final] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_PLUS_PLUS] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_new] = ACTIONS(652), + [anon_sym_class] = ACTIONS(652), + [anon_sym_switch] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_case] = ACTIONS(652), + [anon_sym_default] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_assert] = ACTIONS(652), + [anon_sym_do] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_break] = ACTIONS(652), + [anon_sym_continue] = ACTIONS(652), + [anon_sym_return] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_synchronized] = ACTIONS(652), + [anon_sym_throw] = ACTIONS(652), + [anon_sym_try] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_else] = ACTIONS(652), + [anon_sym_for] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_open] = ACTIONS(652), + [anon_sym_module] = ACTIONS(652), + [anon_sym_static] = ACTIONS(652), + [anon_sym_package] = ACTIONS(652), + [anon_sym_import] = ACTIONS(652), + [anon_sym_enum] = ACTIONS(652), + [anon_sym_public] = ACTIONS(652), + [anon_sym_protected] = ACTIONS(652), + [anon_sym_private] = ACTIONS(652), + [anon_sym_abstract] = ACTIONS(652), + [anon_sym_strictfp] = ACTIONS(652), + [anon_sym_native] = ACTIONS(652), + [anon_sym_transient] = ACTIONS(652), + [anon_sym_volatile] = ACTIONS(652), + [anon_sym_sealed] = ACTIONS(652), + [anon_sym_non_DASHsealed] = ACTIONS(650), + [anon_sym_record] = ACTIONS(652), + [anon_sym_ATinterface] = ACTIONS(650), + [anon_sym_interface] = ACTIONS(652), + [anon_sym_byte] = ACTIONS(652), + [anon_sym_short] = ACTIONS(652), + [anon_sym_int] = ACTIONS(652), + [anon_sym_long] = ACTIONS(652), + [anon_sym_char] = ACTIONS(652), + [anon_sym_float] = ACTIONS(652), + [anon_sym_double] = ACTIONS(652), + [sym_boolean_type] = ACTIONS(652), + [sym_void_type] = ACTIONS(652), + [sym_this] = ACTIONS(652), + [sym_super] = ACTIONS(652), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [284] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(569), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [237] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(534), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36596,74 +34255,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [285] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(550), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [238] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(625), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36673,151 +34334,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(590), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [239] = { + [ts_builtin_sym_end] = ACTIONS(654), + [sym_identifier] = ACTIONS(656), + [sym_decimal_integer_literal] = ACTIONS(656), + [sym_hex_integer_literal] = ACTIONS(656), + [sym_octal_integer_literal] = ACTIONS(654), + [sym_binary_integer_literal] = ACTIONS(654), + [sym_decimal_floating_point_literal] = ACTIONS(654), + [sym_hex_floating_point_literal] = ACTIONS(656), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_character_literal] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(654), + [sym_null_literal] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_final] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_new] = ACTIONS(656), + [anon_sym_class] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(656), + [anon_sym_default] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_assert] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_yield] = ACTIONS(656), + [anon_sym_synchronized] = ACTIONS(656), + [anon_sym_throw] = ACTIONS(656), + [anon_sym_try] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_else] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_AT] = ACTIONS(656), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_static] = ACTIONS(656), + [anon_sym_package] = ACTIONS(656), + [anon_sym_import] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_public] = ACTIONS(656), + [anon_sym_protected] = ACTIONS(656), + [anon_sym_private] = ACTIONS(656), + [anon_sym_abstract] = ACTIONS(656), + [anon_sym_strictfp] = ACTIONS(656), + [anon_sym_native] = ACTIONS(656), + [anon_sym_transient] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym_sealed] = ACTIONS(656), + [anon_sym_non_DASHsealed] = ACTIONS(654), + [anon_sym_record] = ACTIONS(656), + [anon_sym_ATinterface] = ACTIONS(654), + [anon_sym_interface] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [anon_sym_int] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_char] = ACTIONS(656), + [anon_sym_float] = ACTIONS(656), + [anon_sym_double] = ACTIONS(656), + [sym_boolean_type] = ACTIONS(656), + [sym_void_type] = ACTIONS(656), + [sym_this] = ACTIONS(656), + [sym_super] = ACTIONS(656), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(551), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [240] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(604), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -36827,379 +34492,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(585), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [241] = { + [ts_builtin_sym_end] = ACTIONS(658), + [sym_identifier] = ACTIONS(660), + [sym_decimal_integer_literal] = ACTIONS(660), + [sym_hex_integer_literal] = ACTIONS(660), + [sym_octal_integer_literal] = ACTIONS(658), + [sym_binary_integer_literal] = ACTIONS(658), + [sym_decimal_floating_point_literal] = ACTIONS(658), + [sym_hex_floating_point_literal] = ACTIONS(660), + [sym_true] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_character_literal] = ACTIONS(658), + [anon_sym_DQUOTE] = ACTIONS(660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(658), + [sym_null_literal] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_final] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_TILDE] = ACTIONS(658), + [anon_sym_PLUS_PLUS] = ACTIONS(658), + [anon_sym_DASH_DASH] = ACTIONS(658), + [anon_sym_new] = ACTIONS(660), + [anon_sym_class] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_case] = ACTIONS(660), + [anon_sym_default] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(658), + [anon_sym_assert] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_while] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(660), + [anon_sym_synchronized] = ACTIONS(660), + [anon_sym_throw] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [anon_sym_else] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(660), + [anon_sym_open] = ACTIONS(660), + [anon_sym_module] = ACTIONS(660), + [anon_sym_static] = ACTIONS(660), + [anon_sym_package] = ACTIONS(660), + [anon_sym_import] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_public] = ACTIONS(660), + [anon_sym_protected] = ACTIONS(660), + [anon_sym_private] = ACTIONS(660), + [anon_sym_abstract] = ACTIONS(660), + [anon_sym_strictfp] = ACTIONS(660), + [anon_sym_native] = ACTIONS(660), + [anon_sym_transient] = ACTIONS(660), + [anon_sym_volatile] = ACTIONS(660), + [anon_sym_sealed] = ACTIONS(660), + [anon_sym_non_DASHsealed] = ACTIONS(658), + [anon_sym_record] = ACTIONS(660), + [anon_sym_ATinterface] = ACTIONS(658), + [anon_sym_interface] = ACTIONS(660), + [anon_sym_byte] = ACTIONS(660), + [anon_sym_short] = ACTIONS(660), + [anon_sym_int] = ACTIONS(660), + [anon_sym_long] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_float] = ACTIONS(660), + [anon_sym_double] = ACTIONS(660), + [sym_boolean_type] = ACTIONS(660), + [sym_void_type] = ACTIONS(660), + [sym_this] = ACTIONS(660), + [sym_super] = ACTIONS(660), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(570), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [242] = { + [ts_builtin_sym_end] = ACTIONS(662), + [sym_identifier] = ACTIONS(664), + [sym_decimal_integer_literal] = ACTIONS(664), + [sym_hex_integer_literal] = ACTIONS(664), + [sym_octal_integer_literal] = ACTIONS(662), + [sym_binary_integer_literal] = ACTIONS(662), + [sym_decimal_floating_point_literal] = ACTIONS(662), + [sym_hex_floating_point_literal] = ACTIONS(664), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_character_literal] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), + [sym_null_literal] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_final] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_PLUS_PLUS] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_new] = ACTIONS(664), + [anon_sym_class] = ACTIONS(664), + [anon_sym_switch] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_case] = ACTIONS(664), + [anon_sym_default] = ACTIONS(664), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_assert] = ACTIONS(664), + [anon_sym_do] = ACTIONS(664), + [anon_sym_while] = ACTIONS(664), + [anon_sym_break] = ACTIONS(664), + [anon_sym_continue] = ACTIONS(664), + [anon_sym_return] = ACTIONS(664), + [anon_sym_yield] = ACTIONS(664), + [anon_sym_synchronized] = ACTIONS(664), + [anon_sym_throw] = ACTIONS(664), + [anon_sym_try] = ACTIONS(664), + [anon_sym_if] = ACTIONS(664), + [anon_sym_else] = ACTIONS(664), + [anon_sym_for] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(664), + [anon_sym_open] = ACTIONS(664), + [anon_sym_module] = ACTIONS(664), + [anon_sym_static] = ACTIONS(664), + [anon_sym_package] = ACTIONS(664), + [anon_sym_import] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(664), + [anon_sym_public] = ACTIONS(664), + [anon_sym_protected] = ACTIONS(664), + [anon_sym_private] = ACTIONS(664), + [anon_sym_abstract] = ACTIONS(664), + [anon_sym_strictfp] = ACTIONS(664), + [anon_sym_native] = ACTIONS(664), + [anon_sym_transient] = ACTIONS(664), + [anon_sym_volatile] = ACTIONS(664), + [anon_sym_sealed] = ACTIONS(664), + [anon_sym_non_DASHsealed] = ACTIONS(662), + [anon_sym_record] = ACTIONS(664), + [anon_sym_ATinterface] = ACTIONS(662), + [anon_sym_interface] = ACTIONS(664), + [anon_sym_byte] = ACTIONS(664), + [anon_sym_short] = ACTIONS(664), + [anon_sym_int] = ACTIONS(664), + [anon_sym_long] = ACTIONS(664), + [anon_sym_char] = ACTIONS(664), + [anon_sym_float] = ACTIONS(664), + [anon_sym_double] = ACTIONS(664), + [sym_boolean_type] = ACTIONS(664), + [sym_void_type] = ACTIONS(664), + [sym_this] = ACTIONS(664), + [sym_super] = ACTIONS(664), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [243] = { + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(668), + [sym_decimal_integer_literal] = ACTIONS(668), + [sym_hex_integer_literal] = ACTIONS(668), + [sym_octal_integer_literal] = ACTIONS(666), + [sym_binary_integer_literal] = ACTIONS(666), + [sym_decimal_floating_point_literal] = ACTIONS(666), + [sym_hex_floating_point_literal] = ACTIONS(668), + [sym_true] = ACTIONS(668), + [sym_false] = ACTIONS(668), + [sym_character_literal] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(666), + [sym_null_literal] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_final] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_new] = ACTIONS(668), + [anon_sym_class] = ACTIONS(668), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_case] = ACTIONS(668), + [anon_sym_default] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym_assert] = ACTIONS(668), + [anon_sym_do] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(668), + [anon_sym_synchronized] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(668), + [anon_sym_try] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_for] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_open] = ACTIONS(668), + [anon_sym_module] = ACTIONS(668), + [anon_sym_static] = ACTIONS(668), + [anon_sym_package] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(668), + [anon_sym_public] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(668), + [anon_sym_strictfp] = ACTIONS(668), + [anon_sym_native] = ACTIONS(668), + [anon_sym_transient] = ACTIONS(668), + [anon_sym_volatile] = ACTIONS(668), + [anon_sym_sealed] = ACTIONS(668), + [anon_sym_non_DASHsealed] = ACTIONS(666), + [anon_sym_record] = ACTIONS(668), + [anon_sym_ATinterface] = ACTIONS(666), + [anon_sym_interface] = ACTIONS(668), + [anon_sym_byte] = ACTIONS(668), + [anon_sym_short] = ACTIONS(668), + [anon_sym_int] = ACTIONS(668), + [anon_sym_long] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_float] = ACTIONS(668), + [anon_sym_double] = ACTIONS(668), + [sym_boolean_type] = ACTIONS(668), + [sym_void_type] = ACTIONS(668), + [sym_this] = ACTIONS(668), + [sym_super] = ACTIONS(668), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(612), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [244] = { + [ts_builtin_sym_end] = ACTIONS(670), + [sym_identifier] = ACTIONS(672), + [sym_decimal_integer_literal] = ACTIONS(672), + [sym_hex_integer_literal] = ACTIONS(672), + [sym_octal_integer_literal] = ACTIONS(670), + [sym_binary_integer_literal] = ACTIONS(670), + [sym_decimal_floating_point_literal] = ACTIONS(670), + [sym_hex_floating_point_literal] = ACTIONS(672), + [sym_true] = ACTIONS(672), + [sym_false] = ACTIONS(672), + [sym_character_literal] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_null_literal] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_final] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(670), + [anon_sym_DASH_DASH] = ACTIONS(670), + [anon_sym_new] = ACTIONS(672), + [anon_sym_class] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(672), + [anon_sym_default] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(670), + [anon_sym_assert] = ACTIONS(672), + [anon_sym_do] = ACTIONS(672), + [anon_sym_while] = ACTIONS(672), + [anon_sym_break] = ACTIONS(672), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_return] = ACTIONS(672), + [anon_sym_yield] = ACTIONS(672), + [anon_sym_synchronized] = ACTIONS(672), + [anon_sym_throw] = ACTIONS(672), + [anon_sym_try] = ACTIONS(672), + [anon_sym_if] = ACTIONS(672), + [anon_sym_else] = ACTIONS(672), + [anon_sym_for] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym_open] = ACTIONS(672), + [anon_sym_module] = ACTIONS(672), + [anon_sym_static] = ACTIONS(672), + [anon_sym_package] = ACTIONS(672), + [anon_sym_import] = ACTIONS(672), + [anon_sym_enum] = ACTIONS(672), + [anon_sym_public] = ACTIONS(672), + [anon_sym_protected] = ACTIONS(672), + [anon_sym_private] = ACTIONS(672), + [anon_sym_abstract] = ACTIONS(672), + [anon_sym_strictfp] = ACTIONS(672), + [anon_sym_native] = ACTIONS(672), + [anon_sym_transient] = ACTIONS(672), + [anon_sym_volatile] = ACTIONS(672), + [anon_sym_sealed] = ACTIONS(672), + [anon_sym_non_DASHsealed] = ACTIONS(670), + [anon_sym_record] = ACTIONS(672), + [anon_sym_ATinterface] = ACTIONS(670), + [anon_sym_interface] = ACTIONS(672), + [anon_sym_byte] = ACTIONS(672), + [anon_sym_short] = ACTIONS(672), + [anon_sym_int] = ACTIONS(672), + [anon_sym_long] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_float] = ACTIONS(672), + [anon_sym_double] = ACTIONS(672), + [sym_boolean_type] = ACTIONS(672), + [sym_void_type] = ACTIONS(672), + [sym_this] = ACTIONS(672), + [sym_super] = ACTIONS(672), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(610), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [245] = { + [ts_builtin_sym_end] = ACTIONS(674), + [sym_identifier] = ACTIONS(676), + [sym_decimal_integer_literal] = ACTIONS(676), + [sym_hex_integer_literal] = ACTIONS(676), + [sym_octal_integer_literal] = ACTIONS(674), + [sym_binary_integer_literal] = ACTIONS(674), + [sym_decimal_floating_point_literal] = ACTIONS(674), + [sym_hex_floating_point_literal] = ACTIONS(676), + [sym_true] = ACTIONS(676), + [sym_false] = ACTIONS(676), + [sym_character_literal] = ACTIONS(674), + [anon_sym_DQUOTE] = ACTIONS(676), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), + [sym_null_literal] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_final] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_new] = ACTIONS(676), + [anon_sym_class] = ACTIONS(676), + [anon_sym_switch] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_assert] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_break] = ACTIONS(676), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(676), + [anon_sym_synchronized] = ACTIONS(676), + [anon_sym_throw] = ACTIONS(676), + [anon_sym_try] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_else] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym_open] = ACTIONS(676), + [anon_sym_module] = ACTIONS(676), + [anon_sym_static] = ACTIONS(676), + [anon_sym_package] = ACTIONS(676), + [anon_sym_import] = ACTIONS(676), + [anon_sym_enum] = ACTIONS(676), + [anon_sym_public] = ACTIONS(676), + [anon_sym_protected] = ACTIONS(676), + [anon_sym_private] = ACTIONS(676), + [anon_sym_abstract] = ACTIONS(676), + [anon_sym_strictfp] = ACTIONS(676), + [anon_sym_native] = ACTIONS(676), + [anon_sym_transient] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym_sealed] = ACTIONS(676), + [anon_sym_non_DASHsealed] = ACTIONS(674), + [anon_sym_record] = ACTIONS(676), + [anon_sym_ATinterface] = ACTIONS(674), + [anon_sym_interface] = ACTIONS(676), + [anon_sym_byte] = ACTIONS(676), + [anon_sym_short] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_long] = ACTIONS(676), + [anon_sym_char] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [sym_boolean_type] = ACTIONS(676), + [sym_void_type] = ACTIONS(676), + [sym_this] = ACTIONS(676), + [sym_super] = ACTIONS(676), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [246] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(629), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37209,149 +34966,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [293] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(555), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [247] = { + [ts_builtin_sym_end] = ACTIONS(678), + [sym_identifier] = ACTIONS(680), + [sym_decimal_integer_literal] = ACTIONS(680), + [sym_hex_integer_literal] = ACTIONS(680), + [sym_octal_integer_literal] = ACTIONS(678), + [sym_binary_integer_literal] = ACTIONS(678), + [sym_decimal_floating_point_literal] = ACTIONS(678), + [sym_hex_floating_point_literal] = ACTIONS(680), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_character_literal] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), + [sym_null_literal] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_PLUS] = ACTIONS(680), + [anon_sym_DASH] = ACTIONS(680), + [anon_sym_final] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_TILDE] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_new] = ACTIONS(680), + [anon_sym_class] = ACTIONS(680), + [anon_sym_switch] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_case] = ACTIONS(680), + [anon_sym_default] = ACTIONS(680), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_assert] = ACTIONS(680), + [anon_sym_do] = ACTIONS(680), + [anon_sym_while] = ACTIONS(680), + [anon_sym_break] = ACTIONS(680), + [anon_sym_continue] = ACTIONS(680), + [anon_sym_return] = ACTIONS(680), + [anon_sym_yield] = ACTIONS(680), + [anon_sym_synchronized] = ACTIONS(680), + [anon_sym_throw] = ACTIONS(680), + [anon_sym_try] = ACTIONS(680), + [anon_sym_if] = ACTIONS(680), + [anon_sym_else] = ACTIONS(680), + [anon_sym_for] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_open] = ACTIONS(680), + [anon_sym_module] = ACTIONS(680), + [anon_sym_static] = ACTIONS(680), + [anon_sym_package] = ACTIONS(680), + [anon_sym_import] = ACTIONS(680), + [anon_sym_enum] = ACTIONS(680), + [anon_sym_public] = ACTIONS(680), + [anon_sym_protected] = ACTIONS(680), + [anon_sym_private] = ACTIONS(680), + [anon_sym_abstract] = ACTIONS(680), + [anon_sym_strictfp] = ACTIONS(680), + [anon_sym_native] = ACTIONS(680), + [anon_sym_transient] = ACTIONS(680), + [anon_sym_volatile] = ACTIONS(680), + [anon_sym_sealed] = ACTIONS(680), + [anon_sym_non_DASHsealed] = ACTIONS(678), + [anon_sym_record] = ACTIONS(680), + [anon_sym_ATinterface] = ACTIONS(678), + [anon_sym_interface] = ACTIONS(680), + [anon_sym_byte] = ACTIONS(680), + [anon_sym_short] = ACTIONS(680), + [anon_sym_int] = ACTIONS(680), + [anon_sym_long] = ACTIONS(680), + [anon_sym_char] = ACTIONS(680), + [anon_sym_float] = ACTIONS(680), + [anon_sym_double] = ACTIONS(680), + [sym_boolean_type] = ACTIONS(680), + [sym_void_type] = ACTIONS(680), + [sym_this] = ACTIONS(680), + [sym_super] = ACTIONS(680), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(682), + [sym_identifier] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(684), + [sym_hex_integer_literal] = ACTIONS(684), + [sym_octal_integer_literal] = ACTIONS(682), + [sym_binary_integer_literal] = ACTIONS(682), + [sym_decimal_floating_point_literal] = ACTIONS(682), + [sym_hex_floating_point_literal] = ACTIONS(684), + [sym_true] = ACTIONS(684), + [sym_false] = ACTIONS(684), + [sym_character_literal] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [sym_null_literal] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_final] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_TILDE] = ACTIONS(682), + [anon_sym_PLUS_PLUS] = ACTIONS(682), + [anon_sym_DASH_DASH] = ACTIONS(682), + [anon_sym_new] = ACTIONS(684), + [anon_sym_class] = ACTIONS(684), + [anon_sym_switch] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_case] = ACTIONS(684), + [anon_sym_default] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_assert] = ACTIONS(684), + [anon_sym_do] = ACTIONS(684), + [anon_sym_while] = ACTIONS(684), + [anon_sym_break] = ACTIONS(684), + [anon_sym_continue] = ACTIONS(684), + [anon_sym_return] = ACTIONS(684), + [anon_sym_yield] = ACTIONS(684), + [anon_sym_synchronized] = ACTIONS(684), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_try] = ACTIONS(684), + [anon_sym_if] = ACTIONS(684), + [anon_sym_else] = ACTIONS(684), + [anon_sym_for] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_open] = ACTIONS(684), + [anon_sym_module] = ACTIONS(684), + [anon_sym_static] = ACTIONS(684), + [anon_sym_package] = ACTIONS(684), + [anon_sym_import] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(684), + [anon_sym_public] = ACTIONS(684), + [anon_sym_protected] = ACTIONS(684), + [anon_sym_private] = ACTIONS(684), + [anon_sym_abstract] = ACTIONS(684), + [anon_sym_strictfp] = ACTIONS(684), + [anon_sym_native] = ACTIONS(684), + [anon_sym_transient] = ACTIONS(684), + [anon_sym_volatile] = ACTIONS(684), + [anon_sym_sealed] = ACTIONS(684), + [anon_sym_non_DASHsealed] = ACTIONS(682), + [anon_sym_record] = ACTIONS(684), + [anon_sym_ATinterface] = ACTIONS(682), + [anon_sym_interface] = ACTIONS(684), + [anon_sym_byte] = ACTIONS(684), + [anon_sym_short] = ACTIONS(684), + [anon_sym_int] = ACTIONS(684), + [anon_sym_long] = ACTIONS(684), + [anon_sym_char] = ACTIONS(684), + [anon_sym_float] = ACTIONS(684), + [anon_sym_double] = ACTIONS(684), + [sym_boolean_type] = ACTIONS(684), + [sym_void_type] = ACTIONS(684), + [sym_this] = ACTIONS(684), + [sym_super] = ACTIONS(684), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(686), + [sym_identifier] = ACTIONS(688), + [sym_decimal_integer_literal] = ACTIONS(688), + [sym_hex_integer_literal] = ACTIONS(688), + [sym_octal_integer_literal] = ACTIONS(686), + [sym_binary_integer_literal] = ACTIONS(686), + [sym_decimal_floating_point_literal] = ACTIONS(686), + [sym_hex_floating_point_literal] = ACTIONS(688), + [sym_true] = ACTIONS(688), + [sym_false] = ACTIONS(688), + [sym_character_literal] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_null_literal] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_final] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_new] = ACTIONS(688), + [anon_sym_class] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_case] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_synchronized] = ACTIONS(688), + [anon_sym_throw] = ACTIONS(688), + [anon_sym_try] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_else] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_open] = ACTIONS(688), + [anon_sym_module] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_package] = ACTIONS(688), + [anon_sym_import] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_public] = ACTIONS(688), + [anon_sym_protected] = ACTIONS(688), + [anon_sym_private] = ACTIONS(688), + [anon_sym_abstract] = ACTIONS(688), + [anon_sym_strictfp] = ACTIONS(688), + [anon_sym_native] = ACTIONS(688), + [anon_sym_transient] = ACTIONS(688), + [anon_sym_volatile] = ACTIONS(688), + [anon_sym_sealed] = ACTIONS(688), + [anon_sym_non_DASHsealed] = ACTIONS(686), + [anon_sym_record] = ACTIONS(688), + [anon_sym_ATinterface] = ACTIONS(686), + [anon_sym_interface] = ACTIONS(688), + [anon_sym_byte] = ACTIONS(688), + [anon_sym_short] = ACTIONS(688), + [anon_sym_int] = ACTIONS(688), + [anon_sym_long] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_float] = ACTIONS(688), + [anon_sym_double] = ACTIONS(688), + [sym_boolean_type] = ACTIONS(688), + [sym_void_type] = ACTIONS(688), + [sym_this] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(690), + [sym_identifier] = ACTIONS(692), + [sym_decimal_integer_literal] = ACTIONS(692), + [sym_hex_integer_literal] = ACTIONS(692), + [sym_octal_integer_literal] = ACTIONS(690), + [sym_binary_integer_literal] = ACTIONS(690), + [sym_decimal_floating_point_literal] = ACTIONS(690), + [sym_hex_floating_point_literal] = ACTIONS(692), + [sym_true] = ACTIONS(692), + [sym_false] = ACTIONS(692), + [sym_character_literal] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [sym_null_literal] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_final] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_PLUS_PLUS] = ACTIONS(690), + [anon_sym_DASH_DASH] = ACTIONS(690), + [anon_sym_new] = ACTIONS(692), + [anon_sym_class] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_assert] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_break] = ACTIONS(692), + [anon_sym_continue] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_yield] = ACTIONS(692), + [anon_sym_synchronized] = ACTIONS(692), + [anon_sym_throw] = ACTIONS(692), + [anon_sym_try] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_else] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(692), + [anon_sym_open] = ACTIONS(692), + [anon_sym_module] = ACTIONS(692), + [anon_sym_static] = ACTIONS(692), + [anon_sym_package] = ACTIONS(692), + [anon_sym_import] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(692), + [anon_sym_public] = ACTIONS(692), + [anon_sym_protected] = ACTIONS(692), + [anon_sym_private] = ACTIONS(692), + [anon_sym_abstract] = ACTIONS(692), + [anon_sym_strictfp] = ACTIONS(692), + [anon_sym_native] = ACTIONS(692), + [anon_sym_transient] = ACTIONS(692), + [anon_sym_volatile] = ACTIONS(692), + [anon_sym_sealed] = ACTIONS(692), + [anon_sym_non_DASHsealed] = ACTIONS(690), + [anon_sym_record] = ACTIONS(692), + [anon_sym_ATinterface] = ACTIONS(690), + [anon_sym_interface] = ACTIONS(692), + [anon_sym_byte] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [anon_sym_int] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_char] = ACTIONS(692), + [anon_sym_float] = ACTIONS(692), + [anon_sym_double] = ACTIONS(692), + [sym_boolean_type] = ACTIONS(692), + [sym_void_type] = ACTIONS(692), + [sym_this] = ACTIONS(692), + [sym_super] = ACTIONS(692), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [ts_builtin_sym_end] = ACTIONS(694), + [sym_identifier] = ACTIONS(696), + [sym_decimal_integer_literal] = ACTIONS(696), + [sym_hex_integer_literal] = ACTIONS(696), + [sym_octal_integer_literal] = ACTIONS(694), + [sym_binary_integer_literal] = ACTIONS(694), + [sym_decimal_floating_point_literal] = ACTIONS(694), + [sym_hex_floating_point_literal] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_character_literal] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(696), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [sym_null_literal] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_final] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_class] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_case] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_assert] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_while] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_synchronized] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(696), + [anon_sym_open] = ACTIONS(696), + [anon_sym_module] = ACTIONS(696), + [anon_sym_static] = ACTIONS(696), + [anon_sym_package] = ACTIONS(696), + [anon_sym_import] = ACTIONS(696), + [anon_sym_enum] = ACTIONS(696), + [anon_sym_public] = ACTIONS(696), + [anon_sym_protected] = ACTIONS(696), + [anon_sym_private] = ACTIONS(696), + [anon_sym_abstract] = ACTIONS(696), + [anon_sym_strictfp] = ACTIONS(696), + [anon_sym_native] = ACTIONS(696), + [anon_sym_transient] = ACTIONS(696), + [anon_sym_volatile] = ACTIONS(696), + [anon_sym_sealed] = ACTIONS(696), + [anon_sym_non_DASHsealed] = ACTIONS(694), + [anon_sym_record] = ACTIONS(696), + [anon_sym_ATinterface] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(696), + [anon_sym_byte] = ACTIONS(696), + [anon_sym_short] = ACTIONS(696), + [anon_sym_int] = ACTIONS(696), + [anon_sym_long] = ACTIONS(696), + [anon_sym_char] = ACTIONS(696), + [anon_sym_float] = ACTIONS(696), + [anon_sym_double] = ACTIONS(696), + [sym_boolean_type] = ACTIONS(696), + [sym_void_type] = ACTIONS(696), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [252] = { + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(700), + [sym_decimal_integer_literal] = ACTIONS(700), + [sym_hex_integer_literal] = ACTIONS(700), + [sym_octal_integer_literal] = ACTIONS(698), + [sym_binary_integer_literal] = ACTIONS(698), + [sym_decimal_floating_point_literal] = ACTIONS(698), + [sym_hex_floating_point_literal] = ACTIONS(700), + [sym_true] = ACTIONS(700), + [sym_false] = ACTIONS(700), + [sym_character_literal] = ACTIONS(698), + [anon_sym_DQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(698), + [sym_null_literal] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_new] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(698), + [anon_sym_assert] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_yield] = ACTIONS(700), + [anon_sym_synchronized] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_try] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_open] = ACTIONS(700), + [anon_sym_module] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_package] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_protected] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_strictfp] = ACTIONS(700), + [anon_sym_native] = ACTIONS(700), + [anon_sym_transient] = ACTIONS(700), + [anon_sym_volatile] = ACTIONS(700), + [anon_sym_sealed] = ACTIONS(700), + [anon_sym_non_DASHsealed] = ACTIONS(698), + [anon_sym_record] = ACTIONS(700), + [anon_sym_ATinterface] = ACTIONS(698), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_byte] = ACTIONS(700), + [anon_sym_short] = ACTIONS(700), + [anon_sym_int] = ACTIONS(700), + [anon_sym_long] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_float] = ACTIONS(700), + [anon_sym_double] = ACTIONS(700), + [sym_boolean_type] = ACTIONS(700), + [sym_void_type] = ACTIONS(700), + [sym_this] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [253] = { + [ts_builtin_sym_end] = ACTIONS(702), + [sym_identifier] = ACTIONS(704), + [sym_decimal_integer_literal] = ACTIONS(704), + [sym_hex_integer_literal] = ACTIONS(704), + [sym_octal_integer_literal] = ACTIONS(702), + [sym_binary_integer_literal] = ACTIONS(702), + [sym_decimal_floating_point_literal] = ACTIONS(702), + [sym_hex_floating_point_literal] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_character_literal] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(702), + [sym_null_literal] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_final] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS_PLUS] = ACTIONS(702), + [anon_sym_DASH_DASH] = ACTIONS(702), + [anon_sym_new] = ACTIONS(704), + [anon_sym_class] = ACTIONS(704), + [anon_sym_switch] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_case] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(704), + [anon_sym_do] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_yield] = ACTIONS(704), + [anon_sym_synchronized] = ACTIONS(704), + [anon_sym_throw] = ACTIONS(704), + [anon_sym_try] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_else] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(704), + [anon_sym_open] = ACTIONS(704), + [anon_sym_module] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_package] = ACTIONS(704), + [anon_sym_import] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_public] = ACTIONS(704), + [anon_sym_protected] = ACTIONS(704), + [anon_sym_private] = ACTIONS(704), + [anon_sym_abstract] = ACTIONS(704), + [anon_sym_strictfp] = ACTIONS(704), + [anon_sym_native] = ACTIONS(704), + [anon_sym_transient] = ACTIONS(704), + [anon_sym_volatile] = ACTIONS(704), + [anon_sym_sealed] = ACTIONS(704), + [anon_sym_non_DASHsealed] = ACTIONS(702), + [anon_sym_record] = ACTIONS(704), + [anon_sym_ATinterface] = ACTIONS(702), + [anon_sym_interface] = ACTIONS(704), + [anon_sym_byte] = ACTIONS(704), + [anon_sym_short] = ACTIONS(704), + [anon_sym_int] = ACTIONS(704), + [anon_sym_long] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_float] = ACTIONS(704), + [anon_sym_double] = ACTIONS(704), + [sym_boolean_type] = ACTIONS(704), + [sym_void_type] = ACTIONS(704), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [254] = { + [ts_builtin_sym_end] = ACTIONS(706), + [sym_identifier] = ACTIONS(708), + [sym_decimal_integer_literal] = ACTIONS(708), + [sym_hex_integer_literal] = ACTIONS(708), + [sym_octal_integer_literal] = ACTIONS(706), + [sym_binary_integer_literal] = ACTIONS(706), + [sym_decimal_floating_point_literal] = ACTIONS(706), + [sym_hex_floating_point_literal] = ACTIONS(708), + [sym_true] = ACTIONS(708), + [sym_false] = ACTIONS(708), + [sym_character_literal] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(706), + [sym_null_literal] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_final] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(706), + [anon_sym_DASH_DASH] = ACTIONS(706), + [anon_sym_new] = ACTIONS(708), + [anon_sym_class] = ACTIONS(708), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_case] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(708), + [anon_sym_do] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(708), + [anon_sym_synchronized] = ACTIONS(708), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_try] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_else] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_open] = ACTIONS(708), + [anon_sym_module] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_package] = ACTIONS(708), + [anon_sym_import] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_public] = ACTIONS(708), + [anon_sym_protected] = ACTIONS(708), + [anon_sym_private] = ACTIONS(708), + [anon_sym_abstract] = ACTIONS(708), + [anon_sym_strictfp] = ACTIONS(708), + [anon_sym_native] = ACTIONS(708), + [anon_sym_transient] = ACTIONS(708), + [anon_sym_volatile] = ACTIONS(708), + [anon_sym_sealed] = ACTIONS(708), + [anon_sym_non_DASHsealed] = ACTIONS(706), + [anon_sym_record] = ACTIONS(708), + [anon_sym_ATinterface] = ACTIONS(706), + [anon_sym_interface] = ACTIONS(708), + [anon_sym_byte] = ACTIONS(708), + [anon_sym_short] = ACTIONS(708), + [anon_sym_int] = ACTIONS(708), + [anon_sym_long] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_float] = ACTIONS(708), + [anon_sym_double] = ACTIONS(708), + [sym_boolean_type] = ACTIONS(708), + [sym_void_type] = ACTIONS(708), + [sym_this] = ACTIONS(708), + [sym_super] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [294] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(503), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [255] = { + [ts_builtin_sym_end] = ACTIONS(710), + [sym_identifier] = ACTIONS(712), + [sym_decimal_integer_literal] = ACTIONS(712), + [sym_hex_integer_literal] = ACTIONS(712), + [sym_octal_integer_literal] = ACTIONS(710), + [sym_binary_integer_literal] = ACTIONS(710), + [sym_decimal_floating_point_literal] = ACTIONS(710), + [sym_hex_floating_point_literal] = ACTIONS(712), + [sym_true] = ACTIONS(712), + [sym_false] = ACTIONS(712), + [sym_character_literal] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(712), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(710), + [sym_null_literal] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_final] = ACTIONS(712), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_new] = ACTIONS(712), + [anon_sym_class] = ACTIONS(712), + [anon_sym_switch] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_case] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_assert] = ACTIONS(712), + [anon_sym_do] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_yield] = ACTIONS(712), + [anon_sym_synchronized] = ACTIONS(712), + [anon_sym_throw] = ACTIONS(712), + [anon_sym_try] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_else] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(712), + [anon_sym_open] = ACTIONS(712), + [anon_sym_module] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_package] = ACTIONS(712), + [anon_sym_import] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_public] = ACTIONS(712), + [anon_sym_protected] = ACTIONS(712), + [anon_sym_private] = ACTIONS(712), + [anon_sym_abstract] = ACTIONS(712), + [anon_sym_strictfp] = ACTIONS(712), + [anon_sym_native] = ACTIONS(712), + [anon_sym_transient] = ACTIONS(712), + [anon_sym_volatile] = ACTIONS(712), + [anon_sym_sealed] = ACTIONS(712), + [anon_sym_non_DASHsealed] = ACTIONS(710), + [anon_sym_record] = ACTIONS(712), + [anon_sym_ATinterface] = ACTIONS(710), + [anon_sym_interface] = ACTIONS(712), + [anon_sym_byte] = ACTIONS(712), + [anon_sym_short] = ACTIONS(712), + [anon_sym_int] = ACTIONS(712), + [anon_sym_long] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_float] = ACTIONS(712), + [anon_sym_double] = ACTIONS(712), + [sym_boolean_type] = ACTIONS(712), + [sym_void_type] = ACTIONS(712), + [sym_this] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [256] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(609), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37361,73 +35756,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(624), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [257] = { + [ts_builtin_sym_end] = ACTIONS(714), + [sym_identifier] = ACTIONS(716), + [sym_decimal_integer_literal] = ACTIONS(716), + [sym_hex_integer_literal] = ACTIONS(716), + [sym_octal_integer_literal] = ACTIONS(714), + [sym_binary_integer_literal] = ACTIONS(714), + [sym_decimal_floating_point_literal] = ACTIONS(714), + [sym_hex_floating_point_literal] = ACTIONS(716), + [sym_true] = ACTIONS(716), + [sym_false] = ACTIONS(716), + [sym_character_literal] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(716), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(714), + [sym_null_literal] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_final] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(714), + [anon_sym_PLUS_PLUS] = ACTIONS(714), + [anon_sym_DASH_DASH] = ACTIONS(714), + [anon_sym_new] = ACTIONS(716), + [anon_sym_class] = ACTIONS(716), + [anon_sym_switch] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_case] = ACTIONS(716), + [anon_sym_default] = ACTIONS(716), + [anon_sym_SEMI] = ACTIONS(714), + [anon_sym_assert] = ACTIONS(716), + [anon_sym_do] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_break] = ACTIONS(716), + [anon_sym_continue] = ACTIONS(716), + [anon_sym_return] = ACTIONS(716), + [anon_sym_yield] = ACTIONS(716), + [anon_sym_synchronized] = ACTIONS(716), + [anon_sym_throw] = ACTIONS(716), + [anon_sym_try] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_else] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(716), + [anon_sym_open] = ACTIONS(716), + [anon_sym_module] = ACTIONS(716), + [anon_sym_static] = ACTIONS(716), + [anon_sym_package] = ACTIONS(716), + [anon_sym_import] = ACTIONS(716), + [anon_sym_enum] = ACTIONS(716), + [anon_sym_public] = ACTIONS(716), + [anon_sym_protected] = ACTIONS(716), + [anon_sym_private] = ACTIONS(716), + [anon_sym_abstract] = ACTIONS(716), + [anon_sym_strictfp] = ACTIONS(716), + [anon_sym_native] = ACTIONS(716), + [anon_sym_transient] = ACTIONS(716), + [anon_sym_volatile] = ACTIONS(716), + [anon_sym_sealed] = ACTIONS(716), + [anon_sym_non_DASHsealed] = ACTIONS(714), + [anon_sym_record] = ACTIONS(716), + [anon_sym_ATinterface] = ACTIONS(714), + [anon_sym_interface] = ACTIONS(716), + [anon_sym_byte] = ACTIONS(716), + [anon_sym_short] = ACTIONS(716), + [anon_sym_int] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_char] = ACTIONS(716), + [anon_sym_float] = ACTIONS(716), + [anon_sym_double] = ACTIONS(716), + [sym_boolean_type] = ACTIONS(716), + [sym_void_type] = ACTIONS(716), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [258] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(526), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37437,73 +35914,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(617), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [259] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37513,73 +35993,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [260] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(540), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37589,73 +36072,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(613), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [261] = { + [ts_builtin_sym_end] = ACTIONS(718), + [sym_identifier] = ACTIONS(720), + [sym_decimal_integer_literal] = ACTIONS(720), + [sym_hex_integer_literal] = ACTIONS(720), + [sym_octal_integer_literal] = ACTIONS(718), + [sym_binary_integer_literal] = ACTIONS(718), + [sym_decimal_floating_point_literal] = ACTIONS(718), + [sym_hex_floating_point_literal] = ACTIONS(720), + [sym_true] = ACTIONS(720), + [sym_false] = ACTIONS(720), + [sym_character_literal] = ACTIONS(718), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(718), + [sym_null_literal] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_final] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(718), + [anon_sym_PLUS_PLUS] = ACTIONS(718), + [anon_sym_DASH_DASH] = ACTIONS(718), + [anon_sym_new] = ACTIONS(720), + [anon_sym_class] = ACTIONS(720), + [anon_sym_switch] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_case] = ACTIONS(720), + [anon_sym_default] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_assert] = ACTIONS(720), + [anon_sym_do] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(720), + [anon_sym_synchronized] = ACTIONS(720), + [anon_sym_throw] = ACTIONS(720), + [anon_sym_try] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_else] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [anon_sym_open] = ACTIONS(720), + [anon_sym_module] = ACTIONS(720), + [anon_sym_static] = ACTIONS(720), + [anon_sym_package] = ACTIONS(720), + [anon_sym_import] = ACTIONS(720), + [anon_sym_enum] = ACTIONS(720), + [anon_sym_public] = ACTIONS(720), + [anon_sym_protected] = ACTIONS(720), + [anon_sym_private] = ACTIONS(720), + [anon_sym_abstract] = ACTIONS(720), + [anon_sym_strictfp] = ACTIONS(720), + [anon_sym_native] = ACTIONS(720), + [anon_sym_transient] = ACTIONS(720), + [anon_sym_volatile] = ACTIONS(720), + [anon_sym_sealed] = ACTIONS(720), + [anon_sym_non_DASHsealed] = ACTIONS(718), + [anon_sym_record] = ACTIONS(720), + [anon_sym_ATinterface] = ACTIONS(718), + [anon_sym_interface] = ACTIONS(720), + [anon_sym_byte] = ACTIONS(720), + [anon_sym_short] = ACTIONS(720), + [anon_sym_int] = ACTIONS(720), + [anon_sym_long] = ACTIONS(720), + [anon_sym_char] = ACTIONS(720), + [anon_sym_float] = ACTIONS(720), + [anon_sym_double] = ACTIONS(720), + [sym_boolean_type] = ACTIONS(720), + [sym_void_type] = ACTIONS(720), + [sym_this] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [262] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(527), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37665,73 +36230,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [299] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(607), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [263] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(533), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37741,73 +36309,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [300] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(502), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [264] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(536), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37817,73 +36388,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [301] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(600), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [265] = { + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [sym_decimal_integer_literal] = ACTIONS(724), + [sym_hex_integer_literal] = ACTIONS(724), + [sym_octal_integer_literal] = ACTIONS(722), + [sym_binary_integer_literal] = ACTIONS(722), + [sym_decimal_floating_point_literal] = ACTIONS(722), + [sym_hex_floating_point_literal] = ACTIONS(724), + [sym_true] = ACTIONS(724), + [sym_false] = ACTIONS(724), + [sym_character_literal] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(722), + [sym_null_literal] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_final] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(722), + [anon_sym_PLUS_PLUS] = ACTIONS(722), + [anon_sym_DASH_DASH] = ACTIONS(722), + [anon_sym_new] = ACTIONS(724), + [anon_sym_class] = ACTIONS(724), + [anon_sym_switch] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_case] = ACTIONS(724), + [anon_sym_default] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_assert] = ACTIONS(724), + [anon_sym_do] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_synchronized] = ACTIONS(724), + [anon_sym_throw] = ACTIONS(724), + [anon_sym_try] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_else] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [anon_sym_open] = ACTIONS(724), + [anon_sym_module] = ACTIONS(724), + [anon_sym_static] = ACTIONS(724), + [anon_sym_package] = ACTIONS(724), + [anon_sym_import] = ACTIONS(724), + [anon_sym_enum] = ACTIONS(724), + [anon_sym_public] = ACTIONS(724), + [anon_sym_protected] = ACTIONS(724), + [anon_sym_private] = ACTIONS(724), + [anon_sym_abstract] = ACTIONS(724), + [anon_sym_strictfp] = ACTIONS(724), + [anon_sym_native] = ACTIONS(724), + [anon_sym_transient] = ACTIONS(724), + [anon_sym_volatile] = ACTIONS(724), + [anon_sym_sealed] = ACTIONS(724), + [anon_sym_non_DASHsealed] = ACTIONS(722), + [anon_sym_record] = ACTIONS(724), + [anon_sym_ATinterface] = ACTIONS(722), + [anon_sym_interface] = ACTIONS(724), + [anon_sym_byte] = ACTIONS(724), + [anon_sym_short] = ACTIONS(724), + [anon_sym_int] = ACTIONS(724), + [anon_sym_long] = ACTIONS(724), + [anon_sym_char] = ACTIONS(724), + [anon_sym_float] = ACTIONS(724), + [anon_sym_double] = ACTIONS(724), + [sym_boolean_type] = ACTIONS(724), + [sym_void_type] = ACTIONS(724), + [sym_this] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(726), + [sym_identifier] = ACTIONS(728), + [sym_decimal_integer_literal] = ACTIONS(728), + [sym_hex_integer_literal] = ACTIONS(728), + [sym_octal_integer_literal] = ACTIONS(726), + [sym_binary_integer_literal] = ACTIONS(726), + [sym_decimal_floating_point_literal] = ACTIONS(726), + [sym_hex_floating_point_literal] = ACTIONS(728), + [sym_true] = ACTIONS(728), + [sym_false] = ACTIONS(728), + [sym_character_literal] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(726), + [sym_null_literal] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_final] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(726), + [anon_sym_new] = ACTIONS(728), + [anon_sym_class] = ACTIONS(728), + [anon_sym_switch] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_case] = ACTIONS(728), + [anon_sym_default] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_assert] = ACTIONS(728), + [anon_sym_do] = ACTIONS(728), + [anon_sym_while] = ACTIONS(728), + [anon_sym_break] = ACTIONS(728), + [anon_sym_continue] = ACTIONS(728), + [anon_sym_return] = ACTIONS(728), + [anon_sym_yield] = ACTIONS(728), + [anon_sym_synchronized] = ACTIONS(728), + [anon_sym_throw] = ACTIONS(728), + [anon_sym_try] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_else] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [anon_sym_open] = ACTIONS(728), + [anon_sym_module] = ACTIONS(728), + [anon_sym_static] = ACTIONS(728), + [anon_sym_package] = ACTIONS(728), + [anon_sym_import] = ACTIONS(728), + [anon_sym_enum] = ACTIONS(728), + [anon_sym_public] = ACTIONS(728), + [anon_sym_protected] = ACTIONS(728), + [anon_sym_private] = ACTIONS(728), + [anon_sym_abstract] = ACTIONS(728), + [anon_sym_strictfp] = ACTIONS(728), + [anon_sym_native] = ACTIONS(728), + [anon_sym_transient] = ACTIONS(728), + [anon_sym_volatile] = ACTIONS(728), + [anon_sym_sealed] = ACTIONS(728), + [anon_sym_non_DASHsealed] = ACTIONS(726), + [anon_sym_record] = ACTIONS(728), + [anon_sym_ATinterface] = ACTIONS(726), + [anon_sym_interface] = ACTIONS(728), + [anon_sym_byte] = ACTIONS(728), + [anon_sym_short] = ACTIONS(728), + [anon_sym_int] = ACTIONS(728), + [anon_sym_long] = ACTIONS(728), + [anon_sym_char] = ACTIONS(728), + [anon_sym_float] = ACTIONS(728), + [anon_sym_double] = ACTIONS(728), + [sym_boolean_type] = ACTIONS(728), + [sym_void_type] = ACTIONS(728), + [sym_this] = ACTIONS(728), + [sym_super] = ACTIONS(728), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [267] = { + [ts_builtin_sym_end] = ACTIONS(730), + [sym_identifier] = ACTIONS(732), + [sym_decimal_integer_literal] = ACTIONS(732), + [sym_hex_integer_literal] = ACTIONS(732), + [sym_octal_integer_literal] = ACTIONS(730), + [sym_binary_integer_literal] = ACTIONS(730), + [sym_decimal_floating_point_literal] = ACTIONS(730), + [sym_hex_floating_point_literal] = ACTIONS(732), + [sym_true] = ACTIONS(732), + [sym_false] = ACTIONS(732), + [sym_character_literal] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(730), + [sym_null_literal] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_final] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_class] = ACTIONS(732), + [anon_sym_switch] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_case] = ACTIONS(732), + [anon_sym_default] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_assert] = ACTIONS(732), + [anon_sym_do] = ACTIONS(732), + [anon_sym_while] = ACTIONS(732), + [anon_sym_break] = ACTIONS(732), + [anon_sym_continue] = ACTIONS(732), + [anon_sym_return] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(732), + [anon_sym_synchronized] = ACTIONS(732), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_try] = ACTIONS(732), + [anon_sym_if] = ACTIONS(732), + [anon_sym_else] = ACTIONS(732), + [anon_sym_for] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(732), + [anon_sym_open] = ACTIONS(732), + [anon_sym_module] = ACTIONS(732), + [anon_sym_static] = ACTIONS(732), + [anon_sym_package] = ACTIONS(732), + [anon_sym_import] = ACTIONS(732), + [anon_sym_enum] = ACTIONS(732), + [anon_sym_public] = ACTIONS(732), + [anon_sym_protected] = ACTIONS(732), + [anon_sym_private] = ACTIONS(732), + [anon_sym_abstract] = ACTIONS(732), + [anon_sym_strictfp] = ACTIONS(732), + [anon_sym_native] = ACTIONS(732), + [anon_sym_transient] = ACTIONS(732), + [anon_sym_volatile] = ACTIONS(732), + [anon_sym_sealed] = ACTIONS(732), + [anon_sym_non_DASHsealed] = ACTIONS(730), + [anon_sym_record] = ACTIONS(732), + [anon_sym_ATinterface] = ACTIONS(730), + [anon_sym_interface] = ACTIONS(732), + [anon_sym_byte] = ACTIONS(732), + [anon_sym_short] = ACTIONS(732), + [anon_sym_int] = ACTIONS(732), + [anon_sym_long] = ACTIONS(732), + [anon_sym_char] = ACTIONS(732), + [anon_sym_float] = ACTIONS(732), + [anon_sym_double] = ACTIONS(732), + [sym_boolean_type] = ACTIONS(732), + [sym_void_type] = ACTIONS(732), + [sym_this] = ACTIONS(732), + [sym_super] = ACTIONS(732), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [268] = { + [ts_builtin_sym_end] = ACTIONS(734), + [sym_identifier] = ACTIONS(736), + [sym_decimal_integer_literal] = ACTIONS(736), + [sym_hex_integer_literal] = ACTIONS(736), + [sym_octal_integer_literal] = ACTIONS(734), + [sym_binary_integer_literal] = ACTIONS(734), + [sym_decimal_floating_point_literal] = ACTIONS(734), + [sym_hex_floating_point_literal] = ACTIONS(736), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_character_literal] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), + [sym_null_literal] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_final] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_PLUS_PLUS] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(734), + [anon_sym_new] = ACTIONS(736), + [anon_sym_class] = ACTIONS(736), + [anon_sym_switch] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_case] = ACTIONS(736), + [anon_sym_default] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(736), + [anon_sym_do] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(736), + [anon_sym_synchronized] = ACTIONS(736), + [anon_sym_throw] = ACTIONS(736), + [anon_sym_try] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_else] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(736), + [anon_sym_open] = ACTIONS(736), + [anon_sym_module] = ACTIONS(736), + [anon_sym_static] = ACTIONS(736), + [anon_sym_package] = ACTIONS(736), + [anon_sym_import] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(736), + [anon_sym_public] = ACTIONS(736), + [anon_sym_protected] = ACTIONS(736), + [anon_sym_private] = ACTIONS(736), + [anon_sym_abstract] = ACTIONS(736), + [anon_sym_strictfp] = ACTIONS(736), + [anon_sym_native] = ACTIONS(736), + [anon_sym_transient] = ACTIONS(736), + [anon_sym_volatile] = ACTIONS(736), + [anon_sym_sealed] = ACTIONS(736), + [anon_sym_non_DASHsealed] = ACTIONS(734), + [anon_sym_record] = ACTIONS(736), + [anon_sym_ATinterface] = ACTIONS(734), + [anon_sym_interface] = ACTIONS(736), + [anon_sym_byte] = ACTIONS(736), + [anon_sym_short] = ACTIONS(736), + [anon_sym_int] = ACTIONS(736), + [anon_sym_long] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_float] = ACTIONS(736), + [anon_sym_double] = ACTIONS(736), + [sym_boolean_type] = ACTIONS(736), + [sym_void_type] = ACTIONS(736), + [sym_this] = ACTIONS(736), + [sym_super] = ACTIONS(736), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [269] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(551), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37893,73 +36783,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [302] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(631), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [270] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(638), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -37969,73 +36862,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [303] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(622), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), + [271] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -38045,2201 +36941,3889 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(738), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(740), + [sym_hex_integer_literal] = ACTIONS(740), + [sym_octal_integer_literal] = ACTIONS(738), + [sym_binary_integer_literal] = ACTIONS(738), + [sym_decimal_floating_point_literal] = ACTIONS(738), + [sym_hex_floating_point_literal] = ACTIONS(740), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_character_literal] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), + [sym_null_literal] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_final] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_DASH_DASH] = ACTIONS(738), + [anon_sym_new] = ACTIONS(740), + [anon_sym_class] = ACTIONS(740), + [anon_sym_switch] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_case] = ACTIONS(740), + [anon_sym_default] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_assert] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(740), + [anon_sym_synchronized] = ACTIONS(740), + [anon_sym_throw] = ACTIONS(740), + [anon_sym_try] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_else] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_open] = ACTIONS(740), + [anon_sym_module] = ACTIONS(740), + [anon_sym_static] = ACTIONS(740), + [anon_sym_package] = ACTIONS(740), + [anon_sym_import] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(740), + [anon_sym_public] = ACTIONS(740), + [anon_sym_protected] = ACTIONS(740), + [anon_sym_private] = ACTIONS(740), + [anon_sym_abstract] = ACTIONS(740), + [anon_sym_strictfp] = ACTIONS(740), + [anon_sym_native] = ACTIONS(740), + [anon_sym_transient] = ACTIONS(740), + [anon_sym_volatile] = ACTIONS(740), + [anon_sym_sealed] = ACTIONS(740), + [anon_sym_non_DASHsealed] = ACTIONS(738), + [anon_sym_record] = ACTIONS(740), + [anon_sym_ATinterface] = ACTIONS(738), + [anon_sym_interface] = ACTIONS(740), + [anon_sym_byte] = ACTIONS(740), + [anon_sym_short] = ACTIONS(740), + [anon_sym_int] = ACTIONS(740), + [anon_sym_long] = ACTIONS(740), + [anon_sym_char] = ACTIONS(740), + [anon_sym_float] = ACTIONS(740), + [anon_sym_double] = ACTIONS(740), + [sym_boolean_type] = ACTIONS(740), + [sym_void_type] = ACTIONS(740), + [sym_this] = ACTIONS(740), + [sym_super] = ACTIONS(740), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(357), + [sym_identifier] = ACTIONS(359), + [sym_decimal_integer_literal] = ACTIONS(359), + [sym_hex_integer_literal] = ACTIONS(359), + [sym_octal_integer_literal] = ACTIONS(357), + [sym_binary_integer_literal] = ACTIONS(357), + [sym_decimal_floating_point_literal] = ACTIONS(357), + [sym_hex_floating_point_literal] = ACTIONS(359), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [sym_character_literal] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [sym_null_literal] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_new] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_open] = ACTIONS(359), + [anon_sym_module] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_enum] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_abstract] = ACTIONS(359), + [anon_sym_strictfp] = ACTIONS(359), + [anon_sym_native] = ACTIONS(359), + [anon_sym_transient] = ACTIONS(359), + [anon_sym_volatile] = ACTIONS(359), + [anon_sym_sealed] = ACTIONS(359), + [anon_sym_non_DASHsealed] = ACTIONS(357), + [anon_sym_record] = ACTIONS(359), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_byte] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [sym_boolean_type] = ACTIONS(359), + [sym_void_type] = ACTIONS(359), + [sym_this] = ACTIONS(359), + [sym_super] = ACTIONS(359), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(742), + [sym_identifier] = ACTIONS(744), + [sym_decimal_integer_literal] = ACTIONS(744), + [sym_hex_integer_literal] = ACTIONS(744), + [sym_octal_integer_literal] = ACTIONS(742), + [sym_binary_integer_literal] = ACTIONS(742), + [sym_decimal_floating_point_literal] = ACTIONS(742), + [sym_hex_floating_point_literal] = ACTIONS(744), + [sym_true] = ACTIONS(744), + [sym_false] = ACTIONS(744), + [sym_character_literal] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), + [sym_null_literal] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_final] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(742), + [anon_sym_DASH_DASH] = ACTIONS(742), + [anon_sym_new] = ACTIONS(744), + [anon_sym_class] = ACTIONS(744), + [anon_sym_switch] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_case] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_assert] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_yield] = ACTIONS(744), + [anon_sym_synchronized] = ACTIONS(744), + [anon_sym_throw] = ACTIONS(744), + [anon_sym_try] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_else] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_open] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_static] = ACTIONS(744), + [anon_sym_package] = ACTIONS(744), + [anon_sym_import] = ACTIONS(744), + [anon_sym_enum] = ACTIONS(744), + [anon_sym_public] = ACTIONS(744), + [anon_sym_protected] = ACTIONS(744), + [anon_sym_private] = ACTIONS(744), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_strictfp] = ACTIONS(744), + [anon_sym_native] = ACTIONS(744), + [anon_sym_transient] = ACTIONS(744), + [anon_sym_volatile] = ACTIONS(744), + [anon_sym_sealed] = ACTIONS(744), + [anon_sym_non_DASHsealed] = ACTIONS(742), + [anon_sym_record] = ACTIONS(744), + [anon_sym_ATinterface] = ACTIONS(742), + [anon_sym_interface] = ACTIONS(744), + [anon_sym_byte] = ACTIONS(744), + [anon_sym_short] = ACTIONS(744), + [anon_sym_int] = ACTIONS(744), + [anon_sym_long] = ACTIONS(744), + [anon_sym_char] = ACTIONS(744), + [anon_sym_float] = ACTIONS(744), + [anon_sym_double] = ACTIONS(744), + [sym_boolean_type] = ACTIONS(744), + [sym_void_type] = ACTIONS(744), + [sym_this] = ACTIONS(744), + [sym_super] = ACTIONS(744), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(746), + [sym_identifier] = ACTIONS(748), + [sym_decimal_integer_literal] = ACTIONS(748), + [sym_hex_integer_literal] = ACTIONS(748), + [sym_octal_integer_literal] = ACTIONS(746), + [sym_binary_integer_literal] = ACTIONS(746), + [sym_decimal_floating_point_literal] = ACTIONS(746), + [sym_hex_floating_point_literal] = ACTIONS(748), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_character_literal] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [sym_null_literal] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_final] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_new] = ACTIONS(748), + [anon_sym_class] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_case] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_synchronized] = ACTIONS(748), + [anon_sym_throw] = ACTIONS(748), + [anon_sym_try] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [anon_sym_open] = ACTIONS(748), + [anon_sym_module] = ACTIONS(748), + [anon_sym_static] = ACTIONS(748), + [anon_sym_package] = ACTIONS(748), + [anon_sym_import] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_public] = ACTIONS(748), + [anon_sym_protected] = ACTIONS(748), + [anon_sym_private] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(748), + [anon_sym_strictfp] = ACTIONS(748), + [anon_sym_native] = ACTIONS(748), + [anon_sym_transient] = ACTIONS(748), + [anon_sym_volatile] = ACTIONS(748), + [anon_sym_sealed] = ACTIONS(748), + [anon_sym_non_DASHsealed] = ACTIONS(746), + [anon_sym_record] = ACTIONS(748), + [anon_sym_ATinterface] = ACTIONS(746), + [anon_sym_interface] = ACTIONS(748), + [anon_sym_byte] = ACTIONS(748), + [anon_sym_short] = ACTIONS(748), + [anon_sym_int] = ACTIONS(748), + [anon_sym_long] = ACTIONS(748), + [anon_sym_char] = ACTIONS(748), + [anon_sym_float] = ACTIONS(748), + [anon_sym_double] = ACTIONS(748), + [sym_boolean_type] = ACTIONS(748), + [sym_void_type] = ACTIONS(748), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(748), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(750), + [sym_identifier] = ACTIONS(752), + [sym_decimal_integer_literal] = ACTIONS(752), + [sym_hex_integer_literal] = ACTIONS(752), + [sym_octal_integer_literal] = ACTIONS(750), + [sym_binary_integer_literal] = ACTIONS(750), + [sym_decimal_floating_point_literal] = ACTIONS(750), + [sym_hex_floating_point_literal] = ACTIONS(752), + [sym_true] = ACTIONS(752), + [sym_false] = ACTIONS(752), + [sym_character_literal] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(752), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [sym_null_literal] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_final] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_new] = ACTIONS(752), + [anon_sym_class] = ACTIONS(752), + [anon_sym_switch] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_case] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(752), + [anon_sym_synchronized] = ACTIONS(752), + [anon_sym_throw] = ACTIONS(752), + [anon_sym_try] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_else] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_open] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_static] = ACTIONS(752), + [anon_sym_package] = ACTIONS(752), + [anon_sym_import] = ACTIONS(752), + [anon_sym_enum] = ACTIONS(752), + [anon_sym_public] = ACTIONS(752), + [anon_sym_protected] = ACTIONS(752), + [anon_sym_private] = ACTIONS(752), + [anon_sym_abstract] = ACTIONS(752), + [anon_sym_strictfp] = ACTIONS(752), + [anon_sym_native] = ACTIONS(752), + [anon_sym_transient] = ACTIONS(752), + [anon_sym_volatile] = ACTIONS(752), + [anon_sym_sealed] = ACTIONS(752), + [anon_sym_non_DASHsealed] = ACTIONS(750), + [anon_sym_record] = ACTIONS(752), + [anon_sym_ATinterface] = ACTIONS(750), + [anon_sym_interface] = ACTIONS(752), + [anon_sym_byte] = ACTIONS(752), + [anon_sym_short] = ACTIONS(752), + [anon_sym_int] = ACTIONS(752), + [anon_sym_long] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_float] = ACTIONS(752), + [anon_sym_double] = ACTIONS(752), + [sym_boolean_type] = ACTIONS(752), + [sym_void_type] = ACTIONS(752), + [sym_this] = ACTIONS(752), + [sym_super] = ACTIONS(752), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), + [sym_decimal_integer_literal] = ACTIONS(756), + [sym_hex_integer_literal] = ACTIONS(756), + [sym_octal_integer_literal] = ACTIONS(754), + [sym_binary_integer_literal] = ACTIONS(754), + [sym_decimal_floating_point_literal] = ACTIONS(754), + [sym_hex_floating_point_literal] = ACTIONS(756), + [sym_true] = ACTIONS(756), + [sym_false] = ACTIONS(756), + [sym_character_literal] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(756), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [sym_null_literal] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_final] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(754), + [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_new] = ACTIONS(756), + [anon_sym_class] = ACTIONS(756), + [anon_sym_switch] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_case] = ACTIONS(756), + [anon_sym_default] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_assert] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_yield] = ACTIONS(756), + [anon_sym_synchronized] = ACTIONS(756), + [anon_sym_throw] = ACTIONS(756), + [anon_sym_try] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_else] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_open] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_static] = ACTIONS(756), + [anon_sym_package] = ACTIONS(756), + [anon_sym_import] = ACTIONS(756), + [anon_sym_enum] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_abstract] = ACTIONS(756), + [anon_sym_strictfp] = ACTIONS(756), + [anon_sym_native] = ACTIONS(756), + [anon_sym_transient] = ACTIONS(756), + [anon_sym_volatile] = ACTIONS(756), + [anon_sym_sealed] = ACTIONS(756), + [anon_sym_non_DASHsealed] = ACTIONS(754), + [anon_sym_record] = ACTIONS(756), + [anon_sym_ATinterface] = ACTIONS(754), + [anon_sym_interface] = ACTIONS(756), + [anon_sym_byte] = ACTIONS(756), + [anon_sym_short] = ACTIONS(756), + [anon_sym_int] = ACTIONS(756), + [anon_sym_long] = ACTIONS(756), + [anon_sym_char] = ACTIONS(756), + [anon_sym_float] = ACTIONS(756), + [anon_sym_double] = ACTIONS(756), + [sym_boolean_type] = ACTIONS(756), + [sym_void_type] = ACTIONS(756), + [sym_this] = ACTIONS(756), + [sym_super] = ACTIONS(756), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [278] = { + [ts_builtin_sym_end] = ACTIONS(758), + [sym_identifier] = ACTIONS(760), + [sym_decimal_integer_literal] = ACTIONS(760), + [sym_hex_integer_literal] = ACTIONS(760), + [sym_octal_integer_literal] = ACTIONS(758), + [sym_binary_integer_literal] = ACTIONS(758), + [sym_decimal_floating_point_literal] = ACTIONS(758), + [sym_hex_floating_point_literal] = ACTIONS(760), + [sym_true] = ACTIONS(760), + [sym_false] = ACTIONS(760), + [sym_character_literal] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [sym_null_literal] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_final] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_class] = ACTIONS(760), + [anon_sym_switch] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_case] = ACTIONS(760), + [anon_sym_default] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_assert] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_synchronized] = ACTIONS(760), + [anon_sym_throw] = ACTIONS(760), + [anon_sym_try] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_else] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_open] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_static] = ACTIONS(760), + [anon_sym_package] = ACTIONS(760), + [anon_sym_import] = ACTIONS(760), + [anon_sym_enum] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_abstract] = ACTIONS(760), + [anon_sym_strictfp] = ACTIONS(760), + [anon_sym_native] = ACTIONS(760), + [anon_sym_transient] = ACTIONS(760), + [anon_sym_volatile] = ACTIONS(760), + [anon_sym_sealed] = ACTIONS(760), + [anon_sym_non_DASHsealed] = ACTIONS(758), + [anon_sym_record] = ACTIONS(760), + [anon_sym_ATinterface] = ACTIONS(758), + [anon_sym_interface] = ACTIONS(760), + [anon_sym_byte] = ACTIONS(760), + [anon_sym_short] = ACTIONS(760), + [anon_sym_int] = ACTIONS(760), + [anon_sym_long] = ACTIONS(760), + [anon_sym_char] = ACTIONS(760), + [anon_sym_float] = ACTIONS(760), + [anon_sym_double] = ACTIONS(760), + [sym_boolean_type] = ACTIONS(760), + [sym_void_type] = ACTIONS(760), + [sym_this] = ACTIONS(760), + [sym_super] = ACTIONS(760), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(762), + [sym_identifier] = ACTIONS(764), + [sym_decimal_integer_literal] = ACTIONS(764), + [sym_hex_integer_literal] = ACTIONS(764), + [sym_octal_integer_literal] = ACTIONS(762), + [sym_binary_integer_literal] = ACTIONS(762), + [sym_decimal_floating_point_literal] = ACTIONS(762), + [sym_hex_floating_point_literal] = ACTIONS(764), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_character_literal] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(762), + [sym_null_literal] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_final] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_PLUS_PLUS] = ACTIONS(762), + [anon_sym_DASH_DASH] = ACTIONS(762), + [anon_sym_new] = ACTIONS(764), + [anon_sym_class] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_assert] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(764), + [anon_sym_synchronized] = ACTIONS(764), + [anon_sym_throw] = ACTIONS(764), + [anon_sym_try] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_else] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_open] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_static] = ACTIONS(764), + [anon_sym_package] = ACTIONS(764), + [anon_sym_import] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(764), + [anon_sym_public] = ACTIONS(764), + [anon_sym_protected] = ACTIONS(764), + [anon_sym_private] = ACTIONS(764), + [anon_sym_abstract] = ACTIONS(764), + [anon_sym_strictfp] = ACTIONS(764), + [anon_sym_native] = ACTIONS(764), + [anon_sym_transient] = ACTIONS(764), + [anon_sym_volatile] = ACTIONS(764), + [anon_sym_sealed] = ACTIONS(764), + [anon_sym_non_DASHsealed] = ACTIONS(762), + [anon_sym_record] = ACTIONS(764), + [anon_sym_ATinterface] = ACTIONS(762), + [anon_sym_interface] = ACTIONS(764), + [anon_sym_byte] = ACTIONS(764), + [anon_sym_short] = ACTIONS(764), + [anon_sym_int] = ACTIONS(764), + [anon_sym_long] = ACTIONS(764), + [anon_sym_char] = ACTIONS(764), + [anon_sym_float] = ACTIONS(764), + [anon_sym_double] = ACTIONS(764), + [sym_boolean_type] = ACTIONS(764), + [sym_void_type] = ACTIONS(764), + [sym_this] = ACTIONS(764), + [sym_super] = ACTIONS(764), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(766), + [sym_identifier] = ACTIONS(768), + [sym_decimal_integer_literal] = ACTIONS(768), + [sym_hex_integer_literal] = ACTIONS(768), + [sym_octal_integer_literal] = ACTIONS(766), + [sym_binary_integer_literal] = ACTIONS(766), + [sym_decimal_floating_point_literal] = ACTIONS(766), + [sym_hex_floating_point_literal] = ACTIONS(768), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_character_literal] = ACTIONS(766), + [anon_sym_DQUOTE] = ACTIONS(768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(766), + [sym_null_literal] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_final] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(766), + [anon_sym_DASH_DASH] = ACTIONS(766), + [anon_sym_new] = ACTIONS(768), + [anon_sym_class] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_case] = ACTIONS(768), + [anon_sym_default] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_assert] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_yield] = ACTIONS(768), + [anon_sym_synchronized] = ACTIONS(768), + [anon_sym_throw] = ACTIONS(768), + [anon_sym_try] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_else] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_open] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_static] = ACTIONS(768), + [anon_sym_package] = ACTIONS(768), + [anon_sym_import] = ACTIONS(768), + [anon_sym_enum] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_abstract] = ACTIONS(768), + [anon_sym_strictfp] = ACTIONS(768), + [anon_sym_native] = ACTIONS(768), + [anon_sym_transient] = ACTIONS(768), + [anon_sym_volatile] = ACTIONS(768), + [anon_sym_sealed] = ACTIONS(768), + [anon_sym_non_DASHsealed] = ACTIONS(766), + [anon_sym_record] = ACTIONS(768), + [anon_sym_ATinterface] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(768), + [anon_sym_byte] = ACTIONS(768), + [anon_sym_short] = ACTIONS(768), + [anon_sym_int] = ACTIONS(768), + [anon_sym_long] = ACTIONS(768), + [anon_sym_char] = ACTIONS(768), + [anon_sym_float] = ACTIONS(768), + [anon_sym_double] = ACTIONS(768), + [sym_boolean_type] = ACTIONS(768), + [sym_void_type] = ACTIONS(768), + [sym_this] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [281] = { + [ts_builtin_sym_end] = ACTIONS(770), + [sym_identifier] = ACTIONS(772), + [sym_decimal_integer_literal] = ACTIONS(772), + [sym_hex_integer_literal] = ACTIONS(772), + [sym_octal_integer_literal] = ACTIONS(770), + [sym_binary_integer_literal] = ACTIONS(770), + [sym_decimal_floating_point_literal] = ACTIONS(770), + [sym_hex_floating_point_literal] = ACTIONS(772), + [sym_true] = ACTIONS(772), + [sym_false] = ACTIONS(772), + [sym_character_literal] = ACTIONS(770), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(770), + [sym_null_literal] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_final] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(770), + [anon_sym_DASH_DASH] = ACTIONS(770), + [anon_sym_new] = ACTIONS(772), + [anon_sym_class] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_case] = ACTIONS(772), + [anon_sym_default] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_assert] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(772), + [anon_sym_synchronized] = ACTIONS(772), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_else] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [anon_sym_open] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_static] = ACTIONS(772), + [anon_sym_package] = ACTIONS(772), + [anon_sym_import] = ACTIONS(772), + [anon_sym_enum] = ACTIONS(772), + [anon_sym_public] = ACTIONS(772), + [anon_sym_protected] = ACTIONS(772), + [anon_sym_private] = ACTIONS(772), + [anon_sym_abstract] = ACTIONS(772), + [anon_sym_strictfp] = ACTIONS(772), + [anon_sym_native] = ACTIONS(772), + [anon_sym_transient] = ACTIONS(772), + [anon_sym_volatile] = ACTIONS(772), + [anon_sym_sealed] = ACTIONS(772), + [anon_sym_non_DASHsealed] = ACTIONS(770), + [anon_sym_record] = ACTIONS(772), + [anon_sym_ATinterface] = ACTIONS(770), + [anon_sym_interface] = ACTIONS(772), + [anon_sym_byte] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [anon_sym_int] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_char] = ACTIONS(772), + [anon_sym_float] = ACTIONS(772), + [anon_sym_double] = ACTIONS(772), + [sym_boolean_type] = ACTIONS(772), + [sym_void_type] = ACTIONS(772), + [sym_this] = ACTIONS(772), + [sym_super] = ACTIONS(772), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(774), + [sym_identifier] = ACTIONS(776), + [sym_decimal_integer_literal] = ACTIONS(776), + [sym_hex_integer_literal] = ACTIONS(776), + [sym_octal_integer_literal] = ACTIONS(774), + [sym_binary_integer_literal] = ACTIONS(774), + [sym_decimal_floating_point_literal] = ACTIONS(774), + [sym_hex_floating_point_literal] = ACTIONS(776), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_character_literal] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(774), + [sym_null_literal] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_final] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(774), + [anon_sym_DASH_DASH] = ACTIONS(774), + [anon_sym_new] = ACTIONS(776), + [anon_sym_class] = ACTIONS(776), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(774), + [anon_sym_case] = ACTIONS(776), + [anon_sym_default] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_assert] = ACTIONS(776), + [anon_sym_do] = ACTIONS(776), + [anon_sym_while] = ACTIONS(776), + [anon_sym_break] = ACTIONS(776), + [anon_sym_continue] = ACTIONS(776), + [anon_sym_return] = ACTIONS(776), + [anon_sym_yield] = ACTIONS(776), + [anon_sym_synchronized] = ACTIONS(776), + [anon_sym_throw] = ACTIONS(776), + [anon_sym_try] = ACTIONS(776), + [anon_sym_if] = ACTIONS(776), + [anon_sym_else] = ACTIONS(776), + [anon_sym_for] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_open] = ACTIONS(776), + [anon_sym_module] = ACTIONS(776), + [anon_sym_static] = ACTIONS(776), + [anon_sym_package] = ACTIONS(776), + [anon_sym_import] = ACTIONS(776), + [anon_sym_enum] = ACTIONS(776), + [anon_sym_public] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_abstract] = ACTIONS(776), + [anon_sym_strictfp] = ACTIONS(776), + [anon_sym_native] = ACTIONS(776), + [anon_sym_transient] = ACTIONS(776), + [anon_sym_volatile] = ACTIONS(776), + [anon_sym_sealed] = ACTIONS(776), + [anon_sym_non_DASHsealed] = ACTIONS(774), + [anon_sym_record] = ACTIONS(776), + [anon_sym_ATinterface] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(776), + [anon_sym_byte] = ACTIONS(776), + [anon_sym_short] = ACTIONS(776), + [anon_sym_int] = ACTIONS(776), + [anon_sym_long] = ACTIONS(776), + [anon_sym_char] = ACTIONS(776), + [anon_sym_float] = ACTIONS(776), + [anon_sym_double] = ACTIONS(776), + [sym_boolean_type] = ACTIONS(776), + [sym_void_type] = ACTIONS(776), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(776), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(778), + [sym_identifier] = ACTIONS(780), + [sym_decimal_integer_literal] = ACTIONS(780), + [sym_hex_integer_literal] = ACTIONS(780), + [sym_octal_integer_literal] = ACTIONS(778), + [sym_binary_integer_literal] = ACTIONS(778), + [sym_decimal_floating_point_literal] = ACTIONS(778), + [sym_hex_floating_point_literal] = ACTIONS(780), + [sym_true] = ACTIONS(780), + [sym_false] = ACTIONS(780), + [sym_character_literal] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(778), + [sym_null_literal] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_final] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_PLUS_PLUS] = ACTIONS(778), + [anon_sym_DASH_DASH] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_class] = ACTIONS(780), + [anon_sym_switch] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_default] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_assert] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_synchronized] = ACTIONS(780), + [anon_sym_throw] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_else] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(780), + [anon_sym_open] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_static] = ACTIONS(780), + [anon_sym_package] = ACTIONS(780), + [anon_sym_import] = ACTIONS(780), + [anon_sym_enum] = ACTIONS(780), + [anon_sym_public] = ACTIONS(780), + [anon_sym_protected] = ACTIONS(780), + [anon_sym_private] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(780), + [anon_sym_strictfp] = ACTIONS(780), + [anon_sym_native] = ACTIONS(780), + [anon_sym_transient] = ACTIONS(780), + [anon_sym_volatile] = ACTIONS(780), + [anon_sym_sealed] = ACTIONS(780), + [anon_sym_non_DASHsealed] = ACTIONS(778), + [anon_sym_record] = ACTIONS(780), + [anon_sym_ATinterface] = ACTIONS(778), + [anon_sym_interface] = ACTIONS(780), + [anon_sym_byte] = ACTIONS(780), + [anon_sym_short] = ACTIONS(780), + [anon_sym_int] = ACTIONS(780), + [anon_sym_long] = ACTIONS(780), + [anon_sym_char] = ACTIONS(780), + [anon_sym_float] = ACTIONS(780), + [anon_sym_double] = ACTIONS(780), + [sym_boolean_type] = ACTIONS(780), + [sym_void_type] = ACTIONS(780), + [sym_this] = ACTIONS(780), + [sym_super] = ACTIONS(780), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(782), + [sym_identifier] = ACTIONS(784), + [sym_decimal_integer_literal] = ACTIONS(784), + [sym_hex_integer_literal] = ACTIONS(784), + [sym_octal_integer_literal] = ACTIONS(782), + [sym_binary_integer_literal] = ACTIONS(782), + [sym_decimal_floating_point_literal] = ACTIONS(782), + [sym_hex_floating_point_literal] = ACTIONS(784), + [sym_true] = ACTIONS(784), + [sym_false] = ACTIONS(784), + [sym_character_literal] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(782), + [sym_null_literal] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_final] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), + [anon_sym_new] = ACTIONS(784), + [anon_sym_class] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_assert] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_synchronized] = ACTIONS(784), + [anon_sym_throw] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_else] = ACTIONS(786), + [anon_sym_for] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_open] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_static] = ACTIONS(784), + [anon_sym_package] = ACTIONS(784), + [anon_sym_import] = ACTIONS(784), + [anon_sym_enum] = ACTIONS(784), + [anon_sym_public] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_abstract] = ACTIONS(784), + [anon_sym_strictfp] = ACTIONS(784), + [anon_sym_native] = ACTIONS(784), + [anon_sym_transient] = ACTIONS(784), + [anon_sym_volatile] = ACTIONS(784), + [anon_sym_sealed] = ACTIONS(784), + [anon_sym_non_DASHsealed] = ACTIONS(782), + [anon_sym_record] = ACTIONS(784), + [anon_sym_ATinterface] = ACTIONS(782), + [anon_sym_interface] = ACTIONS(784), + [anon_sym_byte] = ACTIONS(784), + [anon_sym_short] = ACTIONS(784), + [anon_sym_int] = ACTIONS(784), + [anon_sym_long] = ACTIONS(784), + [anon_sym_char] = ACTIONS(784), + [anon_sym_float] = ACTIONS(784), + [anon_sym_double] = ACTIONS(784), + [sym_boolean_type] = ACTIONS(784), + [sym_void_type] = ACTIONS(784), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(784), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(361), + [sym_identifier] = ACTIONS(363), + [sym_decimal_integer_literal] = ACTIONS(363), + [sym_hex_integer_literal] = ACTIONS(363), + [sym_octal_integer_literal] = ACTIONS(361), + [sym_binary_integer_literal] = ACTIONS(361), + [sym_decimal_floating_point_literal] = ACTIONS(361), + [sym_hex_floating_point_literal] = ACTIONS(363), + [sym_true] = ACTIONS(363), + [sym_false] = ACTIONS(363), + [sym_character_literal] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [sym_null_literal] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_new] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_case] = ACTIONS(363), + [anon_sym_default] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_open] = ACTIONS(363), + [anon_sym_module] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_enum] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_abstract] = ACTIONS(363), + [anon_sym_strictfp] = ACTIONS(363), + [anon_sym_native] = ACTIONS(363), + [anon_sym_transient] = ACTIONS(363), + [anon_sym_volatile] = ACTIONS(363), + [anon_sym_sealed] = ACTIONS(363), + [anon_sym_non_DASHsealed] = ACTIONS(361), + [anon_sym_record] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_byte] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [sym_boolean_type] = ACTIONS(363), + [sym_void_type] = ACTIONS(363), + [sym_this] = ACTIONS(363), + [sym_super] = ACTIONS(363), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(788), + [sym_identifier] = ACTIONS(790), + [sym_decimal_integer_literal] = ACTIONS(790), + [sym_hex_integer_literal] = ACTIONS(790), + [sym_octal_integer_literal] = ACTIONS(788), + [sym_binary_integer_literal] = ACTIONS(788), + [sym_decimal_floating_point_literal] = ACTIONS(788), + [sym_hex_floating_point_literal] = ACTIONS(790), + [sym_true] = ACTIONS(790), + [sym_false] = ACTIONS(790), + [sym_character_literal] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(788), + [sym_null_literal] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_final] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [anon_sym_PLUS_PLUS] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(788), + [anon_sym_new] = ACTIONS(790), + [anon_sym_class] = ACTIONS(790), + [anon_sym_switch] = ACTIONS(790), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_case] = ACTIONS(790), + [anon_sym_default] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(788), + [anon_sym_assert] = ACTIONS(790), + [anon_sym_do] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [anon_sym_break] = ACTIONS(790), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_return] = ACTIONS(790), + [anon_sym_yield] = ACTIONS(790), + [anon_sym_synchronized] = ACTIONS(790), + [anon_sym_throw] = ACTIONS(790), + [anon_sym_try] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_else] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_AT] = ACTIONS(790), + [anon_sym_open] = ACTIONS(790), + [anon_sym_module] = ACTIONS(790), + [anon_sym_static] = ACTIONS(790), + [anon_sym_package] = ACTIONS(790), + [anon_sym_import] = ACTIONS(790), + [anon_sym_enum] = ACTIONS(790), + [anon_sym_public] = ACTIONS(790), + [anon_sym_protected] = ACTIONS(790), + [anon_sym_private] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(790), + [anon_sym_strictfp] = ACTIONS(790), + [anon_sym_native] = ACTIONS(790), + [anon_sym_transient] = ACTIONS(790), + [anon_sym_volatile] = ACTIONS(790), + [anon_sym_sealed] = ACTIONS(790), + [anon_sym_non_DASHsealed] = ACTIONS(788), + [anon_sym_record] = ACTIONS(790), + [anon_sym_ATinterface] = ACTIONS(788), + [anon_sym_interface] = ACTIONS(790), + [anon_sym_byte] = ACTIONS(790), + [anon_sym_short] = ACTIONS(790), + [anon_sym_int] = ACTIONS(790), + [anon_sym_long] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [anon_sym_float] = ACTIONS(790), + [anon_sym_double] = ACTIONS(790), + [sym_boolean_type] = ACTIONS(790), + [sym_void_type] = ACTIONS(790), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(790), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(792), + [sym_identifier] = ACTIONS(794), + [sym_decimal_integer_literal] = ACTIONS(794), + [sym_hex_integer_literal] = ACTIONS(794), + [sym_octal_integer_literal] = ACTIONS(792), + [sym_binary_integer_literal] = ACTIONS(792), + [sym_decimal_floating_point_literal] = ACTIONS(792), + [sym_hex_floating_point_literal] = ACTIONS(794), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_character_literal] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(792), + [sym_null_literal] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_final] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_new] = ACTIONS(794), + [anon_sym_class] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_case] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_assert] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_yield] = ACTIONS(794), + [anon_sym_synchronized] = ACTIONS(794), + [anon_sym_throw] = ACTIONS(794), + [anon_sym_try] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_open] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_static] = ACTIONS(794), + [anon_sym_package] = ACTIONS(794), + [anon_sym_import] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_abstract] = ACTIONS(794), + [anon_sym_strictfp] = ACTIONS(794), + [anon_sym_native] = ACTIONS(794), + [anon_sym_transient] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(794), + [anon_sym_sealed] = ACTIONS(794), + [anon_sym_non_DASHsealed] = ACTIONS(792), + [anon_sym_record] = ACTIONS(794), + [anon_sym_ATinterface] = ACTIONS(792), + [anon_sym_interface] = ACTIONS(794), + [anon_sym_byte] = ACTIONS(794), + [anon_sym_short] = ACTIONS(794), + [anon_sym_int] = ACTIONS(794), + [anon_sym_long] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_float] = ACTIONS(794), + [anon_sym_double] = ACTIONS(794), + [sym_boolean_type] = ACTIONS(794), + [sym_void_type] = ACTIONS(794), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(794), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [304] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(573), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [288] = { + [ts_builtin_sym_end] = ACTIONS(796), + [sym_identifier] = ACTIONS(798), + [sym_decimal_integer_literal] = ACTIONS(798), + [sym_hex_integer_literal] = ACTIONS(798), + [sym_octal_integer_literal] = ACTIONS(796), + [sym_binary_integer_literal] = ACTIONS(796), + [sym_decimal_floating_point_literal] = ACTIONS(796), + [sym_hex_floating_point_literal] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_character_literal] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [sym_null_literal] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_final] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(796), + [anon_sym_TILDE] = ACTIONS(796), + [anon_sym_PLUS_PLUS] = ACTIONS(796), + [anon_sym_DASH_DASH] = ACTIONS(796), + [anon_sym_new] = ACTIONS(798), + [anon_sym_class] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_assert] = ACTIONS(798), + [anon_sym_do] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_yield] = ACTIONS(798), + [anon_sym_synchronized] = ACTIONS(798), + [anon_sym_throw] = ACTIONS(798), + [anon_sym_try] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_else] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(798), + [anon_sym_open] = ACTIONS(798), + [anon_sym_module] = ACTIONS(798), + [anon_sym_static] = ACTIONS(798), + [anon_sym_package] = ACTIONS(798), + [anon_sym_import] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(798), + [anon_sym_public] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_abstract] = ACTIONS(798), + [anon_sym_strictfp] = ACTIONS(798), + [anon_sym_native] = ACTIONS(798), + [anon_sym_transient] = ACTIONS(798), + [anon_sym_volatile] = ACTIONS(798), + [anon_sym_sealed] = ACTIONS(798), + [anon_sym_non_DASHsealed] = ACTIONS(796), + [anon_sym_record] = ACTIONS(798), + [anon_sym_ATinterface] = ACTIONS(796), + [anon_sym_interface] = ACTIONS(798), + [anon_sym_byte] = ACTIONS(798), + [anon_sym_short] = ACTIONS(798), + [anon_sym_int] = ACTIONS(798), + [anon_sym_long] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_float] = ACTIONS(798), + [anon_sym_double] = ACTIONS(798), + [sym_boolean_type] = ACTIONS(798), + [sym_void_type] = ACTIONS(798), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [305] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), + [289] = { + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_decimal_integer_literal] = ACTIONS(311), + [sym_hex_integer_literal] = ACTIONS(311), + [sym_octal_integer_literal] = ACTIONS(309), + [sym_binary_integer_literal] = ACTIONS(309), + [sym_decimal_floating_point_literal] = ACTIONS(309), + [sym_hex_floating_point_literal] = ACTIONS(311), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_character_literal] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(309), + [sym_null_literal] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_final] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_PLUS_PLUS] = ACTIONS(309), + [anon_sym_DASH_DASH] = ACTIONS(309), + [anon_sym_new] = ACTIONS(311), + [anon_sym_class] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_do] = ACTIONS(311), + [anon_sym_while] = ACTIONS(311), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_return] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(311), + [anon_sym_synchronized] = ACTIONS(311), + [anon_sym_throw] = ACTIONS(311), + [anon_sym_try] = ACTIONS(311), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), + [anon_sym_for] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), [anon_sym_open] = ACTIONS(311), [anon_sym_module] = ACTIONS(311), + [anon_sym_static] = ACTIONS(311), + [anon_sym_package] = ACTIONS(311), + [anon_sym_import] = ACTIONS(311), + [anon_sym_enum] = ACTIONS(311), + [anon_sym_public] = ACTIONS(311), + [anon_sym_protected] = ACTIONS(311), + [anon_sym_private] = ACTIONS(311), + [anon_sym_abstract] = ACTIONS(311), + [anon_sym_strictfp] = ACTIONS(311), + [anon_sym_native] = ACTIONS(311), + [anon_sym_transient] = ACTIONS(311), + [anon_sym_volatile] = ACTIONS(311), + [anon_sym_sealed] = ACTIONS(311), + [anon_sym_non_DASHsealed] = ACTIONS(309), [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(309), + [anon_sym_interface] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(311), + [anon_sym_short] = ACTIONS(311), + [anon_sym_int] = ACTIONS(311), + [anon_sym_long] = ACTIONS(311), + [anon_sym_char] = ACTIONS(311), + [anon_sym_float] = ACTIONS(311), + [anon_sym_double] = ACTIONS(311), + [sym_boolean_type] = ACTIONS(311), + [sym_void_type] = ACTIONS(311), + [sym_this] = ACTIONS(311), + [sym_super] = ACTIONS(311), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [306] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(568), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [290] = { + [ts_builtin_sym_end] = ACTIONS(800), + [sym_identifier] = ACTIONS(802), + [sym_decimal_integer_literal] = ACTIONS(802), + [sym_hex_integer_literal] = ACTIONS(802), + [sym_octal_integer_literal] = ACTIONS(800), + [sym_binary_integer_literal] = ACTIONS(800), + [sym_decimal_floating_point_literal] = ACTIONS(800), + [sym_hex_floating_point_literal] = ACTIONS(802), + [sym_true] = ACTIONS(802), + [sym_false] = ACTIONS(802), + [sym_character_literal] = ACTIONS(800), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(800), + [sym_null_literal] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(802), + [anon_sym_final] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(800), + [anon_sym_DASH_DASH] = ACTIONS(800), + [anon_sym_new] = ACTIONS(802), + [anon_sym_class] = ACTIONS(802), + [anon_sym_switch] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_case] = ACTIONS(802), + [anon_sym_default] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_assert] = ACTIONS(802), + [anon_sym_do] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [anon_sym_break] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_return] = ACTIONS(802), + [anon_sym_yield] = ACTIONS(802), + [anon_sym_synchronized] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_try] = ACTIONS(802), + [anon_sym_if] = ACTIONS(802), + [anon_sym_else] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_AT] = ACTIONS(802), + [anon_sym_open] = ACTIONS(802), + [anon_sym_module] = ACTIONS(802), + [anon_sym_static] = ACTIONS(802), + [anon_sym_package] = ACTIONS(802), + [anon_sym_import] = ACTIONS(802), + [anon_sym_enum] = ACTIONS(802), + [anon_sym_public] = ACTIONS(802), + [anon_sym_protected] = ACTIONS(802), + [anon_sym_private] = ACTIONS(802), + [anon_sym_abstract] = ACTIONS(802), + [anon_sym_strictfp] = ACTIONS(802), + [anon_sym_native] = ACTIONS(802), + [anon_sym_transient] = ACTIONS(802), + [anon_sym_volatile] = ACTIONS(802), + [anon_sym_sealed] = ACTIONS(802), + [anon_sym_non_DASHsealed] = ACTIONS(800), + [anon_sym_record] = ACTIONS(802), + [anon_sym_ATinterface] = ACTIONS(800), + [anon_sym_interface] = ACTIONS(802), + [anon_sym_byte] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [anon_sym_int] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_char] = ACTIONS(802), + [anon_sym_float] = ACTIONS(802), + [anon_sym_double] = ACTIONS(802), + [sym_boolean_type] = ACTIONS(802), + [sym_void_type] = ACTIONS(802), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(802), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [307] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(533), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [291] = { + [ts_builtin_sym_end] = ACTIONS(804), + [sym_identifier] = ACTIONS(806), + [sym_decimal_integer_literal] = ACTIONS(806), + [sym_hex_integer_literal] = ACTIONS(806), + [sym_octal_integer_literal] = ACTIONS(804), + [sym_binary_integer_literal] = ACTIONS(804), + [sym_decimal_floating_point_literal] = ACTIONS(804), + [sym_hex_floating_point_literal] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_character_literal] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_null_literal] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS_PLUS] = ACTIONS(804), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_new] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_case] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_throw] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_open] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_import] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_strictfp] = ACTIONS(806), + [anon_sym_native] = ACTIONS(806), + [anon_sym_transient] = ACTIONS(806), + [anon_sym_volatile] = ACTIONS(806), + [anon_sym_sealed] = ACTIONS(806), + [anon_sym_non_DASHsealed] = ACTIONS(804), + [anon_sym_record] = ACTIONS(806), + [anon_sym_ATinterface] = ACTIONS(804), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_byte] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [sym_boolean_type] = ACTIONS(806), + [sym_void_type] = ACTIONS(806), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [308] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(561), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [292] = { + [ts_builtin_sym_end] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [sym_decimal_integer_literal] = ACTIONS(810), + [sym_hex_integer_literal] = ACTIONS(810), + [sym_octal_integer_literal] = ACTIONS(808), + [sym_binary_integer_literal] = ACTIONS(808), + [sym_decimal_floating_point_literal] = ACTIONS(808), + [sym_hex_floating_point_literal] = ACTIONS(810), + [sym_true] = ACTIONS(810), + [sym_false] = ACTIONS(810), + [sym_character_literal] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(808), + [sym_null_literal] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_final] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_new] = ACTIONS(810), + [anon_sym_class] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_case] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_assert] = ACTIONS(810), + [anon_sym_do] = ACTIONS(810), + [anon_sym_while] = ACTIONS(810), + [anon_sym_break] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_return] = ACTIONS(810), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_synchronized] = ACTIONS(810), + [anon_sym_throw] = ACTIONS(810), + [anon_sym_try] = ACTIONS(810), + [anon_sym_if] = ACTIONS(810), + [anon_sym_else] = ACTIONS(810), + [anon_sym_for] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(810), + [anon_sym_open] = ACTIONS(810), + [anon_sym_module] = ACTIONS(810), + [anon_sym_static] = ACTIONS(810), + [anon_sym_package] = ACTIONS(810), + [anon_sym_import] = ACTIONS(810), + [anon_sym_enum] = ACTIONS(810), + [anon_sym_public] = ACTIONS(810), + [anon_sym_protected] = ACTIONS(810), + [anon_sym_private] = ACTIONS(810), + [anon_sym_abstract] = ACTIONS(810), + [anon_sym_strictfp] = ACTIONS(810), + [anon_sym_native] = ACTIONS(810), + [anon_sym_transient] = ACTIONS(810), + [anon_sym_volatile] = ACTIONS(810), + [anon_sym_sealed] = ACTIONS(810), + [anon_sym_non_DASHsealed] = ACTIONS(808), + [anon_sym_record] = ACTIONS(810), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(810), + [anon_sym_byte] = ACTIONS(810), + [anon_sym_short] = ACTIONS(810), + [anon_sym_int] = ACTIONS(810), + [anon_sym_long] = ACTIONS(810), + [anon_sym_char] = ACTIONS(810), + [anon_sym_float] = ACTIONS(810), + [anon_sym_double] = ACTIONS(810), + [sym_boolean_type] = ACTIONS(810), + [sym_void_type] = ACTIONS(810), + [sym_this] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [293] = { + [ts_builtin_sym_end] = ACTIONS(812), + [sym_identifier] = ACTIONS(814), + [sym_decimal_integer_literal] = ACTIONS(814), + [sym_hex_integer_literal] = ACTIONS(814), + [sym_octal_integer_literal] = ACTIONS(812), + [sym_binary_integer_literal] = ACTIONS(812), + [sym_decimal_floating_point_literal] = ACTIONS(812), + [sym_hex_floating_point_literal] = ACTIONS(814), + [sym_true] = ACTIONS(814), + [sym_false] = ACTIONS(814), + [sym_character_literal] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(812), + [sym_null_literal] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_BANG] = ACTIONS(812), + [anon_sym_TILDE] = ACTIONS(812), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_assert] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_yield] = ACTIONS(814), + [anon_sym_synchronized] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_try] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_for] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_open] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_strictfp] = ACTIONS(814), + [anon_sym_native] = ACTIONS(814), + [anon_sym_transient] = ACTIONS(814), + [anon_sym_volatile] = ACTIONS(814), + [anon_sym_sealed] = ACTIONS(814), + [anon_sym_non_DASHsealed] = ACTIONS(812), + [anon_sym_record] = ACTIONS(814), + [anon_sym_ATinterface] = ACTIONS(812), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_byte] = ACTIONS(814), + [anon_sym_short] = ACTIONS(814), + [anon_sym_int] = ACTIONS(814), + [anon_sym_long] = ACTIONS(814), + [anon_sym_char] = ACTIONS(814), + [anon_sym_float] = ACTIONS(814), + [anon_sym_double] = ACTIONS(814), + [sym_boolean_type] = ACTIONS(814), + [sym_void_type] = ACTIONS(814), + [sym_this] = ACTIONS(814), + [sym_super] = ACTIONS(814), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [309] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(619), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [294] = { + [ts_builtin_sym_end] = ACTIONS(816), + [sym_identifier] = ACTIONS(818), + [sym_decimal_integer_literal] = ACTIONS(818), + [sym_hex_integer_literal] = ACTIONS(818), + [sym_octal_integer_literal] = ACTIONS(816), + [sym_binary_integer_literal] = ACTIONS(816), + [sym_decimal_floating_point_literal] = ACTIONS(816), + [sym_hex_floating_point_literal] = ACTIONS(818), + [sym_true] = ACTIONS(818), + [sym_false] = ACTIONS(818), + [sym_character_literal] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_null_literal] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_final] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(816), + [anon_sym_new] = ACTIONS(818), + [anon_sym_class] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_assert] = ACTIONS(818), + [anon_sym_do] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_synchronized] = ACTIONS(818), + [anon_sym_throw] = ACTIONS(818), + [anon_sym_try] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_else] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [anon_sym_open] = ACTIONS(818), + [anon_sym_module] = ACTIONS(818), + [anon_sym_static] = ACTIONS(818), + [anon_sym_package] = ACTIONS(818), + [anon_sym_import] = ACTIONS(818), + [anon_sym_enum] = ACTIONS(818), + [anon_sym_public] = ACTIONS(818), + [anon_sym_protected] = ACTIONS(818), + [anon_sym_private] = ACTIONS(818), + [anon_sym_abstract] = ACTIONS(818), + [anon_sym_strictfp] = ACTIONS(818), + [anon_sym_native] = ACTIONS(818), + [anon_sym_transient] = ACTIONS(818), + [anon_sym_volatile] = ACTIONS(818), + [anon_sym_sealed] = ACTIONS(818), + [anon_sym_non_DASHsealed] = ACTIONS(816), + [anon_sym_record] = ACTIONS(818), + [anon_sym_ATinterface] = ACTIONS(816), + [anon_sym_interface] = ACTIONS(818), + [anon_sym_byte] = ACTIONS(818), + [anon_sym_short] = ACTIONS(818), + [anon_sym_int] = ACTIONS(818), + [anon_sym_long] = ACTIONS(818), + [anon_sym_char] = ACTIONS(818), + [anon_sym_float] = ACTIONS(818), + [anon_sym_double] = ACTIONS(818), + [sym_boolean_type] = ACTIONS(818), + [sym_void_type] = ACTIONS(818), + [sym_this] = ACTIONS(818), + [sym_super] = ACTIONS(818), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [310] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(566), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [295] = { + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), + [sym_decimal_integer_literal] = ACTIONS(822), + [sym_hex_integer_literal] = ACTIONS(822), + [sym_octal_integer_literal] = ACTIONS(820), + [sym_binary_integer_literal] = ACTIONS(820), + [sym_decimal_floating_point_literal] = ACTIONS(820), + [sym_hex_floating_point_literal] = ACTIONS(822), + [sym_true] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [sym_character_literal] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), + [sym_null_literal] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_final] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(820), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_new] = ACTIONS(822), + [anon_sym_class] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_case] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(822), + [anon_sym_synchronized] = ACTIONS(822), + [anon_sym_throw] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [anon_sym_open] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_package] = ACTIONS(822), + [anon_sym_import] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_public] = ACTIONS(822), + [anon_sym_protected] = ACTIONS(822), + [anon_sym_private] = ACTIONS(822), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_strictfp] = ACTIONS(822), + [anon_sym_native] = ACTIONS(822), + [anon_sym_transient] = ACTIONS(822), + [anon_sym_volatile] = ACTIONS(822), + [anon_sym_sealed] = ACTIONS(822), + [anon_sym_non_DASHsealed] = ACTIONS(820), + [anon_sym_record] = ACTIONS(822), + [anon_sym_ATinterface] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_byte] = ACTIONS(822), + [anon_sym_short] = ACTIONS(822), + [anon_sym_int] = ACTIONS(822), + [anon_sym_long] = ACTIONS(822), + [anon_sym_char] = ACTIONS(822), + [anon_sym_float] = ACTIONS(822), + [anon_sym_double] = ACTIONS(822), + [sym_boolean_type] = ACTIONS(822), + [sym_void_type] = ACTIONS(822), + [sym_this] = ACTIONS(822), + [sym_super] = ACTIONS(822), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(824), + [sym_identifier] = ACTIONS(826), + [sym_decimal_integer_literal] = ACTIONS(826), + [sym_hex_integer_literal] = ACTIONS(826), + [sym_octal_integer_literal] = ACTIONS(824), + [sym_binary_integer_literal] = ACTIONS(824), + [sym_decimal_floating_point_literal] = ACTIONS(824), + [sym_hex_floating_point_literal] = ACTIONS(826), + [sym_true] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [sym_character_literal] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(824), + [sym_null_literal] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_final] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym_new] = ACTIONS(826), + [anon_sym_class] = ACTIONS(826), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_assert] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(826), + [anon_sym_synchronized] = ACTIONS(826), + [anon_sym_throw] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_else] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_open] = ACTIONS(826), + [anon_sym_module] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_package] = ACTIONS(826), + [anon_sym_import] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_public] = ACTIONS(826), + [anon_sym_protected] = ACTIONS(826), + [anon_sym_private] = ACTIONS(826), + [anon_sym_abstract] = ACTIONS(826), + [anon_sym_strictfp] = ACTIONS(826), + [anon_sym_native] = ACTIONS(826), + [anon_sym_transient] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_sealed] = ACTIONS(826), + [anon_sym_non_DASHsealed] = ACTIONS(824), + [anon_sym_record] = ACTIONS(826), + [anon_sym_ATinterface] = ACTIONS(824), + [anon_sym_interface] = ACTIONS(826), + [anon_sym_byte] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_int] = ACTIONS(826), + [anon_sym_long] = ACTIONS(826), + [anon_sym_char] = ACTIONS(826), + [anon_sym_float] = ACTIONS(826), + [anon_sym_double] = ACTIONS(826), + [sym_boolean_type] = ACTIONS(826), + [sym_void_type] = ACTIONS(826), + [sym_this] = ACTIONS(826), + [sym_super] = ACTIONS(826), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [311] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(584), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [297] = { + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), + [sym_decimal_integer_literal] = ACTIONS(830), + [sym_hex_integer_literal] = ACTIONS(830), + [sym_octal_integer_literal] = ACTIONS(828), + [sym_binary_integer_literal] = ACTIONS(828), + [sym_decimal_floating_point_literal] = ACTIONS(828), + [sym_hex_floating_point_literal] = ACTIONS(830), + [sym_true] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [sym_character_literal] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(828), + [sym_null_literal] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_final] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(828), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym_new] = ACTIONS(830), + [anon_sym_class] = ACTIONS(830), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_case] = ACTIONS(830), + [anon_sym_default] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_assert] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_yield] = ACTIONS(830), + [anon_sym_synchronized] = ACTIONS(830), + [anon_sym_throw] = ACTIONS(830), + [anon_sym_try] = ACTIONS(830), + [anon_sym_if] = ACTIONS(830), + [anon_sym_else] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_open] = ACTIONS(830), + [anon_sym_module] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_package] = ACTIONS(830), + [anon_sym_import] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_public] = ACTIONS(830), + [anon_sym_protected] = ACTIONS(830), + [anon_sym_private] = ACTIONS(830), + [anon_sym_abstract] = ACTIONS(830), + [anon_sym_strictfp] = ACTIONS(830), + [anon_sym_native] = ACTIONS(830), + [anon_sym_transient] = ACTIONS(830), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym_sealed] = ACTIONS(830), + [anon_sym_non_DASHsealed] = ACTIONS(828), + [anon_sym_record] = ACTIONS(830), + [anon_sym_ATinterface] = ACTIONS(828), + [anon_sym_interface] = ACTIONS(830), + [anon_sym_byte] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [anon_sym_int] = ACTIONS(830), + [anon_sym_long] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), + [anon_sym_float] = ACTIONS(830), + [anon_sym_double] = ACTIONS(830), + [sym_boolean_type] = ACTIONS(830), + [sym_void_type] = ACTIONS(830), + [sym_this] = ACTIONS(830), + [sym_super] = ACTIONS(830), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [312] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(637), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [298] = { + [ts_builtin_sym_end] = ACTIONS(832), + [sym_identifier] = ACTIONS(834), + [sym_decimal_integer_literal] = ACTIONS(834), + [sym_hex_integer_literal] = ACTIONS(834), + [sym_octal_integer_literal] = ACTIONS(832), + [sym_binary_integer_literal] = ACTIONS(832), + [sym_decimal_floating_point_literal] = ACTIONS(832), + [sym_hex_floating_point_literal] = ACTIONS(834), + [sym_true] = ACTIONS(834), + [sym_false] = ACTIONS(834), + [sym_character_literal] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), + [sym_null_literal] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_final] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(832), + [anon_sym_TILDE] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(832), + [anon_sym_DASH_DASH] = ACTIONS(832), + [anon_sym_new] = ACTIONS(834), + [anon_sym_class] = ACTIONS(834), + [anon_sym_switch] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_case] = ACTIONS(834), + [anon_sym_default] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_assert] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(834), + [anon_sym_synchronized] = ACTIONS(834), + [anon_sym_throw] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_else] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_open] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_static] = ACTIONS(834), + [anon_sym_package] = ACTIONS(834), + [anon_sym_import] = ACTIONS(834), + [anon_sym_enum] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_abstract] = ACTIONS(834), + [anon_sym_strictfp] = ACTIONS(834), + [anon_sym_native] = ACTIONS(834), + [anon_sym_transient] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_sealed] = ACTIONS(834), + [anon_sym_non_DASHsealed] = ACTIONS(832), + [anon_sym_record] = ACTIONS(834), + [anon_sym_ATinterface] = ACTIONS(832), + [anon_sym_interface] = ACTIONS(834), + [anon_sym_byte] = ACTIONS(834), + [anon_sym_short] = ACTIONS(834), + [anon_sym_int] = ACTIONS(834), + [anon_sym_long] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), + [anon_sym_float] = ACTIONS(834), + [anon_sym_double] = ACTIONS(834), + [sym_boolean_type] = ACTIONS(834), + [sym_void_type] = ACTIONS(834), + [sym_this] = ACTIONS(834), + [sym_super] = ACTIONS(834), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [299] = { + [ts_builtin_sym_end] = ACTIONS(836), + [sym_identifier] = ACTIONS(838), + [sym_decimal_integer_literal] = ACTIONS(838), + [sym_hex_integer_literal] = ACTIONS(838), + [sym_octal_integer_literal] = ACTIONS(836), + [sym_binary_integer_literal] = ACTIONS(836), + [sym_decimal_floating_point_literal] = ACTIONS(836), + [sym_hex_floating_point_literal] = ACTIONS(838), + [sym_true] = ACTIONS(838), + [sym_false] = ACTIONS(838), + [sym_character_literal] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(836), + [sym_null_literal] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_final] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(836), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_new] = ACTIONS(838), + [anon_sym_class] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_case] = ACTIONS(838), + [anon_sym_default] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_assert] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_synchronized] = ACTIONS(838), + [anon_sym_throw] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_else] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [anon_sym_open] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_static] = ACTIONS(838), + [anon_sym_package] = ACTIONS(838), + [anon_sym_import] = ACTIONS(838), + [anon_sym_enum] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_abstract] = ACTIONS(838), + [anon_sym_strictfp] = ACTIONS(838), + [anon_sym_native] = ACTIONS(838), + [anon_sym_transient] = ACTIONS(838), + [anon_sym_volatile] = ACTIONS(838), + [anon_sym_sealed] = ACTIONS(838), + [anon_sym_non_DASHsealed] = ACTIONS(836), + [anon_sym_record] = ACTIONS(838), + [anon_sym_ATinterface] = ACTIONS(836), + [anon_sym_interface] = ACTIONS(838), + [anon_sym_byte] = ACTIONS(838), + [anon_sym_short] = ACTIONS(838), + [anon_sym_int] = ACTIONS(838), + [anon_sym_long] = ACTIONS(838), + [anon_sym_char] = ACTIONS(838), + [anon_sym_float] = ACTIONS(838), + [anon_sym_double] = ACTIONS(838), + [sym_boolean_type] = ACTIONS(838), + [sym_void_type] = ACTIONS(838), + [sym_this] = ACTIONS(838), + [sym_super] = ACTIONS(838), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [313] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(565), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [300] = { + [ts_builtin_sym_end] = ACTIONS(840), + [sym_identifier] = ACTIONS(842), + [sym_decimal_integer_literal] = ACTIONS(842), + [sym_hex_integer_literal] = ACTIONS(842), + [sym_octal_integer_literal] = ACTIONS(840), + [sym_binary_integer_literal] = ACTIONS(840), + [sym_decimal_floating_point_literal] = ACTIONS(840), + [sym_hex_floating_point_literal] = ACTIONS(842), + [sym_true] = ACTIONS(842), + [sym_false] = ACTIONS(842), + [sym_character_literal] = ACTIONS(840), + [anon_sym_DQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(840), + [sym_null_literal] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_final] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(840), + [anon_sym_DASH_DASH] = ACTIONS(840), + [anon_sym_new] = ACTIONS(842), + [anon_sym_class] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_case] = ACTIONS(842), + [anon_sym_default] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_assert] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_yield] = ACTIONS(842), + [anon_sym_synchronized] = ACTIONS(842), + [anon_sym_throw] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_else] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(842), + [anon_sym_open] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_static] = ACTIONS(842), + [anon_sym_package] = ACTIONS(842), + [anon_sym_import] = ACTIONS(842), + [anon_sym_enum] = ACTIONS(842), + [anon_sym_public] = ACTIONS(842), + [anon_sym_protected] = ACTIONS(842), + [anon_sym_private] = ACTIONS(842), + [anon_sym_abstract] = ACTIONS(842), + [anon_sym_strictfp] = ACTIONS(842), + [anon_sym_native] = ACTIONS(842), + [anon_sym_transient] = ACTIONS(842), + [anon_sym_volatile] = ACTIONS(842), + [anon_sym_sealed] = ACTIONS(842), + [anon_sym_non_DASHsealed] = ACTIONS(840), + [anon_sym_record] = ACTIONS(842), + [anon_sym_ATinterface] = ACTIONS(840), + [anon_sym_interface] = ACTIONS(842), + [anon_sym_byte] = ACTIONS(842), + [anon_sym_short] = ACTIONS(842), + [anon_sym_int] = ACTIONS(842), + [anon_sym_long] = ACTIONS(842), + [anon_sym_char] = ACTIONS(842), + [anon_sym_float] = ACTIONS(842), + [anon_sym_double] = ACTIONS(842), + [sym_boolean_type] = ACTIONS(842), + [sym_void_type] = ACTIONS(842), + [sym_this] = ACTIONS(842), + [sym_super] = ACTIONS(842), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [314] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [301] = { + [ts_builtin_sym_end] = ACTIONS(844), + [sym_identifier] = ACTIONS(846), + [sym_decimal_integer_literal] = ACTIONS(846), + [sym_hex_integer_literal] = ACTIONS(846), + [sym_octal_integer_literal] = ACTIONS(844), + [sym_binary_integer_literal] = ACTIONS(844), + [sym_decimal_floating_point_literal] = ACTIONS(844), + [sym_hex_floating_point_literal] = ACTIONS(846), + [sym_true] = ACTIONS(846), + [sym_false] = ACTIONS(846), + [sym_character_literal] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [sym_null_literal] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_final] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_new] = ACTIONS(846), + [anon_sym_class] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_case] = ACTIONS(846), + [anon_sym_default] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_assert] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_synchronized] = ACTIONS(846), + [anon_sym_throw] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_open] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_static] = ACTIONS(846), + [anon_sym_package] = ACTIONS(846), + [anon_sym_import] = ACTIONS(846), + [anon_sym_enum] = ACTIONS(846), + [anon_sym_public] = ACTIONS(846), + [anon_sym_protected] = ACTIONS(846), + [anon_sym_private] = ACTIONS(846), + [anon_sym_abstract] = ACTIONS(846), + [anon_sym_strictfp] = ACTIONS(846), + [anon_sym_native] = ACTIONS(846), + [anon_sym_transient] = ACTIONS(846), + [anon_sym_volatile] = ACTIONS(846), + [anon_sym_sealed] = ACTIONS(846), + [anon_sym_non_DASHsealed] = ACTIONS(844), + [anon_sym_record] = ACTIONS(846), + [anon_sym_ATinterface] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(846), + [anon_sym_byte] = ACTIONS(846), + [anon_sym_short] = ACTIONS(846), + [anon_sym_int] = ACTIONS(846), + [anon_sym_long] = ACTIONS(846), + [anon_sym_char] = ACTIONS(846), + [anon_sym_float] = ACTIONS(846), + [anon_sym_double] = ACTIONS(846), + [sym_boolean_type] = ACTIONS(846), + [sym_void_type] = ACTIONS(846), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(846), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(848), + [sym_identifier] = ACTIONS(850), + [sym_decimal_integer_literal] = ACTIONS(850), + [sym_hex_integer_literal] = ACTIONS(850), + [sym_octal_integer_literal] = ACTIONS(848), + [sym_binary_integer_literal] = ACTIONS(848), + [sym_decimal_floating_point_literal] = ACTIONS(848), + [sym_hex_floating_point_literal] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [sym_false] = ACTIONS(850), + [sym_character_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(848), + [sym_null_literal] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_final] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_new] = ACTIONS(850), + [anon_sym_class] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_assert] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_yield] = ACTIONS(850), + [anon_sym_synchronized] = ACTIONS(850), + [anon_sym_throw] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_else] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_open] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_static] = ACTIONS(850), + [anon_sym_package] = ACTIONS(850), + [anon_sym_import] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(850), + [anon_sym_strictfp] = ACTIONS(850), + [anon_sym_native] = ACTIONS(850), + [anon_sym_transient] = ACTIONS(850), + [anon_sym_volatile] = ACTIONS(850), + [anon_sym_sealed] = ACTIONS(850), + [anon_sym_non_DASHsealed] = ACTIONS(848), + [anon_sym_record] = ACTIONS(850), + [anon_sym_ATinterface] = ACTIONS(848), + [anon_sym_interface] = ACTIONS(850), + [anon_sym_byte] = ACTIONS(850), + [anon_sym_short] = ACTIONS(850), + [anon_sym_int] = ACTIONS(850), + [anon_sym_long] = ACTIONS(850), + [anon_sym_char] = ACTIONS(850), + [anon_sym_float] = ACTIONS(850), + [anon_sym_double] = ACTIONS(850), + [sym_boolean_type] = ACTIONS(850), + [sym_void_type] = ACTIONS(850), + [sym_this] = ACTIONS(850), + [sym_super] = ACTIONS(850), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [315] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [303] = { + [ts_builtin_sym_end] = ACTIONS(852), + [sym_identifier] = ACTIONS(854), + [sym_decimal_integer_literal] = ACTIONS(854), + [sym_hex_integer_literal] = ACTIONS(854), + [sym_octal_integer_literal] = ACTIONS(852), + [sym_binary_integer_literal] = ACTIONS(852), + [sym_decimal_floating_point_literal] = ACTIONS(852), + [sym_hex_floating_point_literal] = ACTIONS(854), + [sym_true] = ACTIONS(854), + [sym_false] = ACTIONS(854), + [sym_character_literal] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(852), + [sym_null_literal] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_final] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym_new] = ACTIONS(854), + [anon_sym_class] = ACTIONS(854), + [anon_sym_switch] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_case] = ACTIONS(854), + [anon_sym_default] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_assert] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_synchronized] = ACTIONS(854), + [anon_sym_throw] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_open] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_static] = ACTIONS(854), + [anon_sym_package] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_enum] = ACTIONS(854), + [anon_sym_public] = ACTIONS(854), + [anon_sym_protected] = ACTIONS(854), + [anon_sym_private] = ACTIONS(854), + [anon_sym_abstract] = ACTIONS(854), + [anon_sym_strictfp] = ACTIONS(854), + [anon_sym_native] = ACTIONS(854), + [anon_sym_transient] = ACTIONS(854), + [anon_sym_volatile] = ACTIONS(854), + [anon_sym_sealed] = ACTIONS(854), + [anon_sym_non_DASHsealed] = ACTIONS(852), + [anon_sym_record] = ACTIONS(854), + [anon_sym_ATinterface] = ACTIONS(852), + [anon_sym_interface] = ACTIONS(854), + [anon_sym_byte] = ACTIONS(854), + [anon_sym_short] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_long] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_double] = ACTIONS(854), + [sym_boolean_type] = ACTIONS(854), + [sym_void_type] = ACTIONS(854), + [sym_this] = ACTIONS(854), + [sym_super] = ACTIONS(854), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [316] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(589), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [304] = { + [ts_builtin_sym_end] = ACTIONS(856), + [sym_identifier] = ACTIONS(858), + [sym_decimal_integer_literal] = ACTIONS(858), + [sym_hex_integer_literal] = ACTIONS(858), + [sym_octal_integer_literal] = ACTIONS(856), + [sym_binary_integer_literal] = ACTIONS(856), + [sym_decimal_floating_point_literal] = ACTIONS(856), + [sym_hex_floating_point_literal] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_character_literal] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [sym_null_literal] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_final] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_new] = ACTIONS(858), + [anon_sym_class] = ACTIONS(858), + [anon_sym_switch] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(856), + [anon_sym_case] = ACTIONS(858), + [anon_sym_default] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_assert] = ACTIONS(858), + [anon_sym_do] = ACTIONS(858), + [anon_sym_while] = ACTIONS(858), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(858), + [anon_sym_return] = ACTIONS(858), + [anon_sym_yield] = ACTIONS(858), + [anon_sym_synchronized] = ACTIONS(858), + [anon_sym_throw] = ACTIONS(858), + [anon_sym_try] = ACTIONS(858), + [anon_sym_if] = ACTIONS(858), + [anon_sym_else] = ACTIONS(858), + [anon_sym_for] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(858), + [anon_sym_open] = ACTIONS(858), + [anon_sym_module] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_package] = ACTIONS(858), + [anon_sym_import] = ACTIONS(858), + [anon_sym_enum] = ACTIONS(858), + [anon_sym_public] = ACTIONS(858), + [anon_sym_protected] = ACTIONS(858), + [anon_sym_private] = ACTIONS(858), + [anon_sym_abstract] = ACTIONS(858), + [anon_sym_strictfp] = ACTIONS(858), + [anon_sym_native] = ACTIONS(858), + [anon_sym_transient] = ACTIONS(858), + [anon_sym_volatile] = ACTIONS(858), + [anon_sym_sealed] = ACTIONS(858), + [anon_sym_non_DASHsealed] = ACTIONS(856), + [anon_sym_record] = ACTIONS(858), + [anon_sym_ATinterface] = ACTIONS(856), + [anon_sym_interface] = ACTIONS(858), + [anon_sym_byte] = ACTIONS(858), + [anon_sym_short] = ACTIONS(858), + [anon_sym_int] = ACTIONS(858), + [anon_sym_long] = ACTIONS(858), + [anon_sym_char] = ACTIONS(858), + [anon_sym_float] = ACTIONS(858), + [anon_sym_double] = ACTIONS(858), + [sym_boolean_type] = ACTIONS(858), + [sym_void_type] = ACTIONS(858), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [317] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(564), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [305] = { + [ts_builtin_sym_end] = ACTIONS(860), + [sym_identifier] = ACTIONS(862), + [sym_decimal_integer_literal] = ACTIONS(862), + [sym_hex_integer_literal] = ACTIONS(862), + [sym_octal_integer_literal] = ACTIONS(860), + [sym_binary_integer_literal] = ACTIONS(860), + [sym_decimal_floating_point_literal] = ACTIONS(860), + [sym_hex_floating_point_literal] = ACTIONS(862), + [sym_true] = ACTIONS(862), + [sym_false] = ACTIONS(862), + [sym_character_literal] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(860), + [sym_null_literal] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(860), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_final] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(860), + [anon_sym_PLUS_PLUS] = ACTIONS(860), + [anon_sym_DASH_DASH] = ACTIONS(860), + [anon_sym_new] = ACTIONS(862), + [anon_sym_class] = ACTIONS(862), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_case] = ACTIONS(862), + [anon_sym_default] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(862), + [anon_sym_do] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_return] = ACTIONS(862), + [anon_sym_yield] = ACTIONS(862), + [anon_sym_synchronized] = ACTIONS(862), + [anon_sym_throw] = ACTIONS(862), + [anon_sym_try] = ACTIONS(862), + [anon_sym_if] = ACTIONS(862), + [anon_sym_else] = ACTIONS(862), + [anon_sym_for] = ACTIONS(862), + [anon_sym_AT] = ACTIONS(862), + [anon_sym_open] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_package] = ACTIONS(862), + [anon_sym_import] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_abstract] = ACTIONS(862), + [anon_sym_strictfp] = ACTIONS(862), + [anon_sym_native] = ACTIONS(862), + [anon_sym_transient] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_sealed] = ACTIONS(862), + [anon_sym_non_DASHsealed] = ACTIONS(860), + [anon_sym_record] = ACTIONS(862), + [anon_sym_ATinterface] = ACTIONS(860), + [anon_sym_interface] = ACTIONS(862), + [anon_sym_byte] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [anon_sym_int] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_float] = ACTIONS(862), + [anon_sym_double] = ACTIONS(862), + [sym_boolean_type] = ACTIONS(862), + [sym_void_type] = ACTIONS(862), + [sym_this] = ACTIONS(862), + [sym_super] = ACTIONS(862), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [318] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(620), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [306] = { + [ts_builtin_sym_end] = ACTIONS(864), + [sym_identifier] = ACTIONS(866), + [sym_decimal_integer_literal] = ACTIONS(866), + [sym_hex_integer_literal] = ACTIONS(866), + [sym_octal_integer_literal] = ACTIONS(864), + [sym_binary_integer_literal] = ACTIONS(864), + [sym_decimal_floating_point_literal] = ACTIONS(864), + [sym_hex_floating_point_literal] = ACTIONS(866), + [sym_true] = ACTIONS(866), + [sym_false] = ACTIONS(866), + [sym_character_literal] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(864), + [sym_null_literal] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_final] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_TILDE] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_new] = ACTIONS(866), + [anon_sym_class] = ACTIONS(866), + [anon_sym_switch] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_case] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), + [anon_sym_assert] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(866), + [anon_sym_synchronized] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_try] = ACTIONS(866), + [anon_sym_if] = ACTIONS(866), + [anon_sym_else] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_AT] = ACTIONS(866), + [anon_sym_open] = ACTIONS(866), + [anon_sym_module] = ACTIONS(866), + [anon_sym_static] = ACTIONS(866), + [anon_sym_package] = ACTIONS(866), + [anon_sym_import] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_public] = ACTIONS(866), + [anon_sym_protected] = ACTIONS(866), + [anon_sym_private] = ACTIONS(866), + [anon_sym_abstract] = ACTIONS(866), + [anon_sym_strictfp] = ACTIONS(866), + [anon_sym_native] = ACTIONS(866), + [anon_sym_transient] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_sealed] = ACTIONS(866), + [anon_sym_non_DASHsealed] = ACTIONS(864), + [anon_sym_record] = ACTIONS(866), + [anon_sym_ATinterface] = ACTIONS(864), + [anon_sym_interface] = ACTIONS(866), + [anon_sym_byte] = ACTIONS(866), + [anon_sym_short] = ACTIONS(866), + [anon_sym_int] = ACTIONS(866), + [anon_sym_long] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_float] = ACTIONS(866), + [anon_sym_double] = ACTIONS(866), + [sym_boolean_type] = ACTIONS(866), + [sym_void_type] = ACTIONS(866), + [sym_this] = ACTIONS(866), + [sym_super] = ACTIONS(866), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [319] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(563), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [307] = { + [ts_builtin_sym_end] = ACTIONS(868), + [sym_identifier] = ACTIONS(870), + [sym_decimal_integer_literal] = ACTIONS(870), + [sym_hex_integer_literal] = ACTIONS(870), + [sym_octal_integer_literal] = ACTIONS(868), + [sym_binary_integer_literal] = ACTIONS(868), + [sym_decimal_floating_point_literal] = ACTIONS(868), + [sym_hex_floating_point_literal] = ACTIONS(870), + [sym_true] = ACTIONS(870), + [sym_false] = ACTIONS(870), + [sym_character_literal] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(868), + [sym_null_literal] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_final] = ACTIONS(870), + [anon_sym_BANG] = ACTIONS(868), + [anon_sym_TILDE] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_DASH_DASH] = ACTIONS(868), + [anon_sym_new] = ACTIONS(870), + [anon_sym_class] = ACTIONS(870), + [anon_sym_switch] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_case] = ACTIONS(870), + [anon_sym_default] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(870), + [anon_sym_do] = ACTIONS(870), + [anon_sym_while] = ACTIONS(870), + [anon_sym_break] = ACTIONS(870), + [anon_sym_continue] = ACTIONS(870), + [anon_sym_return] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(870), + [anon_sym_synchronized] = ACTIONS(870), + [anon_sym_throw] = ACTIONS(870), + [anon_sym_try] = ACTIONS(870), + [anon_sym_if] = ACTIONS(870), + [anon_sym_else] = ACTIONS(870), + [anon_sym_for] = ACTIONS(870), + [anon_sym_AT] = ACTIONS(870), + [anon_sym_open] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_static] = ACTIONS(870), + [anon_sym_package] = ACTIONS(870), + [anon_sym_import] = ACTIONS(870), + [anon_sym_enum] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_abstract] = ACTIONS(870), + [anon_sym_strictfp] = ACTIONS(870), + [anon_sym_native] = ACTIONS(870), + [anon_sym_transient] = ACTIONS(870), + [anon_sym_volatile] = ACTIONS(870), + [anon_sym_sealed] = ACTIONS(870), + [anon_sym_non_DASHsealed] = ACTIONS(868), + [anon_sym_record] = ACTIONS(870), + [anon_sym_ATinterface] = ACTIONS(868), + [anon_sym_interface] = ACTIONS(870), + [anon_sym_byte] = ACTIONS(870), + [anon_sym_short] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_long] = ACTIONS(870), + [anon_sym_char] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_double] = ACTIONS(870), + [sym_boolean_type] = ACTIONS(870), + [sym_void_type] = ACTIONS(870), + [sym_this] = ACTIONS(870), + [sym_super] = ACTIONS(870), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [320] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [308] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_identifier] = ACTIONS(874), + [sym_decimal_integer_literal] = ACTIONS(874), + [sym_hex_integer_literal] = ACTIONS(874), + [sym_octal_integer_literal] = ACTIONS(872), + [sym_binary_integer_literal] = ACTIONS(872), + [sym_decimal_floating_point_literal] = ACTIONS(872), + [sym_hex_floating_point_literal] = ACTIONS(874), + [sym_true] = ACTIONS(874), + [sym_false] = ACTIONS(874), + [sym_character_literal] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(872), + [sym_null_literal] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_final] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_TILDE] = ACTIONS(872), + [anon_sym_PLUS_PLUS] = ACTIONS(872), + [anon_sym_DASH_DASH] = ACTIONS(872), + [anon_sym_new] = ACTIONS(874), + [anon_sym_class] = ACTIONS(874), + [anon_sym_switch] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_case] = ACTIONS(874), + [anon_sym_default] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_assert] = ACTIONS(874), + [anon_sym_do] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(874), + [anon_sym_synchronized] = ACTIONS(874), + [anon_sym_throw] = ACTIONS(874), + [anon_sym_try] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_for] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_open] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_package] = ACTIONS(874), + [anon_sym_import] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_abstract] = ACTIONS(874), + [anon_sym_strictfp] = ACTIONS(874), + [anon_sym_native] = ACTIONS(874), + [anon_sym_transient] = ACTIONS(874), + [anon_sym_volatile] = ACTIONS(874), + [anon_sym_sealed] = ACTIONS(874), + [anon_sym_non_DASHsealed] = ACTIONS(872), + [anon_sym_record] = ACTIONS(874), + [anon_sym_ATinterface] = ACTIONS(872), + [anon_sym_interface] = ACTIONS(874), + [anon_sym_byte] = ACTIONS(874), + [anon_sym_short] = ACTIONS(874), + [anon_sym_int] = ACTIONS(874), + [anon_sym_long] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_float] = ACTIONS(874), + [anon_sym_double] = ACTIONS(874), + [sym_boolean_type] = ACTIONS(874), + [sym_void_type] = ACTIONS(874), + [sym_this] = ACTIONS(874), + [sym_super] = ACTIONS(874), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [321] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(601), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [309] = { + [ts_builtin_sym_end] = ACTIONS(876), + [sym_identifier] = ACTIONS(878), + [sym_decimal_integer_literal] = ACTIONS(878), + [sym_hex_integer_literal] = ACTIONS(878), + [sym_octal_integer_literal] = ACTIONS(876), + [sym_binary_integer_literal] = ACTIONS(876), + [sym_decimal_floating_point_literal] = ACTIONS(876), + [sym_hex_floating_point_literal] = ACTIONS(878), + [sym_true] = ACTIONS(878), + [sym_false] = ACTIONS(878), + [sym_character_literal] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(876), + [sym_null_literal] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_final] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(876), + [anon_sym_TILDE] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(878), + [anon_sym_switch] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_case] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_assert] = ACTIONS(878), + [anon_sym_do] = ACTIONS(878), + [anon_sym_while] = ACTIONS(878), + [anon_sym_break] = ACTIONS(878), + [anon_sym_continue] = ACTIONS(878), + [anon_sym_return] = ACTIONS(878), + [anon_sym_yield] = ACTIONS(878), + [anon_sym_synchronized] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(878), + [anon_sym_try] = ACTIONS(878), + [anon_sym_if] = ACTIONS(878), + [anon_sym_else] = ACTIONS(878), + [anon_sym_for] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(878), + [anon_sym_open] = ACTIONS(878), + [anon_sym_module] = ACTIONS(878), + [anon_sym_static] = ACTIONS(878), + [anon_sym_package] = ACTIONS(878), + [anon_sym_import] = ACTIONS(878), + [anon_sym_enum] = ACTIONS(878), + [anon_sym_public] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(878), + [anon_sym_strictfp] = ACTIONS(878), + [anon_sym_native] = ACTIONS(878), + [anon_sym_transient] = ACTIONS(878), + [anon_sym_volatile] = ACTIONS(878), + [anon_sym_sealed] = ACTIONS(878), + [anon_sym_non_DASHsealed] = ACTIONS(876), + [anon_sym_record] = ACTIONS(878), + [anon_sym_ATinterface] = ACTIONS(876), + [anon_sym_interface] = ACTIONS(878), + [anon_sym_byte] = ACTIONS(878), + [anon_sym_short] = ACTIONS(878), + [anon_sym_int] = ACTIONS(878), + [anon_sym_long] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_float] = ACTIONS(878), + [anon_sym_double] = ACTIONS(878), + [sym_boolean_type] = ACTIONS(878), + [sym_void_type] = ACTIONS(878), + [sym_this] = ACTIONS(878), + [sym_super] = ACTIONS(878), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(860), - [sym_decimal_integer_literal] = ACTIONS(860), - [sym_hex_integer_literal] = ACTIONS(860), - [sym_octal_integer_literal] = ACTIONS(862), - [sym_binary_integer_literal] = ACTIONS(862), - [sym_decimal_floating_point_literal] = ACTIONS(862), - [sym_hex_floating_point_literal] = ACTIONS(860), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_character_literal] = ACTIONS(862), - [sym_string_literal] = ACTIONS(860), - [sym_text_block] = ACTIONS(862), - [sym_null_literal] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_final] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_DASH_DASH] = ACTIONS(862), - [anon_sym_new] = ACTIONS(860), - [anon_sym_class] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_case] = ACTIONS(860), - [anon_sym_default] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_assert] = ACTIONS(860), - [anon_sym_do] = ACTIONS(860), - [anon_sym_while] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(860), - [anon_sym_synchronized] = ACTIONS(860), - [anon_sym_throw] = ACTIONS(860), - [anon_sym_try] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_open] = ACTIONS(860), - [anon_sym_module] = ACTIONS(860), - [anon_sym_static] = ACTIONS(860), - [anon_sym_package] = ACTIONS(860), - [anon_sym_import] = ACTIONS(860), - [anon_sym_enum] = ACTIONS(860), - [anon_sym_public] = ACTIONS(860), - [anon_sym_protected] = ACTIONS(860), - [anon_sym_private] = ACTIONS(860), - [anon_sym_abstract] = ACTIONS(860), - [anon_sym_strictfp] = ACTIONS(860), - [anon_sym_native] = ACTIONS(860), - [anon_sym_transient] = ACTIONS(860), - [anon_sym_volatile] = ACTIONS(860), - [anon_sym_sealed] = ACTIONS(860), - [anon_sym_non_DASHsealed] = ACTIONS(862), - [anon_sym_record] = ACTIONS(860), - [anon_sym_ATinterface] = ACTIONS(862), - [anon_sym_interface] = ACTIONS(860), - [anon_sym_byte] = ACTIONS(860), - [anon_sym_short] = ACTIONS(860), - [anon_sym_int] = ACTIONS(860), - [anon_sym_long] = ACTIONS(860), - [anon_sym_char] = ACTIONS(860), - [anon_sym_float] = ACTIONS(860), - [anon_sym_double] = ACTIONS(860), - [sym_boolean_type] = ACTIONS(860), - [sym_void_type] = ACTIONS(860), - [sym_this] = ACTIONS(860), - [sym_super] = ACTIONS(860), + [310] = { + [ts_builtin_sym_end] = ACTIONS(880), + [sym_identifier] = ACTIONS(882), + [sym_decimal_integer_literal] = ACTIONS(882), + [sym_hex_integer_literal] = ACTIONS(882), + [sym_octal_integer_literal] = ACTIONS(880), + [sym_binary_integer_literal] = ACTIONS(880), + [sym_decimal_floating_point_literal] = ACTIONS(880), + [sym_hex_floating_point_literal] = ACTIONS(882), + [sym_true] = ACTIONS(882), + [sym_false] = ACTIONS(882), + [sym_character_literal] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(880), + [sym_null_literal] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_final] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_new] = ACTIONS(882), + [anon_sym_class] = ACTIONS(882), + [anon_sym_switch] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_case] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_assert] = ACTIONS(882), + [anon_sym_do] = ACTIONS(882), + [anon_sym_while] = ACTIONS(882), + [anon_sym_break] = ACTIONS(882), + [anon_sym_continue] = ACTIONS(882), + [anon_sym_return] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(882), + [anon_sym_synchronized] = ACTIONS(882), + [anon_sym_throw] = ACTIONS(882), + [anon_sym_try] = ACTIONS(882), + [anon_sym_if] = ACTIONS(882), + [anon_sym_else] = ACTIONS(882), + [anon_sym_for] = ACTIONS(882), + [anon_sym_AT] = ACTIONS(882), + [anon_sym_open] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_static] = ACTIONS(882), + [anon_sym_package] = ACTIONS(882), + [anon_sym_import] = ACTIONS(882), + [anon_sym_enum] = ACTIONS(882), + [anon_sym_public] = ACTIONS(882), + [anon_sym_protected] = ACTIONS(882), + [anon_sym_private] = ACTIONS(882), + [anon_sym_abstract] = ACTIONS(882), + [anon_sym_strictfp] = ACTIONS(882), + [anon_sym_native] = ACTIONS(882), + [anon_sym_transient] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_sealed] = ACTIONS(882), + [anon_sym_non_DASHsealed] = ACTIONS(880), + [anon_sym_record] = ACTIONS(882), + [anon_sym_ATinterface] = ACTIONS(880), + [anon_sym_interface] = ACTIONS(882), + [anon_sym_byte] = ACTIONS(882), + [anon_sym_short] = ACTIONS(882), + [anon_sym_int] = ACTIONS(882), + [anon_sym_long] = ACTIONS(882), + [anon_sym_char] = ACTIONS(882), + [anon_sym_float] = ACTIONS(882), + [anon_sym_double] = ACTIONS(882), + [sym_boolean_type] = ACTIONS(882), + [sym_void_type] = ACTIONS(882), + [sym_this] = ACTIONS(882), + [sym_super] = ACTIONS(882), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [323] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(547), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [311] = { + [ts_builtin_sym_end] = ACTIONS(884), + [sym_identifier] = ACTIONS(886), + [sym_decimal_integer_literal] = ACTIONS(886), + [sym_hex_integer_literal] = ACTIONS(886), + [sym_octal_integer_literal] = ACTIONS(884), + [sym_binary_integer_literal] = ACTIONS(884), + [sym_decimal_floating_point_literal] = ACTIONS(884), + [sym_hex_floating_point_literal] = ACTIONS(886), + [sym_true] = ACTIONS(886), + [sym_false] = ACTIONS(886), + [sym_character_literal] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(884), + [sym_null_literal] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_final] = ACTIONS(886), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_new] = ACTIONS(886), + [anon_sym_class] = ACTIONS(886), + [anon_sym_switch] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_case] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_assert] = ACTIONS(886), + [anon_sym_do] = ACTIONS(886), + [anon_sym_while] = ACTIONS(886), + [anon_sym_break] = ACTIONS(886), + [anon_sym_continue] = ACTIONS(886), + [anon_sym_return] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_synchronized] = ACTIONS(886), + [anon_sym_throw] = ACTIONS(886), + [anon_sym_try] = ACTIONS(886), + [anon_sym_if] = ACTIONS(886), + [anon_sym_else] = ACTIONS(886), + [anon_sym_for] = ACTIONS(886), + [anon_sym_AT] = ACTIONS(886), + [anon_sym_open] = ACTIONS(886), + [anon_sym_module] = ACTIONS(886), + [anon_sym_static] = ACTIONS(886), + [anon_sym_package] = ACTIONS(886), + [anon_sym_import] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(886), + [anon_sym_public] = ACTIONS(886), + [anon_sym_protected] = ACTIONS(886), + [anon_sym_private] = ACTIONS(886), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_strictfp] = ACTIONS(886), + [anon_sym_native] = ACTIONS(886), + [anon_sym_transient] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_sealed] = ACTIONS(886), + [anon_sym_non_DASHsealed] = ACTIONS(884), + [anon_sym_record] = ACTIONS(886), + [anon_sym_ATinterface] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_byte] = ACTIONS(886), + [anon_sym_short] = ACTIONS(886), + [anon_sym_int] = ACTIONS(886), + [anon_sym_long] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_float] = ACTIONS(886), + [anon_sym_double] = ACTIONS(886), + [sym_boolean_type] = ACTIONS(886), + [sym_void_type] = ACTIONS(886), + [sym_this] = ACTIONS(886), + [sym_super] = ACTIONS(886), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [324] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(502), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [312] = { + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [sym_decimal_integer_literal] = ACTIONS(890), + [sym_hex_integer_literal] = ACTIONS(890), + [sym_octal_integer_literal] = ACTIONS(888), + [sym_binary_integer_literal] = ACTIONS(888), + [sym_decimal_floating_point_literal] = ACTIONS(888), + [sym_hex_floating_point_literal] = ACTIONS(890), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_character_literal] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(888), + [sym_null_literal] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_final] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_assert] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_synchronized] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(890), + [anon_sym_open] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_static] = ACTIONS(890), + [anon_sym_package] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_strictfp] = ACTIONS(890), + [anon_sym_native] = ACTIONS(890), + [anon_sym_transient] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_sealed] = ACTIONS(890), + [anon_sym_non_DASHsealed] = ACTIONS(888), + [anon_sym_record] = ACTIONS(890), + [anon_sym_ATinterface] = ACTIONS(888), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_byte] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [anon_sym_int] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_char] = ACTIONS(890), + [anon_sym_float] = ACTIONS(890), + [anon_sym_double] = ACTIONS(890), + [sym_boolean_type] = ACTIONS(890), + [sym_void_type] = ACTIONS(890), + [sym_this] = ACTIONS(890), + [sym_super] = ACTIONS(890), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [325] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(534), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [313] = { + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(894), + [sym_decimal_integer_literal] = ACTIONS(894), + [sym_hex_integer_literal] = ACTIONS(894), + [sym_octal_integer_literal] = ACTIONS(892), + [sym_binary_integer_literal] = ACTIONS(892), + [sym_decimal_floating_point_literal] = ACTIONS(892), + [sym_hex_floating_point_literal] = ACTIONS(894), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_character_literal] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(892), + [sym_null_literal] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_final] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_new] = ACTIONS(894), + [anon_sym_class] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_assert] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_yield] = ACTIONS(894), + [anon_sym_synchronized] = ACTIONS(894), + [anon_sym_throw] = ACTIONS(894), + [anon_sym_try] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_AT] = ACTIONS(894), + [anon_sym_open] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_package] = ACTIONS(894), + [anon_sym_import] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_abstract] = ACTIONS(894), + [anon_sym_strictfp] = ACTIONS(894), + [anon_sym_native] = ACTIONS(894), + [anon_sym_transient] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_sealed] = ACTIONS(894), + [anon_sym_non_DASHsealed] = ACTIONS(892), + [anon_sym_record] = ACTIONS(894), + [anon_sym_ATinterface] = ACTIONS(892), + [anon_sym_interface] = ACTIONS(894), + [anon_sym_byte] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [anon_sym_int] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_float] = ACTIONS(894), + [anon_sym_double] = ACTIONS(894), + [sym_boolean_type] = ACTIONS(894), + [sym_void_type] = ACTIONS(894), + [sym_this] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(898), + [sym_decimal_integer_literal] = ACTIONS(898), + [sym_hex_integer_literal] = ACTIONS(898), + [sym_octal_integer_literal] = ACTIONS(896), + [sym_binary_integer_literal] = ACTIONS(896), + [sym_decimal_floating_point_literal] = ACTIONS(896), + [sym_hex_floating_point_literal] = ACTIONS(898), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_character_literal] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(896), + [sym_null_literal] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_final] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_new] = ACTIONS(898), + [anon_sym_class] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_yield] = ACTIONS(898), + [anon_sym_synchronized] = ACTIONS(898), + [anon_sym_throw] = ACTIONS(898), + [anon_sym_try] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_AT] = ACTIONS(898), + [anon_sym_open] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_static] = ACTIONS(898), + [anon_sym_package] = ACTIONS(898), + [anon_sym_import] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_abstract] = ACTIONS(898), + [anon_sym_strictfp] = ACTIONS(898), + [anon_sym_native] = ACTIONS(898), + [anon_sym_transient] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_sealed] = ACTIONS(898), + [anon_sym_non_DASHsealed] = ACTIONS(896), + [anon_sym_record] = ACTIONS(898), + [anon_sym_ATinterface] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_byte] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [anon_sym_int] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_char] = ACTIONS(898), + [anon_sym_float] = ACTIONS(898), + [anon_sym_double] = ACTIONS(898), + [sym_boolean_type] = ACTIONS(898), + [sym_void_type] = ACTIONS(898), + [sym_this] = ACTIONS(898), + [sym_super] = ACTIONS(898), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [326] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(529), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [315] = { + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(902), + [sym_decimal_integer_literal] = ACTIONS(902), + [sym_hex_integer_literal] = ACTIONS(902), + [sym_octal_integer_literal] = ACTIONS(900), + [sym_binary_integer_literal] = ACTIONS(900), + [sym_decimal_floating_point_literal] = ACTIONS(900), + [sym_hex_floating_point_literal] = ACTIONS(902), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_character_literal] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(900), + [sym_null_literal] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_final] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_new] = ACTIONS(902), + [anon_sym_class] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_assert] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_yield] = ACTIONS(902), + [anon_sym_synchronized] = ACTIONS(902), + [anon_sym_throw] = ACTIONS(902), + [anon_sym_try] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_AT] = ACTIONS(902), + [anon_sym_open] = ACTIONS(902), + [anon_sym_module] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_package] = ACTIONS(902), + [anon_sym_import] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_public] = ACTIONS(902), + [anon_sym_protected] = ACTIONS(902), + [anon_sym_private] = ACTIONS(902), + [anon_sym_abstract] = ACTIONS(902), + [anon_sym_strictfp] = ACTIONS(902), + [anon_sym_native] = ACTIONS(902), + [anon_sym_transient] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_sealed] = ACTIONS(902), + [anon_sym_non_DASHsealed] = ACTIONS(900), + [anon_sym_record] = ACTIONS(902), + [anon_sym_ATinterface] = ACTIONS(900), + [anon_sym_interface] = ACTIONS(902), + [anon_sym_byte] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [anon_sym_int] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_float] = ACTIONS(902), + [anon_sym_double] = ACTIONS(902), + [sym_boolean_type] = ACTIONS(902), + [sym_void_type] = ACTIONS(902), + [sym_this] = ACTIONS(902), + [sym_super] = ACTIONS(902), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [327] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(636), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [316] = { + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(906), + [sym_decimal_integer_literal] = ACTIONS(906), + [sym_hex_integer_literal] = ACTIONS(906), + [sym_octal_integer_literal] = ACTIONS(904), + [sym_binary_integer_literal] = ACTIONS(904), + [sym_decimal_floating_point_literal] = ACTIONS(904), + [sym_hex_floating_point_literal] = ACTIONS(906), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_character_literal] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(904), + [sym_null_literal] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_final] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_new] = ACTIONS(906), + [anon_sym_class] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_assert] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(906), + [anon_sym_synchronized] = ACTIONS(906), + [anon_sym_throw] = ACTIONS(906), + [anon_sym_try] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_AT] = ACTIONS(906), + [anon_sym_open] = ACTIONS(906), + [anon_sym_module] = ACTIONS(906), + [anon_sym_static] = ACTIONS(906), + [anon_sym_package] = ACTIONS(906), + [anon_sym_import] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_abstract] = ACTIONS(906), + [anon_sym_strictfp] = ACTIONS(906), + [anon_sym_native] = ACTIONS(906), + [anon_sym_transient] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_sealed] = ACTIONS(906), + [anon_sym_non_DASHsealed] = ACTIONS(904), + [anon_sym_record] = ACTIONS(906), + [anon_sym_ATinterface] = ACTIONS(904), + [anon_sym_interface] = ACTIONS(906), + [anon_sym_byte] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [anon_sym_int] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_char] = ACTIONS(906), + [anon_sym_float] = ACTIONS(906), + [anon_sym_double] = ACTIONS(906), + [sym_boolean_type] = ACTIONS(906), + [sym_void_type] = ACTIONS(906), + [sym_this] = ACTIONS(906), + [sym_super] = ACTIONS(906), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [328] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [317] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(910), + [sym_decimal_integer_literal] = ACTIONS(910), + [sym_hex_integer_literal] = ACTIONS(910), + [sym_octal_integer_literal] = ACTIONS(908), + [sym_binary_integer_literal] = ACTIONS(908), + [sym_decimal_floating_point_literal] = ACTIONS(908), + [sym_hex_floating_point_literal] = ACTIONS(910), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_character_literal] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [sym_null_literal] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_final] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_new] = ACTIONS(910), + [anon_sym_class] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_assert] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_synchronized] = ACTIONS(910), + [anon_sym_throw] = ACTIONS(910), + [anon_sym_try] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_AT] = ACTIONS(910), + [anon_sym_open] = ACTIONS(910), + [anon_sym_module] = ACTIONS(910), + [anon_sym_static] = ACTIONS(910), + [anon_sym_package] = ACTIONS(910), + [anon_sym_import] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_public] = ACTIONS(910), + [anon_sym_protected] = ACTIONS(910), + [anon_sym_private] = ACTIONS(910), + [anon_sym_abstract] = ACTIONS(910), + [anon_sym_strictfp] = ACTIONS(910), + [anon_sym_native] = ACTIONS(910), + [anon_sym_transient] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_sealed] = ACTIONS(910), + [anon_sym_non_DASHsealed] = ACTIONS(908), + [anon_sym_record] = ACTIONS(910), + [anon_sym_ATinterface] = ACTIONS(908), + [anon_sym_interface] = ACTIONS(910), + [anon_sym_byte] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_int] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_char] = ACTIONS(910), + [anon_sym_float] = ACTIONS(910), + [anon_sym_double] = ACTIONS(910), + [sym_boolean_type] = ACTIONS(910), + [sym_void_type] = ACTIONS(910), + [sym_this] = ACTIONS(910), + [sym_super] = ACTIONS(910), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [329] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(603), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [318] = { + [sym_switch_label] = STATE(1270), + [aux_sym_switch_block_statement_group_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(912), + [sym_decimal_integer_literal] = ACTIONS(912), + [sym_hex_integer_literal] = ACTIONS(912), + [sym_octal_integer_literal] = ACTIONS(914), + [sym_binary_integer_literal] = ACTIONS(914), + [sym_decimal_floating_point_literal] = ACTIONS(914), + [sym_hex_floating_point_literal] = ACTIONS(912), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_character_literal] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(914), + [sym_null_literal] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_final] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_new] = ACTIONS(912), + [anon_sym_class] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_assert] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_synchronized] = ACTIONS(912), + [anon_sym_throw] = ACTIONS(912), + [anon_sym_try] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_AT] = ACTIONS(912), + [anon_sym_open] = ACTIONS(912), + [anon_sym_module] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_package] = ACTIONS(912), + [anon_sym_import] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_public] = ACTIONS(912), + [anon_sym_protected] = ACTIONS(912), + [anon_sym_private] = ACTIONS(912), + [anon_sym_abstract] = ACTIONS(912), + [anon_sym_strictfp] = ACTIONS(912), + [anon_sym_native] = ACTIONS(912), + [anon_sym_transient] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_sealed] = ACTIONS(912), + [anon_sym_non_DASHsealed] = ACTIONS(914), + [anon_sym_record] = ACTIONS(912), + [anon_sym_ATinterface] = ACTIONS(914), + [anon_sym_interface] = ACTIONS(912), + [anon_sym_byte] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [anon_sym_int] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_float] = ACTIONS(912), + [anon_sym_double] = ACTIONS(912), + [sym_boolean_type] = ACTIONS(912), + [sym_void_type] = ACTIONS(912), + [sym_this] = ACTIONS(912), + [sym_super] = ACTIONS(912), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [330] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(559), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [319] = { + [ts_builtin_sym_end] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_decimal_integer_literal] = ACTIONS(924), + [sym_hex_integer_literal] = ACTIONS(924), + [sym_octal_integer_literal] = ACTIONS(922), + [sym_binary_integer_literal] = ACTIONS(922), + [sym_decimal_floating_point_literal] = ACTIONS(922), + [sym_hex_floating_point_literal] = ACTIONS(924), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_character_literal] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(924), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(922), + [sym_null_literal] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_final] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(924), + [anon_sym_class] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_synchronized] = ACTIONS(924), + [anon_sym_throw] = ACTIONS(924), + [anon_sym_try] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_open] = ACTIONS(924), + [anon_sym_module] = ACTIONS(924), + [anon_sym_static] = ACTIONS(924), + [anon_sym_package] = ACTIONS(924), + [anon_sym_import] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_public] = ACTIONS(924), + [anon_sym_protected] = ACTIONS(924), + [anon_sym_private] = ACTIONS(924), + [anon_sym_abstract] = ACTIONS(924), + [anon_sym_strictfp] = ACTIONS(924), + [anon_sym_native] = ACTIONS(924), + [anon_sym_transient] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_sealed] = ACTIONS(924), + [anon_sym_non_DASHsealed] = ACTIONS(922), + [anon_sym_record] = ACTIONS(924), + [anon_sym_ATinterface] = ACTIONS(922), + [anon_sym_interface] = ACTIONS(924), + [anon_sym_byte] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [anon_sym_int] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_char] = ACTIONS(924), + [anon_sym_float] = ACTIONS(924), + [anon_sym_double] = ACTIONS(924), + [sym_boolean_type] = ACTIONS(924), + [sym_void_type] = ACTIONS(924), + [sym_this] = ACTIONS(924), + [sym_super] = ACTIONS(924), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [331] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(524), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [320] = { + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(928), + [sym_decimal_integer_literal] = ACTIONS(928), + [sym_hex_integer_literal] = ACTIONS(928), + [sym_octal_integer_literal] = ACTIONS(926), + [sym_binary_integer_literal] = ACTIONS(926), + [sym_decimal_floating_point_literal] = ACTIONS(926), + [sym_hex_floating_point_literal] = ACTIONS(928), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_character_literal] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(928), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(926), + [sym_null_literal] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_final] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_new] = ACTIONS(928), + [anon_sym_class] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_assert] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_yield] = ACTIONS(928), + [anon_sym_synchronized] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(928), + [anon_sym_try] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_AT] = ACTIONS(928), + [anon_sym_open] = ACTIONS(928), + [anon_sym_module] = ACTIONS(928), + [anon_sym_static] = ACTIONS(928), + [anon_sym_package] = ACTIONS(928), + [anon_sym_import] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_public] = ACTIONS(928), + [anon_sym_protected] = ACTIONS(928), + [anon_sym_private] = ACTIONS(928), + [anon_sym_abstract] = ACTIONS(928), + [anon_sym_strictfp] = ACTIONS(928), + [anon_sym_native] = ACTIONS(928), + [anon_sym_transient] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_sealed] = ACTIONS(928), + [anon_sym_non_DASHsealed] = ACTIONS(926), + [anon_sym_record] = ACTIONS(928), + [anon_sym_ATinterface] = ACTIONS(926), + [anon_sym_interface] = ACTIONS(928), + [anon_sym_byte] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [anon_sym_int] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_char] = ACTIONS(928), + [anon_sym_float] = ACTIONS(928), + [anon_sym_double] = ACTIONS(928), + [sym_boolean_type] = ACTIONS(928), + [sym_void_type] = ACTIONS(928), + [sym_this] = ACTIONS(928), + [sym_super] = ACTIONS(928), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [332] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), + [321] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1115), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -40249,681 +40833,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [333] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(535), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [322] = { + [ts_builtin_sym_end] = ACTIONS(940), + [sym_identifier] = ACTIONS(942), + [sym_decimal_integer_literal] = ACTIONS(942), + [sym_hex_integer_literal] = ACTIONS(942), + [sym_octal_integer_literal] = ACTIONS(940), + [sym_binary_integer_literal] = ACTIONS(940), + [sym_decimal_floating_point_literal] = ACTIONS(940), + [sym_hex_floating_point_literal] = ACTIONS(942), + [sym_true] = ACTIONS(942), + [sym_false] = ACTIONS(942), + [sym_character_literal] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [sym_null_literal] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_final] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(942), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_assert] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_yield] = ACTIONS(942), + [anon_sym_synchronized] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_AT] = ACTIONS(942), + [anon_sym_open] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_static] = ACTIONS(942), + [anon_sym_package] = ACTIONS(942), + [anon_sym_import] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(942), + [anon_sym_strictfp] = ACTIONS(942), + [anon_sym_native] = ACTIONS(942), + [anon_sym_transient] = ACTIONS(942), + [anon_sym_volatile] = ACTIONS(942), + [anon_sym_sealed] = ACTIONS(942), + [anon_sym_non_DASHsealed] = ACTIONS(940), + [anon_sym_record] = ACTIONS(942), + [anon_sym_ATinterface] = ACTIONS(940), + [anon_sym_interface] = ACTIONS(942), + [anon_sym_byte] = ACTIONS(942), + [anon_sym_short] = ACTIONS(942), + [anon_sym_int] = ACTIONS(942), + [anon_sym_long] = ACTIONS(942), + [anon_sym_char] = ACTIONS(942), + [anon_sym_float] = ACTIONS(942), + [anon_sym_double] = ACTIONS(942), + [sym_boolean_type] = ACTIONS(942), + [sym_void_type] = ACTIONS(942), + [sym_this] = ACTIONS(942), + [sym_super] = ACTIONS(942), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [334] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(521), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [323] = { + [ts_builtin_sym_end] = ACTIONS(944), + [sym_identifier] = ACTIONS(946), + [sym_decimal_integer_literal] = ACTIONS(946), + [sym_hex_integer_literal] = ACTIONS(946), + [sym_octal_integer_literal] = ACTIONS(944), + [sym_binary_integer_literal] = ACTIONS(944), + [sym_decimal_floating_point_literal] = ACTIONS(944), + [sym_hex_floating_point_literal] = ACTIONS(946), + [sym_true] = ACTIONS(946), + [sym_false] = ACTIONS(946), + [sym_character_literal] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(944), + [sym_null_literal] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_final] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_new] = ACTIONS(946), + [anon_sym_class] = ACTIONS(946), + [anon_sym_switch] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_assert] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_synchronized] = ACTIONS(946), + [anon_sym_throw] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_AT] = ACTIONS(946), + [anon_sym_open] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_static] = ACTIONS(946), + [anon_sym_package] = ACTIONS(946), + [anon_sym_import] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_abstract] = ACTIONS(946), + [anon_sym_strictfp] = ACTIONS(946), + [anon_sym_native] = ACTIONS(946), + [anon_sym_transient] = ACTIONS(946), + [anon_sym_volatile] = ACTIONS(946), + [anon_sym_sealed] = ACTIONS(946), + [anon_sym_non_DASHsealed] = ACTIONS(944), + [anon_sym_record] = ACTIONS(946), + [anon_sym_ATinterface] = ACTIONS(944), + [anon_sym_interface] = ACTIONS(946), + [anon_sym_byte] = ACTIONS(946), + [anon_sym_short] = ACTIONS(946), + [anon_sym_int] = ACTIONS(946), + [anon_sym_long] = ACTIONS(946), + [anon_sym_char] = ACTIONS(946), + [anon_sym_float] = ACTIONS(946), + [anon_sym_double] = ACTIONS(946), + [sym_boolean_type] = ACTIONS(946), + [sym_void_type] = ACTIONS(946), + [sym_this] = ACTIONS(946), + [sym_super] = ACTIONS(946), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [335] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(537), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [324] = { + [ts_builtin_sym_end] = ACTIONS(948), + [sym_identifier] = ACTIONS(950), + [sym_decimal_integer_literal] = ACTIONS(950), + [sym_hex_integer_literal] = ACTIONS(950), + [sym_octal_integer_literal] = ACTIONS(948), + [sym_binary_integer_literal] = ACTIONS(948), + [sym_decimal_floating_point_literal] = ACTIONS(948), + [sym_hex_floating_point_literal] = ACTIONS(950), + [sym_true] = ACTIONS(950), + [sym_false] = ACTIONS(950), + [sym_character_literal] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(948), + [sym_null_literal] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_final] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS_PLUS] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_new] = ACTIONS(950), + [anon_sym_class] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_case] = ACTIONS(950), + [anon_sym_default] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_assert] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_synchronized] = ACTIONS(950), + [anon_sym_throw] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_open] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_package] = ACTIONS(950), + [anon_sym_import] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_public] = ACTIONS(950), + [anon_sym_protected] = ACTIONS(950), + [anon_sym_private] = ACTIONS(950), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_strictfp] = ACTIONS(950), + [anon_sym_native] = ACTIONS(950), + [anon_sym_transient] = ACTIONS(950), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_sealed] = ACTIONS(950), + [anon_sym_non_DASHsealed] = ACTIONS(948), + [anon_sym_record] = ACTIONS(950), + [anon_sym_ATinterface] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_byte] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_int] = ACTIONS(950), + [anon_sym_long] = ACTIONS(950), + [anon_sym_char] = ACTIONS(950), + [anon_sym_float] = ACTIONS(950), + [anon_sym_double] = ACTIONS(950), + [sym_boolean_type] = ACTIONS(950), + [sym_void_type] = ACTIONS(950), + [sym_this] = ACTIONS(950), + [sym_super] = ACTIONS(950), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [336] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(576), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [325] = { + [ts_builtin_sym_end] = ACTIONS(952), + [sym_identifier] = ACTIONS(954), + [sym_decimal_integer_literal] = ACTIONS(954), + [sym_hex_integer_literal] = ACTIONS(954), + [sym_octal_integer_literal] = ACTIONS(952), + [sym_binary_integer_literal] = ACTIONS(952), + [sym_decimal_floating_point_literal] = ACTIONS(952), + [sym_hex_floating_point_literal] = ACTIONS(954), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [sym_character_literal] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(952), + [sym_null_literal] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_final] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_assert] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_synchronized] = ACTIONS(954), + [anon_sym_throw] = ACTIONS(954), + [anon_sym_try] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_AT] = ACTIONS(954), + [anon_sym_open] = ACTIONS(954), + [anon_sym_module] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_package] = ACTIONS(954), + [anon_sym_import] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_public] = ACTIONS(954), + [anon_sym_protected] = ACTIONS(954), + [anon_sym_private] = ACTIONS(954), + [anon_sym_abstract] = ACTIONS(954), + [anon_sym_strictfp] = ACTIONS(954), + [anon_sym_native] = ACTIONS(954), + [anon_sym_transient] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_sealed] = ACTIONS(954), + [anon_sym_non_DASHsealed] = ACTIONS(952), + [anon_sym_record] = ACTIONS(954), + [anon_sym_ATinterface] = ACTIONS(952), + [anon_sym_interface] = ACTIONS(954), + [anon_sym_byte] = ACTIONS(954), + [anon_sym_short] = ACTIONS(954), + [anon_sym_int] = ACTIONS(954), + [anon_sym_long] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_float] = ACTIONS(954), + [anon_sym_double] = ACTIONS(954), + [sym_boolean_type] = ACTIONS(954), + [sym_void_type] = ACTIONS(954), + [sym_this] = ACTIONS(954), + [sym_super] = ACTIONS(954), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [337] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [326] = { + [ts_builtin_sym_end] = ACTIONS(956), + [sym_identifier] = ACTIONS(958), + [sym_decimal_integer_literal] = ACTIONS(958), + [sym_hex_integer_literal] = ACTIONS(958), + [sym_octal_integer_literal] = ACTIONS(956), + [sym_binary_integer_literal] = ACTIONS(956), + [sym_decimal_floating_point_literal] = ACTIONS(956), + [sym_hex_floating_point_literal] = ACTIONS(958), + [sym_true] = ACTIONS(958), + [sym_false] = ACTIONS(958), + [sym_character_literal] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(956), + [sym_null_literal] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(958), + [anon_sym_final] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_new] = ACTIONS(958), + [anon_sym_class] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_assert] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(958), + [anon_sym_synchronized] = ACTIONS(958), + [anon_sym_throw] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_open] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_package] = ACTIONS(958), + [anon_sym_import] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_abstract] = ACTIONS(958), + [anon_sym_strictfp] = ACTIONS(958), + [anon_sym_native] = ACTIONS(958), + [anon_sym_transient] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_sealed] = ACTIONS(958), + [anon_sym_non_DASHsealed] = ACTIONS(956), + [anon_sym_record] = ACTIONS(958), + [anon_sym_ATinterface] = ACTIONS(956), + [anon_sym_interface] = ACTIONS(958), + [anon_sym_byte] = ACTIONS(958), + [anon_sym_short] = ACTIONS(958), + [anon_sym_int] = ACTIONS(958), + [anon_sym_long] = ACTIONS(958), + [anon_sym_char] = ACTIONS(958), + [anon_sym_float] = ACTIONS(958), + [anon_sym_double] = ACTIONS(958), + [sym_boolean_type] = ACTIONS(958), + [sym_void_type] = ACTIONS(958), + [sym_this] = ACTIONS(958), + [sym_super] = ACTIONS(958), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [338] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(545), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [327] = { + [ts_builtin_sym_end] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [sym_decimal_integer_literal] = ACTIONS(962), + [sym_hex_integer_literal] = ACTIONS(962), + [sym_octal_integer_literal] = ACTIONS(960), + [sym_binary_integer_literal] = ACTIONS(960), + [sym_decimal_floating_point_literal] = ACTIONS(960), + [sym_hex_floating_point_literal] = ACTIONS(962), + [sym_true] = ACTIONS(962), + [sym_false] = ACTIONS(962), + [sym_character_literal] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_null_literal] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_final] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_TILDE] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_class] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_assert] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_yield] = ACTIONS(962), + [anon_sym_synchronized] = ACTIONS(962), + [anon_sym_throw] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym_open] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_static] = ACTIONS(962), + [anon_sym_package] = ACTIONS(962), + [anon_sym_import] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_public] = ACTIONS(962), + [anon_sym_protected] = ACTIONS(962), + [anon_sym_private] = ACTIONS(962), + [anon_sym_abstract] = ACTIONS(962), + [anon_sym_strictfp] = ACTIONS(962), + [anon_sym_native] = ACTIONS(962), + [anon_sym_transient] = ACTIONS(962), + [anon_sym_volatile] = ACTIONS(962), + [anon_sym_sealed] = ACTIONS(962), + [anon_sym_non_DASHsealed] = ACTIONS(960), + [anon_sym_record] = ACTIONS(962), + [anon_sym_ATinterface] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_byte] = ACTIONS(962), + [anon_sym_short] = ACTIONS(962), + [anon_sym_int] = ACTIONS(962), + [anon_sym_long] = ACTIONS(962), + [anon_sym_char] = ACTIONS(962), + [anon_sym_float] = ACTIONS(962), + [anon_sym_double] = ACTIONS(962), + [sym_boolean_type] = ACTIONS(962), + [sym_void_type] = ACTIONS(962), + [sym_this] = ACTIONS(962), + [sym_super] = ACTIONS(962), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [339] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [328] = { + [ts_builtin_sym_end] = ACTIONS(964), + [sym_identifier] = ACTIONS(966), + [sym_decimal_integer_literal] = ACTIONS(966), + [sym_hex_integer_literal] = ACTIONS(966), + [sym_octal_integer_literal] = ACTIONS(964), + [sym_binary_integer_literal] = ACTIONS(964), + [sym_decimal_floating_point_literal] = ACTIONS(964), + [sym_hex_floating_point_literal] = ACTIONS(966), + [sym_true] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_character_literal] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(964), + [sym_null_literal] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_final] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_new] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_case] = ACTIONS(966), + [anon_sym_default] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_assert] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_yield] = ACTIONS(966), + [anon_sym_synchronized] = ACTIONS(966), + [anon_sym_throw] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_AT] = ACTIONS(966), + [anon_sym_open] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_package] = ACTIONS(966), + [anon_sym_import] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_abstract] = ACTIONS(966), + [anon_sym_strictfp] = ACTIONS(966), + [anon_sym_native] = ACTIONS(966), + [anon_sym_transient] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_sealed] = ACTIONS(966), + [anon_sym_non_DASHsealed] = ACTIONS(964), + [anon_sym_record] = ACTIONS(966), + [anon_sym_ATinterface] = ACTIONS(964), + [anon_sym_interface] = ACTIONS(966), + [anon_sym_byte] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_int] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_char] = ACTIONS(966), + [anon_sym_float] = ACTIONS(966), + [anon_sym_double] = ACTIONS(966), + [sym_boolean_type] = ACTIONS(966), + [sym_void_type] = ACTIONS(966), + [sym_this] = ACTIONS(966), + [sym_super] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [340] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(609), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [329] = { + [ts_builtin_sym_end] = ACTIONS(968), + [sym_identifier] = ACTIONS(970), + [sym_decimal_integer_literal] = ACTIONS(970), + [sym_hex_integer_literal] = ACTIONS(970), + [sym_octal_integer_literal] = ACTIONS(968), + [sym_binary_integer_literal] = ACTIONS(968), + [sym_decimal_floating_point_literal] = ACTIONS(968), + [sym_hex_floating_point_literal] = ACTIONS(970), + [sym_true] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [sym_character_literal] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(968), + [sym_null_literal] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_final] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_new] = ACTIONS(970), + [anon_sym_class] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_case] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_assert] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_synchronized] = ACTIONS(970), + [anon_sym_throw] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym_open] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_package] = ACTIONS(970), + [anon_sym_import] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_public] = ACTIONS(970), + [anon_sym_protected] = ACTIONS(970), + [anon_sym_private] = ACTIONS(970), + [anon_sym_abstract] = ACTIONS(970), + [anon_sym_strictfp] = ACTIONS(970), + [anon_sym_native] = ACTIONS(970), + [anon_sym_transient] = ACTIONS(970), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym_sealed] = ACTIONS(970), + [anon_sym_non_DASHsealed] = ACTIONS(968), + [anon_sym_record] = ACTIONS(970), + [anon_sym_ATinterface] = ACTIONS(968), + [anon_sym_interface] = ACTIONS(970), + [anon_sym_byte] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [anon_sym_int] = ACTIONS(970), + [anon_sym_long] = ACTIONS(970), + [anon_sym_char] = ACTIONS(970), + [anon_sym_float] = ACTIONS(970), + [anon_sym_double] = ACTIONS(970), + [sym_boolean_type] = ACTIONS(970), + [sym_void_type] = ACTIONS(970), + [sym_this] = ACTIONS(970), + [sym_super] = ACTIONS(970), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [341] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(503), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), + [330] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1115), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -40933,594 +41535,1167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [342] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [331] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_decimal_integer_literal] = ACTIONS(976), + [sym_hex_integer_literal] = ACTIONS(976), + [sym_octal_integer_literal] = ACTIONS(974), + [sym_binary_integer_literal] = ACTIONS(974), + [sym_decimal_floating_point_literal] = ACTIONS(974), + [sym_hex_floating_point_literal] = ACTIONS(976), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_character_literal] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(974), + [sym_null_literal] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_final] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(976), + [anon_sym_class] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_yield] = ACTIONS(976), + [anon_sym_synchronized] = ACTIONS(976), + [anon_sym_throw] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_AT] = ACTIONS(976), + [anon_sym_open] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_static] = ACTIONS(976), + [anon_sym_package] = ACTIONS(976), + [anon_sym_import] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_public] = ACTIONS(976), + [anon_sym_protected] = ACTIONS(976), + [anon_sym_private] = ACTIONS(976), + [anon_sym_abstract] = ACTIONS(976), + [anon_sym_strictfp] = ACTIONS(976), + [anon_sym_native] = ACTIONS(976), + [anon_sym_transient] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_sealed] = ACTIONS(976), + [anon_sym_non_DASHsealed] = ACTIONS(974), + [anon_sym_record] = ACTIONS(976), + [anon_sym_ATinterface] = ACTIONS(974), + [anon_sym_interface] = ACTIONS(976), + [anon_sym_byte] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [anon_sym_int] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_char] = ACTIONS(976), + [anon_sym_float] = ACTIONS(976), + [anon_sym_double] = ACTIONS(976), + [sym_boolean_type] = ACTIONS(976), + [sym_void_type] = ACTIONS(976), + [sym_this] = ACTIONS(976), + [sym_super] = ACTIONS(976), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [343] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(532), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [332] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(980), + [sym_decimal_integer_literal] = ACTIONS(980), + [sym_hex_integer_literal] = ACTIONS(980), + [sym_octal_integer_literal] = ACTIONS(978), + [sym_binary_integer_literal] = ACTIONS(978), + [sym_decimal_floating_point_literal] = ACTIONS(978), + [sym_hex_floating_point_literal] = ACTIONS(980), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_character_literal] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(978), + [sym_null_literal] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_final] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_assert] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_yield] = ACTIONS(980), + [anon_sym_synchronized] = ACTIONS(980), + [anon_sym_throw] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(980), + [anon_sym_open] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_package] = ACTIONS(980), + [anon_sym_import] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_public] = ACTIONS(980), + [anon_sym_protected] = ACTIONS(980), + [anon_sym_private] = ACTIONS(980), + [anon_sym_abstract] = ACTIONS(980), + [anon_sym_strictfp] = ACTIONS(980), + [anon_sym_native] = ACTIONS(980), + [anon_sym_transient] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_sealed] = ACTIONS(980), + [anon_sym_non_DASHsealed] = ACTIONS(978), + [anon_sym_record] = ACTIONS(980), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_byte] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [anon_sym_int] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_char] = ACTIONS(980), + [anon_sym_float] = ACTIONS(980), + [anon_sym_double] = ACTIONS(980), + [sym_boolean_type] = ACTIONS(980), + [sym_void_type] = ACTIONS(980), + [sym_this] = ACTIONS(980), + [sym_super] = ACTIONS(980), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [344] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(556), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1234), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(393), - [sym_array_access] = STATE(393), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1234), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(740), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(750), - [anon_sym_module] = ACTIONS(750), - [anon_sym_record] = ACTIONS(750), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [333] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_decimal_integer_literal] = ACTIONS(984), + [sym_hex_integer_literal] = ACTIONS(984), + [sym_octal_integer_literal] = ACTIONS(982), + [sym_binary_integer_literal] = ACTIONS(982), + [sym_decimal_floating_point_literal] = ACTIONS(982), + [sym_hex_floating_point_literal] = ACTIONS(984), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_character_literal] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(982), + [sym_null_literal] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_final] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_new] = ACTIONS(984), + [anon_sym_class] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_assert] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_yield] = ACTIONS(984), + [anon_sym_synchronized] = ACTIONS(984), + [anon_sym_throw] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_AT] = ACTIONS(984), + [anon_sym_open] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_package] = ACTIONS(984), + [anon_sym_import] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_abstract] = ACTIONS(984), + [anon_sym_strictfp] = ACTIONS(984), + [anon_sym_native] = ACTIONS(984), + [anon_sym_transient] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_sealed] = ACTIONS(984), + [anon_sym_non_DASHsealed] = ACTIONS(982), + [anon_sym_record] = ACTIONS(984), + [anon_sym_ATinterface] = ACTIONS(982), + [anon_sym_interface] = ACTIONS(984), + [anon_sym_byte] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [anon_sym_int] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [anon_sym_float] = ACTIONS(984), + [anon_sym_double] = ACTIONS(984), + [sym_boolean_type] = ACTIONS(984), + [sym_void_type] = ACTIONS(984), + [sym_this] = ACTIONS(984), + [sym_super] = ACTIONS(984), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [345] = { - [sym__literal] = STATE(461), - [sym_expression] = STATE(623), - [sym_cast_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_instanceof_expression] = STATE(510), - [sym_lambda_expression] = STATE(510), - [sym_inferred_parameters] = STATE(1206), - [sym_ternary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_primary_expression] = STATE(482), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(381), - [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_switch_expression] = STATE(510), - [sym__annotation] = STATE(661), - [sym_marker_annotation] = STATE(661), - [sym_annotation] = STATE(661), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(761), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [sym_formal_parameters] = STATE(1206), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [sym_identifier] = ACTIONS(307), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(21), - [anon_sym_DASH_DASH] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_open] = ACTIONS(311), - [anon_sym_module] = ACTIONS(311), - [anon_sym_record] = ACTIONS(311), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [334] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), + [sym_decimal_integer_literal] = ACTIONS(988), + [sym_hex_integer_literal] = ACTIONS(988), + [sym_octal_integer_literal] = ACTIONS(986), + [sym_binary_integer_literal] = ACTIONS(986), + [sym_decimal_floating_point_literal] = ACTIONS(986), + [sym_hex_floating_point_literal] = ACTIONS(988), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_character_literal] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(986), + [sym_null_literal] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_final] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(988), + [anon_sym_class] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_assert] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_yield] = ACTIONS(988), + [anon_sym_synchronized] = ACTIONS(988), + [anon_sym_throw] = ACTIONS(988), + [anon_sym_try] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_AT] = ACTIONS(988), + [anon_sym_open] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_static] = ACTIONS(988), + [anon_sym_package] = ACTIONS(988), + [anon_sym_import] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_abstract] = ACTIONS(988), + [anon_sym_strictfp] = ACTIONS(988), + [anon_sym_native] = ACTIONS(988), + [anon_sym_transient] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_sealed] = ACTIONS(988), + [anon_sym_non_DASHsealed] = ACTIONS(986), + [anon_sym_record] = ACTIONS(988), + [anon_sym_ATinterface] = ACTIONS(986), + [anon_sym_interface] = ACTIONS(988), + [anon_sym_byte] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [anon_sym_int] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_float] = ACTIONS(988), + [anon_sym_double] = ACTIONS(988), + [sym_boolean_type] = ACTIONS(988), + [sym_void_type] = ACTIONS(988), + [sym_this] = ACTIONS(988), + [sym_super] = ACTIONS(988), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [346] = { - [sym__literal] = STATE(461), - [sym_primary_expression] = STATE(992), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(875), - [sym_array_access] = STATE(461), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_resource] = STATE(1172), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(701), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [aux_sym_modifiers_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1016), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_final] = ACTIONS(299), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1024), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [335] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_decimal_integer_literal] = ACTIONS(992), + [sym_hex_integer_literal] = ACTIONS(992), + [sym_octal_integer_literal] = ACTIONS(990), + [sym_binary_integer_literal] = ACTIONS(990), + [sym_decimal_floating_point_literal] = ACTIONS(990), + [sym_hex_floating_point_literal] = ACTIONS(992), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_character_literal] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(990), + [sym_null_literal] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_final] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_new] = ACTIONS(992), + [anon_sym_class] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_assert] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(992), + [anon_sym_synchronized] = ACTIONS(992), + [anon_sym_throw] = ACTIONS(992), + [anon_sym_try] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_AT] = ACTIONS(992), + [anon_sym_open] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_static] = ACTIONS(992), + [anon_sym_package] = ACTIONS(992), + [anon_sym_import] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_abstract] = ACTIONS(992), + [anon_sym_strictfp] = ACTIONS(992), + [anon_sym_native] = ACTIONS(992), + [anon_sym_transient] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_sealed] = ACTIONS(992), + [anon_sym_non_DASHsealed] = ACTIONS(990), + [anon_sym_record] = ACTIONS(992), + [anon_sym_ATinterface] = ACTIONS(990), + [anon_sym_interface] = ACTIONS(992), + [anon_sym_byte] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [anon_sym_int] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_char] = ACTIONS(992), + [anon_sym_float] = ACTIONS(992), + [anon_sym_double] = ACTIONS(992), + [sym_boolean_type] = ACTIONS(992), + [sym_void_type] = ACTIONS(992), + [sym_this] = ACTIONS(992), + [sym_super] = ACTIONS(992), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [347] = { - [sym_identifier] = ACTIONS(1026), - [sym_decimal_integer_literal] = ACTIONS(1026), - [sym_hex_integer_literal] = ACTIONS(1026), - [sym_octal_integer_literal] = ACTIONS(1028), - [sym_binary_integer_literal] = ACTIONS(1028), - [sym_decimal_floating_point_literal] = ACTIONS(1028), - [sym_hex_floating_point_literal] = ACTIONS(1026), - [sym_true] = ACTIONS(1026), - [sym_false] = ACTIONS(1026), - [sym_character_literal] = ACTIONS(1028), - [sym_string_literal] = ACTIONS(1026), - [sym_text_block] = ACTIONS(1028), - [sym_null_literal] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_final] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1026), - [anon_sym_class] = ACTIONS(1026), - [anon_sym_switch] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_yield] = ACTIONS(1026), - [anon_sym_synchronized] = ACTIONS(1026), - [anon_sym_throw] = ACTIONS(1026), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_AT] = ACTIONS(1026), - [anon_sym_open] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1026), - [anon_sym_package] = ACTIONS(1026), - [anon_sym_import] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1026), - [anon_sym_public] = ACTIONS(1026), - [anon_sym_protected] = ACTIONS(1026), - [anon_sym_private] = ACTIONS(1026), - [anon_sym_abstract] = ACTIONS(1026), - [anon_sym_strictfp] = ACTIONS(1026), - [anon_sym_native] = ACTIONS(1026), - [anon_sym_transient] = ACTIONS(1026), - [anon_sym_volatile] = ACTIONS(1026), - [anon_sym_sealed] = ACTIONS(1026), - [anon_sym_non_DASHsealed] = ACTIONS(1028), - [anon_sym_record] = ACTIONS(1026), - [anon_sym_ATinterface] = ACTIONS(1028), - [anon_sym_interface] = ACTIONS(1026), - [anon_sym_byte] = ACTIONS(1026), - [anon_sym_short] = ACTIONS(1026), - [anon_sym_int] = ACTIONS(1026), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_char] = ACTIONS(1026), - [anon_sym_float] = ACTIONS(1026), - [anon_sym_double] = ACTIONS(1026), - [sym_boolean_type] = ACTIONS(1026), - [sym_void_type] = ACTIONS(1026), - [sym_this] = ACTIONS(1026), - [sym_super] = ACTIONS(1026), + [336] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(996), + [sym_decimal_integer_literal] = ACTIONS(996), + [sym_hex_integer_literal] = ACTIONS(996), + [sym_octal_integer_literal] = ACTIONS(994), + [sym_binary_integer_literal] = ACTIONS(994), + [sym_decimal_floating_point_literal] = ACTIONS(994), + [sym_hex_floating_point_literal] = ACTIONS(996), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_character_literal] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [sym_null_literal] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_final] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_new] = ACTIONS(996), + [anon_sym_class] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(996), + [anon_sym_synchronized] = ACTIONS(996), + [anon_sym_throw] = ACTIONS(996), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(996), + [anon_sym_open] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_static] = ACTIONS(996), + [anon_sym_package] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_abstract] = ACTIONS(996), + [anon_sym_strictfp] = ACTIONS(996), + [anon_sym_native] = ACTIONS(996), + [anon_sym_transient] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_sealed] = ACTIONS(996), + [anon_sym_non_DASHsealed] = ACTIONS(994), + [anon_sym_record] = ACTIONS(996), + [anon_sym_ATinterface] = ACTIONS(994), + [anon_sym_interface] = ACTIONS(996), + [anon_sym_byte] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [anon_sym_int] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_char] = ACTIONS(996), + [anon_sym_float] = ACTIONS(996), + [anon_sym_double] = ACTIONS(996), + [sym_boolean_type] = ACTIONS(996), + [sym_void_type] = ACTIONS(996), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(996), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [348] = { - [sym__literal] = STATE(461), - [sym_primary_expression] = STATE(992), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(875), - [sym_array_access] = STATE(461), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_resource] = STATE(1172), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(701), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [aux_sym_modifiers_repeat1] = STATE(538), + [337] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(1000), + [sym_decimal_integer_literal] = ACTIONS(1000), + [sym_hex_integer_literal] = ACTIONS(1000), + [sym_octal_integer_literal] = ACTIONS(998), + [sym_binary_integer_literal] = ACTIONS(998), + [sym_decimal_floating_point_literal] = ACTIONS(998), + [sym_hex_floating_point_literal] = ACTIONS(1000), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_character_literal] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(998), + [sym_null_literal] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_final] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1000), + [anon_sym_class] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1000), + [anon_sym_synchronized] = ACTIONS(1000), + [anon_sym_throw] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(1000), + [anon_sym_open] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_package] = ACTIONS(1000), + [anon_sym_import] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_public] = ACTIONS(1000), + [anon_sym_protected] = ACTIONS(1000), + [anon_sym_private] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(1000), + [anon_sym_strictfp] = ACTIONS(1000), + [anon_sym_native] = ACTIONS(1000), + [anon_sym_transient] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_sealed] = ACTIONS(1000), + [anon_sym_non_DASHsealed] = ACTIONS(998), + [anon_sym_record] = ACTIONS(1000), + [anon_sym_ATinterface] = ACTIONS(998), + [anon_sym_interface] = ACTIONS(1000), + [anon_sym_byte] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_char] = ACTIONS(1000), + [anon_sym_float] = ACTIONS(1000), + [anon_sym_double] = ACTIONS(1000), + [sym_boolean_type] = ACTIONS(1000), + [sym_void_type] = ACTIONS(1000), + [sym_this] = ACTIONS(1000), + [sym_super] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [338] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_decimal_integer_literal] = ACTIONS(1004), + [sym_hex_integer_literal] = ACTIONS(1004), + [sym_octal_integer_literal] = ACTIONS(1002), + [sym_binary_integer_literal] = ACTIONS(1002), + [sym_decimal_floating_point_literal] = ACTIONS(1002), + [sym_hex_floating_point_literal] = ACTIONS(1004), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_character_literal] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1002), + [sym_null_literal] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_final] = ACTIONS(1004), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1004), + [anon_sym_class] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_assert] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_synchronized] = ACTIONS(1004), + [anon_sym_throw] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_AT] = ACTIONS(1004), + [anon_sym_open] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_package] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_public] = ACTIONS(1004), + [anon_sym_protected] = ACTIONS(1004), + [anon_sym_private] = ACTIONS(1004), + [anon_sym_abstract] = ACTIONS(1004), + [anon_sym_strictfp] = ACTIONS(1004), + [anon_sym_native] = ACTIONS(1004), + [anon_sym_transient] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_sealed] = ACTIONS(1004), + [anon_sym_non_DASHsealed] = ACTIONS(1002), + [anon_sym_record] = ACTIONS(1004), + [anon_sym_ATinterface] = ACTIONS(1002), + [anon_sym_interface] = ACTIONS(1004), + [anon_sym_byte] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [anon_sym_int] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym_float] = ACTIONS(1004), + [anon_sym_double] = ACTIONS(1004), + [sym_boolean_type] = ACTIONS(1004), + [sym_void_type] = ACTIONS(1004), + [sym_this] = ACTIONS(1004), + [sym_super] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [339] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [sym_decimal_integer_literal] = ACTIONS(1008), + [sym_hex_integer_literal] = ACTIONS(1008), + [sym_octal_integer_literal] = ACTIONS(1006), + [sym_binary_integer_literal] = ACTIONS(1006), + [sym_decimal_floating_point_literal] = ACTIONS(1006), + [sym_hex_floating_point_literal] = ACTIONS(1008), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_character_literal] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), + [sym_null_literal] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_final] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_assert] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_synchronized] = ACTIONS(1008), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym_open] = ACTIONS(1008), + [anon_sym_module] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_package] = ACTIONS(1008), + [anon_sym_import] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_public] = ACTIONS(1008), + [anon_sym_protected] = ACTIONS(1008), + [anon_sym_private] = ACTIONS(1008), + [anon_sym_abstract] = ACTIONS(1008), + [anon_sym_strictfp] = ACTIONS(1008), + [anon_sym_native] = ACTIONS(1008), + [anon_sym_transient] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_sealed] = ACTIONS(1008), + [anon_sym_non_DASHsealed] = ACTIONS(1006), + [anon_sym_record] = ACTIONS(1008), + [anon_sym_ATinterface] = ACTIONS(1006), + [anon_sym_interface] = ACTIONS(1008), + [anon_sym_byte] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [anon_sym_int] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), + [anon_sym_float] = ACTIONS(1008), + [anon_sym_double] = ACTIONS(1008), + [sym_boolean_type] = ACTIONS(1008), + [sym_void_type] = ACTIONS(1008), + [sym_this] = ACTIONS(1008), + [sym_super] = ACTIONS(1008), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [340] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1012), + [sym_decimal_integer_literal] = ACTIONS(1012), + [sym_hex_integer_literal] = ACTIONS(1012), + [sym_octal_integer_literal] = ACTIONS(1010), + [sym_binary_integer_literal] = ACTIONS(1010), + [sym_decimal_floating_point_literal] = ACTIONS(1010), + [sym_hex_floating_point_literal] = ACTIONS(1012), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_character_literal] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1010), + [sym_null_literal] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_final] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1012), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_assert] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_yield] = ACTIONS(1012), + [anon_sym_synchronized] = ACTIONS(1012), + [anon_sym_throw] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_AT] = ACTIONS(1012), + [anon_sym_open] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_package] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_abstract] = ACTIONS(1012), + [anon_sym_strictfp] = ACTIONS(1012), + [anon_sym_native] = ACTIONS(1012), + [anon_sym_transient] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_sealed] = ACTIONS(1012), + [anon_sym_non_DASHsealed] = ACTIONS(1010), + [anon_sym_record] = ACTIONS(1012), + [anon_sym_ATinterface] = ACTIONS(1010), + [anon_sym_interface] = ACTIONS(1012), + [anon_sym_byte] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [anon_sym_int] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_char] = ACTIONS(1012), + [anon_sym_float] = ACTIONS(1012), + [anon_sym_double] = ACTIONS(1012), + [sym_boolean_type] = ACTIONS(1012), + [sym_void_type] = ACTIONS(1012), + [sym_this] = ACTIONS(1012), + [sym_super] = ACTIONS(1012), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [341] = { + [ts_builtin_sym_end] = ACTIONS(1014), [sym_identifier] = ACTIONS(1016), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), + [sym_decimal_integer_literal] = ACTIONS(1016), + [sym_hex_integer_literal] = ACTIONS(1016), + [sym_octal_integer_literal] = ACTIONS(1014), + [sym_binary_integer_literal] = ACTIONS(1014), + [sym_decimal_floating_point_literal] = ACTIONS(1014), + [sym_hex_floating_point_literal] = ACTIONS(1016), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_character_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1014), + [sym_null_literal] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_final] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_assert] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1016), + [anon_sym_synchronized] = ACTIONS(1016), + [anon_sym_throw] = ACTIONS(1016), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(1016), + [anon_sym_open] = ACTIONS(1016), + [anon_sym_module] = ACTIONS(1016), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_package] = ACTIONS(1016), + [anon_sym_import] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_public] = ACTIONS(1016), + [anon_sym_protected] = ACTIONS(1016), + [anon_sym_private] = ACTIONS(1016), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_strictfp] = ACTIONS(1016), + [anon_sym_native] = ACTIONS(1016), + [anon_sym_transient] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_sealed] = ACTIONS(1016), + [anon_sym_non_DASHsealed] = ACTIONS(1014), + [anon_sym_record] = ACTIONS(1016), + [anon_sym_ATinterface] = ACTIONS(1014), + [anon_sym_interface] = ACTIONS(1016), + [anon_sym_byte] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [anon_sym_int] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_char] = ACTIONS(1016), + [anon_sym_float] = ACTIONS(1016), + [anon_sym_double] = ACTIONS(1016), + [sym_boolean_type] = ACTIONS(1016), + [sym_void_type] = ACTIONS(1016), + [sym_this] = ACTIONS(1016), + [sym_super] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [342] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1020), + [sym_decimal_integer_literal] = ACTIONS(1020), + [sym_hex_integer_literal] = ACTIONS(1020), + [sym_octal_integer_literal] = ACTIONS(1018), + [sym_binary_integer_literal] = ACTIONS(1018), + [sym_decimal_floating_point_literal] = ACTIONS(1018), + [sym_hex_floating_point_literal] = ACTIONS(1020), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_character_literal] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1018), + [sym_null_literal] = ACTIONS(1020), [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_final] = ACTIONS(299), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_final] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_class] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_yield] = ACTIONS(1020), + [anon_sym_synchronized] = ACTIONS(1020), + [anon_sym_throw] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_AT] = ACTIONS(1020), + [anon_sym_open] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_package] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(1020), + [anon_sym_protected] = ACTIONS(1020), + [anon_sym_private] = ACTIONS(1020), + [anon_sym_abstract] = ACTIONS(1020), + [anon_sym_strictfp] = ACTIONS(1020), + [anon_sym_native] = ACTIONS(1020), + [anon_sym_transient] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_sealed] = ACTIONS(1020), + [anon_sym_non_DASHsealed] = ACTIONS(1018), + [anon_sym_record] = ACTIONS(1020), + [anon_sym_ATinterface] = ACTIONS(1018), + [anon_sym_interface] = ACTIONS(1020), + [anon_sym_byte] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [anon_sym_int] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_char] = ACTIONS(1020), + [anon_sym_float] = ACTIONS(1020), + [anon_sym_double] = ACTIONS(1020), + [sym_boolean_type] = ACTIONS(1020), + [sym_void_type] = ACTIONS(1020), + [sym_this] = ACTIONS(1020), + [sym_super] = ACTIONS(1020), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [343] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1024), + [sym_decimal_integer_literal] = ACTIONS(1024), + [sym_hex_integer_literal] = ACTIONS(1024), + [sym_octal_integer_literal] = ACTIONS(1022), + [sym_binary_integer_literal] = ACTIONS(1022), + [sym_decimal_floating_point_literal] = ACTIONS(1022), + [sym_hex_floating_point_literal] = ACTIONS(1024), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_character_literal] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1022), + [sym_null_literal] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_final] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_class] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_assert] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1024), + [anon_sym_synchronized] = ACTIONS(1024), + [anon_sym_throw] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_AT] = ACTIONS(1024), [anon_sym_open] = ACTIONS(1024), [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_package] = ACTIONS(1024), + [anon_sym_import] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_public] = ACTIONS(1024), + [anon_sym_protected] = ACTIONS(1024), + [anon_sym_private] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_strictfp] = ACTIONS(1024), + [anon_sym_native] = ACTIONS(1024), + [anon_sym_transient] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_sealed] = ACTIONS(1024), + [anon_sym_non_DASHsealed] = ACTIONS(1022), [anon_sym_record] = ACTIONS(1024), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_ATinterface] = ACTIONS(1022), + [anon_sym_interface] = ACTIONS(1024), + [anon_sym_byte] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [anon_sym_int] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym_float] = ACTIONS(1024), + [anon_sym_double] = ACTIONS(1024), + [sym_boolean_type] = ACTIONS(1024), + [sym_void_type] = ACTIONS(1024), + [sym_this] = ACTIONS(1024), + [sym_super] = ACTIONS(1024), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [349] = { + [344] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1028), + [sym_decimal_integer_literal] = ACTIONS(1028), + [sym_hex_integer_literal] = ACTIONS(1028), + [sym_octal_integer_literal] = ACTIONS(1026), + [sym_binary_integer_literal] = ACTIONS(1026), + [sym_decimal_floating_point_literal] = ACTIONS(1026), + [sym_hex_floating_point_literal] = ACTIONS(1028), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_character_literal] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1026), + [sym_null_literal] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_final] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_yield] = ACTIONS(1028), + [anon_sym_synchronized] = ACTIONS(1028), + [anon_sym_throw] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1028), + [anon_sym_open] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_package] = ACTIONS(1028), + [anon_sym_import] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_public] = ACTIONS(1028), + [anon_sym_protected] = ACTIONS(1028), + [anon_sym_private] = ACTIONS(1028), + [anon_sym_abstract] = ACTIONS(1028), + [anon_sym_strictfp] = ACTIONS(1028), + [anon_sym_native] = ACTIONS(1028), + [anon_sym_transient] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_sealed] = ACTIONS(1028), + [anon_sym_non_DASHsealed] = ACTIONS(1026), + [anon_sym_record] = ACTIONS(1028), + [anon_sym_ATinterface] = ACTIONS(1026), + [anon_sym_interface] = ACTIONS(1028), + [anon_sym_byte] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [anon_sym_int] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_char] = ACTIONS(1028), + [anon_sym_float] = ACTIONS(1028), + [anon_sym_double] = ACTIONS(1028), + [sym_boolean_type] = ACTIONS(1028), + [sym_void_type] = ACTIONS(1028), + [sym_this] = ACTIONS(1028), + [sym_super] = ACTIONS(1028), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(1030), [sym_identifier] = ACTIONS(1032), [sym_decimal_integer_literal] = ACTIONS(1032), [sym_hex_integer_literal] = ACTIONS(1032), - [sym_octal_integer_literal] = ACTIONS(1034), - [sym_binary_integer_literal] = ACTIONS(1034), - [sym_decimal_floating_point_literal] = ACTIONS(1034), + [sym_octal_integer_literal] = ACTIONS(1030), + [sym_binary_integer_literal] = ACTIONS(1030), + [sym_decimal_floating_point_literal] = ACTIONS(1030), [sym_hex_floating_point_literal] = ACTIONS(1032), [sym_true] = ACTIONS(1032), [sym_false] = ACTIONS(1032), - [sym_character_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(1032), - [sym_text_block] = ACTIONS(1034), + [sym_character_literal] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1030), [sym_null_literal] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1030), [anon_sym_PLUS] = ACTIONS(1032), [anon_sym_DASH] = ACTIONS(1032), [anon_sym_final] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), [anon_sym_new] = ACTIONS(1032), [anon_sym_class] = ACTIONS(1032), [anon_sym_switch] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(1032), [anon_sym_default] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1030), [anon_sym_assert] = ACTIONS(1032), [anon_sym_do] = ACTIONS(1032), [anon_sym_while] = ACTIONS(1032), @@ -41532,6 +42707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1032), [anon_sym_try] = ACTIONS(1032), [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), [anon_sym_for] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(1032), [anon_sym_open] = ACTIONS(1032), @@ -41549,9 +42725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_transient] = ACTIONS(1032), [anon_sym_volatile] = ACTIONS(1032), [anon_sym_sealed] = ACTIONS(1032), - [anon_sym_non_DASHsealed] = ACTIONS(1034), + [anon_sym_non_DASHsealed] = ACTIONS(1030), [anon_sym_record] = ACTIONS(1032), - [anon_sym_ATinterface] = ACTIONS(1034), + [anon_sym_ATinterface] = ACTIONS(1030), [anon_sym_interface] = ACTIONS(1032), [anon_sym_byte] = ACTIONS(1032), [anon_sym_short] = ACTIONS(1032), @@ -41567,35 +42743,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [350] = { + [346] = { + [ts_builtin_sym_end] = ACTIONS(1034), [sym_identifier] = ACTIONS(1036), [sym_decimal_integer_literal] = ACTIONS(1036), [sym_hex_integer_literal] = ACTIONS(1036), - [sym_octal_integer_literal] = ACTIONS(1038), - [sym_binary_integer_literal] = ACTIONS(1038), - [sym_decimal_floating_point_literal] = ACTIONS(1038), + [sym_octal_integer_literal] = ACTIONS(1034), + [sym_binary_integer_literal] = ACTIONS(1034), + [sym_decimal_floating_point_literal] = ACTIONS(1034), [sym_hex_floating_point_literal] = ACTIONS(1036), [sym_true] = ACTIONS(1036), [sym_false] = ACTIONS(1036), - [sym_character_literal] = ACTIONS(1038), - [sym_string_literal] = ACTIONS(1036), - [sym_text_block] = ACTIONS(1038), + [sym_character_literal] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1034), [sym_null_literal] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1034), [anon_sym_PLUS] = ACTIONS(1036), [anon_sym_DASH] = ACTIONS(1036), [anon_sym_final] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), [anon_sym_new] = ACTIONS(1036), [anon_sym_class] = ACTIONS(1036), [anon_sym_switch] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1036), [anon_sym_default] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1034), [anon_sym_assert] = ACTIONS(1036), [anon_sym_do] = ACTIONS(1036), [anon_sym_while] = ACTIONS(1036), @@ -41607,6 +42785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1036), [anon_sym_try] = ACTIONS(1036), [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), [anon_sym_for] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(1036), [anon_sym_open] = ACTIONS(1036), @@ -41624,9 +42803,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_transient] = ACTIONS(1036), [anon_sym_volatile] = ACTIONS(1036), [anon_sym_sealed] = ACTIONS(1036), - [anon_sym_non_DASHsealed] = ACTIONS(1038), + [anon_sym_non_DASHsealed] = ACTIONS(1034), [anon_sym_record] = ACTIONS(1036), - [anon_sym_ATinterface] = ACTIONS(1038), + [anon_sym_ATinterface] = ACTIONS(1034), [anon_sym_interface] = ACTIONS(1036), [anon_sym_byte] = ACTIONS(1036), [anon_sym_short] = ACTIONS(1036), @@ -41642,109 +42821,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [351] = { - [sym_identifier] = ACTIONS(1040), - [sym_decimal_integer_literal] = ACTIONS(1040), - [sym_hex_integer_literal] = ACTIONS(1040), - [sym_octal_integer_literal] = ACTIONS(1042), - [sym_binary_integer_literal] = ACTIONS(1042), - [sym_decimal_floating_point_literal] = ACTIONS(1042), - [sym_hex_floating_point_literal] = ACTIONS(1040), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_character_literal] = ACTIONS(1042), - [sym_string_literal] = ACTIONS(1040), - [sym_text_block] = ACTIONS(1042), - [sym_null_literal] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_final] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_class] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_assert] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_yield] = ACTIONS(1040), - [anon_sym_synchronized] = ACTIONS(1040), - [anon_sym_throw] = ACTIONS(1040), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_AT] = ACTIONS(1040), - [anon_sym_open] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_package] = ACTIONS(1040), - [anon_sym_import] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_public] = ACTIONS(1040), - [anon_sym_protected] = ACTIONS(1040), - [anon_sym_private] = ACTIONS(1040), - [anon_sym_abstract] = ACTIONS(1040), - [anon_sym_strictfp] = ACTIONS(1040), - [anon_sym_native] = ACTIONS(1040), - [anon_sym_transient] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_sealed] = ACTIONS(1040), - [anon_sym_non_DASHsealed] = ACTIONS(1042), - [anon_sym_record] = ACTIONS(1040), - [anon_sym_ATinterface] = ACTIONS(1042), - [anon_sym_interface] = ACTIONS(1040), - [anon_sym_byte] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [anon_sym_int] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_char] = ACTIONS(1040), - [anon_sym_float] = ACTIONS(1040), - [anon_sym_double] = ACTIONS(1040), - [sym_boolean_type] = ACTIONS(1040), - [sym_void_type] = ACTIONS(1040), - [sym_this] = ACTIONS(1040), - [sym_super] = ACTIONS(1040), + [347] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1115), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [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(932), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [352] = { - [sym__literal] = STATE(461), - [sym_primary_expression] = STATE(992), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(875), - [sym_array_access] = STATE(461), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_resource] = STATE(1172), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(701), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [aux_sym_modifiers_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1016), + [348] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1026), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -41754,114 +42938,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_final] = ACTIONS(299), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1024), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [349] = { + [sym_identifier] = ACTIONS(912), + [sym_decimal_integer_literal] = ACTIONS(912), + [sym_hex_integer_literal] = ACTIONS(912), + [sym_octal_integer_literal] = ACTIONS(914), + [sym_binary_integer_literal] = ACTIONS(914), + [sym_decimal_floating_point_literal] = ACTIONS(914), + [sym_hex_floating_point_literal] = ACTIONS(912), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_character_literal] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(914), + [sym_null_literal] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_final] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_new] = ACTIONS(912), + [anon_sym_class] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_assert] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_synchronized] = ACTIONS(912), + [anon_sym_throw] = ACTIONS(912), + [anon_sym_try] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_AT] = ACTIONS(912), + [anon_sym_open] = ACTIONS(912), + [anon_sym_module] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_package] = ACTIONS(912), + [anon_sym_import] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_public] = ACTIONS(912), + [anon_sym_protected] = ACTIONS(912), + [anon_sym_private] = ACTIONS(912), + [anon_sym_abstract] = ACTIONS(912), + [anon_sym_strictfp] = ACTIONS(912), + [anon_sym_native] = ACTIONS(912), + [anon_sym_transient] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_sealed] = ACTIONS(912), + [anon_sym_non_DASHsealed] = ACTIONS(914), + [anon_sym_record] = ACTIONS(912), + [anon_sym_ATinterface] = ACTIONS(914), + [anon_sym_interface] = ACTIONS(912), + [anon_sym_byte] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [anon_sym_int] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_float] = ACTIONS(912), + [anon_sym_double] = ACTIONS(912), + [sym_boolean_type] = ACTIONS(912), + [sym_void_type] = ACTIONS(912), + [sym_this] = ACTIONS(912), + [sym_super] = ACTIONS(912), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [350] = { + [sym_identifier] = ACTIONS(1038), + [sym_decimal_integer_literal] = ACTIONS(1038), + [sym_hex_integer_literal] = ACTIONS(1038), + [sym_octal_integer_literal] = ACTIONS(1040), + [sym_binary_integer_literal] = ACTIONS(1040), + [sym_decimal_floating_point_literal] = ACTIONS(1040), + [sym_hex_floating_point_literal] = ACTIONS(1038), + [sym_true] = ACTIONS(1038), + [sym_false] = ACTIONS(1038), + [sym_character_literal] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1040), + [sym_null_literal] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_final] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_class] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_assert] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_yield] = ACTIONS(1038), + [anon_sym_synchronized] = ACTIONS(1038), + [anon_sym_throw] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_open] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_package] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1038), + [anon_sym_strictfp] = ACTIONS(1038), + [anon_sym_native] = ACTIONS(1038), + [anon_sym_transient] = ACTIONS(1038), + [anon_sym_volatile] = ACTIONS(1038), + [anon_sym_sealed] = ACTIONS(1038), + [anon_sym_non_DASHsealed] = ACTIONS(1040), + [anon_sym_record] = ACTIONS(1038), + [anon_sym_ATinterface] = ACTIONS(1040), + [anon_sym_interface] = ACTIONS(1038), + [anon_sym_byte] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [anon_sym_int] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_char] = ACTIONS(1038), + [anon_sym_float] = ACTIONS(1038), + [anon_sym_double] = ACTIONS(1038), + [sym_boolean_type] = ACTIONS(1038), + [sym_void_type] = ACTIONS(1038), + [sym_this] = ACTIONS(1038), + [sym_super] = ACTIONS(1038), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [351] = { + [sym_identifier] = ACTIONS(1042), + [sym_decimal_integer_literal] = ACTIONS(1042), + [sym_hex_integer_literal] = ACTIONS(1042), + [sym_octal_integer_literal] = ACTIONS(1044), + [sym_binary_integer_literal] = ACTIONS(1044), + [sym_decimal_floating_point_literal] = ACTIONS(1044), + [sym_hex_floating_point_literal] = ACTIONS(1042), + [sym_true] = ACTIONS(1042), + [sym_false] = ACTIONS(1042), + [sym_character_literal] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1044), + [sym_null_literal] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_final] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_assert] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1042), + [anon_sym_synchronized] = ACTIONS(1042), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym_open] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_package] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1042), + [anon_sym_strictfp] = ACTIONS(1042), + [anon_sym_native] = ACTIONS(1042), + [anon_sym_transient] = ACTIONS(1042), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_sealed] = ACTIONS(1042), + [anon_sym_non_DASHsealed] = ACTIONS(1044), + [anon_sym_record] = ACTIONS(1042), + [anon_sym_ATinterface] = ACTIONS(1044), + [anon_sym_interface] = ACTIONS(1042), + [anon_sym_byte] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [anon_sym_int] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_char] = ACTIONS(1042), + [anon_sym_float] = ACTIONS(1042), + [anon_sym_double] = ACTIONS(1042), + [sym_boolean_type] = ACTIONS(1042), + [sym_void_type] = ACTIONS(1042), + [sym_this] = ACTIONS(1042), + [sym_super] = ACTIONS(1042), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [352] = { + [sym_identifier] = ACTIONS(1046), + [sym_decimal_integer_literal] = ACTIONS(1046), + [sym_hex_integer_literal] = ACTIONS(1046), + [sym_octal_integer_literal] = ACTIONS(1048), + [sym_binary_integer_literal] = ACTIONS(1048), + [sym_decimal_floating_point_literal] = ACTIONS(1048), + [sym_hex_floating_point_literal] = ACTIONS(1046), + [sym_true] = ACTIONS(1046), + [sym_false] = ACTIONS(1046), + [sym_character_literal] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1048), + [sym_null_literal] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_final] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_class] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_synchronized] = ACTIONS(1046), + [anon_sym_throw] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1046), + [anon_sym_open] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1046), + [anon_sym_import] = ACTIONS(1046), + [anon_sym_enum] = ACTIONS(1046), + [anon_sym_public] = ACTIONS(1046), + [anon_sym_protected] = ACTIONS(1046), + [anon_sym_private] = ACTIONS(1046), + [anon_sym_abstract] = ACTIONS(1046), + [anon_sym_strictfp] = ACTIONS(1046), + [anon_sym_native] = ACTIONS(1046), + [anon_sym_transient] = ACTIONS(1046), + [anon_sym_volatile] = ACTIONS(1046), + [anon_sym_sealed] = ACTIONS(1046), + [anon_sym_non_DASHsealed] = ACTIONS(1048), + [anon_sym_record] = ACTIONS(1046), + [anon_sym_ATinterface] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1046), + [anon_sym_byte] = ACTIONS(1046), + [anon_sym_short] = ACTIONS(1046), + [anon_sym_int] = ACTIONS(1046), + [anon_sym_long] = ACTIONS(1046), + [anon_sym_char] = ACTIONS(1046), + [anon_sym_float] = ACTIONS(1046), + [anon_sym_double] = ACTIONS(1046), + [sym_boolean_type] = ACTIONS(1046), + [sym_void_type] = ACTIONS(1046), + [sym_this] = ACTIONS(1046), + [sym_super] = ACTIONS(1046), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [353] = { - [sym__literal] = STATE(461), - [sym_primary_expression] = STATE(992), - [sym_array_creation_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_class_literal] = STATE(461), - [sym_object_creation_expression] = STATE(461), - [sym__unqualified_object_creation_expression] = STATE(494), - [sym_field_access] = STATE(875), - [sym_array_access] = STATE(461), - [sym_method_invocation] = STATE(461), - [sym_method_reference] = STATE(461), - [sym_resource] = STATE(1054), - [sym__annotation] = STATE(606), - [sym_marker_annotation] = STATE(606), - [sym_annotation] = STATE(606), - [sym_modifiers] = STATE(701), - [sym__type] = STATE(1201), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(770), - [sym_scoped_type_identifier] = STATE(722), - [sym_generic_type] = STATE(751), - [sym_array_type] = STATE(685), - [sym_integral_type] = STATE(685), - [sym_floating_point_type] = STATE(685), - [aux_sym_array_creation_expression_repeat1] = STATE(661), - [aux_sym_modifiers_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1016), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [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), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_final] = ACTIONS(299), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(299), - [anon_sym_synchronized] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_open] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_strictfp] = ACTIONS(299), - [anon_sym_native] = ACTIONS(299), - [anon_sym_transient] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_sealed] = ACTIONS(299), - [anon_sym_non_DASHsealed] = ACTIONS(305), - [anon_sym_record] = ACTIONS(1024), - [anon_sym_byte] = ACTIONS(77), - [anon_sym_short] = ACTIONS(77), - [anon_sym_int] = ACTIONS(77), - [anon_sym_long] = ACTIONS(77), - [anon_sym_char] = ACTIONS(77), - [anon_sym_float] = ACTIONS(79), - [anon_sym_double] = ACTIONS(79), - [sym_boolean_type] = ACTIONS(81), - [sym_void_type] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_identifier] = ACTIONS(1050), + [sym_decimal_integer_literal] = ACTIONS(1050), + [sym_hex_integer_literal] = ACTIONS(1050), + [sym_octal_integer_literal] = ACTIONS(1052), + [sym_binary_integer_literal] = ACTIONS(1052), + [sym_decimal_floating_point_literal] = ACTIONS(1052), + [sym_hex_floating_point_literal] = ACTIONS(1050), + [sym_true] = ACTIONS(1050), + [sym_false] = ACTIONS(1050), + [sym_character_literal] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1052), + [sym_null_literal] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_final] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_assert] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_yield] = ACTIONS(1050), + [anon_sym_synchronized] = ACTIONS(1050), + [anon_sym_throw] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_AT] = ACTIONS(1050), + [anon_sym_open] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(1050), + [anon_sym_enum] = ACTIONS(1050), + [anon_sym_public] = ACTIONS(1050), + [anon_sym_protected] = ACTIONS(1050), + [anon_sym_private] = ACTIONS(1050), + [anon_sym_abstract] = ACTIONS(1050), + [anon_sym_strictfp] = ACTIONS(1050), + [anon_sym_native] = ACTIONS(1050), + [anon_sym_transient] = ACTIONS(1050), + [anon_sym_volatile] = ACTIONS(1050), + [anon_sym_sealed] = ACTIONS(1050), + [anon_sym_non_DASHsealed] = ACTIONS(1052), + [anon_sym_record] = ACTIONS(1050), + [anon_sym_ATinterface] = ACTIONS(1052), + [anon_sym_interface] = ACTIONS(1050), + [anon_sym_byte] = ACTIONS(1050), + [anon_sym_short] = ACTIONS(1050), + [anon_sym_int] = ACTIONS(1050), + [anon_sym_long] = ACTIONS(1050), + [anon_sym_char] = ACTIONS(1050), + [anon_sym_float] = ACTIONS(1050), + [anon_sym_double] = ACTIONS(1050), + [sym_boolean_type] = ACTIONS(1050), + [sym_void_type] = ACTIONS(1050), + [sym_this] = ACTIONS(1050), + [sym_super] = ACTIONS(1050), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -41869,71 +43355,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 28, - ACTIONS(25), 1, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1057), 1, + anon_sym_LT, + ACTIONS(1063), 1, anon_sym_class, - ACTIONS(29), 1, + ACTIONS(1066), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(1069), 1, + anon_sym_RBRACE, + ACTIONS(1071), 1, + anon_sym_SEMI, + ACTIONS(1074), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(1077), 1, + anon_sym_static, + ACTIONS(1080), 1, anon_sym_enum, - ACTIONS(69), 1, + ACTIONS(1083), 1, anon_sym_non_DASHsealed, - ACTIONS(73), 1, + ACTIONS(1086), 1, + anon_sym_record, + ACTIONS(1089), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(1092), 1, anon_sym_interface, - ACTIONS(1044), 1, - sym_identifier, - ACTIONS(1046), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_RBRACE, - ACTIONS(1050), 1, - anon_sym_SEMI, - ACTIONS(1052), 1, - anon_sym_static, - ACTIONS(1054), 1, - anon_sym_record, - STATE(604), 1, + STATE(608), 1, sym_modifiers, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(667), 1, + STATE(661), 1, sym_type_parameters, - STATE(684), 1, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, sym_generic_type, - STATE(704), 1, + STATE(701), 1, sym__unannotated_type, - STATE(927), 1, + STATE(962), 1, sym__constructor_declarator, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(1098), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(1101), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(1095), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(17), 12, + ACTIONS(1060), 12, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -41946,7 +43432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(355), 12, + STATE(354), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -41960,71 +43446,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, [119] = 28, - ACTIONS(25), 1, - anon_sym_class, ACTIONS(29), 1, + anon_sym_class, + ACTIONS(33), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(79), 1, anon_sym_interface, - ACTIONS(1044), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1046), 1, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(1052), 1, - anon_sym_static, - ACTIONS(1054), 1, - anon_sym_record, - ACTIONS(1056), 1, + ACTIONS(1108), 1, anon_sym_RBRACE, - ACTIONS(1058), 1, + ACTIONS(1110), 1, anon_sym_SEMI, - STATE(604), 1, + ACTIONS(1112), 1, + anon_sym_static, + ACTIONS(1114), 1, + anon_sym_record, + STATE(608), 1, sym_modifiers, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(667), 1, + STATE(661), 1, sym_type_parameters, - STATE(684), 1, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, sym_generic_type, - STATE(704), 1, + STATE(701), 1, sym__unannotated_type, - STATE(927), 1, + STATE(962), 1, sym__constructor_declarator, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(17), 12, + ACTIONS(21), 12, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42037,7 +43523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(358), 12, + STATE(354), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -42051,71 +43537,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, [238] = 28, - ACTIONS(25), 1, - anon_sym_class, ACTIONS(29), 1, + anon_sym_class, + ACTIONS(33), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(79), 1, anon_sym_interface, - ACTIONS(1044), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1046), 1, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(1052), 1, + ACTIONS(1112), 1, anon_sym_static, - ACTIONS(1054), 1, + ACTIONS(1114), 1, anon_sym_record, - ACTIONS(1058), 1, - anon_sym_SEMI, - ACTIONS(1060), 1, + ACTIONS(1116), 1, anon_sym_RBRACE, - STATE(604), 1, + ACTIONS(1118), 1, + anon_sym_SEMI, + STATE(608), 1, sym_modifiers, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(667), 1, + STATE(661), 1, sym_type_parameters, - STATE(684), 1, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, sym_generic_type, - STATE(704), 1, + STATE(701), 1, sym__unannotated_type, - STATE(927), 1, + STATE(962), 1, sym__constructor_declarator, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(17), 12, + ACTIONS(21), 12, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42128,7 +43614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(358), 12, + STATE(355), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -42142,71 +43628,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, [357] = 28, - ACTIONS(25), 1, - anon_sym_class, ACTIONS(29), 1, + anon_sym_class, + ACTIONS(33), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(79), 1, anon_sym_interface, - ACTIONS(1044), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1046), 1, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(1052), 1, + ACTIONS(1110), 1, + anon_sym_SEMI, + ACTIONS(1112), 1, anon_sym_static, - ACTIONS(1054), 1, + ACTIONS(1114), 1, anon_sym_record, - ACTIONS(1062), 1, + ACTIONS(1120), 1, anon_sym_RBRACE, - ACTIONS(1064), 1, - anon_sym_SEMI, - STATE(604), 1, + STATE(608), 1, sym_modifiers, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(667), 1, + STATE(661), 1, sym_type_parameters, - STATE(684), 1, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, sym_generic_type, - STATE(704), 1, + STATE(701), 1, sym__unannotated_type, - STATE(927), 1, + STATE(962), 1, sym__constructor_declarator, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(17), 12, + ACTIONS(21), 12, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42219,7 +43705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(356), 12, + STATE(354), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -42233,71 +43719,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, [476] = 28, - ACTIONS(1066), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_LT, - ACTIONS(1075), 1, + ACTIONS(29), 1, anon_sym_class, - ACTIONS(1078), 1, + ACTIONS(33), 1, anon_sym_LBRACE, - ACTIONS(1081), 1, - anon_sym_RBRACE, - ACTIONS(1083), 1, - anon_sym_SEMI, - ACTIONS(1086), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(1089), 1, - anon_sym_static, - ACTIONS(1092), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(1095), 1, + ACTIONS(73), 1, anon_sym_non_DASHsealed, - ACTIONS(1098), 1, - anon_sym_record, - ACTIONS(1101), 1, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(1104), 1, + ACTIONS(79), 1, anon_sym_interface, - STATE(604), 1, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1112), 1, + anon_sym_static, + ACTIONS(1114), 1, + anon_sym_record, + ACTIONS(1122), 1, + anon_sym_RBRACE, + ACTIONS(1124), 1, + anon_sym_SEMI, + STATE(608), 1, sym_modifiers, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(667), 1, + STATE(661), 1, sym_type_parameters, - STATE(684), 1, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, sym_generic_type, - STATE(704), 1, + STATE(701), 1, sym__unannotated_type, - STATE(927), 1, + STATE(962), 1, sym__constructor_declarator, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1110), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(1113), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1107), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(1072), 12, + ACTIONS(21), 12, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42310,7 +43796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(358), 12, + STATE(357), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -42324,59 +43810,59 @@ static const uint16_t ts_small_parse_table[] = { sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, [595] = 25, - ACTIONS(1116), 1, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(1119), 1, + ACTIONS(1129), 1, anon_sym_LT, - ACTIONS(1125), 1, + ACTIONS(1135), 1, anon_sym_class, - ACTIONS(1128), 1, + ACTIONS(1138), 1, anon_sym_RBRACE, - ACTIONS(1130), 1, + ACTIONS(1140), 1, anon_sym_SEMI, - ACTIONS(1133), 1, + ACTIONS(1143), 1, anon_sym_AT, - ACTIONS(1136), 1, + ACTIONS(1146), 1, anon_sym_enum, - ACTIONS(1139), 1, + ACTIONS(1149), 1, anon_sym_non_DASHsealed, - ACTIONS(1142), 1, + ACTIONS(1152), 1, anon_sym_record, - ACTIONS(1145), 1, + ACTIONS(1155), 1, anon_sym_ATinterface, - ACTIONS(1148), 1, + ACTIONS(1158), 1, anon_sym_interface, - STATE(626), 1, + STATE(619), 1, sym_modifiers, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(659), 1, + STATE(672), 1, sym_type_parameters, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(695), 1, + STATE(703), 1, sym__unannotated_type, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1154), 2, + ACTIONS(1164), 2, anon_sym_float, anon_sym_double, - ACTIONS(1157), 2, + ACTIONS(1167), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1151), 5, + ACTIONS(1161), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -42391,7 +43877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(1122), 13, + ACTIONS(1132), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42406,65 +43892,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [702] = 25, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_class, - ACTIONS(57), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(79), 1, anon_sym_interface, - ACTIONS(1046), 1, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(1054), 1, + ACTIONS(1114), 1, anon_sym_record, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1162), 1, + ACTIONS(1172), 1, anon_sym_RBRACE, - ACTIONS(1164), 1, + ACTIONS(1174), 1, anon_sym_SEMI, - STATE(626), 1, + STATE(619), 1, sym_modifiers, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(659), 1, + STATE(672), 1, sym_type_parameters, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(695), 1, + STATE(703), 1, sym__unannotated_type, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(359), 8, + STATE(361), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -42473,7 +43959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(17), 13, + ACTIONS(21), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42488,65 +43974,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [809] = 25, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_class, - ACTIONS(57), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(79), 1, anon_sym_interface, - ACTIONS(1046), 1, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(1054), 1, + ACTIONS(1114), 1, anon_sym_record, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1176), 1, anon_sym_RBRACE, - ACTIONS(1168), 1, + ACTIONS(1178), 1, anon_sym_SEMI, - STATE(626), 1, + STATE(619), 1, sym_modifiers, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(659), 1, + STATE(672), 1, sym_type_parameters, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(695), 1, + STATE(703), 1, sym__unannotated_type, - STATE(983), 1, + STATE(1057), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(360), 8, + STATE(359), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -42555,7 +44041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(17), 13, + ACTIONS(21), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42570,34 +44056,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [916] = 14, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1178), 1, + ACTIONS(1188), 1, anon_sym_EQ, - ACTIONS(1182), 1, + ACTIONS(1192), 1, anon_sym_LT, - ACTIONS(1185), 1, + ACTIONS(1195), 1, anon_sym_DASH_GT, - ACTIONS(1190), 1, + ACTIONS(1200), 1, anon_sym_DOT, - ACTIONS(1194), 1, + ACTIONS(1204), 1, anon_sym_AT, - STATE(472), 1, + STATE(477), 1, sym_argument_list, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1187), 2, + ACTIONS(1197), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1170), 4, + ACTIONS(1180), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1180), 11, + ACTIONS(1190), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42609,7 +44095,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(1174), 14, + ACTIONS(1184), 14, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -42624,7 +44110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1176), 14, + ACTIONS(1186), 14, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -42640,44 +44126,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [1000] = 18, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1178), 1, + ACTIONS(1188), 1, anon_sym_EQ, - ACTIONS(1182), 1, + ACTIONS(1192), 1, anon_sym_LT, - ACTIONS(1185), 1, + ACTIONS(1195), 1, anon_sym_DASH_GT, - ACTIONS(1196), 1, + ACTIONS(1206), 1, anon_sym_AMP, - ACTIONS(1199), 1, + ACTIONS(1209), 1, anon_sym_RPAREN, - ACTIONS(1203), 1, + ACTIONS(1213), 1, anon_sym_COMMA, - ACTIONS(1205), 1, + ACTIONS(1215), 1, anon_sym_DOT, - STATE(472), 1, + STATE(477), 1, sym_argument_list, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, - STATE(1015), 1, + STATE(994), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1187), 2, + ACTIONS(1197), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1194), 2, + ACTIONS(1204), 2, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1170), 5, + ACTIONS(1180), 5, anon_sym_open, anon_sym_module, anon_sym_record, sym_this, sym_identifier, - ACTIONS(1176), 9, + ACTIONS(1186), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42687,7 +44173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1180), 11, + ACTIONS(1190), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42699,7 +44185,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(1174), 12, + ACTIONS(1184), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -42713,36 +44199,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, [1091] = 15, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1178), 1, + ACTIONS(1188), 1, anon_sym_EQ, - ACTIONS(1182), 1, + ACTIONS(1192), 1, anon_sym_LT, - ACTIONS(1185), 1, + ACTIONS(1195), 1, anon_sym_DASH_GT, - ACTIONS(1190), 1, + ACTIONS(1200), 1, anon_sym_DOT, - ACTIONS(1194), 1, + ACTIONS(1204), 1, anon_sym_AT, - ACTIONS(1209), 1, + ACTIONS(1219), 1, anon_sym_COLON, - STATE(472), 1, + STATE(477), 1, sym_argument_list, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1187), 2, + ACTIONS(1197), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1170), 4, + ACTIONS(1180), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1176), 10, + ACTIONS(1186), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42753,7 +44239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1180), 11, + ACTIONS(1190), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42765,7 +44251,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(1174), 13, + ACTIONS(1184), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -42780,36 +44266,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, [1173] = 15, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1178), 1, + ACTIONS(1188), 1, anon_sym_EQ, - ACTIONS(1182), 1, + ACTIONS(1192), 1, anon_sym_LT, - ACTIONS(1185), 1, + ACTIONS(1195), 1, anon_sym_DASH_GT, - ACTIONS(1190), 1, + ACTIONS(1200), 1, anon_sym_DOT, - ACTIONS(1194), 1, + ACTIONS(1204), 1, anon_sym_AT, - ACTIONS(1211), 1, + ACTIONS(1221), 1, anon_sym_COLON, - STATE(472), 1, + STATE(477), 1, sym_argument_list, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1187), 2, + ACTIONS(1197), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1170), 4, + ACTIONS(1180), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1176), 10, + ACTIONS(1186), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -42820,7 +44306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1180), 11, + ACTIONS(1190), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42832,7 +44318,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(1174), 13, + ACTIONS(1184), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -42847,49 +44333,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_instanceof, [1255] = 20, - ACTIONS(1213), 1, + ACTIONS(1223), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1229), 1, anon_sym_class, - ACTIONS(1222), 1, + ACTIONS(1232), 1, anon_sym_RBRACE, - ACTIONS(1224), 1, + ACTIONS(1234), 1, anon_sym_AT, - ACTIONS(1227), 1, + ACTIONS(1237), 1, anon_sym_enum, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_non_DASHsealed, - ACTIONS(1233), 1, + ACTIONS(1243), 1, anon_sym_ATinterface, - ACTIONS(1236), 1, + ACTIONS(1246), 1, anon_sym_interface, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(673), 1, + STATE(679), 1, sym_modifiers, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(712), 1, + STATE(711), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 2, + ACTIONS(1252), 2, anon_sym_float, anon_sym_double, - ACTIONS(1245), 2, + ACTIONS(1255), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1239), 5, + ACTIONS(1249), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -42903,7 +44389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(1216), 13, + ACTIONS(1226), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42918,49 +44404,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [1346] = 20, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_class, - ACTIONS(57), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(79), 1, anon_sym_interface, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1258), 1, anon_sym_RBRACE, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(673), 1, + STATE(679), 1, sym_modifiers, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(712), 1, + STATE(711), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -42974,7 +44460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(17), 13, + ACTIONS(21), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -42989,49 +44475,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [1437] = 20, - ACTIONS(25), 1, + ACTIONS(29), 1, anon_sym_class, - ACTIONS(57), 1, + ACTIONS(61), 1, anon_sym_AT, - ACTIONS(67), 1, + ACTIONS(71), 1, anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, anon_sym_ATinterface, - ACTIONS(75), 1, + ACTIONS(79), 1, anon_sym_interface, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1250), 1, + ACTIONS(1260), 1, anon_sym_RBRACE, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(673), 1, + STATE(679), 1, sym_modifiers, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(712), 1, + STATE(711), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(423), 4, + STATE(428), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -43045,7 +44531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(17), 13, + ACTIONS(21), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -43060,14 +44546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_sealed, [1528] = 5, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(458), 1, + STATE(500), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1252), 15, + ACTIONS(1262), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43083,7 +44569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1254), 30, + ACTIONS(1264), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43114,32 +44600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1588] = 8, - ACTIONS(1172), 1, + [1588] = 5, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1260), 1, - anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_DASH_GT, - STATE(464), 1, + STATE(499), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1262), 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(1256), 14, + ACTIONS(1266), 15, anon_sym_AMP, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, @@ -43153,8 +44624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1258), 18, + ACTIONS(1268), 30, 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, @@ -43162,6 +44644,7 @@ 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, @@ -43172,27 +44655,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1654] = 11, - ACTIONS(1172), 1, + [1648] = 11, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1260), 1, + ACTIONS(1270), 1, + sym_identifier, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(1264), 1, + ACTIONS(1280), 1, anon_sym_DASH_GT, - ACTIONS(1266), 1, - sym_identifier, - STATE(464), 1, + STATE(473), 1, sym_argument_list, - STATE(1072), 1, + STATE(1081), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1268), 3, + ACTIONS(1282), 3, anon_sym_open, anon_sym_module, anon_sym_record, - ACTIONS(1262), 11, + ACTIONS(1276), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43204,7 +44687,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(1258), 13, + ACTIONS(1278), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43218,7 +44701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - ACTIONS(1256), 14, + ACTIONS(1272), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43233,32 +44716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1726] = 5, - ACTIONS(1172), 1, + [1720] = 8, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(492), 1, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1280), 1, + anon_sym_DASH_GT, + STATE(473), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 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(1272), 30, - anon_sym_RPAREN, + ACTIONS(1276), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43270,6 +44740,23 @@ 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(1272), 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(1278), 18, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43277,7 +44764,6 @@ 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, @@ -43289,14 +44775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [1786] = 5, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(493), 1, + STATE(479), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1274), 15, + ACTIONS(1284), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43312,7 +44798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1276), 30, + ACTIONS(1286), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43344,14 +44830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [1846] = 5, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(477), 1, + STATE(467), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1278), 15, + ACTIONS(1288), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43367,7 +44853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1280), 30, + ACTIONS(1290), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43402,7 +44888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1278), 15, + ACTIONS(1266), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43418,7 +44904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1280), 30, + ACTIONS(1268), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43453,7 +44939,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1274), 15, + ACTIONS(1292), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43469,7 +44955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1276), 30, + ACTIONS(1294), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43500,11 +44986,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2014] = 3, + [2014] = 13, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1192), 1, + anon_sym_LT, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + ACTIONS(1296), 1, + anon_sym_EQ, + ACTIONS(1300), 1, + anon_sym_DASH_GT, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1186), 11, + 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(1298), 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(1184), 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_COLON, + [2088] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1282), 15, + ACTIONS(1288), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -43520,7 +45067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1284), 30, + ACTIONS(1290), 30, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -43551,30 +45098,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2068] = 13, - ACTIONS(1172), 1, - anon_sym_LPAREN, + [2142] = 13, ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1192), 1, anon_sym_LT, - ACTIONS(1190), 1, + ACTIONS(1195), 1, + anon_sym_DASH_GT, + ACTIONS(1200), 1, anon_sym_DOT, - ACTIONS(1194), 1, + ACTIONS(1204), 1, anon_sym_AT, - ACTIONS(1286), 1, + ACTIONS(1303), 1, anon_sym_EQ, - ACTIONS(1290), 1, - anon_sym_DASH_GT, - STATE(472), 1, + STATE(477), 1, sym_argument_list, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1187), 2, + ACTIONS(1197), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1176), 11, + ACTIONS(1186), 11, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43582,11 +45130,10 @@ static const uint16_t ts_small_parse_table[] = { 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(1288), 11, + ACTIONS(1190), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43598,7 +45145,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(1174), 13, + ACTIONS(1184), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -43611,43 +45158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - [2142] = 13, - ACTIONS(1172), 1, - anon_sym_LPAREN, + [2215] = 11, ACTIONS(1182), 1, - anon_sym_LT, - ACTIONS(1185), 1, - anon_sym_DASH_GT, - ACTIONS(1190), 1, - anon_sym_DOT, - ACTIONS(1194), 1, - anon_sym_AT, - ACTIONS(1293), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, + anon_sym_COMMA, + ACTIONS(1274), 1, anon_sym_EQ, - STATE(472), 1, + ACTIONS(1280), 1, + anon_sym_DASH_GT, + ACTIONS(1305), 1, + anon_sym_RPAREN, + STATE(473), 1, sym_argument_list, - STATE(674), 1, - sym_type_arguments, + STATE(987), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1187), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1176), 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(1180), 11, + ACTIONS(1276), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43659,9 +45188,10 @@ 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(1174), 12, + ACTIONS(1272), 13, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -43672,25 +45202,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - [2215] = 11, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(1203), 1, - anon_sym_COMMA, - ACTIONS(1260), 1, + ACTIONS(1278), 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, + [2284] = 5, + ACTIONS(1188), 1, anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_DASH_GT, - ACTIONS(1295), 1, - anon_sym_RPAREN, - STATE(464), 1, - sym_argument_list, - STATE(1066), 1, - aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1262), 11, + ACTIONS(1190), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43702,7 +45234,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(1256), 13, + ACTIONS(1184), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43716,7 +45248,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(1258), 13, + anon_sym_COLON, + ACTIONS(1186), 18, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43724,19 +45258,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2284] = 5, - ACTIONS(1178), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + [2341] = 8, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1308), 1, anon_sym_EQ, + ACTIONS(1312), 1, + anon_sym_DASH_GT, + STATE(473), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1180), 11, + ACTIONS(1310), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43748,7 +45292,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(1174), 14, + ACTIONS(1272), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43763,8 +45307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1176), 18, - anon_sym_RPAREN, + ACTIONS(1278), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43777,27 +45320,24 @@ 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, - anon_sym_RBRACE, - anon_sym_SEMI, - [2341] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1302), 1, + [2403] = 7, + ACTIONS(1319), 1, anon_sym_LBRACK, - STATE(386), 1, + ACTIONS(1322), 1, + anon_sym_AT, + STATE(383), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(824), 4, + STATE(863), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1298), 14, + ACTIONS(1315), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43812,7 +45352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1300), 22, + ACTIONS(1317), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -43835,19 +45375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2401] = 8, - ACTIONS(1172), 1, + [2463] = 9, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(1308), 1, + ACTIONS(1280), 1, anon_sym_DASH_GT, - STATE(464), 1, + ACTIONS(1325), 1, + anon_sym_module, + STATE(473), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 11, + ACTIONS(1276), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43859,7 +45401,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(1256), 14, + ACTIONS(1272), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43873,8 +45415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1258), 14, + ACTIONS(1278), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43882,28 +45423,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2463] = 9, - ACTIONS(1172), 1, + anon_sym_SEMI, + [2527] = 9, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1260), 1, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(1264), 1, + ACTIONS(1280), 1, anon_sym_DASH_GT, - ACTIONS(1311), 1, + ACTIONS(1327), 1, sym_identifier, - STATE(464), 1, + STATE(473), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1262), 11, + ACTIONS(1276), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43915,7 +45456,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(1258), 13, + ACTIONS(1278), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -43929,48 +45470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - ACTIONS(1256), 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_instanceof, - [2527] = 9, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(1260), 1, - anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_DASH_GT, - ACTIONS(1313), 1, - anon_sym_module, - STATE(464), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1262), 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(1256), 13, + ACTIONS(1272), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -43984,37 +45484,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(1258), 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_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, [2591] = 7, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1322), 1, + ACTIONS(297), 1, anon_sym_AT, - STATE(386), 1, + ACTIONS(1333), 1, + anon_sym_LBRACK, + STATE(383), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(824), 4, + STATE(863), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1315), 14, + ACTIONS(1329), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44029,7 +45515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1317), 22, + ACTIONS(1331), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44052,24 +45538,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2651] = 8, - ACTIONS(301), 1, + [2651] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1302), 1, + ACTIONS(1339), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, - STATE(422), 1, + STATE(481), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(824), 4, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(798), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1325), 13, + ACTIONS(1335), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44078,12 +45567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1327), 21, + anon_sym_COLON, + ACTIONS(1337), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44096,33 +45581,38 @@ 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_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2712] = 8, - ACTIONS(301), 1, + [2714] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1302), 1, + ACTIONS(1339), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, - STATE(422), 1, + STATE(487), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(824), 4, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(798), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1329), 13, + ACTIONS(1341), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44131,12 +45621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1331), 21, + anon_sym_COLON, + ACTIONS(1343), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44149,36 +45635,35 @@ 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_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2773] = 9, - ACTIONS(301), 1, + [2777] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(1333), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, - STATE(469), 1, + STATE(419), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(397), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(791), 4, + STATE(863), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1333), 9, + ACTIONS(1345), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44187,8 +45672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1335), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1347), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44201,25 +45690,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_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2836] = 9, - ACTIONS(301), 1, + [2838] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(1339), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, - STATE(462), 1, + STATE(489), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, @@ -44227,12 +45714,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(791), 4, + STATE(798), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1339), 9, + ACTIONS(1349), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44242,7 +45729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1341), 23, + ACTIONS(1351), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44266,14 +45753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2899] = 9, - ACTIONS(301), 1, + [2901] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(1339), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, - STATE(490), 1, + STATE(491), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, @@ -44281,12 +45768,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(791), 4, + STATE(798), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1343), 9, + ACTIONS(1353), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44296,7 +45783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1345), 23, + ACTIONS(1355), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44320,27 +45807,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2962] = 9, - ACTIONS(301), 1, + [2964] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1337), 1, + ACTIONS(1333), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(386), 1, aux_sym_dimensions_repeat1, - STATE(473), 1, + STATE(419), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(397), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(791), 4, + STATE(863), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1347), 9, + ACTIONS(1357), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44349,8 +45833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1349), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1359), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44363,24 +45851,69 @@ 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_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3025] = 5, - ACTIONS(1286), 1, + [3025] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1363), 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(1361), 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, + [3075] = 5, + ACTIONS(1296), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 11, + ACTIONS(1298), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44392,7 +45925,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(1174), 14, + ACTIONS(1184), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44407,7 +45940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1176), 15, + ACTIONS(1186), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -44423,95 +45956,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [3079] = 19, - ACTIONS(297), 1, + [3129] = 19, + ACTIONS(293), 1, anon_sym_RPAREN, - ACTIONS(301), 1, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(305), 1, + ACTIONS(301), 1, anon_sym_non_DASHsealed, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, STATE(398), 1, sym_receiver_parameter, - STATE(538), 1, + STATE(539), 1, aux_sym_modifiers_repeat1, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(664), 1, + STATE(665), 1, aux_sym_array_creation_expression_repeat1, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(703), 1, + STATE(704), 1, sym_modifiers, - STATE(715), 1, + STATE(722), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(1003), 2, + STATE(984), 2, sym_formal_parameter, sym_spread_parameter, - STATE(606), 3, + STATE(610), 3, sym__annotation, sym_marker_annotation, sym_annotation, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(299), 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, - [3161] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1353), 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(1351), 33, + ACTIONS(295), 13, 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, @@ -44521,23 +46019,11 @@ static const uint16_t ts_small_parse_table[] = { 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, [3211] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 8, + ACTIONS(1367), 8, anon_sym_LPAREN, anon_sym_LT, anon_sym_COMMA, @@ -44546,7 +46032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1355), 33, + ACTIONS(1365), 33, anon_sym_final, anon_sym_class, anon_sym_default, @@ -44581,9 +46067,9 @@ static const uint16_t ts_small_parse_table[] = { sym_void_type, sym_identifier, [3261] = 7, - ACTIONS(1363), 1, + ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1366), 1, + ACTIONS(1376), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, @@ -44591,12 +46077,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(818), 4, + STATE(866), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1359), 9, + ACTIONS(1369), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -44606,7 +46092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1361), 23, + ACTIONS(1371), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44631,50 +46117,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, [3318] = 16, - ACTIONS(301), 1, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(305), 1, + ACTIONS(301), 1, anon_sym_non_DASHsealed, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1369), 1, + ACTIONS(1379), 1, anon_sym_RPAREN, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(703), 1, + STATE(704), 1, sym_modifiers, - STATE(720), 1, + STATE(724), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(998), 2, + STATE(1002), 2, sym_formal_parameter, sym_spread_parameter, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(538), 4, + STATE(539), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(299), 13, + ACTIONS(295), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -44688,104 +46174,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [3392] = 3, + [3392] = 15, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(704), 1, + sym_modifiers, + STATE(724), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(952), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(954), 26, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_open, - anon_sym_module, - anon_sym_record, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(1202), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 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_this, - sym_super, - sym_identifier, - [3439] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1371), 14, - 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_COLON, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1373), 24, - 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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [3486] = 3, + ACTIONS(295), 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, + [3463] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(800), 12, + ACTIONS(880), 12, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, sym_character_literal, - sym_text_block, + anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_LPAREN, anon_sym_BANG, anon_sym_TILDE, @@ -44793,13 +46247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_SEMI, anon_sym_AT, - ACTIONS(802), 26, + ACTIONS(882), 26, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, sym_true, sym_false, - sym_string_literal, + anon_sym_DQUOTE, sym_null_literal, anon_sym_PLUS, anon_sym_DASH, @@ -44820,17 +46274,74 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [3533] = 6, - ACTIONS(1375), 1, + [3510] = 16, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(696), 1, + sym_modifiers, + STATE(725), 1, + sym__unannotated_type, + STATE(876), 1, + sym_catch_type, + STATE(1277), 1, + sym_catch_formal_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(295), 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, + [3583] = 6, + ACTIONS(1381), 1, anon_sym_LT, - ACTIONS(1378), 1, + ACTIONS(1384), 1, anon_sym_DOT, - STATE(412), 1, + STATE(407), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1170), 12, + ACTIONS(1180), 12, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -44843,7 +46354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1194), 23, + ACTIONS(1204), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44867,30 +46378,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3586] = 6, - ACTIONS(1384), 1, + [3636] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1315), 14, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - ACTIONS(1387), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_COLON, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1317), 24, + 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, - STATE(409), 1, - sym_type_arguments, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [3683] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 12, + ACTIONS(1386), 14, 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_COLON, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1382), 23, + ACTIONS(1388), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -44906,147 +46457,83 @@ 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_RBRACE, anon_sym_SEMI, anon_sym_AT, - [3639] = 16, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1160), 1, - sym_identifier, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(689), 1, - sym_modifiers, - STATE(719), 1, - sym__unannotated_type, - STATE(873), 1, - sym_catch_type, - STATE(1208), 1, - sym_catch_formal_parameter, + [3730] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(538), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(77), 5, + ACTIONS(1014), 12, + sym_octal_integer_literal, + 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(1016), 26, + sym_decimal_integer_literal, + sym_hex_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_open, + anon_sym_module, + anon_sym_record, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(299), 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, - [3712] = 15, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1160), 1, - sym_identifier, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(703), 1, - sym_modifiers, - STATE(720), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, sym_boolean_type, sym_void_type, - STATE(1190), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(538), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(299), 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, - [3783] = 3, + sym_this, + sym_super, + sym_identifier, + [3777] = 6, + ACTIONS(1394), 1, + anon_sym_LT, + ACTIONS(1397), 1, + anon_sym_DOT, + STATE(416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1315), 14, + ACTIONS(1390), 12, 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_COLON, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1317), 24, + ACTIONS(1392), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45062,12 +46549,11 @@ 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_RBRACE, anon_sym_SEMI, anon_sym_AT, @@ -45075,7 +46561,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1389), 13, + ACTIONS(1399), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45089,7 +46575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1391), 24, + ACTIONS(1401), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45118,7 +46604,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1393), 13, + ACTIONS(1403), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45132,7 +46618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1395), 24, + ACTIONS(1405), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45161,7 +46647,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 13, + ACTIONS(1407), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45175,7 +46661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1399), 24, + ACTIONS(1409), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45201,20 +46687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, [3968] = 6, - ACTIONS(1403), 1, + ACTIONS(1413), 1, anon_sym_LPAREN, - ACTIONS(1407), 1, + ACTIONS(1417), 1, anon_sym_DOT, - STATE(453), 1, + STATE(431), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 3, + ACTIONS(1415), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1401), 31, + ACTIONS(1411), 31, anon_sym_final, anon_sym_class, anon_sym_default, @@ -45244,56 +46730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_float, anon_sym_double, sym_boolean_type, - sym_void_type, - sym_identifier, - [4020] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1409), 13, - 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_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1411), 24, - 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_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [4066] = 3, + sym_void_type, + sym_identifier, + [4020] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 13, + ACTIONS(1419), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45307,7 +46750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1415), 24, + ACTIONS(1421), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45332,11 +46775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4112] = 3, + [4066] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1417), 13, + ACTIONS(1423), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45350,7 +46793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1419), 24, + ACTIONS(1425), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45375,11 +46818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4158] = 3, + [4112] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 13, + ACTIONS(1427), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45393,7 +46836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1423), 24, + ACTIONS(1429), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45418,11 +46861,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4204] = 3, + [4158] = 6, + ACTIONS(1413), 1, + anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_DOT, + STATE(433), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 13, + ACTIONS(1433), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1431), 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, + [4210] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1437), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45436,7 +46925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1427), 24, + ACTIONS(1439), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45461,13 +46950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4250] = 4, - ACTIONS(1387), 1, - anon_sym_DOT, + [4256] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 13, + ACTIONS(1441), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45481,7 +46968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1382), 23, + ACTIONS(1443), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45502,14 +46989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4298] = 3, + [4302] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 13, + ACTIONS(1445), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45523,7 +47011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1431), 24, + ACTIONS(1447), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45548,57 +47036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4344] = 6, - ACTIONS(1403), 1, - anon_sym_LPAREN, - ACTIONS(1437), 1, + [4348] = 4, + ACTIONS(1397), 1, anon_sym_DOT, - STATE(454), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1435), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1433), 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, - [4396] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 13, + ACTIONS(1390), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45612,7 +47056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1441), 23, + ACTIONS(1392), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45636,11 +47080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4441] = 3, + [4396] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 13, + ACTIONS(1449), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45654,7 +47098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1445), 23, + ACTIONS(1451), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45678,11 +47122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4486] = 3, + [4441] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 13, + ACTIONS(1453), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45696,7 +47140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1382), 23, + ACTIONS(1455), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45720,11 +47164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4531] = 3, + [4486] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 13, + ACTIONS(1457), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45738,7 +47182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_record, sym_identifier, - ACTIONS(1449), 23, + ACTIONS(1459), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45762,60 +47206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [4576] = 7, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(1457), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1453), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(427), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1455), 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(1451), 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, - [4628] = 5, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_class_body, + [4531] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 9, + ACTIONS(1390), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45824,8 +47219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1461), 24, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1392), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45838,27 +47237,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_RBRACE, anon_sym_SEMI, - [4676] = 5, - ACTIONS(1463), 1, + anon_sym_AT, + [4576] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(480), 1, + STATE(483), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 9, + ACTIONS(1461), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45868,7 +47266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1467), 24, + ACTIONS(1463), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45893,15 +47291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4724] = 5, - ACTIONS(1463), 1, + [4624] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(470), 1, + STATE(476), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 9, + ACTIONS(1467), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45911,7 +47309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1471), 24, + ACTIONS(1469), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -45936,60 +47334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4772] = 7, - ACTIONS(1480), 1, - anon_sym_AT, - ACTIONS(1483), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1475), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(427), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1477), 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(1473), 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, - [4824] = 5, - ACTIONS(1463), 1, + [4672] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(475), 1, + STATE(495), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1486), 9, + ACTIONS(1471), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -45999,7 +47352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1488), 24, + ACTIONS(1473), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46024,51 +47377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [4872] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1492), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1490), 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, - [4915] = 3, + [4720] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(494), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1494), 9, + ACTIONS(1475), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46078,7 +47395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1496), 25, + ACTIONS(1477), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46101,28 +47418,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4958] = 3, + [4768] = 7, + ACTIONS(1486), 1, + anon_sym_AT, + ACTIONS(1489), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1500), 6, + ACTIONS(1481), 2, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1498), 28, + STATE(427), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1483), 13, 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, @@ -46132,6 +47450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + ACTIONS(1479), 14, + anon_sym_class, + anon_sym_enum, anon_sym_record, anon_sym_interface, anon_sym_byte, @@ -46144,25 +47465,27 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5001] = 3, + [4820] = 7, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(1498), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1504), 6, + ACTIONS(1494), 2, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1502), 28, + STATE(427), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1496), 13, 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, @@ -46172,6 +47495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + ACTIONS(1492), 14, + anon_sym_class, + anon_sym_enum, anon_sym_record, anon_sym_interface, anon_sym_byte, @@ -46184,60 +47510,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5044] = 5, - ACTIONS(1506), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1512), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - ACTIONS(1508), 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_instanceof, - ACTIONS(1510), 21, - 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_RBRACE, - anon_sym_SEMI, - [5091] = 3, + [4872] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1516), 6, + ACTIONS(1502), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1514), 28, + ACTIONS(1500), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46266,18 +47550,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5134] = 3, + [4915] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1520), 6, + ACTIONS(1506), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1518), 28, + ACTIONS(1504), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46306,24 +47590,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5177] = 3, + [4958] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1524), 6, + ACTIONS(1510), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1522), 28, + ACTIONS(1508), 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, @@ -46346,11 +47630,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5220] = 3, + [5001] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1526), 9, + ACTIONS(1357), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46359,8 +47643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1528), 25, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1359), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46373,37 +47661,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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5263] = 3, + [5044] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1532), 6, + ACTIONS(1514), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1530), 28, + ACTIONS(1512), 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, @@ -46426,11 +47710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5306] = 3, + [5087] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1534), 9, + ACTIONS(1516), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46440,7 +47724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1536), 25, + ACTIONS(1518), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46466,60 +47750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - [5349] = 5, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1544), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - ACTIONS(1540), 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_instanceof, - ACTIONS(1542), 21, - 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_RBRACE, - anon_sym_SEMI, - [5396] = 3, + [5130] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1548), 6, + ACTIONS(1522), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1546), 28, + ACTIONS(1520), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46548,24 +47790,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5439] = 3, + [5173] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1552), 3, + ACTIONS(1526), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1550), 31, + ACTIONS(1524), 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, @@ -46588,18 +47830,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5482] = 3, + [5216] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 6, + ACTIONS(1530), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1554), 28, + ACTIONS(1528), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46628,18 +47870,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5525] = 3, + [5259] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1560), 6, + ACTIONS(1534), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1558), 28, + ACTIONS(1532), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46668,24 +47910,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5568] = 3, + [5302] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1564), 6, + ACTIONS(1538), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1562), 28, + ACTIONS(1536), 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, @@ -46708,11 +47950,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5611] = 3, + [5345] = 5, + ACTIONS(1540), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1566), 9, + ACTIONS(1546), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1542), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46721,8 +47969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1568), 25, + anon_sym_instanceof, + ACTIONS(1544), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46735,31 +47983,67 @@ 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_RBRACE, + anon_sym_SEMI, + [5392] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1550), 6, + anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [5654] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1548), 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, + [5435] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1572), 6, + ACTIONS(1554), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1570), 28, + ACTIONS(1552), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46788,18 +48072,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5697] = 3, + [5478] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1576), 6, + ACTIONS(1558), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1574), 28, + ACTIONS(1556), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46828,11 +48112,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5740] = 3, + [5521] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1329), 13, + ACTIONS(1560), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -46841,12 +48125,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - ACTIONS(1331), 21, + anon_sym_COLON, + ACTIONS(1562), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -46859,27 +48139,31 @@ 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_RBRACE, anon_sym_SEMI, - [5783] = 3, + [5564] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1580), 6, + ACTIONS(1566), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1578), 28, + ACTIONS(1564), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46908,18 +48192,98 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5826] = 3, + [5607] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1570), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1568), 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, + [5650] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1572), 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(1574), 25, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + [5693] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1584), 6, + ACTIONS(1578), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1582), 28, + ACTIONS(1576), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46948,18 +48312,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5869] = 3, + [5736] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1588), 6, + ACTIONS(1582), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1586), 28, + ACTIONS(1580), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -46988,15 +48352,57 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5912] = 3, + [5779] = 5, + ACTIONS(1584), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1590), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1586), 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_instanceof, + ACTIONS(1588), 21, + 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_RBRACE, + anon_sym_SEMI, + [5826] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1592), 3, + ACTIONS(1594), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1590), 31, + ACTIONS(1592), 31, anon_sym_final, anon_sym_class, anon_sym_default, @@ -47028,15 +48434,55 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5955] = 3, + [5869] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1596), 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(1598), 25, + 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_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [5912] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1596), 3, + ACTIONS(1602), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1594), 31, + ACTIONS(1600), 31, anon_sym_final, anon_sym_class, anon_sym_default, @@ -47068,11 +48514,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5998] = 3, + [5955] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1598), 9, + ACTIONS(1604), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47082,7 +48528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1600), 25, + ACTIONS(1606), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47108,18 +48554,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + [5998] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1610), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1608), 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, [6041] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 6, + ACTIONS(1614), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1602), 28, + ACTIONS(1612), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -47152,20 +48638,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1608), 3, + ACTIONS(1618), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1606), 31, + ACTIONS(1616), 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, @@ -47192,7 +48678,163 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1610), 9, + ACTIONS(1620), 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(1622), 24, + 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_RBRACE, + anon_sym_SEMI, + [6169] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1624), 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(1626), 24, + 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_RBRACE, + anon_sym_SEMI, + [6211] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1628), 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(1630), 24, + 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_RBRACE, + anon_sym_SEMI, + [6253] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1632), 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(1634), 24, + 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_RBRACE, + anon_sym_SEMI, + [6295] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47202,7 +48844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1612), 24, + ACTIONS(1638), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47227,11 +48869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6169] = 3, + [6337] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1614), 9, + ACTIONS(1640), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47241,7 +48883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1616), 24, + ACTIONS(1642), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47266,11 +48908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6211] = 3, + [6379] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1618), 9, + ACTIONS(1644), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47280,7 +48922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1620), 24, + ACTIONS(1646), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47305,11 +48947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6253] = 3, + [6421] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1174), 9, + ACTIONS(1648), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47319,7 +48961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1176), 24, + ACTIONS(1650), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47344,11 +48986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6295] = 3, + [6463] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1622), 9, + ACTIONS(1652), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47358,7 +49000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1624), 24, + ACTIONS(1654), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47383,11 +49025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6337] = 3, + [6505] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1626), 9, + ACTIONS(1656), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47397,7 +49039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1628), 24, + ACTIONS(1658), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47422,11 +49064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6379] = 3, + [6547] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1630), 9, + ACTIONS(1184), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47436,7 +49078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1632), 24, + ACTIONS(1186), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47461,11 +49103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6421] = 3, + [6589] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1634), 9, + ACTIONS(1660), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47475,7 +49117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1636), 24, + ACTIONS(1662), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47500,11 +49142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6463] = 3, + [6631] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 9, + ACTIONS(1664), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47514,7 +49156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1640), 24, + ACTIONS(1666), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47539,17 +49181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6505] = 3, + [6673] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1644), 5, + ACTIONS(1670), 5, anon_sym_LT, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1642), 28, + ACTIONS(1668), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -47578,50 +49220,50 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6547] = 3, + [6715] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1648), 5, + ACTIONS(1672), 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(1674), 24, + 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_RBRACE, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1646), 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, - [6589] = 3, + [6757] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1650), 9, + ACTIONS(1676), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47631,7 +49273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1652), 24, + ACTIONS(1678), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47656,11 +49298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6631] = 3, + [6799] = 6, + ACTIONS(1680), 1, + anon_sym_LBRACK, + ACTIONS(1682), 1, + anon_sym_DOT, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1654), 9, + ACTIONS(313), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47670,7 +49318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1656), 24, + ACTIONS(315), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47689,17 +49337,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_RBRACE, anon_sym_SEMI, - [6673] = 3, + [6847] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1658), 9, + ACTIONS(1686), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47709,7 +49354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1660), 24, + ACTIONS(1688), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47734,11 +49379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6715] = 3, + [6889] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 9, + ACTIONS(1690), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47748,7 +49393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1664), 24, + ACTIONS(1692), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47773,11 +49418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6757] = 3, + [6931] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 9, + ACTIONS(1694), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47787,7 +49432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1668), 24, + ACTIONS(1696), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47812,11 +49457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6799] = 3, + [6973] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 9, + ACTIONS(1698), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47826,7 +49471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1672), 24, + ACTIONS(1700), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47851,11 +49496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6841] = 3, + [7015] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 9, + ACTIONS(1702), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47865,7 +49510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1676), 24, + ACTIONS(1704), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47890,52 +49535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6883] = 5, - ACTIONS(29), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_block, + [7057] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1680), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1678), 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, - [6929] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1682), 9, + ACTIONS(1706), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47945,7 +49549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1684), 24, + ACTIONS(1708), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -47970,11 +49574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6971] = 3, + [7099] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 9, + ACTIONS(1710), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -47984,7 +49588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1688), 24, + ACTIONS(1712), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48009,11 +49613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7013] = 3, + [7141] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 9, + ACTIONS(1714), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48023,7 +49627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1692), 24, + ACTIONS(1716), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48048,11 +49652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7055] = 3, + [7183] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 9, + ACTIONS(1718), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48062,7 +49666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1696), 24, + ACTIONS(1720), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48087,11 +49691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7097] = 3, + [7225] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 9, + ACTIONS(1722), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48101,7 +49705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1700), 24, + ACTIONS(1724), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48126,17 +49730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7139] = 6, - ACTIONS(1702), 1, - anon_sym_LBRACK, - ACTIONS(1704), 1, - anon_sym_DOT, - ACTIONS(1706), 1, - anon_sym_COLON_COLON, + [7267] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(285), 9, + ACTIONS(1726), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48146,7 +49744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(287), 21, + ACTIONS(1728), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48165,14 +49763,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_RBRACE, anon_sym_SEMI, - [7187] = 3, + [7309] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1708), 9, + ACTIONS(1730), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48182,7 +49783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1710), 24, + ACTIONS(1732), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48207,11 +49808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7229] = 3, + [7351] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1712), 9, + ACTIONS(1734), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48221,7 +49822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1714), 24, + ACTIONS(1736), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48246,11 +49847,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7271] = 3, + [7393] = 5, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1745), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1743), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1738), 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(1741), 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, + [7439] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1716), 9, + ACTIONS(1747), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48260,7 +49902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1718), 24, + ACTIONS(1749), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48285,11 +49927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7313] = 3, + [7481] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1720), 9, + ACTIONS(1751), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48299,7 +49941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1722), 24, + ACTIONS(1753), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48324,11 +49966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7355] = 3, + [7523] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1724), 9, + ACTIONS(1755), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48338,7 +49980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1726), 24, + ACTIONS(1757), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48363,11 +50005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7397] = 3, + [7565] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1728), 9, + ACTIONS(1759), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48377,7 +50019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1730), 24, + ACTIONS(1761), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48402,11 +50044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7439] = 3, + [7607] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1732), 9, + ACTIONS(1763), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48416,7 +50058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1734), 24, + ACTIONS(1765), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48441,11 +50083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7481] = 3, + [7649] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1736), 9, + ACTIONS(1767), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48455,7 +50097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1738), 24, + ACTIONS(1769), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48478,54 +50120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [7523] = 5, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1680), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1743), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1740), 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(1678), 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, - [7569] = 3, + anon_sym_RBRACE, + anon_sym_SEMI, + [7691] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1745), 9, + ACTIONS(1771), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48535,7 +50136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1747), 24, + ACTIONS(1773), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48560,11 +50161,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7611] = 3, + [7733] = 5, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_block, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1745), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1741), 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, + [7779] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1749), 9, + ACTIONS(1775), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48574,7 +50216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1751), 24, + ACTIONS(1777), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48599,11 +50241,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7653] = 3, + [7821] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1781), 5, + anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1779), 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, + [7863] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1753), 9, + ACTIONS(1783), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48613,7 +50294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1755), 24, + ACTIONS(1785), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48638,11 +50319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7695] = 3, + [7905] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 9, + ACTIONS(1787), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48652,7 +50333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1759), 24, + ACTIONS(1789), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48677,18 +50358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [7737] = 5, - ACTIONS(1018), 1, + [7947] = 5, + ACTIONS(932), 1, anon_sym_LPAREN, - STATE(1134), 1, + STATE(1120), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1680), 2, + ACTIONS(1745), 2, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1678), 28, + ACTIONS(1741), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -48717,11 +50398,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7782] = 3, + [7992] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 12, + ACTIONS(1421), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -48734,7 +50415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1393), 19, + ACTIONS(1419), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -48754,11 +50435,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7822] = 3, + [8032] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 12, + ACTIONS(1405), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -48771,7 +50452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1421), 19, + ACTIONS(1403), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -48791,11 +50472,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7862] = 3, + [8072] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1391), 12, + ACTIONS(1429), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -48808,7 +50489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1389), 19, + ACTIONS(1427), 19, anon_sym_new, anon_sym_DOT, anon_sym_open, @@ -48828,15 +50509,15 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [7902] = 3, + [8112] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1763), 3, + ACTIONS(1793), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1761), 27, + ACTIONS(1791), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -48864,48 +50545,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7941] = 4, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1765), 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(1767), 20, - 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_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [7982] = 3, + [8151] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 8, + ACTIONS(1795), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48914,7 +50558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1773), 22, + ACTIONS(1797), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48937,11 +50581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8021] = 3, + [8190] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1775), 8, + ACTIONS(1799), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -48950,7 +50594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1777), 22, + ACTIONS(1801), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -48973,47 +50617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8060] = 3, + [8229] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1779), 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(1781), 22, - 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, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8099] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1783), 8, + ACTIONS(1803), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49022,7 +50633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1785), 22, + ACTIONS(1805), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49040,19 +50651,14 @@ 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_RBRACE, anon_sym_SEMI, - [8138] = 4, + [8270] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1787), 8, + ACTIONS(1809), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49061,7 +50667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1789), 20, + ACTIONS(1811), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49079,14 +50685,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_RBRACE, anon_sym_SEMI, - [8179] = 3, + [8309] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1775), 8, + ACTIONS(1813), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49095,7 +50703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1777), 22, + ACTIONS(1815), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49118,14 +50726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8218] = 4, + [8348] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1791), 8, + ACTIONS(1817), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49134,7 +50739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1793), 20, + ACTIONS(1819), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49152,18 +50757,20 @@ 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_RBRACE, anon_sym_SEMI, - [8259] = 3, + [8387] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1797), 3, + ACTIONS(1823), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1795), 27, + ACTIONS(1821), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -49191,51 +50798,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8298] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(285), 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(287), 22, - 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_RBRACE, - anon_sym_SEMI, - [8337] = 3, + [8426] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1801), 3, + ACTIONS(1827), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1799), 27, + ACTIONS(1825), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -49263,15 +50834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8376] = 3, + [8465] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 3, + ACTIONS(1831), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1803), 27, + ACTIONS(1829), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -49299,15 +50870,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8415] = 3, + [8504] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 3, + ACTIONS(1835), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1807), 27, + ACTIONS(1833), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -49335,15 +50906,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8454] = 3, + [8543] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 3, + ACTIONS(1839), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1811), 27, + ACTIONS(1837), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -49371,11 +50942,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8493] = 3, + [8582] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1815), 8, + ACTIONS(1841), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49384,7 +50955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1817), 22, + ACTIONS(1843), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49407,11 +50978,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8532] = 3, + [8621] = 4, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1845), 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(1847), 20, + 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_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8662] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1819), 8, + ACTIONS(313), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49420,7 +51028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1821), 22, + ACTIONS(315), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49443,15 +51051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8571] = 3, + [8701] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1825), 3, + ACTIONS(1851), 3, anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1823), 27, + ACTIONS(1849), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -49479,47 +51087,48 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8610] = 3, + [8740] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1829), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1827), 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, - [8649] = 3, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1853), 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(1855), 20, + 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_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8781] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1831), 8, + ACTIONS(1799), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49528,7 +51137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1833), 22, + ACTIONS(1801), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49551,11 +51160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8688] = 3, + [8820] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1835), 8, + ACTIONS(1857), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -49564,7 +51173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1837), 22, + ACTIONS(1859), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49587,72 +51196,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8727] = 15, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, - anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, + [8859] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1861), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1863), 22, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 9, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_RBRACE, anon_sym_SEMI, - [8789] = 6, - ACTIONS(1863), 1, - anon_sym_LPAREN, - ACTIONS(1865), 1, - anon_sym_DOT, - STATE(591), 1, - sym_annotation_argument_list, + [8898] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 3, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1867), 3, + anon_sym_RBRACE, anon_sym_non_DASHsealed, - ACTIONS(1401), 23, + anon_sym_ATinterface, + ACTIONS(1865), 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, @@ -49662,6 +51257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -49672,77 +51268,77 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8833] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [8937] = 13, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1853), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1867), 6, + ACTIONS(1855), 10, 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_RBRACE, anon_sym_SEMI, - [8901] = 6, - ACTIONS(1851), 1, + [8995] = 9, + ACTIONS(1879), 1, anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1849), 2, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1787), 7, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1853), 4, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1789), 17, + ACTIONS(1855), 15, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -49751,8 +51347,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, @@ -49760,168 +51354,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8945] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [9045] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1833), 6, + ACTIONS(1819), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9013] = 5, - ACTIONS(1172), 1, - anon_sym_LPAREN, - STATE(1257), 1, - sym_argument_list, + [9113] = 14, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1174), 8, - anon_sym_AMP, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1176), 19, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + ACTIONS(1855), 10, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + 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_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_SEMI, - [9055] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, - anon_sym_SLASH, + [9173] = 15, ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1895), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1837), 6, + ACTIONS(1855), 9, 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_RBRACE, anon_sym_SEMI, - [9123] = 6, - ACTIONS(1878), 1, - anon_sym_AT, - ACTIONS(1881), 1, - anon_sym_non_DASHsealed, + [9235] = 6, + ACTIONS(1879), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(528), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1473), 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(1875), 13, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1853), 7, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1855), 17, + 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_CARET, + 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_RBRACE, + anon_sym_SEMI, + [9279] = 6, + ACTIONS(1899), 1, + anon_sym_LPAREN, + ACTIONS(1901), 1, + anon_sym_DOT, + STATE(578), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1433), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1431), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -49935,276 +51563,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [9167] = 15, - ACTIONS(1787), 1, - anon_sym_PIPE, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + 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, + [9323] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 9, + ACTIONS(1903), 6, 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_RBRACE, anon_sym_SEMI, - [9229] = 13, - ACTIONS(1851), 1, + [9391] = 16, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1787), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 10, + ACTIONS(1855), 8, 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_RBRACE, anon_sym_SEMI, - [9287] = 9, - ACTIONS(1851), 1, + [9455] = 6, + ACTIONS(1899), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(579), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1415), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1411), 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, + [9499] = 15, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1787), 4, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - ACTIONS(1789), 15, + ACTIONS(1855), 9, 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_CARET, - anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9337] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [9561] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1884), 6, + ACTIONS(1907), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9405] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [9629] = 7, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1853), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1855), 17, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1857), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1886), 6, - anon_sym_RPAREN, + anon_sym_instanceof, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9473] = 14, - ACTIONS(1787), 1, - anon_sym_PIPE, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [9675] = 6, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1911), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(544), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1492), 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(1909), 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, + [9719] = 12, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1853), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 10, + ACTIONS(1855), 12, anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -50214,151 +51927,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9533] = 16, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, - anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, + [9775] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(1275), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1184), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1186), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1857), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 8, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, + anon_sym_instanceof, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_SEMI, - [9597] = 7, - ACTIONS(1851), 1, + [9817] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1787), 5, - anon_sym_AMP, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1789), 17, - anon_sym_RPAREN, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + ACTIONS(1811), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [9643] = 12, - ACTIONS(1851), 1, + [9885] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1787), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1847), 2, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 12, + ACTIONS(1913), 6, 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_RBRACE, anon_sym_SEMI, - [9699] = 6, - ACTIONS(301), 1, + [9953] = 6, + ACTIONS(1918), 1, anon_sym_AT, - ACTIONS(1890), 1, + ACTIONS(1921), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(528), 4, + STATE(544), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1451), 10, + ACTIONS(1479), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -50369,35 +52088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1888), 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, - [9743] = 6, - ACTIONS(1863), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_DOT, - STATE(592), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1435), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1433), 23, + ACTIONS(1915), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50411,65 +52102,17 @@ 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, - [9787] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1894), 1, - anon_sym_LBRACK, - STATE(541), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1300), 10, - anon_sym_AMP, - anon_sym_RPAREN, - 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(1298), 11, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [9832] = 7, + [9997] = 7, ACTIONS(1322), 1, anon_sym_AT, - ACTIONS(1896), 1, + ACTIONS(1924), 1, anon_sym_LBRACK, - STATE(541), 1, + STATE(545), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -50497,17 +52140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - [9877] = 3, + [10042] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 5, + ACTIONS(1363), 5, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1355), 23, + ACTIONS(1361), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50531,17 +52174,55 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9914] = 3, + [10079] = 7, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + STATE(545), 1, + aux_sym_dimensions_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1331), 10, + anon_sym_AMP, + anon_sym_RPAREN, + 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(1329), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + [10124] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1353), 5, + ACTIONS(1367), 5, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1351), 23, + ACTIONS(1365), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50565,115 +52246,65 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9951] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [10161] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1899), 4, + ACTIONS(1929), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [10017] = 20, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1901), 1, - anon_sym_AMP, - ACTIONS(1909), 1, - anon_sym_AMP_AMP, - ACTIONS(1911), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1919), 1, - anon_sym_PIPE, - ACTIONS(1921), 1, - anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_GT_GT, - ACTIONS(1929), 1, - anon_sym_COMMA, - ACTIONS(1931), 1, - anon_sym_QMARK, - STATE(928), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1903), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1905), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1907), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1913), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1923), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1927), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [10087] = 6, - ACTIONS(1702), 1, + [10227] = 6, + ACTIONS(1680), 1, anon_sym_LBRACK, - ACTIONS(1706), 1, + ACTIONS(1684), 1, anon_sym_COLON_COLON, - ACTIONS(1933), 1, + ACTIONS(1931), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(285), 8, + ACTIONS(313), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -50682,7 +52313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(287), 16, + ACTIONS(315), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -50699,526 +52330,427 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - [10129] = 18, - ACTIONS(1839), 1, + [10269] = 20, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1961), 1, + anon_sym_COMMA, + ACTIONS(1963), 1, anon_sym_QMARK, + STATE(969), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1935), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1959), 2, + anon_sym_DASH_GT, anon_sym_COLON, - [10194] = 20, - ACTIONS(1839), 1, + [10339] = 18, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1963), 1, anon_sym_QMARK, - ACTIONS(1937), 1, - anon_sym_RPAREN, - ACTIONS(1939), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10263] = 3, + ACTIONS(1819), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10404] = 15, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1965), 1, + anon_sym_GT, + ACTIONS(1967), 1, + anon_sym_QMARK, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1552), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1550), 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, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(1011), 2, + sym_wildcard, + sym__type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(654), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 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, - [10298] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [10463] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(1941), 1, - anon_sym_RPAREN, - STATE(994), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1841), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1843), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [10367] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, - anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(1943), 1, + ACTIONS(1969), 1, anon_sym_RPAREN, - STATE(1009), 1, + ACTIONS(1971), 1, + anon_sym_COMMA, + STATE(1018), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10436] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [10532] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1945), 1, - anon_sym_COMMA, - ACTIONS(1947), 1, - anon_sym_SEMI, - STATE(1070), 1, - aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10505] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, - anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1973), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1949), 1, anon_sym_SEMI, - STATE(1050), 1, - aux_sym_for_statement_repeat1, + [10597] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1841), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1843), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [10574] = 20, - ACTIONS(1839), 1, + ACTIONS(1538), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1536), 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, + [10632] = 18, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1963), 1, anon_sym_QMARK, - ACTIONS(1951), 1, - anon_sym_COMMA, - ACTIONS(1953), 1, - anon_sym_RBRACE, - STATE(1077), 1, - aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10643] = 18, - ACTIONS(1861), 1, + ACTIONS(1913), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10697] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1909), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1911), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1919), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1921), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_GT_GT, - ACTIONS(1931), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1975), 1, + anon_sym_RPAREN, + STATE(1004), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1884), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [10708] = 18, - ACTIONS(1861), 1, + [10766] = 18, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1909), 1, + ACTIONS(1941), 1, anon_sym_AMP_AMP, - ACTIONS(1911), 1, + ACTIONS(1943), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1919), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1921), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1925), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1931), 1, + ACTIONS(1963), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1935), 3, + ACTIONS(1977), 3, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, - [10773] = 15, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1955), 1, - anon_sym_GT, - ACTIONS(1957), 1, - anon_sym_QMARK, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(693), 1, - sym__unannotated_type, - STATE(770), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(971), 2, - sym_wildcard, - sym__type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(650), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [10832] = 3, + [10831] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1492), 3, - anon_sym_LBRACK, + ACTIONS(1981), 3, + anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1490), 23, + ACTIONS(1979), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -51242,64 +52774,64 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10867] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [10866] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1927), 1, - anon_sym_COLON, - ACTIONS(1959), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - STATE(1040), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1983), 1, + anon_sym_RPAREN, + STATE(1024), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [10936] = 3, + [10935] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1608), 3, + ACTIONS(1594), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1606), 23, + ACTIONS(1592), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -51323,726 +52855,886 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10971] = 7, - ACTIONS(1917), 1, + [10970] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1985), 1, + anon_sym_RPAREN, + STATE(1027), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1913), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1787), 5, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [11039] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(1989), 1, + anon_sym_COMMA, + STATE(1065), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1789), 14, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, 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, - [11014] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [11108] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(1991), 1, anon_sym_COMMA, - ACTIONS(1961), 1, - anon_sym_RPAREN, - STATE(1032), 1, - aux_sym_for_statement_repeat2, + ACTIONS(1993), 1, + anon_sym_RBRACE, + STATE(1082), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11083] = 14, - ACTIONS(1787), 1, + [11177] = 4, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(309), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(313), 8, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(1861), 1, + anon_sym_GT_GT, + ACTIONS(315), 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, - ACTIONS(1901), 1, - anon_sym_AMP, - ACTIONS(1917), 1, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [11214] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1925), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1995), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 7, + [11283] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [11140] = 15, - ACTIONS(1787), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1901), 1, - anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1921), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1997), 1, + anon_sym_COMMA, + ACTIONS(1999), 1, + anon_sym_SEMI, + STATE(983), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 6, + [11352] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - anon_sym_COLON, - [11199] = 6, - ACTIONS(1917), 1, - anon_sym_SLASH, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2001), 1, + anon_sym_RPAREN, + STATE(1016), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1787), 7, - anon_sym_AMP, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1789), 14, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + [11421] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [11240] = 16, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1909), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1919), 1, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1921), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2003), 1, + anon_sym_RPAREN, + STATE(1005), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 5, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [11301] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [11490] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2007), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(2005), 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, + [11525] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(1963), 1, - anon_sym_RPAREN, - STATE(1061), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11370] = 15, - ACTIONS(1861), 1, + ACTIONS(1977), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [11590] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1602), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1600), 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, + [11625] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1919), 1, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1921), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RPAREN, + STATE(1059), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [11429] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [11694] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(2011), 1, anon_sym_RPAREN, - STATE(1048), 1, + STATE(1064), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11498] = 12, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1917), 1, + [11763] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1925), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2013), 1, + anon_sym_RPAREN, + STATE(1007), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1787), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1903), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1913), 2, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1789), 9, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_DASH_GT, + [11832] = 12, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(2015), 1, + sym_identifier, + ACTIONS(2017), 1, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [11551] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, - anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(2019), 1, + anon_sym_RBRACE, + ACTIONS(2021), 1, + anon_sym_SEMI, + STATE(891), 1, + sym_enum_constant, + STATE(1263), 1, + sym_enum_body_declarations, + STATE(1264), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(295), 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, + [11885] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1514), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1512), 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, + [11920] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1510), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1508), 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, + [11955] = 18, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1941), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1943), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(1967), 1, - anon_sym_RPAREN, - STATE(1053), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1841), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1843), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [11620] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1963), 1, anon_sym_QMARK, - ACTIONS(1959), 1, - anon_sym_COMMA, - ACTIONS(1969), 1, - anon_sym_RPAREN, - STATE(1045), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [11689] = 9, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1925), 1, - anon_sym_GT_GT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1913), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1787), 4, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - ACTIONS(1789), 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_CARET, - anon_sym_instanceof, + ACTIONS(1907), 3, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - [11736] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [12020] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_COMMA, ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2023), 1, anon_sym_RPAREN, - STATE(1016), 1, + STATE(1015), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [11805] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [12089] = 7, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(1973), 1, - anon_sym_RPAREN, - STATE(1052), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1843), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [11874] = 13, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1925), 1, - anon_sym_GT_GT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1787), 2, + ACTIONS(1853), 5, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1903), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1855), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1923), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1789), 7, 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, - [11929] = 3, + [12132] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1977), 3, + ACTIONS(2027), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1975), 23, + ACTIONS(2025), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -52066,64 +53758,64 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [11964] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [12167] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(1979), 1, + ACTIONS(2029), 1, anon_sym_RPAREN, - STATE(1049), 1, + STATE(1019), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12033] = 3, + [12236] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1983), 3, + ACTIONS(2033), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1981), 23, + ACTIONS(2031), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -52147,1140 +53839,1091 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [12068] = 12, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1985), 1, - sym_identifier, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1989), 1, - anon_sym_RBRACE, - ACTIONS(1991), 1, - anon_sym_SEMI, - STATE(897), 1, - sym_enum_constant, - STATE(1202), 1, - sym_enum_body_declarations, - STATE(1224), 1, - sym_modifiers, + [12271] = 14, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(538), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 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, - [12121] = 18, - ACTIONS(1861), 1, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 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, + [12328] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1909), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1911), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1919), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1921), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_GT_GT, - ACTIONS(1931), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2035), 1, + anon_sym_RPAREN, + STATE(1023), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1833), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [12186] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [12397] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(1993), 1, + ACTIONS(2037), 1, anon_sym_RPAREN, - STATE(1046), 1, + STATE(1021), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12255] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [12466] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(1959), 1, + anon_sym_COLON, + ACTIONS(1989), 1, anon_sym_COMMA, - ACTIONS(1995), 1, - anon_sym_RPAREN, - STATE(1043), 1, - aux_sym_for_statement_repeat2, + STATE(1070), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12324] = 18, - ACTIONS(1861), 1, + [12535] = 18, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1909), 1, + ACTIONS(1941), 1, anon_sym_AMP_AMP, - ACTIONS(1911), 1, + ACTIONS(1943), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1919), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1921), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1925), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1931), 1, + ACTIONS(1963), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1867), 3, + ACTIONS(1903), 3, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, - [12389] = 20, - ACTIONS(1839), 1, + [12600] = 18, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1963), 1, anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(1997), 1, - anon_sym_RPAREN, - STATE(1039), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12458] = 3, + ACTIONS(1811), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [12665] = 15, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1967), 1, + anon_sym_QMARK, + ACTIONS(2039), 1, + anon_sym_GT, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2001), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1999), 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, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(1060), 2, + sym_wildcard, + sym__type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(654), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 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, - [12493] = 18, - ACTIONS(1861), 1, + [12724] = 15, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1909), 1, - anon_sym_AMP_AMP, - ACTIONS(1911), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1919), 1, - anon_sym_PIPE, - ACTIONS(1921), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1925), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1931), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1837), 3, + ACTIONS(1855), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, - [12558] = 3, + [12783] = 6, + ACTIONS(1949), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2005), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(2003), 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, - [12593] = 18, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1901), 1, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1853), 7, anon_sym_AMP, - ACTIONS(1909), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1855), 14, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1911), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - anon_sym_SLASH, - ACTIONS(1919), 1, - anon_sym_PIPE, - ACTIONS(1921), 1, anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_GT_GT, - ACTIONS(1931), 1, + 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, + [12824] = 13, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1903), 2, + ACTIONS(1853), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1905), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1907), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1915), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1923), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1886), 3, + ACTIONS(1855), 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, - [12658] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [12879] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2007), 1, + ACTIONS(2041), 1, anon_sym_RPAREN, - STATE(1028), 1, + STATE(985), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12727] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1592), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1590), 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, - [12762] = 3, + [12948] = 16, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1596), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1594), 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, - [12797] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 5, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [13009] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1939), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2009), 1, + ACTIONS(2043), 1, anon_sym_RPAREN, - STATE(1074), 1, + STATE(988), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12866] = 4, + [13078] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1997), 1, + anon_sym_COMMA, + ACTIONS(2045), 1, + anon_sym_SEMI, + STATE(1062), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(281), 2, - anon_sym_while, - anon_sym_else, - ACTIONS(285), 8, - anon_sym_AMP, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(287), 16, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + [13147] = 15, + ACTIONS(1885), 1, anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - [12903] = 15, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1957), 1, - anon_sym_QMARK, - ACTIONS(2011), 1, - anon_sym_GT, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(693), 1, - sym__unannotated_type, - STATE(770), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(1034), 2, - sym_wildcard, - sym__type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(650), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12962] = 18, - ACTIONS(1839), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2013), 3, - anon_sym_RPAREN, + ACTIONS(1855), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_SEMI, - [13027] = 20, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + anon_sym_QMARK, + anon_sym_COLON, + [13206] = 9, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1957), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1853), 4, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + ACTIONS(1855), 12, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1871), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, - ACTIONS(1939), 1, + anon_sym_CARET, + anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, - ACTIONS(2015), 1, - anon_sym_RPAREN, - STATE(1068), 1, - aux_sym_for_statement_repeat2, + anon_sym_QMARK, + anon_sym_COLON, + [13253] = 12, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1853), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13096] = 11, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1985), 1, - sym_identifier, - ACTIONS(1991), 1, - anon_sym_SEMI, - ACTIONS(2017), 1, - anon_sym_RBRACE, - STATE(1000), 1, - sym_enum_constant, - STATE(1224), 1, - sym_modifiers, - STATE(1265), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(538), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 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, - [13146] = 11, - ACTIONS(301), 1, + ACTIONS(1855), 9, + 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, + [13306] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1985), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1991), 1, - anon_sym_SEMI, - ACTIONS(2019), 1, - anon_sym_RBRACE, - STATE(1000), 1, - sym_enum_constant, - STATE(1196), 1, - sym_enum_body_declarations, - STATE(1224), 1, - sym_modifiers, + ACTIONS(1967), 1, + anon_sym_QMARK, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(538), 4, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(1135), 2, + sym_wildcard, + sym__type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 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, - [13196] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13362] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2021), 2, + ACTIONS(2047), 2, anon_sym_RPAREN, anon_sym_SEMI, - [13260] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [13426] = 11, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(2015), 1, + sym_identifier, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2049), 1, + anon_sym_RBRACE, + STATE(1038), 1, + sym_enum_constant, + STATE(1257), 1, + sym_enum_body_declarations, + STATE(1264), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(295), 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, + [13476] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2023), 2, - anon_sym_COMMA, + ACTIONS(2051), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [13324] = 14, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1957), 1, - anon_sym_QMARK, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(693), 1, - sym__unannotated_type, - STATE(770), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(1080), 2, - sym_wildcard, - sym__type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(650), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13380] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [13540] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2025), 2, + ACTIONS(1929), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [13444] = 18, - ACTIONS(1046), 1, + anon_sym_COMMA, + [13604] = 18, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(2027), 1, + ACTIONS(2053), 1, sym_identifier, - ACTIONS(2029), 1, + ACTIONS(2055), 1, anon_sym_class, - ACTIONS(2031), 1, + ACTIONS(2057), 1, anon_sym_enum, - ACTIONS(2033), 1, + ACTIONS(2059), 1, anon_sym_record, - ACTIONS(2035), 1, + ACTIONS(2061), 1, anon_sym_ATinterface, - ACTIONS(2037), 1, + ACTIONS(2063), 1, anon_sym_interface, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(667), 1, + STATE(661), 1, sym_type_parameters, - STATE(684), 1, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, sym_generic_type, - STATE(700), 1, + STATE(698), 1, sym__unannotated_type, - STATE(930), 1, + STATE(947), 1, sym__constructor_declarator, - STATE(1047), 1, + STATE(1079), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13508] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [13668] = 19, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_COLON, + ACTIONS(2067), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2039), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [13572] = 5, - ACTIONS(1680), 1, + [13734] = 5, + ACTIONS(1745), 1, anon_sym_non_DASHsealed, - ACTIONS(2041), 1, + ACTIONS(2069), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1740), 10, + ACTIONS(1738), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -53291,7 +54934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1678), 13, + ACTIONS(1741), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -53305,1693 +54948,1692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [13610] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [13772] = 11, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(2015), 1, + sym_identifier, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2072), 1, + anon_sym_RBRACE, + STATE(1038), 1, + sym_enum_constant, + STATE(1237), 1, + sym_enum_body_declarations, + STATE(1264), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(295), 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, + [13822] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2044), 2, + ACTIONS(2074), 2, anon_sym_RPAREN, anon_sym_COMMA, - [13674] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [13886] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1899), 2, - anon_sym_RPAREN, + ACTIONS(2076), 2, anon_sym_COMMA, - [13738] = 19, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + anon_sym_RBRACE, + [13950] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2046), 1, - anon_sym_COLON, - ACTIONS(2048), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13804] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + ACTIONS(2078), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [14014] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2050), 1, - anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13867] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14077] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2052), 1, - anon_sym_SEMI, + ACTIONS(2082), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13930] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14140] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2054), 1, - anon_sym_RBRACK, + ACTIONS(2084), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13993] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14203] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2056), 1, - anon_sym_RPAREN, + ACTIONS(2086), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14056] = 14, - ACTIONS(344), 1, + [14266] = 17, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(2055), 1, + anon_sym_class, + ACTIONS(2057), 1, + anon_sym_enum, + ACTIONS(2059), 1, + anon_sym_record, + ACTIONS(2061), 1, + anon_sym_ATinterface, + ACTIONS(2063), 1, + anon_sym_interface, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(672), 1, + sym_type_parameters, + STATE(681), 1, + sym_generic_type, + STATE(702), 1, + sym__unannotated_type, + STATE(1079), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14327] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(964), 1, + STATE(973), 1, sym__type, - STATE(1091), 1, + STATE(1155), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14111] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14382] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2088), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14174] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14445] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2060), 1, + ACTIONS(2090), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14237] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14508] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2062), 1, + ACTIONS(2092), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14300] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14571] = 14, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2094), 1, + sym_identifier, + ACTIONS(2096), 1, + anon_sym_final, + STATE(392), 1, + sym__unannotated_type, + STATE(406), 1, + sym_scoped_type_identifier, + STATE(418), 1, + sym_generic_type, + STATE(432), 1, + sym_annotated_type, + STATE(450), 1, + sym__type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2100), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2102), 2, + sym_boolean_type, + sym_void_type, + STATE(422), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(666), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2098), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14626] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2064), 1, + ACTIONS(2104), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14363] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14689] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2066), 1, - anon_sym_RBRACK, + ACTIONS(2106), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14426] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14752] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2068), 1, - anon_sym_COLON, + ACTIONS(2108), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14489] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14815] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2070), 1, - anon_sym_RBRACK, + ACTIONS(2110), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14552] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14878] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2072), 1, - anon_sym_SEMI, + ACTIONS(2112), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14615] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [14941] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2074), 1, - anon_sym_RPAREN, + ACTIONS(2114), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14678] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15004] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2076), 1, - anon_sym_RPAREN, + ACTIONS(2116), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14741] = 14, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2078), 1, - sym_identifier, - ACTIONS(2080), 1, - anon_sym_final, - STATE(388), 1, - sym__unannotated_type, - STATE(403), 1, - sym_scoped_type_identifier, - STATE(416), 1, - sym_generic_type, - STATE(440), 1, - sym__type, - STATE(449), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2084), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2086), 2, - sym_boolean_type, - sym_void_type, - STATE(421), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(663), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2082), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14796] = 17, - ACTIONS(1046), 1, - anon_sym_LT, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(2029), 1, - anon_sym_class, - ACTIONS(2031), 1, - anon_sym_enum, - ACTIONS(2033), 1, - anon_sym_record, - ACTIONS(2035), 1, - anon_sym_ATinterface, - ACTIONS(2037), 1, - anon_sym_interface, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(659), 1, - sym_type_parameters, - STATE(684), 1, - sym_generic_type, - STATE(694), 1, - sym__unannotated_type, - STATE(1047), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14857] = 14, - ACTIONS(344), 1, + [15067] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(964), 1, + STATE(973), 1, sym__type, - STATE(1185), 1, + STATE(1235), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14912] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15122] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(2118), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15185] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2088), 1, - anon_sym_SEMI, + ACTIONS(2120), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14975] = 14, - ACTIONS(344), 1, + [15248] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(2090), 1, + ACTIONS(2122), 1, anon_sym_open, - ACTIONS(2092), 1, + ACTIONS(2124), 1, anon_sym_module, - ACTIONS(2094), 1, + ACTIONS(2126), 1, anon_sym_package, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(691), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(687), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15030] = 14, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1160), 1, - sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(695), 1, sym__unannotated_type, - STATE(770), 1, - sym_annotated_type, - STATE(964), 1, - sym__type, - STATE(1203), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15085] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15303] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_QMARK, - ACTIONS(2096), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1841), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1843), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [15148] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, - anon_sym_SLASH, - ACTIONS(1853), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1859), 1, - anon_sym_GT_GT, - ACTIONS(1861), 1, - anon_sym_instanceof, - ACTIONS(1869), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2098), 1, + ACTIONS(2128), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15211] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15366] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2100), 1, - anon_sym_SEMI, + ACTIONS(2130), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15274] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15429] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2102), 1, + ACTIONS(2132), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15337] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15492] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2104), 1, + ACTIONS(2134), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15400] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15555] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2106), 1, - anon_sym_SEMI, + ACTIONS(2136), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15463] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15618] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2108), 1, - anon_sym_SEMI, + ACTIONS(2138), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15526] = 18, - ACTIONS(1839), 1, - anon_sym_AMP, - ACTIONS(1851), 1, + [15681] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1853), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1861), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1869), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1871), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(2110), 1, - anon_sym_SEMI, + ACTIONS(2140), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1841), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1843), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1845), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1857), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15589] = 13, - ACTIONS(344), 1, + [15744] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(1193), 1, + STATE(973), 1, sym__type, + STATE(1192), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15641] = 13, - ACTIONS(344), 1, + [15799] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(900), 1, + STATE(965), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15693] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1371), 11, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1373), 12, - anon_sym_AMP, - anon_sym_RPAREN, - 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, + [15851] = 13, + ACTIONS(331), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15725] = 13, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(1001), 1, + STATE(1055), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15777] = 13, - ACTIONS(344), 1, + [15903] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(1044), 1, + STATE(1136), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15829] = 13, - ACTIONS(344), 1, + [15955] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(903), 1, + STATE(966), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15881] = 13, - ACTIONS(344), 1, + [16007] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2078), 1, + ACTIONS(2094), 1, sym_identifier, - STATE(388), 1, + STATE(392), 1, sym__unannotated_type, - STATE(403), 1, + STATE(406), 1, sym_scoped_type_identifier, - STATE(416), 1, + STATE(418), 1, sym_generic_type, - STATE(433), 1, - sym__type, - STATE(449), 1, + STATE(432), 1, sym_annotated_type, + STATE(440), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2084), 2, + ACTIONS(2100), 2, anon_sym_float, anon_sym_double, - ACTIONS(2086), 2, + ACTIONS(2102), 2, sym_boolean_type, sym_void_type, - STATE(421), 3, + STATE(422), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(663), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2082), 5, + ACTIONS(2098), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15933] = 3, + [16059] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1386), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1388), 12, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16091] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -55020,172 +56662,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15965] = 13, - ACTIONS(344), 1, + [16123] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(911), 1, + STATE(951), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16017] = 13, - ACTIONS(344), 1, + [16175] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(693), 1, + STATE(699), 1, sym__unannotated_type, - STATE(770), 1, + STATE(776), 1, sym_annotated_type, - STATE(1155), 1, + STATE(1205), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(661), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16069] = 8, - ACTIONS(301), 1, + [16227] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(305), 1, - anon_sym_non_DASHsealed, - ACTIONS(1985), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(1000), 1, - sym_enum_constant, - STATE(1224), 1, - sym_modifiers, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, + sym_annotated_type, + STATE(990), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(538), 4, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(299), 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, - [16110] = 12, - ACTIONS(344), 1, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16279] = 12, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(2112), 1, + ACTIONS(2142), 1, anon_sym_QMARK, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(691), 1, + STATE(695), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(687), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16159] = 6, - ACTIONS(2114), 1, + [16328] = 6, + ACTIONS(2144), 1, anon_sym_LPAREN, - ACTIONS(2116), 1, + ACTIONS(2146), 1, anon_sym_DOT, - STATE(676), 1, + STATE(689), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 6, + ACTIONS(1415), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1433), 13, + ACTIONS(1411), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -55199,24 +56847,57 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16196] = 6, - ACTIONS(2114), 1, + [16365] = 8, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(2015), 1, + sym_identifier, + STATE(1038), 1, + sym_enum_constant, + STATE(1264), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(295), 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, + [16406] = 6, + ACTIONS(2144), 1, anon_sym_LPAREN, - ACTIONS(2118), 1, + ACTIONS(2148), 1, anon_sym_DOT, - STATE(682), 1, + STATE(686), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 6, + ACTIONS(1433), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1401), 13, + ACTIONS(1431), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -55230,111 +56911,46 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16233] = 11, - ACTIONS(344), 1, + [16443] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(729), 1, + STATE(745), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(687), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [16279] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1409), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1411), 13, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [16309] = 14, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(2029), 1, - anon_sym_class, - ACTIONS(2031), 1, - anon_sym_enum, - ACTIONS(2033), 1, - anon_sym_record, - ACTIONS(2035), 1, - anon_sym_ATinterface, - ACTIONS(2037), 1, - anon_sym_interface, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(711), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16361] = 3, + [16489] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 8, + ACTIONS(1423), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55343,7 +56959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1427), 13, + ACTIONS(1425), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55357,47 +56973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16391] = 6, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(2120), 1, - anon_sym_DOT, - STATE(674), 1, - sym_type_arguments, + [16519] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1170), 7, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1194), 11, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [16427] = 6, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(2122), 1, + ACTIONS(1407), 8, anon_sym_DOT, - STATE(671), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1380), 7, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -55405,10 +56986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1382), 11, + ACTIONS(1409), 13, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -55417,46 +57000,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16463] = 11, - ACTIONS(344), 1, + [16549] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(2150), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(738), 1, + STATE(739), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(670), 4, + STATE(658), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16595] = 12, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2152), 1, + sym_identifier, + STATE(716), 1, + sym_scoped_type_identifier, + STATE(723), 1, + sym_type_arguments, + STATE(743), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2154), 2, + sym_boolean_type, + sym_void_type, + STATE(754), 2, + sym_integral_type, + sym_floating_point_type, + STATE(690), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16509] = 3, + [16643] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2156), 1, + anon_sym_DOT, + STATE(677), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1390), 7, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1392), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [16679] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 8, + ACTIONS(1445), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55465,7 +57114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1431), 13, + ACTIONS(1447), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55479,188 +57128,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16539] = 11, - ACTIONS(344), 1, + [16709] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1160), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(691), 1, + STATE(772), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(687), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16585] = 12, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(344), 1, + [16755] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2124), 1, + ACTIONS(2094), 1, sym_identifier, - STATE(714), 1, + STATE(389), 1, + sym__unannotated_type, + STATE(406), 1, sym_scoped_type_identifier, - STATE(721), 1, - sym_type_arguments, - STATE(726), 1, + STATE(418), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(2100), 2, anon_sym_float, anon_sym_double, - ACTIONS(2126), 2, + ACTIONS(2102), 2, sym_boolean_type, sym_void_type, - STATE(748), 2, + STATE(422), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(678), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(2098), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16633] = 11, - ACTIONS(344), 1, + [16801] = 12, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2078), 1, + ACTIONS(2158), 1, sym_identifier, - STATE(387), 1, - sym__unannotated_type, - STATE(403), 1, + STATE(720), 1, sym_scoped_type_identifier, - STATE(416), 1, + STATE(723), 1, + sym_type_arguments, + STATE(730), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2084), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(2086), 2, + ACTIONS(2160), 2, sym_boolean_type, sym_void_type, - STATE(421), 3, - sym_array_type, + STATE(756), 2, sym_integral_type, sym_floating_point_type, - STATE(687), 4, + STATE(684), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2082), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16679] = 11, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1160), 1, - sym_identifier, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(766), 1, - sym__unannotated_type, + [16849] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(687), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(1363), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1361), 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, - [16725] = 12, - ACTIONS(91), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16879] = 6, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(344), 1, + ACTIONS(2162), 1, + anon_sym_DOT, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1180), 7, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1204), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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(2128), 1, + anon_sym_DOT_DOT_DOT, + [16915] = 11, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, sym_identifier, - STATE(716), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(721), 1, - sym_type_arguments, - STATE(735), 1, + STATE(681), 1, sym_generic_type, + STATE(747), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(2130), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(752), 2, + STATE(687), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(686), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16773] = 3, + [16961] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1417), 8, + ACTIONS(1437), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55669,7 +57339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1419), 13, + ACTIONS(1439), 13, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55683,46 +57353,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16803] = 11, - ACTIONS(344), 1, + [16991] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2132), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(738), 1, + STATE(739), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(670), 4, + STATE(658), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16849] = 3, + [17037] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1353), 8, + ACTIONS(1367), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55731,7 +57401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1351), 13, + ACTIONS(1365), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -55745,73 +57415,84 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [16879] = 3, + [17067] = 11, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(695), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1355), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 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, + [17113] = 14, + ACTIONS(1170), 1, sym_identifier, - [16909] = 11, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(1160), 1, - sym_identifier, - STATE(658), 1, + ACTIONS(2055), 1, + anon_sym_class, + ACTIONS(2057), 1, + anon_sym_enum, + ACTIONS(2059), 1, + anon_sym_record, + ACTIONS(2061), 1, + anon_sym_ATinterface, + ACTIONS(2063), 1, + anon_sym_interface, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(741), 1, + STATE(713), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(687), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16955] = 3, + [17165] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 8, + ACTIONS(1453), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55820,7 +57501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1399), 12, + ACTIONS(1455), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55833,11 +57514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16984] = 3, + [17194] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 8, + ACTIONS(1441), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55846,7 +57527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1441), 12, + ACTIONS(1443), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55859,47 +57540,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [17013] = 13, - ACTIONS(1160), 1, + [17223] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1399), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - ACTIONS(2029), 1, + ACTIONS(1401), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [17252] = 13, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(2055), 1, anon_sym_class, - ACTIONS(2031), 1, + ACTIONS(2057), 1, anon_sym_enum, - ACTIONS(2035), 1, + ACTIONS(2061), 1, anon_sym_ATinterface, - ACTIONS(2037), 1, + ACTIONS(2063), 1, anon_sym_interface, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(713), 1, + STATE(714), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17062] = 3, + [17301] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 8, + ACTIONS(1457), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55908,7 +57615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1415), 12, + ACTIONS(1459), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, @@ -55921,12 +57628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [17091] = 3, + [17330] = 4, + ACTIONS(2156), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 8, - anon_sym_DOT, + ACTIONS(1390), 7, anon_sym_open, anon_sym_module, anon_sym_implements, @@ -55934,8 +57642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1445), 12, - anon_sym_LPAREN, + ACTIONS(1392), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -55947,36 +57654,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [17120] = 3, + [17360] = 13, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2164), 1, + sym_identifier, + ACTIONS(2166), 1, + anon_sym_DOT, + ACTIONS(2170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2172), 1, + sym_this, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(1102), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1596), 6, + ACTIONS(1359), 3, + anon_sym_AMP, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1594), 13, + anon_sym_COLON_COLON, + ACTIONS(2168), 3, 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, - [17148] = 3, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17408] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 8, + ACTIONS(1449), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, @@ -55985,7 +57702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1449), 11, + ACTIONS(1451), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -55997,50 +57714,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [17176] = 10, - ACTIONS(344), 1, + [17436] = 10, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2134), 1, + ACTIONS(2174), 1, sym_identifier, - STATE(737), 1, + STATE(729), 1, sym_scoped_type_identifier, - STATE(753), 1, + STATE(760), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(2136), 2, + ACTIONS(2176), 2, sym_boolean_type, sym_void_type, - STATE(762), 2, + STATE(773), 2, sym_integral_type, sym_floating_point_type, - STATE(687), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17218] = 3, + [17478] = 5, + ACTIONS(2180), 1, + anon_sym_QMARK, + ACTIONS(2182), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1608), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1606), 13, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2178), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -56054,18 +57773,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17246] = 3, + [17510] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1492), 6, + ACTIONS(1514), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1490), 13, + ACTIONS(1512), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -56079,18 +57798,43 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17274] = 3, + [17538] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1390), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1392), 11, + anon_sym_AMP, + anon_sym_RPAREN, + 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, + [17566] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1552), 6, + ACTIONS(1538), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1550), 13, + ACTIONS(1536), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -56104,18 +57848,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17302] = 3, + [17594] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1592), 6, + ACTIONS(1510), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1590), 13, + ACTIONS(1508), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -56129,138 +57873,75 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17330] = 13, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2138), 1, - sym_identifier, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2144), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2146), 1, - sym_this, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(677), 1, - sym_dimensions, - STATE(1187), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1331), 3, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [17378] = 4, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1380), 7, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1382), 11, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [17408] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1380), 8, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1382), 11, - anon_sym_AMP, - anon_sym_RPAREN, - 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, - [17436] = 10, - ACTIONS(344), 1, + [17622] = 10, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2148), 1, + ACTIONS(2185), 1, sym_identifier, - STATE(732), 1, + STATE(733), 1, sym_scoped_type_identifier, - STATE(756), 1, + STATE(759), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(2150), 2, + ACTIONS(2187), 2, sym_boolean_type, sym_void_type, - STATE(765), 2, + STATE(770), 2, sym_integral_type, sym_floating_point_type, - STATE(687), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17478] = 5, - ACTIONS(2154), 1, + [17664] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1602), 6, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(2156), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AT, + ACTIONS(1600), 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, + [17692] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(687), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2152), 13, + ACTIONS(1594), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1592), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -56274,120 +57955,90 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17510] = 13, - ACTIONS(301), 1, + [17720] = 13, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1331), 1, + ACTIONS(1359), 1, anon_sym_COLON_COLON, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2161), 1, + ACTIONS(2191), 1, anon_sym_DOT, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(908), 1, + STATE(942), 1, sym__variable_declarator_id, - STATE(1067), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1262), 1, + STATE(1243), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17556] = 10, - ACTIONS(1160), 1, - sym_identifier, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(719), 1, - sym__unannotated_type, - STATE(864), 1, - sym_catch_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17596] = 13, - ACTIONS(301), 1, + [17766] = 13, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1331), 1, + ACTIONS(1359), 1, anon_sym_COLON_COLON, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2161), 1, + ACTIONS(2191), 1, anon_sym_DOT, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(905), 1, + STATE(950), 1, sym__variable_declarator_id, - STATE(1067), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1225), 1, + STATE(1288), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17642] = 7, - ACTIONS(301), 1, + [17812] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1327), 9, + ACTIONS(1347), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -56397,57 +58048,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [17676] = 13, - ACTIONS(301), 1, + [17846] = 10, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(725), 1, + sym__unannotated_type, + STATE(892), 1, + sym_catch_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17886] = 13, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1359), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_DOT, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(963), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1243), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17932] = 12, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1331), 1, - anon_sym_COLON_COLON, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(2193), 1, sym_identifier, - ACTIONS(2161), 1, - anon_sym_DOT, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(947), 1, + STATE(943), 1, + sym__method_declarator, + STATE(950), 1, sym__variable_declarator_id, - STATE(1067), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1225), 1, + STATE(1265), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2195), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17722] = 7, - ACTIONS(301), 1, + [17975] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1331), 8, + ACTIONS(1359), 8, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -56456,162 +58168,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [17755] = 12, - ACTIONS(301), 1, + [18008] = 9, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(748), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [18045] = 12, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2163), 1, + ACTIONS(2193), 1, sym_identifier, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(908), 1, - sym__variable_declarator_id, - STATE(950), 1, + STATE(943), 1, sym__method_declarator, - STATE(1067), 1, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, sym_variable_declarator, - STATE(1238), 1, + STATE(1268), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 3, + ACTIONS(2195), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17798] = 12, - ACTIONS(301), 1, + [18088] = 12, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2163), 1, + ACTIONS(2193), 1, sym_identifier, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(908), 1, - sym__variable_declarator_id, + STATE(943), 1, + sym__method_declarator, STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1245), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2195), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18131] = 12, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + sym_identifier, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(943), 1, sym__method_declarator, - STATE(1067), 1, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, sym_variable_declarator, - STATE(1237), 1, + STATE(1227), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 3, + ACTIONS(2195), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [17841] = 9, - ACTIONS(1160), 1, + [18174] = 9, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(709), 1, + STATE(726), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17878] = 9, - ACTIONS(1160), 1, + [18211] = 9, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(717), 1, + STATE(742), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17915] = 10, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(2167), 1, + [18248] = 9, + ACTIONS(1170), 1, sym_identifier, - STATE(721), 1, - sym_type_arguments, - STATE(868), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(1071), 1, + STATE(681), 1, sym_generic_type, + STATE(712), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(2169), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(1112), 2, + STATE(687), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17954] = 3, + [18285] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 3, + ACTIONS(2199), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AT, - ACTIONS(2171), 13, + ACTIONS(2197), 13, anon_sym_extends, anon_sym_implements, anon_sym_permits, @@ -56625,299 +58395,268 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [17979] = 12, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2163), 1, - sym_identifier, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(677), 1, - sym_dimensions, - STATE(908), 1, - sym__variable_declarator_id, - STATE(950), 1, - sym__method_declarator, - STATE(1067), 1, - sym_variable_declarator, - STATE(1246), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2165), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18022] = 9, - ACTIONS(1160), 1, + [18310] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2201), 1, sym_identifier, - STATE(658), 1, + STATE(723), 1, + sym_type_arguments, + STATE(909), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(1071), 1, sym_generic_type, - STATE(736), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(2203), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, - sym_array_type, + STATE(1149), 2, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [18059] = 9, - ACTIONS(1160), 1, + [18349] = 9, + ACTIONS(1170), 1, sym_identifier, - STATE(658), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(684), 1, + STATE(681), 1, sym_generic_type, - STATE(733), 1, + STATE(719), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(81), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(685), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [18096] = 9, - ACTIONS(1160), 1, - sym_identifier, - STATE(658), 1, - sym_scoped_type_identifier, - STATE(684), 1, - sym_generic_type, - STATE(723), 1, - sym__unannotated_type, + [18386] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(81), 2, - sym_boolean_type, - sym_void_type, - STATE(685), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, + ACTIONS(2207), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2205), 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, - [18133] = 12, - ACTIONS(301), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [18411] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2163), 1, + ACTIONS(2209), 1, sym_identifier, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(908), 1, - sym__variable_declarator_id, STATE(950), 1, - sym__method_declarator, - STATE(1067), 1, + sym__variable_declarator_id, + STATE(986), 1, sym_variable_declarator, - STATE(1249), 1, + STATE(1227), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18176] = 3, + [18451] = 11, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2189), 1, + sym_identifier, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(964), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1231), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2177), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(2175), 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, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [18201] = 11, - ACTIONS(301), 1, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18491] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1331), 1, - anon_sym_COLON_COLON, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2161), 1, - anon_sym_DOT, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(1269), 1, + STATE(950), 1, sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1238), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18241] = 12, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(301), 1, + [18531] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_DOT, - STATE(425), 1, - sym_argument_list, - STATE(540), 1, + ACTIONS(2211), 1, + sym_identifier, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(674), 1, - sym_type_arguments, - STATE(1149), 1, + STATE(683), 1, sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1245), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(744), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18283] = 12, - ACTIONS(91), 1, + [18571] = 12, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(301), 1, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, + ACTIONS(2215), 1, anon_sym_DOT, - STATE(425), 1, + STATE(423), 1, sym_argument_list, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, - STATE(1149), 1, + STATE(1113), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(389), 2, + STATE(753), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18325] = 11, - ACTIONS(301), 1, + [18613] = 12, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - sym_identifier, - STATE(540), 1, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(547), 1, aux_sym_dimensions_repeat1, STATE(677), 1, + sym_type_arguments, + STATE(1112), 1, sym_dimensions, - STATE(902), 1, - sym__variable_declarator_id, - STATE(1067), 1, - sym_variable_declarator, - STATE(1218), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(790), 4, + STATE(387), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18365] = 4, - ACTIONS(2183), 1, + [18655] = 4, + ACTIONS(2219), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 4, + ACTIONS(1929), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -56933,1450 +58672,1411 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [18391] = 11, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - sym_identifier, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(677), 1, - sym_dimensions, - STATE(908), 1, - sym__variable_declarator_id, - STATE(1067), 1, - sym_variable_declarator, - STATE(1244), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [18431] = 11, - ACTIONS(301), 1, + [18681] = 12, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, - sym_identifier, - STATE(540), 1, + ACTIONS(2215), 1, + anon_sym_DOT, + STATE(423), 1, + sym_argument_list, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(678), 1, + sym_type_arguments, + STATE(1113), 1, sym_dimensions, - STATE(908), 1, - sym__variable_declarator_id, - STATE(1067), 1, - sym_variable_declarator, - STATE(1237), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(790), 4, + STATE(388), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18471] = 11, - ACTIONS(301), 1, + [18723] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2189), 1, sym_identifier, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(908), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(1067), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1238), 1, + STATE(1231), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18511] = 12, - ACTIONS(91), 1, + [18763] = 12, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(301), 1, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2217), 1, anon_sym_DOT, STATE(424), 1, sym_argument_list, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(671), 1, + STATE(677), 1, sym_type_arguments, - STATE(1156), 1, + STATE(1112), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(390), 2, + STATE(750), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18553] = 11, - ACTIONS(301), 1, + [18805] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1359), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2138), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2146), 1, - sym_this, - STATE(540), 1, + ACTIONS(2191), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(1187), 1, + STATE(1250), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18593] = 12, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(301), 1, + [18845] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2189), 1, - anon_sym_DOT, - STATE(424), 1, - sym_argument_list, - STATE(540), 1, + ACTIONS(2164), 1, + sym_identifier, + ACTIONS(2170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2172), 1, + sym_this, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(671), 1, - sym_type_arguments, - STATE(1156), 1, + STATE(683), 1, sym_dimensions, + STATE(1102), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(749), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18635] = 11, - ACTIONS(301), 1, + [18885] = 8, + ACTIONS(2221), 1, + sym_identifier, + STATE(904), 1, + sym_scoped_type_identifier, + STATE(1020), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2223), 2, + sym_boolean_type, + sym_void_type, + STATE(1117), 2, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [18918] = 10, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(2170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2189), 1, sym_identifier, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(962), 1, + STATE(1102), 1, sym__variable_declarator_id, - STATE(1067), 1, - sym_variable_declarator, - STATE(1218), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18675] = 10, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(1190), 1, - anon_sym_DOT, - ACTIONS(1194), 1, - anon_sym_AT, - STATE(472), 1, - sym_argument_list, - STATE(674), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1187), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(2191), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1170), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [18712] = 9, - ACTIONS(301), 1, + [18955] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2195), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(851), 1, + STATE(836), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 4, + ACTIONS(2225), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18747] = 10, - ACTIONS(301), 1, + [18990] = 10, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2159), 1, + ACTIONS(2189), 1, sym_identifier, - STATE(540), 1, + ACTIONS(2229), 1, + anon_sym_DOT_DOT_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(1187), 1, + STATE(1206), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18784] = 8, - ACTIONS(2197), 1, - sym_identifier, - STATE(872), 1, - sym_scoped_type_identifier, - STATE(1017), 1, - sym_generic_type, + [19027] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(79), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2199), 2, - sym_boolean_type, - sym_void_type, - STATE(1143), 2, - sym_integral_type, - sym_floating_point_type, - ACTIONS(77), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [18817] = 6, - ACTIONS(91), 1, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(2231), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19064] = 6, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(2201), 1, + ACTIONS(2233), 1, anon_sym_DOT, - STATE(671), 1, + STATE(677), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 5, + ACTIONS(1390), 5, anon_sym_open, anon_sym_module, anon_sym_record, sym_this, sym_identifier, - ACTIONS(1382), 6, + ACTIONS(1392), 6, anon_sym_AMP, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [18846] = 10, - ACTIONS(301), 1, + [19093] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - sym_identifier, - ACTIONS(2204), 1, - anon_sym_DOT_DOT_DOT, - STATE(540), 1, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, STATE(677), 1, + sym_type_arguments, + STATE(1196), 1, sym_dimensions, - STATE(1136), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - STATE(790), 4, + STATE(751), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18883] = 10, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(91), 1, + [19129] = 10, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(1112), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(750), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19165] = 10, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2215), 1, anon_sym_DOT, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(448), 1, - sym_block, - STATE(674), 1, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(678), 1, sym_type_arguments, - STATE(1100), 1, - sym_formal_parameters, + STATE(1195), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1194), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1170), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [18919] = 9, - ACTIONS(301), 1, + STATE(390), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19201] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(758), 1, - sym_formal_parameters, - STATE(881), 1, + STATE(882), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2208), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18953] = 10, - ACTIONS(301), 1, + ACTIONS(2236), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19231] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2217), 1, anon_sym_DOT, - STATE(424), 1, - sym_argument_list, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1156), 1, + STATE(677), 1, + sym_type_arguments, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(390), 2, + STATE(391), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [18989] = 9, - ACTIONS(2210), 1, + [19267] = 10, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2215), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(430), 1, + sym_block, + STATE(678), 1, + sym_type_arguments, + STATE(1128), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1204), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19303] = 9, + ACTIONS(2240), 1, anon_sym_RBRACE, - ACTIONS(2212), 1, + ACTIONS(2242), 1, anon_sym_requires, - ACTIONS(2215), 1, + ACTIONS(2244), 1, anon_sym_exports, - ACTIONS(2218), 1, + ACTIONS(2246), 1, anon_sym_opens, - ACTIONS(2221), 1, + ACTIONS(2248), 1, anon_sym_uses, - ACTIONS(2224), 1, + ACTIONS(2250), 1, anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(727), 2, + STATE(741), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(825), 5, + STATE(862), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [19023] = 10, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(301), 1, + [19337] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_DOT, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(674), 1, - sym_type_arguments, - STATE(1105), 1, + STATE(880), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(747), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19059] = 9, - ACTIONS(301), 1, + ACTIONS(2252), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19367] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2227), 1, - sym_identifier, - ACTIONS(2229), 1, - sym_this, - STATE(540), 1, + ACTIONS(2215), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(678), 1, + sym_type_arguments, + STATE(1195), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1327), 3, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - STATE(790), 4, + STATE(757), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19093] = 9, - ACTIONS(301), 1, + [19403] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(759), 1, + STATE(758), 1, sym_formal_parameters, - STATE(877), 1, + STATE(882), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 3, + ACTIONS(2236), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19127] = 9, - ACTIONS(2233), 1, - anon_sym_RBRACE, - ACTIONS(2235), 1, + [19437] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2254), 1, + sym_identifier, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(956), 1, + sym__method_declarator, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2256), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19471] = 9, + ACTIONS(2242), 1, anon_sym_requires, - ACTIONS(2237), 1, + ACTIONS(2244), 1, anon_sym_exports, - ACTIONS(2239), 1, + ACTIONS(2246), 1, anon_sym_opens, - ACTIONS(2241), 1, + ACTIONS(2248), 1, anon_sym_uses, - ACTIONS(2243), 1, + ACTIONS(2250), 1, anon_sym_provides, + ACTIONS(2258), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(743), 2, + STATE(735), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(825), 5, + STATE(862), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [19161] = 10, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2189), 1, - anon_sym_DOT, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(671), 1, - sym_type_arguments, - STATE(1141), 1, - sym_dimensions, + [19505] = 9, + ACTIONS(2260), 1, + anon_sym_RBRACE, + ACTIONS(2262), 1, + anon_sym_requires, + ACTIONS(2265), 1, + anon_sym_exports, + ACTIONS(2268), 1, + anon_sym_opens, + ACTIONS(2271), 1, + anon_sym_uses, + ACTIONS(2274), 1, + anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(745), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19197] = 8, - ACTIONS(301), 1, + STATE(741), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(862), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [19539] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2279), 1, anon_sym_PIPE, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 4, + ACTIONS(2277), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19229] = 10, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(301), 1, + [19571] = 10, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, + ACTIONS(2217), 1, anon_sym_DOT, - STATE(540), 1, + STATE(424), 1, + sym_argument_list, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(674), 1, - sym_type_arguments, - STATE(1105), 1, + STATE(1112), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(391), 2, + STATE(387), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19265] = 10, - ACTIONS(301), 1, + [19607] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2189), 1, - anon_sym_DOT, - STATE(424), 1, - sym_argument_list, - STATE(540), 1, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1156), 1, + STATE(765), 1, + sym_formal_parameters, + STATE(880), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(749), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + ACTIONS(2252), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19301] = 9, - ACTIONS(301), 1, + [19641] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(2254), 1, sym_identifier, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(1212), 1, - sym__variable_declarator_id, + STATE(928), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2256), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19335] = 10, - ACTIONS(91), 1, + [19675] = 10, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2215), 1, anon_sym_DOT, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(671), 1, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(441), 1, + sym_block, + STATE(678), 1, sym_type_arguments, - STATE(1141), 1, - sym_dimensions, + STATE(1128), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19371] = 9, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1204), 2, anon_sym_LBRACK, - ACTIONS(2249), 1, - sym_identifier, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(677), 1, - sym_dimensions, - STATE(963), 1, - sym__method_declarator, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2251), 3, + anon_sym_AT, + ACTIONS(1180), 4, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19405] = 7, - ACTIONS(301), 1, + sym_identifier, + [19711] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(540), 1, + ACTIONS(2281), 1, + sym_identifier, + ACTIONS(2283), 1, + sym_this, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(877), 1, + STATE(683), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2231), 5, + ACTIONS(1347), 3, + anon_sym_AMP, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [19435] = 7, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1894), 1, - anon_sym_LBRACK, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(881), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(790), 4, + anon_sym_COLON_COLON, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2208), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [19465] = 9, - ACTIONS(301), 1, + [19745] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2249), 1, + ACTIONS(2189), 1, sym_identifier, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(683), 1, sym_dimensions, - STATE(938), 1, - sym__method_declarator, + STATE(1276), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19499] = 10, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(2181), 1, - anon_sym_DOT, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(441), 1, - sym_block, - STATE(674), 1, - sym_type_arguments, - STATE(1100), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1194), 2, - anon_sym_LBRACK, + [19779] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1170), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [19535] = 9, - ACTIONS(2235), 1, - anon_sym_requires, - ACTIONS(2237), 1, - anon_sym_exports, - ACTIONS(2239), 1, - anon_sym_opens, - ACTIONS(2241), 1, - anon_sym_uses, - ACTIONS(2243), 1, - anon_sym_provides, - ACTIONS(2253), 1, - anon_sym_RBRACE, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2285), 1, + anon_sym_LPAREN, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(882), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(727), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(825), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [19569] = 8, - ACTIONS(301), 1, + ACTIONS(2236), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19810] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(469), 1, + STATE(481), 1, sym_dimensions, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1335), 2, + ACTIONS(1337), 2, anon_sym_DOT, anon_sym_COLON_COLON, STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19600] = 8, - ACTIONS(301), 1, + [19841] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(491), 1, sym_dimensions, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1349), 2, + ACTIONS(1355), 2, anon_sym_DOT, anon_sym_COLON_COLON, STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19631] = 8, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_LPAREN, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(877), 1, - sym_dimensions, + [19872] = 4, + ACTIONS(2233), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19662] = 8, - ACTIONS(301), 1, + ACTIONS(1390), 5, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1392), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19895] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(490), 1, + STATE(487), 1, sym_dimensions, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1345), 2, + ACTIONS(1343), 2, anon_sym_DOT, anon_sym_COLON_COLON, STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19693] = 9, - ACTIONS(301), 1, + [19926] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, STATE(424), 1, sym_argument_list, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1156), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(390), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [19726] = 8, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2179), 1, - anon_sym_LBRACK, - STATE(462), 1, + STATE(1112), 1, sym_dimensions, - STATE(540), 1, - aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(397), 2, + STATE(387), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19757] = 8, - ACTIONS(301), 1, + [19959] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2257), 1, + ACTIONS(2287), 1, anon_sym_LPAREN, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(877), 1, + STATE(882), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 3, + ACTIONS(2236), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19788] = 4, - ACTIONS(2201), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1380), 5, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1382), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [19811] = 9, - ACTIONS(301), 1, + [19990] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, STATE(424), 1, sym_argument_list, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1156), 1, + STATE(1112), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(749), 2, + STATE(750), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19844] = 8, - ACTIONS(301), 1, + [20023] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2189), 1, - anon_sym_DOT, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(1141), 1, + STATE(489), 1, sym_dimensions, + STATE(547), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, + ACTIONS(1351), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(397), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19874] = 9, - ACTIONS(301), 1, + [20054] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2259), 1, - anon_sym_default, - ACTIONS(2261), 1, - anon_sym_SEMI, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1002), 1, + STATE(1013), 1, sym_dimensions, - STATE(1198), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, + ACTIONS(2289), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19906] = 8, - ACTIONS(301), 1, + [20082] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2263), 1, + ACTIONS(2217), 1, anon_sym_DOT, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(877), 1, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(790), 4, + STATE(391), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19936] = 8, - ACTIONS(301), 1, + [20112] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2217), 1, anon_sym_DOT, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1141), 1, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(745), 2, + STATE(751), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19966] = 9, - ACTIONS(301), 1, + [20142] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2259), 1, + ACTIONS(2291), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2293), 1, anon_sym_SEMI, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1038), 1, + STATE(1053), 1, sym_dimensions, - STATE(1230), 1, + STATE(1217), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [19998] = 7, - ACTIONS(301), 1, + [20174] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(540), 1, + ACTIONS(2295), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1055), 1, + STATE(882), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(790), 4, + ACTIONS(2236), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20026] = 7, - ACTIONS(301), 1, + [20204] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(540), 1, + ACTIONS(2291), 1, + anon_sym_default, + ACTIONS(2297), 1, + anon_sym_SEMI, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1056), 1, + STATE(1017), 1, sym_dimensions, + STATE(1273), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(790), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20054] = 8, - ACTIONS(91), 1, + [20236] = 8, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2215), 1, anon_sym_DOT, - ACTIONS(2206), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, - STATE(1111), 1, + STATE(1139), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1194), 2, + ACTIONS(1204), 2, anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1170), 4, + ACTIONS(1180), 4, anon_sym_open, anon_sym_module, anon_sym_record, sym_identifier, - [20084] = 8, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(1331), 1, - anon_sym_COLON_COLON, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2161), 1, - anon_sym_DOT, - STATE(540), 1, - aux_sym_dimensions_repeat1, - STATE(677), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(790), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20113] = 7, - ACTIONS(301), 1, + [20266] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1141), 1, + STATE(1014), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(392), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + ACTIONS(2299), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20140] = 9, - ACTIONS(91), 1, + [20294] = 9, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(2271), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2303), 1, anon_sym_new, - ACTIONS(2277), 1, + ACTIONS(2307), 1, sym_this, - ACTIONS(2279), 1, + ACTIONS(2309), 1, sym_super, - STATE(486), 1, + STATE(464), 1, sym__unqualified_object_creation_expression, - STATE(867), 1, + STATE(922), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2275), 3, + ACTIONS(2305), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20171] = 9, - ACTIONS(91), 1, + [20325] = 11, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(2271), 1, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2311), 1, + anon_sym_extends, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(250), 1, + sym_class_body, + STATE(780), 1, + sym_type_parameters, + STATE(822), 1, + sym_superclass, + STATE(977), 1, + sym_super_interfaces, + STATE(1147), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20360] = 11, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2311), 1, + anon_sym_extends, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(236), 1, + sym_class_body, + STATE(782), 1, + sym_type_parameters, + STATE(802), 1, + sym_superclass, + STATE(978), 1, + sym_super_interfaces, + STATE(1125), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20395] = 9, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2303), 1, anon_sym_new, - ACTIONS(2277), 1, + ACTIONS(2307), 1, sym_this, - ACTIONS(2281), 1, + ACTIONS(2317), 1, sym_super, - STATE(486), 1, + STATE(464), 1, sym__unqualified_object_creation_expression, - STATE(949), 1, + STATE(875), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2275), 3, + ACTIONS(2305), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20202] = 7, - ACTIONS(301), 1, + [20426] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2179), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(540), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(1141), 1, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(745), 2, + STATE(391), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(850), 4, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20229] = 8, - ACTIONS(301), 1, + [20453] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1894), 1, + ACTIONS(1359), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2227), 1, + ACTIONS(2191), 1, + anon_sym_DOT, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20482] = 8, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2281), 1, sym_identifier, - ACTIONS(2229), 1, + ACTIONS(2283), 1, sym_this, - STATE(540), 1, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20511] = 7, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(677), 1, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(790), 4, + STATE(751), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20258] = 11, - ACTIONS(1046), 1, - anon_sym_LT, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2283), 1, - anon_sym_extends, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(168), 1, - sym_class_body, - STATE(773), 1, - sym_type_parameters, - STATE(857), 1, - sym_superclass, - STATE(936), 1, - sym_super_interfaces, - STATE(1090), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20293] = 11, - ACTIONS(1046), 1, - anon_sym_LT, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2283), 1, - anon_sym_extends, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(117), 1, - sym_class_body, - STATE(777), 1, - sym_type_parameters, - STATE(858), 1, - sym_superclass, - STATE(946), 1, - sym_super_interfaces, - STATE(1120), 1, - sym_permits, + [20538] = 7, + ACTIONS(2319), 1, + sym_identifier, + STATE(775), 1, + aux_sym_requires_module_directive_repeat1, + STATE(850), 1, + sym_requires_modifier, + STATE(1106), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20328] = 9, - ACTIONS(2289), 1, + ACTIONS(2323), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2321), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20564] = 9, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2291), 1, + ACTIONS(2327), 1, anon_sym_open, - ACTIONS(2293), 1, + ACTIONS(2329), 1, anon_sym_module, - ACTIONS(2297), 1, + ACTIONS(2331), 1, anon_sym_record, - STATE(778), 1, + STATE(779), 1, aux_sym_requires_module_directive_repeat1, - STATE(848), 1, + STATE(850), 1, sym_requires_modifier, - STATE(1186), 1, + STATE(1101), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2295), 2, + ACTIONS(2323), 2, anon_sym_transitive, anon_sym_static, - [20358] = 2, + [20594] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1331), 9, + ACTIONS(1359), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -58386,224 +60086,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [20374] = 7, - ACTIONS(2299), 1, - sym_identifier, - STATE(769), 1, - aux_sym_requires_module_directive_repeat1, - STATE(848), 1, - sym_requires_modifier, - STATE(1173), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2295), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2301), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [20400] = 8, - ACTIONS(2303), 1, + [20610] = 8, + ACTIONS(2333), 1, anon_sym_RBRACE, - ACTIONS(2305), 1, + ACTIONS(2335), 1, anon_sym_case, - ACTIONS(2307), 1, + ACTIONS(2337), 1, anon_sym_default, STATE(2), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1078), 1, + STATE(1178), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(788), 2, + STATE(792), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - STATE(855), 2, + STATE(844), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [20428] = 9, - ACTIONS(1463), 1, + [20638] = 7, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2301), 1, + sym_identifier, + ACTIONS(2307), 1, + sym_this, + ACTIONS(2309), 1, + sym_super, + STATE(922), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2305), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20663] = 5, + STATE(779), 1, + aux_sym_requires_module_directive_repeat1, + STATE(850), 1, + sym_requires_modifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2341), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2339), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [20684] = 9, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2283), 1, + ACTIONS(2311), 1, anon_sym_extends, - ACTIONS(2285), 1, + ACTIONS(2313), 1, anon_sym_implements, - ACTIONS(2287), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(112), 1, + STATE(230), 1, sym_class_body, - STATE(845), 1, + STATE(830), 1, sym_superclass, - STATE(955), 1, + STATE(912), 1, sym_super_interfaces, - STATE(1165), 1, + STATE(1096), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20457] = 7, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(2271), 1, - sym_identifier, - ACTIONS(2277), 1, - sym_this, - ACTIONS(2281), 1, - sym_super, - STATE(949), 1, - sym_type_arguments, + [20713] = 6, + ACTIONS(2344), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2346), 1, + aux_sym__multiline_string_fragment_token1, + ACTIONS(2348), 1, + aux_sym__multiline_string_fragment_token2, + ACTIONS(2350), 2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + STATE(785), 3, + sym__multiline_string_fragment, + sym__escape_sequence, + aux_sym__multiline_string_literal_repeat1, + [20736] = 9, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2311), 1, + anon_sym_extends, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(234), 1, + sym_class_body, + STATE(852), 1, + sym_superclass, + STATE(976), 1, + sym_super_interfaces, + STATE(1188), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2275), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [20482] = 9, - ACTIONS(1046), 1, + [20765] = 9, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(2287), 1, + ACTIONS(2315), 1, anon_sym_permits, - ACTIONS(2309), 1, + ACTIONS(2354), 1, anon_sym_extends, - ACTIONS(2311), 1, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(149), 1, + STATE(239), 1, sym_interface_body, - STATE(820), 1, + STATE(853), 1, sym_type_parameters, - STATE(951), 1, + STATE(926), 1, sym_extends_interfaces, - STATE(1168), 1, + STATE(1177), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20511] = 9, - ACTIONS(1046), 1, + [20794] = 9, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(2287), 1, + ACTIONS(2315), 1, anon_sym_permits, - ACTIONS(2309), 1, + ACTIONS(2354), 1, anon_sym_extends, - ACTIONS(2311), 1, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(120), 1, + STATE(227), 1, sym_interface_body, - STATE(847), 1, + STATE(841), 1, sym_type_parameters, - STATE(954), 1, + STATE(970), 1, sym_extends_interfaces, STATE(1144), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20540] = 9, - ACTIONS(1463), 1, + [20823] = 6, + ACTIONS(2358), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2360), 1, + aux_sym__multiline_string_fragment_token1, + ACTIONS(2363), 1, + aux_sym__multiline_string_fragment_token2, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2366), 2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + STATE(785), 3, + sym__multiline_string_fragment, + sym__escape_sequence, + aux_sym__multiline_string_literal_repeat1, + [20846] = 6, + ACTIONS(2346), 1, + aux_sym__multiline_string_fragment_token1, + ACTIONS(2348), 1, + aux_sym__multiline_string_fragment_token2, + ACTIONS(2369), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2371), 2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + STATE(781), 3, + sym__multiline_string_fragment, + sym__escape_sequence, + aux_sym__multiline_string_literal_repeat1, + [20869] = 6, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2283), 1, - anon_sym_extends, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(103), 1, + STATE(871), 1, + sym_argument_list, + STATE(1036), 1, sym_class_body, - STATE(813), 1, - sym_superclass, - STATE(944), 1, - sym_super_interfaces, - STATE(1135), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20569] = 5, - STATE(778), 1, - aux_sym_requires_module_directive_repeat1, - STATE(848), 1, - sym_requires_modifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2315), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2313), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [20590] = 5, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2318), 1, - sym_identifier, - STATE(1118), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(826), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [20610] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(2373), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - anon_sym_implements, - anon_sym_throws, - [20624] = 7, - ACTIONS(2322), 1, + [20891] = 7, + ACTIONS(2375), 1, anon_sym_RBRACE, - ACTIONS(2324), 1, + ACTIONS(2377), 1, anon_sym_case, - ACTIONS(2327), 1, + ACTIONS(2380), 1, anon_sym_default, STATE(2), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1228), 1, + STATE(1270), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(781), 2, + STATE(788), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [20648] = 6, - ACTIONS(1172), 1, + [20915] = 6, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1463), 1, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(886), 1, + STATE(872), 1, sym_argument_list, - STATE(1051), 1, + STATE(1092), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 3, + ACTIONS(2383), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20670] = 2, + [20937] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 7, + ACTIONS(2385), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -58611,27 +60332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [20684] = 6, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(885), 1, - sym_argument_list, - STATE(996), 1, - sym_class_body, + [20951] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20706] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2387), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -58639,11 +60344,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [20720] = 2, + [20965] = 7, + ACTIONS(2337), 1, + anon_sym_default, + ACTIONS(2389), 1, + anon_sym_RBRACE, + ACTIONS(2391), 1, + anon_sym_case, + STATE(2), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1270), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(788), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [20989] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2338), 7, + ACTIONS(2393), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -58651,4663 +60373,4755 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [20734] = 5, - ACTIONS(344), 1, + [21003] = 5, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2318), 1, + ACTIONS(2395), 1, sym_identifier, - STATE(1035), 1, + STATE(1054), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(826), 4, + STATE(868), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20754] = 7, - ACTIONS(2307), 1, - anon_sym_default, - ACTIONS(2340), 1, - anon_sym_RBRACE, - ACTIONS(2342), 1, - anon_sym_case, - STATE(2), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1228), 1, - sym_switch_label, + [21023] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(781), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [20778] = 6, - ACTIONS(91), 1, + ACTIONS(2397), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [21037] = 6, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(2344), 1, + ACTIONS(2399), 1, sym_identifier, - ACTIONS(2348), 1, + ACTIONS(2403), 1, sym_this, - STATE(941), 1, + STATE(915), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 3, + ACTIONS(2401), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [20800] = 4, - ACTIONS(301), 1, + [21059] = 5, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2350), 1, - anon_sym_LBRACK, + ACTIONS(2395), 1, + sym_identifier, + STATE(1127), 1, + sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(795), 4, + STATE(868), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20817] = 4, - ACTIONS(301), 1, + [21079] = 4, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2352), 1, + ACTIONS(2405), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(795), 4, + STATE(804), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20834] = 2, + [21096] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2407), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21109] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 6, + ACTIONS(2409), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20847] = 2, + [21122] = 4, + ACTIONS(2413), 1, + aux_sym__multiline_string_fragment_token1, + STATE(801), 1, + aux_sym__multiline_string_fragment_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2411), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [21139] = 7, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(254), 1, + sym_class_body, + STATE(979), 1, + sym_super_interfaces, + STATE(1169), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [20860] = 2, + [21162] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2358), 6, + ACTIONS(2416), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20873] = 4, - ACTIONS(2154), 1, + [21175] = 4, + ACTIONS(2180), 1, anon_sym_LBRACK, - ACTIONS(2360), 1, + ACTIONS(2418), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(804), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21192] = 4, + ACTIONS(331), 1, anon_sym_AT, + ACTIONS(2421), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(795), 4, + STATE(861), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20890] = 2, + [21209] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2363), 6, + ACTIONS(2423), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20903] = 2, + [21222] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2425), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(857), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21239] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2365), 6, + ACTIONS(2427), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20916] = 2, + [21252] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2367), 6, + ACTIONS(2429), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20929] = 2, + [21265] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2369), 6, + ACTIONS(2431), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20942] = 2, + [21278] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2371), 6, + ACTIONS(2433), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20955] = 2, + [21291] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2373), 6, + ACTIONS(2435), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20968] = 4, - ACTIONS(344), 1, + [21304] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2375), 1, + ACTIONS(2437), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(811), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [20985] = 2, + [21321] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2377), 6, + ACTIONS(2439), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [20998] = 2, + [21334] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2379), 6, + ACTIONS(2441), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21011] = 5, - ACTIONS(2159), 1, - sym_identifier, - STATE(908), 1, - sym__variable_declarator_id, - STATE(1096), 1, - sym_variable_declarator, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21030] = 5, - ACTIONS(2159), 1, - sym_identifier, - STATE(908), 1, - sym__variable_declarator_id, - STATE(1191), 1, - sym_variable_declarator, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21049] = 5, - ACTIONS(2381), 1, - sym_identifier, - ACTIONS(2385), 1, - anon_sym_static, - STATE(1119), 1, - sym_scoped_identifier, + [21347] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2383), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21068] = 2, + ACTIONS(2443), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21360] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 6, + ACTIONS(2445), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21081] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2389), 1, - sym_identifier, + [21373] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(822), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21098] = 2, + ACTIONS(2447), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21386] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2391), 6, + ACTIONS(2449), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21111] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2393), 1, - sym_identifier, + [21399] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(687), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21128] = 2, + ACTIONS(2451), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21412] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2395), 6, + ACTIONS(2453), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21141] = 7, - ACTIONS(1463), 1, + [21425] = 7, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2285), 1, + ACTIONS(2313), 1, anon_sym_implements, - ACTIONS(2287), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(155), 1, + STATE(215), 1, sym_class_body, - STATE(965), 1, + STATE(914), 1, sym_super_interfaces, - STATE(1177), 1, + STATE(1095), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21164] = 2, + [21448] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2397), 6, + ACTIONS(2455), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21177] = 5, - ACTIONS(2159), 1, - sym_identifier, - STATE(908), 1, - sym__variable_declarator_id, - STATE(1133), 1, - sym_variable_declarator, + [21461] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21196] = 2, + ACTIONS(2457), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21474] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2399), 6, + ACTIONS(2459), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21209] = 2, + [21487] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2401), 6, + ACTIONS(2461), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21222] = 4, - ACTIONS(301), 1, + [21500] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2463), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21513] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2403), 1, - anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(795), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21239] = 2, + [21530] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2405), 6, + ACTIONS(2467), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21252] = 7, - ACTIONS(2287), 1, - anon_sym_permits, - ACTIONS(2309), 1, - anon_sym_extends, - ACTIONS(2311), 1, + [21543] = 7, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(114), 1, - sym_interface_body, - STATE(907), 1, - sym_extends_interfaces, - STATE(1194), 1, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(211), 1, + sym_class_body, + STATE(968), 1, + sym_super_interfaces, + STATE(1164), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21275] = 2, + [21566] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2405), 6, + ACTIONS(2469), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21288] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(687), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21305] = 2, + [21579] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2409), 6, + ACTIONS(2471), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21318] = 4, - ACTIONS(301), 1, - anon_sym_AT, - ACTIONS(2411), 1, - anon_sym_LBRACK, + [21592] = 4, + ACTIONS(2475), 1, + aux_sym__multiline_string_fragment_token1, + STATE(801), 1, + aux_sym__multiline_string_fragment_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2473), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [21609] = 4, + ACTIONS(2477), 1, + anon_sym_PIPE, + STATE(834), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(795), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21335] = 2, + ACTIONS(2277), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [21626] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2413), 6, + ACTIONS(2480), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21348] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2415), 1, + [21639] = 4, + ACTIONS(2227), 1, + anon_sym_PIPE, + STATE(834), 1, + aux_sym_catch_type_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2482), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, sym_identifier, + [21656] = 6, + ACTIONS(2484), 1, + anon_sym_RBRACE, + ACTIONS(2486), 1, + anon_sym_case, + ACTIONS(2489), 1, + anon_sym_default, + STATE(1272), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(687), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21365] = 2, + STATE(837), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [21677] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2417), 6, + ACTIONS(2492), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21378] = 2, + [21690] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2405), 6, + ACTIONS(2494), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21391] = 2, + [21703] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 6, + ACTIONS(2496), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21404] = 2, + [21716] = 7, + ACTIONS(2315), 1, + anon_sym_permits, + ACTIONS(2354), 1, + anon_sym_extends, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(242), 1, + sym_interface_body, + STATE(925), 1, + sym_extends_interfaces, + STATE(1114), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21739] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2421), 6, + ACTIONS(2498), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21417] = 2, + [21752] = 5, + ACTIONS(2500), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_static, + STATE(1171), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 6, + ACTIONS(2502), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21771] = 6, + ACTIONS(2335), 1, + anon_sym_case, + ACTIONS(2337), 1, + anon_sym_default, + ACTIONS(2389), 1, + anon_sym_RBRACE, + STATE(1272), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(837), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [21792] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2506), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21430] = 2, + [21805] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2508), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, + sym_identifier, + [21818] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2425), 6, + ACTIONS(2510), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21443] = 4, - ACTIONS(2427), 1, - anon_sym_PIPE, + [21831] = 4, + ACTIONS(2514), 1, + aux_sym__multiline_string_fragment_token1, STATE(833), 1, - aux_sym_catch_type_repeat1, - ACTIONS(3), 2, + aux_sym__multiline_string_fragment_repeat1, + ACTIONS(2352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 4, - anon_sym_open, - anon_sym_module, - anon_sym_record, - sym_identifier, - [21460] = 2, + ACTIONS(2512), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [21848] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 6, + ACTIONS(2510), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21473] = 2, + [21861] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2516), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, + sym_identifier, + [21874] = 5, + ACTIONS(2189), 1, + sym_identifier, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1143), 1, + sym_variable_declarator, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21893] = 7, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(157), 1, + sym_class_body, + STATE(952), 1, + sym_super_interfaces, + STATE(1123), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21916] = 7, + ACTIONS(2315), 1, + anon_sym_permits, + ACTIONS(2354), 1, + anon_sym_extends, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_interface_body, + STATE(971), 1, + sym_extends_interfaces, + STATE(1154), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21486] = 2, + [21939] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 6, + ACTIONS(2510), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21499] = 2, + [21952] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2407), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21512] = 2, + [21965] = 4, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(2518), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2438), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21525] = 2, + STATE(804), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21982] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2520), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21538] = 2, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21999] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2522), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21551] = 2, + STATE(813), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22016] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2444), 6, + ACTIONS(2524), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21564] = 2, + [22029] = 5, + ACTIONS(2189), 1, + sym_identifier, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1093), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2446), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21577] = 2, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22048] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2526), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [21590] = 2, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22065] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 6, + ACTIONS(2528), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [21603] = 7, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(121), 1, - sym_class_body, - STATE(957), 1, - sym_super_interfaces, - STATE(1145), 1, - sym_permits, + [22078] = 4, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(2530), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21626] = 4, - ACTIONS(344), 1, + STATE(804), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22095] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2450), 1, + ACTIONS(2532), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(687), 4, + STATE(828), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21643] = 7, - ACTIONS(2287), 1, - anon_sym_permits, - ACTIONS(2309), 1, - anon_sym_extends, - ACTIONS(2311), 1, - anon_sym_LBRACE, - STATE(141), 1, - sym_interface_body, - STATE(939), 1, - sym_extends_interfaces, - STATE(1122), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21666] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2452), 6, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - anon_sym_record, - sym_identifier, - [21679] = 4, - ACTIONS(344), 1, + [22112] = 4, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2454), 1, - sym_identifier, + ACTIONS(2534), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(687), 4, + STATE(804), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21696] = 4, - ACTIONS(301), 1, + [22129] = 4, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2456), 1, + ACTIONS(2536), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(795), 4, + STATE(804), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21713] = 4, - ACTIONS(2195), 1, - anon_sym_PIPE, - STATE(833), 1, - aux_sym_catch_type_repeat1, + [22146] = 5, + ACTIONS(2189), 1, + sym_identifier, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1203), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2458), 4, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - sym_identifier, - [21730] = 4, - ACTIONS(344), 1, + [22165] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2460), 1, + ACTIONS(2538), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(846), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [21747] = 2, + [22182] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2462), 6, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - anon_sym_record, - sym_identifier, - [21760] = 6, - ACTIONS(2464), 1, + ACTIONS(2540), 6, anon_sym_RBRACE, - ACTIONS(2466), 1, - anon_sym_case, - ACTIONS(2469), 1, - anon_sym_default, - STATE(1226), 1, - sym_switch_label, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [22195] = 4, + STATE(1133), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(854), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [21781] = 6, - ACTIONS(2305), 1, - anon_sym_case, - ACTIONS(2307), 1, - anon_sym_default, - ACTIONS(2340), 1, + ACTIONS(2542), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2544), 2, + anon_sym_extends, + sym_super, + [22211] = 4, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2546), 3, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1226), 1, - sym_switch_label, + anon_sym_SEMI, + [22227] = 4, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(854), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [21802] = 4, - ACTIONS(344), 1, - anon_sym_AT, - ACTIONS(2472), 1, + ACTIONS(2548), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22243] = 4, + ACTIONS(2550), 1, sym_identifier, + STATE(1029), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(849), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [21819] = 7, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(111), 1, - sym_class_body, - STATE(935), 1, - sym_super_interfaces, - STATE(1130), 1, - sym_permits, + ACTIONS(2552), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22259] = 4, + ACTIONS(2554), 1, + sym_identifier, + STATE(1181), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21842] = 7, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(136), 1, - sym_class_body, - STATE(914), 1, - sym_super_interfaces, - STATE(1131), 1, - sym_permits, + ACTIONS(2556), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22275] = 4, + ACTIONS(2558), 1, + sym_identifier, + ACTIONS(2562), 1, + sym_super, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21865] = 4, - ACTIONS(2474), 1, + ACTIONS(2560), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22291] = 4, + ACTIONS(2189), 1, sym_identifier, - STATE(410), 1, + STATE(1252), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22307] = 4, + ACTIONS(2564), 1, + sym_identifier, + STATE(1103), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 3, + ACTIONS(2566), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21881] = 4, - STATE(1166), 1, + [22323] = 4, + STATE(1198), 1, sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_COMMA, - ACTIONS(2480), 2, + ACTIONS(2544), 2, anon_sym_extends, sym_super, - [21897] = 4, - ACTIONS(2482), 1, + ACTIONS(2568), 2, + anon_sym_GT, + anon_sym_COMMA, + [22339] = 6, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2072), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, + anon_sym_COMMA, + STATE(975), 1, + aux_sym_enum_body_repeat1, + STATE(1237), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22359] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2572), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [22371] = 4, + ACTIONS(2574), 1, anon_sym_COMMA, - STATE(861), 1, + STATE(881), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 3, + ACTIONS(2577), 3, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_permits, - [21913] = 4, - ACTIONS(2487), 1, - sym_identifier, - STATE(1163), 1, - sym_scoped_identifier, + anon_sym_permits, + [22387] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2579), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [22399] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2489), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21929] = 4, - ACTIONS(2491), 1, + ACTIONS(2231), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1186), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [22413] = 4, + ACTIONS(2581), 1, sym_identifier, - STATE(1013), 1, + STATE(982), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 3, + ACTIONS(2583), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21945] = 4, - ACTIONS(2159), 1, - sym_identifier, - STATE(1273), 1, - sym__variable_declarator_id, + [22429] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(473), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [21961] = 6, - ACTIONS(91), 1, + ACTIONS(1278), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [22445] = 6, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(2181), 1, + ACTIONS(2215), 1, anon_sym_DOT, - STATE(425), 1, + STATE(426), 1, sym_argument_list, - STATE(674), 1, + STATE(678), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21981] = 4, - ACTIONS(2495), 1, + [22465] = 4, + ACTIONS(2585), 1, sym_identifier, - STATE(1148), 1, + STATE(1191), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2497), 3, + ACTIONS(2587), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [21997] = 4, - ACTIONS(2499), 1, + [22481] = 4, + ACTIONS(2589), 1, sym_identifier, - ACTIONS(2503), 1, - sym_super, + STATE(1035), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 3, + ACTIONS(2591), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22013] = 6, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2189), 1, - anon_sym_DOT, - STATE(424), 1, - sym_argument_list, - STATE(671), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22033] = 4, - ACTIONS(2505), 1, + [22497] = 4, + ACTIONS(2593), 1, sym_identifier, - STATE(652), 1, + STATE(1087), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 3, + ACTIONS(2595), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22049] = 4, - ACTIONS(2509), 1, + [22513] = 4, + ACTIONS(2597), 1, sym_identifier, - STATE(1025), 1, + STATE(1175), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 3, + ACTIONS(2599), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22065] = 6, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - anon_sym_DOT, - STATE(426), 1, - sym_argument_list, - STATE(674), 1, - sym_type_arguments, + [22529] = 6, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2601), 1, + anon_sym_COMMA, + ACTIONS(2603), 1, + anon_sym_RBRACE, + STATE(879), 1, + aux_sym_enum_body_repeat1, + STATE(1287), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22085] = 6, - ACTIONS(91), 1, - anon_sym_LT, - ACTIONS(1172), 1, - anon_sym_LPAREN, + [22549] = 4, ACTIONS(2189), 1, - anon_sym_DOT, - STATE(428), 1, - sym_argument_list, - STATE(671), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22105] = 4, - ACTIONS(2159), 1, sym_identifier, - STATE(1270), 1, + STATE(1278), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22121] = 4, - ACTIONS(2513), 1, + [22565] = 4, + ACTIONS(2605), 1, sym_identifier, - STATE(1027), 1, + STATE(535), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 3, + ACTIONS(2607), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22137] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2191), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1176), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [22151] = 4, - ACTIONS(2517), 1, + [22581] = 4, + ACTIONS(2609), 1, sym_identifier, - STATE(1159), 1, + STATE(940), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 3, + ACTIONS(2611), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22167] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2521), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [22179] = 4, - STATE(1082), 1, - sym__wildcard_bounds, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2480), 2, - anon_sym_extends, - sym_super, - ACTIONS(2523), 2, - anon_sym_GT, - anon_sym_COMMA, - [22195] = 4, - ACTIONS(2525), 1, + [22597] = 4, + ACTIONS(2613), 1, sym_identifier, - STATE(1020), 1, + STATE(938), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2527), 3, + ACTIONS(2615), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22211] = 4, - ACTIONS(2529), 1, + [22613] = 4, + ACTIONS(2617), 1, sym_identifier, - STATE(1175), 1, + STATE(936), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2531), 3, + ACTIONS(2619), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22227] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2533), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [22239] = 4, - ACTIONS(2535), 1, + [22629] = 4, + ACTIONS(2621), 1, sym_identifier, - STATE(968), 1, + STATE(934), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2537), 3, + ACTIONS(2623), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22255] = 6, - ACTIONS(1991), 1, - anon_sym_SEMI, - ACTIONS(2019), 1, - anon_sym_RBRACE, - ACTIONS(2539), 1, - anon_sym_COMMA, - STATE(960), 1, - aux_sym_enum_body_repeat1, - STATE(1196), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22275] = 4, - ACTIONS(2541), 1, + [22645] = 4, + ACTIONS(2625), 1, sym_identifier, - STATE(1031), 1, + STATE(932), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2543), 3, + ACTIONS(2627), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22291] = 4, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(1059), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2545), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22307] = 4, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2547), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22323] = 4, - ACTIONS(2549), 1, + [22661] = 4, + ACTIONS(2629), 1, sym_identifier, - STATE(522), 1, + STATE(1074), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2551), 3, + ACTIONS(2631), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22339] = 4, - ACTIONS(2553), 1, + [22677] = 4, + ACTIONS(2633), 1, sym_identifier, - STATE(1126), 1, + STATE(930), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2555), 3, + ACTIONS(2635), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22355] = 4, - ACTIONS(2557), 1, + [22693] = 4, + ACTIONS(2637), 1, sym_identifier, - STATE(925), 1, + STATE(655), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2559), 3, + ACTIONS(2639), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22371] = 5, - ACTIONS(2561), 1, - anon_sym_catch, - ACTIONS(2563), 1, - anon_sym_finally, - STATE(237), 1, - sym_finally_clause, + [22709] = 2, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2512), 5, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token1, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [22721] = 4, + ACTIONS(2641), 1, + sym_identifier, + STATE(1046), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(90), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [22389] = 4, - ACTIONS(1172), 1, + ACTIONS(2643), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22737] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(464), 1, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(425), 1, sym_argument_list, + STATE(677), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1258), 3, - anon_sym_LBRACK, + [22757] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2215), 1, anon_sym_DOT, - anon_sym_COLON_COLON, - [22405] = 4, - ACTIONS(2565), 1, - sym_identifier, - STATE(923), 1, - sym_scoped_identifier, + STATE(423), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2567), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [22421] = 4, - ACTIONS(2569), 1, - sym_identifier, - STATE(921), 1, - sym_scoped_identifier, + [22777] = 5, + ACTIONS(2645), 1, + anon_sym_catch, + ACTIONS(2647), 1, + anon_sym_finally, + STATE(285), 1, + sym_finally_clause, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2571), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [22437] = 4, - ACTIONS(2573), 1, + STATE(97), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [22795] = 4, + ACTIONS(2649), 1, sym_identifier, - STATE(919), 1, + STATE(410), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2575), 3, + ACTIONS(2651), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22453] = 4, - ACTIONS(2577), 1, + [22811] = 4, + ACTIONS(2653), 1, sym_identifier, - STATE(917), 1, + STATE(1183), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2579), 3, + ACTIONS(2655), 3, anon_sym_open, anon_sym_module, anon_sym_record, - [22469] = 4, - ACTIONS(2581), 1, - sym_identifier, - STATE(915), 1, - sym_scoped_identifier, + [22827] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(677), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2583), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [22485] = 6, - ACTIONS(1991), 1, - anon_sym_SEMI, - ACTIONS(2585), 1, + [22847] = 4, + ACTIONS(2657), 1, anon_sym_COMMA, - ACTIONS(2587), 1, - anon_sym_RBRACE, - STATE(883), 1, - aux_sym_enum_body_repeat1, - STATE(1195), 1, - sym_enum_body_declarations, + STATE(881), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22505] = 5, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(2589), 1, - anon_sym_COMMA, - ACTIONS(2591), 1, + ACTIONS(2659), 2, + anon_sym_LBRACE, anon_sym_SEMI, - STATE(977), 1, - aux_sym_exports_module_directive_repeat1, - ACTIONS(3), 2, + [22862] = 4, + ACTIONS(2661), 1, + anon_sym_DQUOTE, + STATE(911), 1, + aux_sym__string_literal_repeat1, + ACTIONS(2352), 2, sym_line_comment, sym_block_comment, - [22522] = 2, + ACTIONS(2663), 2, + sym_string_fragment, + sym_escape_sequence, + [22877] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(210), 1, + sym_class_body, + STATE(1161), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2593), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22533] = 4, - ACTIONS(2595), 1, - anon_sym_AMP, - STATE(943), 1, - aux_sym_type_bound_repeat1, + [22894] = 4, + ACTIONS(2666), 1, + anon_sym_DQUOTE, + STATE(911), 1, + aux_sym__string_literal_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2668), 2, + sym_string_fragment, + sym_escape_sequence, + [22909] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(207), 1, + sym_class_body, + STATE(1158), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2597), 2, - anon_sym_GT, - anon_sym_COMMA, - [22548] = 5, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(1706), 1, - anon_sym_COLON_COLON, - ACTIONS(2599), 1, - anon_sym_DOT, - STATE(1257), 1, - sym_argument_list, + [22926] = 3, + ACTIONS(2670), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22565] = 4, - ACTIONS(2601), 1, + ACTIONS(2672), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22939] = 4, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(2605), 1, + ACTIONS(2678), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2603), 2, + ACTIONS(2676), 2, anon_sym_COMMA, anon_sym_SEMI, - [22580] = 4, - ACTIONS(2607), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2609), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22595] = 2, + [22954] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2611), 4, + ACTIONS(2680), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22606] = 4, - ACTIONS(2601), 1, - anon_sym_EQ, - ACTIONS(2613), 1, - anon_sym_COLON, + [22965] = 5, + ACTIONS(2682), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + anon_sym_LBRACE, + STATE(906), 1, + sym_block, + STATE(1110), 1, + sym_resource_specification, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22982] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2603), 2, + ACTIONS(2686), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [22621] = 5, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2615), 1, - anon_sym_LBRACE, - STATE(153), 1, - sym_enum_body, - STATE(1189), 1, - sym_super_interfaces, + [22993] = 5, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_RPAREN, + STATE(1061), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22638] = 5, - ACTIONS(2287), 1, - anon_sym_permits, - ACTIONS(2311), 1, - anon_sym_LBRACE, - STATE(134), 1, - sym_interface_body, - STATE(1142), 1, - sym_permits, + [23010] = 4, + ACTIONS(2692), 1, + anon_sym_COMMA, + STATE(921), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22655] = 3, - ACTIONS(2601), 1, - anon_sym_EQ, + ACTIONS(1977), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [23025] = 3, + ACTIONS(2558), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2603), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [22668] = 5, - ACTIONS(1046), 1, - anon_sym_LT, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(958), 1, - sym_formal_parameters, - STATE(1192), 1, - sym_type_parameters, + ACTIONS(2560), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [23038] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + STATE(241), 1, + sym_class_body, + STATE(1193), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22685] = 5, - ACTIONS(1463), 1, + [23055] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2285), 1, + ACTIONS(2313), 1, anon_sym_implements, - STATE(140), 1, + STATE(203), 1, sym_class_body, - STATE(1123), 1, + STATE(1157), 1, sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22702] = 2, + [23072] = 5, + ACTIONS(2315), 1, + anon_sym_permits, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(197), 1, + sym_interface_body, + STATE(1137), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, + [23089] = 5, + ACTIONS(2315), 1, anon_sym_permits, - [22713] = 4, - ACTIONS(2617), 1, - anon_sym_COMMA, - STATE(912), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_interface_body, + STATE(1153), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1935), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22728] = 4, - ACTIONS(2622), 1, - anon_sym_extends, - STATE(1088), 1, - sym_type_bound, + [23106] = 3, + ACTIONS(2695), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2620), 2, - anon_sym_GT, - anon_sym_COMMA, - [22743] = 5, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(158), 1, - sym_class_body, - STATE(1162), 1, - sym_permits, + ACTIONS(2697), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [23119] = 4, + ACTIONS(2701), 1, + anon_sym_throws, + STATE(1100), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22760] = 5, - ACTIONS(1407), 1, + ACTIONS(2699), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23134] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2624), 1, + ACTIONS(2705), 1, anon_sym_SEMI, - STATE(979), 1, + STATE(989), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22777] = 5, - ACTIONS(1437), 1, + [23151] = 5, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2626), 1, + ACTIONS(2707), 1, anon_sym_SEMI, - STATE(981), 1, + STATE(991), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22794] = 5, - ACTIONS(1407), 1, + [23168] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2628), 1, + ACTIONS(2709), 1, anon_sym_SEMI, - STATE(982), 1, + STATE(993), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22811] = 5, - ACTIONS(1437), 1, + [23185] = 5, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2630), 1, + ACTIONS(2711), 1, anon_sym_SEMI, - STATE(984), 1, + STATE(995), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22828] = 5, - ACTIONS(1407), 1, + [23202] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2632), 1, + ACTIONS(2713), 1, anon_sym_SEMI, - STATE(985), 1, + STATE(997), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22845] = 5, - ACTIONS(1437), 1, + [23219] = 5, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2634), 1, + ACTIONS(2715), 1, anon_sym_SEMI, - STATE(987), 1, + STATE(999), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22862] = 5, - ACTIONS(1407), 1, + [23236] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2636), 1, + ACTIONS(2717), 1, anon_sym_SEMI, - STATE(988), 1, + STATE(1001), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22879] = 5, - ACTIONS(1437), 1, + [23253] = 5, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2638), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2640), 1, + ACTIONS(2719), 1, anon_sym_SEMI, - STATE(991), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1003), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22896] = 5, - ACTIONS(1407), 1, + [23270] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2638), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2642), 1, + ACTIONS(2723), 1, anon_sym_SEMI, - STATE(993), 1, + STATE(1006), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22913] = 5, - ACTIONS(1437), 1, + [23287] = 5, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2638), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2644), 1, + ACTIONS(2725), 1, anon_sym_SEMI, - STATE(995), 1, + STATE(1008), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22930] = 5, - ACTIONS(1407), 1, + [23304] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2638), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2646), 1, + ACTIONS(2727), 1, anon_sym_SEMI, - STATE(997), 1, + STATE(1010), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22947] = 4, - ACTIONS(2622), 1, - anon_sym_extends, - STATE(1117), 1, - sym_type_bound, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2648), 2, - anon_sym_GT, + [23321] = 5, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2721), 1, anon_sym_COMMA, - [22962] = 5, - ACTIONS(2650), 1, - anon_sym_LBRACE, - ACTIONS(2652), 1, - anon_sym_throws, - STATE(450), 1, - sym_constructor_body, - STATE(1106), 1, - sym_throws, + ACTIONS(2729), 1, + anon_sym_SEMI, + STATE(1012), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22979] = 4, - ACTIONS(1929), 1, - anon_sym_COMMA, - STATE(912), 1, - aux_sym_argument_list_repeat1, + [23338] = 5, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2731), 1, + anon_sym_LBRACE, + STATE(248), 1, + sym_enum_body, + STATE(1185), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 2, - anon_sym_DASH_GT, + [23355] = 4, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(2733), 1, anon_sym_COLON, - [22994] = 4, - ACTIONS(91), 1, - anon_sym_LT, - STATE(1081), 1, - sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2656), 2, - anon_sym_new, - sym_identifier, - [23009] = 5, - ACTIONS(2650), 1, - anon_sym_LBRACE, - ACTIONS(2652), 1, + ACTIONS(2676), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [23370] = 4, + ACTIONS(2701), 1, anon_sym_throws, - STATE(431), 1, - sym_constructor_body, - STATE(1115), 1, + STATE(1150), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23026] = 5, - ACTIONS(1046), 1, + ACTIONS(2735), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23385] = 5, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(2206), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(910), 1, + STATE(945), 1, sym_formal_parameters, - STATE(1138), 1, + STATE(1176), 1, sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23043] = 5, - ACTIONS(2285), 1, - anon_sym_implements, - ACTIONS(2615), 1, - anon_sym_LBRACE, - STATE(118), 1, - sym_enum_body, - STATE(1137), 1, - sym_super_interfaces, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23060] = 4, - ACTIONS(2607), 1, - anon_sym_COMMA, - STATE(861), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2658), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [23075] = 5, - ACTIONS(1463), 1, + [23402] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2285), 1, + ACTIONS(2313), 1, anon_sym_implements, - STATE(161), 1, + STATE(225), 1, sym_class_body, - STATE(1158), 1, + STATE(1156), 1, sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23092] = 5, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(124), 1, - sym_class_body, - STATE(1157), 1, - sym_permits, + [23419] = 4, + ACTIONS(2737), 1, + anon_sym_AMP, + STATE(955), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23109] = 5, - ACTIONS(1463), 1, + ACTIONS(2739), 2, + anon_sym_GT, + anon_sym_COMMA, + [23434] = 5, + ACTIONS(2701), 1, + anon_sym_throws, + ACTIONS(2741), 1, anon_sym_LBRACE, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(110), 1, - sym_class_body, - STATE(1128), 1, - sym_permits, + STATE(443), 1, + sym_constructor_body, + STATE(1134), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23126] = 5, - ACTIONS(1463), 1, + [23451] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2285), 1, + ACTIONS(2313), 1, anon_sym_implements, - STATE(129), 1, + STATE(213), 1, sym_class_body, - STATE(1147), 1, + STATE(1099), 1, sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23143] = 4, - ACTIONS(2652), 1, - anon_sym_throws, - STATE(1107), 1, - sym_throws, + [23468] = 4, + ACTIONS(2745), 1, + anon_sym_extends, + STATE(1131), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2660), 2, - anon_sym_LBRACE, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_COMMA, + [23483] = 3, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2676), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - [23158] = 5, - ACTIONS(2287), 1, - anon_sym_permits, - ACTIONS(2311), 1, - anon_sym_LBRACE, - STATE(164), 1, - sym_interface_body, - STATE(1140), 1, - sym_permits, + [23496] = 4, + ACTIONS(2737), 1, + anon_sym_AMP, + STATE(946), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23175] = 5, - ACTIONS(2662), 1, - anon_sym_LPAREN, - ACTIONS(2664), 1, + ACTIONS(2747), 2, + anon_sym_GT, + anon_sym_COMMA, + [23511] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(890), 1, - sym_block, - STATE(1132), 1, - sym_resource_specification, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(253), 1, + sym_class_body, + STATE(1159), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23192] = 3, - ACTIONS(2666), 1, - sym_identifier, + [23528] = 4, + ACTIONS(2745), 1, + anon_sym_extends, + STATE(1130), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [23205] = 3, - ACTIONS(2670), 1, - sym_identifier, + ACTIONS(2749), 2, + anon_sym_GT, + anon_sym_COMMA, + [23543] = 4, + ACTIONS(95), 1, + anon_sym_LT, + STATE(1180), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [23218] = 4, - ACTIONS(2595), 1, + ACTIONS(2751), 2, + anon_sym_new, + sym_identifier, + [23558] = 4, + ACTIONS(2753), 1, anon_sym_AMP, - STATE(945), 1, + STATE(955), 1, aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2674), 2, + ACTIONS(2756), 2, anon_sym_GT, anon_sym_COMMA, - [23233] = 5, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(156), 1, - sym_class_body, - STATE(1176), 1, - sym_permits, + [23573] = 4, + ACTIONS(2701), 1, + anon_sym_throws, + STATE(1116), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23250] = 4, - ACTIONS(2676), 1, - anon_sym_AMP, - STATE(945), 1, - aux_sym_type_bound_repeat1, + ACTIONS(2758), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23588] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2760), 1, + anon_sym_DOT, + STATE(1275), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2679), 2, - anon_sym_GT, + [23605] = 4, + ACTIONS(2762), 1, + anon_sym_DQUOTE, + STATE(913), 1, + aux_sym__string_literal_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2764), 2, + sym_string_fragment, + sym_escape_sequence, + [23620] = 4, + ACTIONS(2657), 1, anon_sym_COMMA, - [23265] = 5, - ACTIONS(1463), 1, + STATE(881), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2766), 2, anon_sym_LBRACE, - ACTIONS(2287), 1, anon_sym_permits, - STATE(137), 1, - sym_class_body, - STATE(1129), 1, - sym_permits, + [23635] = 5, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2731), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_enum_body, + STATE(1146), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23282] = 4, - ACTIONS(2601), 1, + [23652] = 5, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(923), 1, + sym_formal_parameters, + STATE(1145), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23669] = 5, + ACTIONS(2701), 1, + anon_sym_throws, + ACTIONS(2741), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_constructor_body, + STATE(1126), 1, + sym_throws, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23686] = 4, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(2681), 1, + ACTIONS(2768), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2603), 2, + ACTIONS(2676), 2, anon_sym_COMMA, anon_sym_SEMI, - [23297] = 5, - ACTIONS(1706), 1, - anon_sym_COLON_COLON, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2685), 1, - anon_sym_RPAREN, - STATE(1036), 1, - aux_sym_cast_expression_repeat1, + [23701] = 4, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(2770), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23314] = 3, - ACTIONS(2499), 1, - sym_identifier, + ACTIONS(2676), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [23716] = 4, + ACTIONS(2657), 1, + anon_sym_COMMA, + STATE(910), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 3, - anon_sym_open, - anon_sym_module, - anon_sym_record, - [23327] = 4, - ACTIONS(2652), 1, - anon_sym_throws, - STATE(1094), 1, - sym_throws, + ACTIONS(2772), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23731] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 2, + ACTIONS(2577), 4, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - [23342] = 5, - ACTIONS(2287), 1, anon_sym_permits, - ACTIONS(2311), 1, - anon_sym_LBRACE, - STATE(105), 1, - sym_interface_body, - STATE(1097), 1, - sym_permits, + [23742] = 5, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2774), 1, + anon_sym_RPAREN, + STATE(996), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23359] = 2, + [23759] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(175), 1, + sym_class_body, + STATE(1098), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2689), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [23370] = 4, - ACTIONS(2691), 1, + [23776] = 4, + ACTIONS(1961), 1, anon_sym_COMMA, - STATE(953), 1, + STATE(921), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1935), 2, - anon_sym_RPAREN, + ACTIONS(2776), 2, + anon_sym_DASH_GT, anon_sym_COLON, - [23385] = 5, - ACTIONS(2287), 1, + [23791] = 5, + ACTIONS(2315), 1, anon_sym_permits, - ACTIONS(2311), 1, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(143), 1, + STATE(244), 1, sym_interface_body, - STATE(1121), 1, + STATE(1119), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23402] = 5, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2287), 1, + [23808] = 5, + ACTIONS(2315), 1, anon_sym_permits, - STATE(122), 1, - sym_class_body, - STATE(1154), 1, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_interface_body, + STATE(1097), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23419] = 4, - ACTIONS(2607), 1, + [23825] = 4, + ACTIONS(2778), 1, anon_sym_COMMA, - STATE(861), 1, - aux_sym_type_list_repeat1, + STATE(972), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 2, - anon_sym_LBRACE, - anon_sym_permits, - [23434] = 5, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(145), 1, - sym_class_body, - STATE(1092), 1, - sym_permits, + ACTIONS(1977), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [23840] = 4, + ACTIONS(2657), 1, + anon_sym_COMMA, + STATE(959), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23451] = 5, - ACTIONS(1463), 1, + ACTIONS(2781), 2, anon_sym_LBRACE, - ACTIONS(2285), 1, - anon_sym_implements, - STATE(108), 1, - sym_class_body, - STATE(1084), 1, - sym_super_interfaces, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23468] = 2, + anon_sym_permits, + [23855] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 4, + ACTIONS(2783), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [23479] = 4, - ACTIONS(2698), 1, + [23866] = 4, + ACTIONS(2785), 1, anon_sym_COMMA, - STATE(960), 1, + STATE(975), 1, aux_sym_enum_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 2, + ACTIONS(2788), 2, anon_sym_RBRACE, anon_sym_SEMI, - [23494] = 5, - ACTIONS(1706), 1, - anon_sym_COLON_COLON, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2703), 1, - anon_sym_RPAREN, - STATE(1012), 1, - aux_sym_cast_expression_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23511] = 4, - ACTIONS(2601), 1, - anon_sym_EQ, - ACTIONS(2705), 1, - anon_sym_COLON, + [23881] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(158), 1, + sym_class_body, + STATE(1122), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2603), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [23526] = 4, - ACTIONS(2652), 1, - anon_sym_throws, - STATE(1104), 1, - sym_throws, + [23898] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(257), 1, + sym_class_body, + STATE(1129), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 2, + [23915] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [23541] = 4, - ACTIONS(2607), 1, - anon_sym_COMMA, - STATE(956), 1, - aux_sym_type_list_repeat1, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(255), 1, + sym_class_body, + STATE(1184), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 2, + [23932] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, + ACTIONS(2315), 1, anon_sym_permits, - [23556] = 5, - ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(2287), 1, - anon_sym_permits, - STATE(176), 1, + STATE(160), 1, sym_class_body, - STATE(1103), 1, + STATE(1121), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23573] = 4, - ACTIONS(2711), 1, - anon_sym_RPAREN, - ACTIONS(2713), 1, - anon_sym_COMMA, - STATE(966), 1, - aux_sym_formal_parameters_repeat1, + [23949] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23587] = 4, - ACTIONS(2716), 1, + ACTIONS(2790), 4, anon_sym_RPAREN, - ACTIONS(2718), 1, anon_sym_COMMA, - STATE(967), 1, - aux_sym_annotation_argument_list_repeat1, + anon_sym_RBRACE, + anon_sym_SEMI, + [23960] = 4, + ACTIONS(934), 1, + anon_sym_RPAREN, + ACTIONS(2792), 1, + anon_sym_SEMI, + STATE(1084), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23601] = 4, - ACTIONS(1407), 1, + [23974] = 4, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2721), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_module_body, + ACTIONS(2794), 1, + anon_sym_SEMI, + ACTIONS(2796), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23615] = 4, - ACTIONS(2723), 1, - anon_sym_GT, - ACTIONS(2725), 1, + [23988] = 4, + ACTIONS(1997), 1, anon_sym_COMMA, - STATE(1076), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2798), 1, + anon_sym_SEMI, + STATE(1085), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23629] = 4, - ACTIONS(2727), 1, - sym_identifier, - ACTIONS(2729), 1, - anon_sym_STAR, - STATE(1254), 1, - sym_asterisk, + [24002] = 4, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(2800), 1, + anon_sym_COMMA, + STATE(998), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23643] = 4, - ACTIONS(2725), 1, + [24016] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2731), 1, - anon_sym_GT, - STATE(969), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2802), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23657] = 4, - ACTIONS(2733), 1, + [24030] = 4, + ACTIONS(2804), 1, anon_sym_COMMA, - ACTIONS(2736), 1, + ACTIONS(2806), 1, anon_sym_SEMI, - STATE(972), 1, + STATE(1033), 1, aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23671] = 4, - ACTIONS(2738), 1, - anon_sym_RPAREN, - ACTIONS(2740), 1, + [24044] = 4, + ACTIONS(1213), 1, anon_sym_COMMA, - STATE(1014), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2808), 1, + anon_sym_RPAREN, + STATE(1042), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23685] = 4, - ACTIONS(2740), 1, + [24058] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2742), 1, + ACTIONS(2810), 1, anon_sym_RPAREN, - STATE(967), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23699] = 4, - ACTIONS(2740), 1, + [24072] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2744), 1, - anon_sym_RPAREN, - STATE(974), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2812), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23713] = 4, - ACTIONS(2729), 1, - anon_sym_STAR, - ACTIONS(2746), 1, - sym_identifier, - STATE(1240), 1, - sym_asterisk, + [24086] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23727] = 4, - ACTIONS(2589), 1, + ACTIONS(2756), 3, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + [24096] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2748), 1, + ACTIONS(2814), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23741] = 4, - ACTIONS(2750), 1, - anon_sym_RPAREN, - ACTIONS(2752), 1, - anon_sym_SEMI, - STATE(978), 1, - aux_sym_resource_specification_repeat1, + [24110] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23755] = 4, - ACTIONS(2589), 1, + ACTIONS(2816), 3, anon_sym_COMMA, - ACTIONS(2755), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(1022), 1, + [24120] = 4, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2818), 1, + anon_sym_SEMI, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23769] = 4, - ACTIONS(2757), 1, - anon_sym_RPAREN, - ACTIONS(2759), 1, + [24134] = 4, + ACTIONS(1213), 1, anon_sym_COMMA, - STATE(966), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2820), 1, + anon_sym_RPAREN, + STATE(1042), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23783] = 4, - ACTIONS(2589), 1, + [24148] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2761), 1, + ACTIONS(2822), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23797] = 4, - ACTIONS(2589), 1, - anon_sym_COMMA, - ACTIONS(2763), 1, - anon_sym_SEMI, - STATE(1022), 1, - aux_sym_exports_module_directive_repeat1, + [24162] = 4, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2824), 1, + anon_sym_RPAREN, + STATE(1043), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23811] = 4, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(2765), 1, + [24176] = 4, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2826), 1, anon_sym_SEMI, - STATE(452), 1, - sym_block, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23825] = 4, - ACTIONS(2589), 1, + [24190] = 4, + ACTIONS(2800), 1, anon_sym_COMMA, - ACTIONS(2767), 1, - anon_sym_SEMI, - STATE(1022), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2828), 1, + anon_sym_RPAREN, + STATE(1044), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23839] = 4, - ACTIONS(2589), 1, + [24204] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2769), 1, + ACTIONS(2830), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23853] = 4, - ACTIONS(1991), 1, - anon_sym_SEMI, - ACTIONS(2587), 1, + [24218] = 4, + ACTIONS(2832), 1, + anon_sym_COMMA, + ACTIONS(2835), 1, anon_sym_RBRACE, - STATE(1195), 1, - sym_enum_body_declarations, + STATE(1000), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23867] = 4, - ACTIONS(2589), 1, + [24232] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2771), 1, + ACTIONS(2837), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23881] = 4, - ACTIONS(2589), 1, + [24246] = 4, + ACTIONS(2800), 1, + anon_sym_COMMA, + ACTIONS(2828), 1, + anon_sym_RPAREN, + STATE(1047), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24260] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2773), 1, + ACTIONS(2839), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23895] = 4, - ACTIONS(2775), 1, - anon_sym_AMP, - ACTIONS(2778), 1, + [24274] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2841), 1, anon_sym_RPAREN, - STATE(989), 1, - aux_sym_cast_expression_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23909] = 4, - ACTIONS(2780), 1, + [24288] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2783), 1, - anon_sym_SEMI, - STATE(990), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2843), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23923] = 4, - ACTIONS(2638), 1, + [24302] = 4, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2785), 1, + ACTIONS(2845), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1048), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23937] = 4, - ACTIONS(1702), 1, - anon_sym_LBRACK, - ACTIONS(1704), 1, - anon_sym_DOT, - ACTIONS(1706), 1, - anon_sym_COLON_COLON, + [24316] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2847), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23951] = 4, - ACTIONS(2638), 1, + [24330] = 4, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2787), 1, + ACTIONS(2849), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1048), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23965] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(2789), 1, + [24344] = 4, + ACTIONS(2851), 1, anon_sym_RPAREN, - STATE(1064), 1, + ACTIONS(2853), 1, + anon_sym_COMMA, + STATE(1009), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23979] = 4, - ACTIONS(2638), 1, + [24358] = 4, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2791), 1, + ACTIONS(2856), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1048), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23993] = 2, + [24372] = 4, + ACTIONS(2858), 1, + anon_sym_GT, + ACTIONS(2860), 1, + anon_sym_COMMA, + STATE(1050), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2793), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [24003] = 4, - ACTIONS(2638), 1, + [24386] = 4, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2862), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1048), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24017] = 4, - ACTIONS(2759), 1, - anon_sym_COMMA, - ACTIONS(2797), 1, - anon_sym_RPAREN, - STATE(980), 1, - aux_sym_formal_parameters_repeat1, + [24400] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24031] = 4, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(2721), 1, + ACTIONS(2864), 3, anon_sym_LBRACE, - STATE(196), 1, - sym_module_body, + anon_sym_SEMI, + anon_sym_throws, + [24410] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24045] = 2, + ACTIONS(2866), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + [24420] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2868), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 3, + [24434] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [24055] = 2, + ACTIONS(2870), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2799), 3, - anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [24065] = 4, - ACTIONS(2259), 1, + [24448] = 4, + ACTIONS(2291), 1, anon_sym_default, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_SEMI, - STATE(1281), 1, + STATE(1226), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24079] = 4, - ACTIONS(1369), 1, - anon_sym_RPAREN, - ACTIONS(2759), 1, + [24462] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - STATE(1004), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2874), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24093] = 4, - ACTIONS(2759), 1, + [24476] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2797), 1, + ACTIONS(2876), 1, anon_sym_RPAREN, - STATE(966), 1, - aux_sym_formal_parameters_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24107] = 4, - ACTIONS(1437), 1, + [24490] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, anon_sym_DOT, - ACTIONS(2721), 1, - anon_sym_LBRACE, - STATE(222), 1, - sym_module_body, + STATE(425), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24121] = 4, - ACTIONS(2740), 1, + [24504] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2803), 1, + ACTIONS(2878), 1, anon_sym_RPAREN, - STATE(967), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24135] = 2, + [24518] = 4, + ACTIONS(2076), 1, + anon_sym_RBRACE, + ACTIONS(2880), 1, + anon_sym_COMMA, + STATE(1022), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [24145] = 4, - ACTIONS(2807), 1, + [24532] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2809), 1, - anon_sym_RBRACE, - STATE(1011), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2883), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24159] = 4, - ACTIONS(1939), 1, + [24546] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2811), 1, + ACTIONS(2885), 1, anon_sym_RPAREN, - STATE(1064), 1, + STATE(1009), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24173] = 4, - ACTIONS(2740), 1, - anon_sym_COMMA, - ACTIONS(2813), 1, - anon_sym_RPAREN, - STATE(1006), 1, - aux_sym_annotation_argument_list_repeat1, + [24560] = 4, + ACTIONS(1680), 1, + anon_sym_LBRACK, + ACTIONS(1682), 1, + anon_sym_DOT, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24187] = 4, - ACTIONS(366), 1, - anon_sym_RBRACE, - ACTIONS(2815), 1, - anon_sym_COMMA, - STATE(1069), 1, - aux_sym_element_value_array_initializer_repeat1, + [24574] = 4, + ACTIONS(2887), 1, + anon_sym_RPAREN, + ACTIONS(2889), 1, + anon_sym_SEMI, + STATE(981), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24201] = 4, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2817), 1, + [24588] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, anon_sym_RPAREN, - STATE(989), 1, - aux_sym_cast_expression_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24215] = 4, - ACTIONS(1407), 1, + [24602] = 4, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2721), 1, + ACTIONS(2893), 1, anon_sym_LBRACE, - STATE(214), 1, + STATE(336), 1, sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24229] = 4, - ACTIONS(2740), 1, - anon_sym_COMMA, - ACTIONS(2819), 1, - anon_sym_RPAREN, - STATE(967), 1, - aux_sym_annotation_argument_list_repeat1, + [24616] = 4, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24243] = 4, - ACTIONS(1203), 1, - anon_sym_COMMA, - ACTIONS(2821), 1, - anon_sym_RPAREN, - STATE(1037), 1, - aux_sym_inferred_parameters_repeat1, + [24630] = 4, + ACTIONS(2895), 1, + sym_identifier, + ACTIONS(2897), 1, + anon_sym_STAR, + STATE(1260), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24257] = 4, - ACTIONS(1939), 1, + [24644] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2823), 1, + ACTIONS(2899), 1, anon_sym_RPAREN, - STATE(1064), 1, + STATE(1009), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24271] = 4, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2189), 1, - anon_sym_DOT, - STATE(428), 1, - sym_argument_list, + [24658] = 4, + ACTIONS(2897), 1, + anon_sym_STAR, + ACTIONS(2901), 1, + sym_identifier, + STATE(1262), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24285] = 4, - ACTIONS(2725), 1, + [24672] = 4, + ACTIONS(2804), 1, anon_sym_COMMA, - ACTIONS(2825), 1, - anon_sym_GT, - STATE(1076), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2903), 1, + anon_sym_SEMI, + STATE(1072), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24299] = 3, - ACTIONS(1437), 1, + [24686] = 3, + ACTIONS(1435), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 2, + ACTIONS(2905), 2, anon_sym_COMMA, anon_sym_SEMI, - [24311] = 3, - ACTIONS(1407), 1, + [24698] = 3, + ACTIONS(1417), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2829), 2, + ACTIONS(2907), 2, anon_sym_COMMA, anon_sym_SEMI, - [24323] = 2, + [24710] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2013), 3, - anon_sym_RPAREN, + ACTIONS(2909), 3, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [24333] = 4, - ACTIONS(2831), 1, + [24720] = 4, + ACTIONS(2911), 1, anon_sym_COMMA, - ACTIONS(2834), 1, + ACTIONS(2914), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24347] = 4, - ACTIONS(2729), 1, - anon_sym_STAR, - ACTIONS(2746), 1, - sym_identifier, - STATE(1221), 1, - sym_asterisk, + [24734] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24361] = 4, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(2836), 1, + ACTIONS(2788), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2838), 1, - anon_sym_to, + [24744] = 4, + ACTIONS(2916), 1, + anon_sym_RPAREN, + ACTIONS(2918), 1, + anon_sym_COMMA, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24375] = 4, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(2840), 1, - anon_sym_SEMI, - ACTIONS(2842), 1, - anon_sym_to, + [24758] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24389] = 4, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(2844), 1, + ACTIONS(2920), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2846), 1, - anon_sym_to, + [24768] = 4, + ACTIONS(2918), 1, + anon_sym_COMMA, + ACTIONS(2922), 1, + anon_sym_RPAREN, + STATE(1039), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24403] = 4, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(2848), 1, - anon_sym_SEMI, - ACTIONS(2850), 1, - anon_sym_to, + [24782] = 4, + ACTIONS(2924), 1, + anon_sym_RPAREN, + ACTIONS(2926), 1, + anon_sym_COMMA, + STATE(1042), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24417] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(2852), 1, + [24796] = 4, + ACTIONS(2929), 1, + anon_sym_AMP, + ACTIONS(2932), 1, anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + STATE(1043), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24431] = 4, - ACTIONS(2727), 1, - sym_identifier, - ACTIONS(2729), 1, - anon_sym_STAR, - STATE(1232), 1, - sym_asterisk, + [24810] = 4, + ACTIONS(2934), 1, + anon_sym_RPAREN, + ACTIONS(2936), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24445] = 3, - ACTIONS(1437), 1, + [24824] = 3, + ACTIONS(1435), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 2, + ACTIONS(2939), 2, anon_sym_COMMA, anon_sym_SEMI, - [24457] = 3, - ACTIONS(1407), 1, + [24836] = 3, + ACTIONS(1417), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 2, + ACTIONS(2941), 2, anon_sym_COMMA, anon_sym_SEMI, - [24469] = 4, - ACTIONS(1939), 1, + [24848] = 4, + ACTIONS(2800), 1, anon_sym_COMMA, - ACTIONS(2858), 1, + ACTIONS(2943), 1, anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + STATE(1044), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24483] = 4, - ACTIONS(2860), 1, + [24862] = 4, + ACTIONS(2945), 1, anon_sym_COMMA, - ACTIONS(2863), 1, + ACTIONS(2948), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1048), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24497] = 4, - ACTIONS(2725), 1, + [24876] = 4, + ACTIONS(2950), 1, + anon_sym_RPAREN, + ACTIONS(2952), 1, anon_sym_COMMA, - ACTIONS(2865), 1, - anon_sym_GT, - STATE(1018), 1, - aux_sym_type_arguments_repeat1, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24511] = 4, - ACTIONS(2867), 1, - anon_sym_GT, - ACTIONS(2869), 1, + [24890] = 4, + ACTIONS(2860), 1, anon_sym_COMMA, - STATE(1062), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2955), 1, + anon_sym_GT, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24525] = 4, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2871), 1, + [24904] = 4, + ACTIONS(2918), 1, + anon_sym_COMMA, + ACTIONS(2957), 1, anon_sym_RPAREN, - STATE(989), 1, - aux_sym_cast_expression_repeat1, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24539] = 4, - ACTIONS(2873), 1, - anon_sym_RPAREN, - ACTIONS(2875), 1, + [24918] = 4, + ACTIONS(2918), 1, anon_sym_COMMA, - STATE(1037), 1, - aux_sym_inferred_parameters_repeat1, + ACTIONS(2959), 1, + anon_sym_RPAREN, + STATE(1051), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24553] = 4, - ACTIONS(2259), 1, + [24932] = 4, + ACTIONS(2291), 1, anon_sym_default, - ACTIONS(2878), 1, + ACTIONS(2961), 1, anon_sym_SEMI, - STATE(1276), 1, + STATE(1279), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24567] = 4, - ACTIONS(1939), 1, + [24946] = 4, + ACTIONS(2963), 1, + anon_sym_GT, + ACTIONS(2965), 1, anon_sym_COMMA, - ACTIONS(2880), 1, - anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + STATE(1078), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24581] = 4, - ACTIONS(1959), 1, + [24960] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2967), 3, + anon_sym_LBRACE, + anon_sym_implements, + anon_sym_permits, + [24970] = 4, + ACTIONS(349), 1, + anon_sym_RBRACE, + ACTIONS(2969), 1, anon_sym_COMMA, - ACTIONS(2654), 1, - anon_sym_COLON, - STATE(953), 1, - aux_sym_argument_list_repeat1, + STATE(1000), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24595] = 4, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2882), 1, - anon_sym_DOT, - STATE(1239), 1, - sym_argument_list, + [24984] = 4, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(2971), 1, + anon_sym_SEMI, + STATE(429), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24609] = 4, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(2884), 1, + [24998] = 4, + ACTIONS(2860), 1, anon_sym_COMMA, - STATE(1042), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2973), 1, + anon_sym_GT, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24623] = 4, - ACTIONS(1939), 1, + [25012] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2887), 1, + ACTIONS(2975), 1, anon_sym_RPAREN, - STATE(1064), 1, + STATE(1009), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24637] = 2, + [25026] = 4, + ACTIONS(2860), 1, + anon_sym_COMMA, + ACTIONS(2977), 1, + anon_sym_GT, + STATE(1058), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2679), 3, + [25040] = 4, + ACTIONS(2688), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - [24647] = 4, - ACTIONS(1959), 1, - anon_sym_COMMA, - ACTIONS(2889), 1, + ACTIONS(2979), 1, anon_sym_RPAREN, - STATE(953), 1, - aux_sym_argument_list_repeat1, + STATE(1043), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24661] = 4, - ACTIONS(1939), 1, + [25054] = 4, + ACTIONS(1997), 1, anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2981), 1, + anon_sym_SEMI, + STATE(1085), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24675] = 4, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(2893), 1, - anon_sym_SEMI, - STATE(434), 1, - sym_block, + [25068] = 4, + ACTIONS(2918), 1, + anon_sym_COMMA, + ACTIONS(2983), 1, + anon_sym_RPAREN, + STATE(1089), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24689] = 4, - ACTIONS(1939), 1, + [25082] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2895), 1, + ACTIONS(2985), 1, anon_sym_RPAREN, - STATE(1064), 1, + STATE(1009), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24703] = 4, - ACTIONS(1939), 1, + [25096] = 4, + ACTIONS(1989), 1, anon_sym_COMMA, - ACTIONS(2897), 1, + ACTIONS(2987), 1, anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + STATE(972), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24717] = 4, - ACTIONS(1945), 1, - anon_sym_COMMA, - ACTIONS(2899), 1, - anon_sym_SEMI, - STATE(990), 1, - aux_sym_for_statement_repeat1, + [25110] = 4, + ACTIONS(2895), 1, + sym_identifier, + ACTIONS(2897), 1, + anon_sym_STAR, + STATE(1281), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24731] = 2, + [25124] = 4, + ACTIONS(2897), 1, + anon_sym_STAR, + ACTIONS(2901), 1, + sym_identifier, + STATE(1284), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2901), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + [25138] = 4, + ACTIONS(2021), 1, anon_sym_SEMI, - [24741] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(2903), 1, - anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2603), 1, + anon_sym_RBRACE, + STATE(1287), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24755] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(2905), 1, - anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + [25152] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24769] = 4, - ACTIONS(2907), 1, - anon_sym_RPAREN, - ACTIONS(2909), 1, - anon_sym_SEMI, - STATE(1058), 1, - aux_sym_resource_specification_repeat1, + ACTIONS(2989), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [25162] = 4, + ACTIONS(1989), 1, + anon_sym_COMMA, + ACTIONS(2776), 1, + anon_sym_COLON, + STATE(972), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24783] = 2, + [25176] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 3, - anon_sym_LBRACE, + [25190] = 4, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(2994), 1, anon_sym_SEMI, - anon_sym_throws, - [24793] = 2, + STATE(1072), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2913), 3, + [25204] = 4, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2893), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [24803] = 2, + STATE(293), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [24813] = 4, - ACTIONS(1030), 1, - anon_sym_RPAREN, - ACTIONS(2917), 1, - anon_sym_SEMI, - STATE(978), 1, - aux_sym_resource_specification_repeat1, + [25218] = 4, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(290), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24827] = 2, + [25232] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2996), 1, + anon_sym_DOT, + STATE(1271), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2919), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [24837] = 4, - ACTIONS(2921), 1, + [25246] = 4, + ACTIONS(2998), 1, + anon_sym_GT, + ACTIONS(3000), 1, anon_sym_COMMA, - ACTIONS(2923), 1, - anon_sym_SEMI, - STATE(972), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24851] = 4, - ACTIONS(1939), 1, + [25260] = 4, + ACTIONS(1991), 1, anon_sym_COMMA, - ACTIONS(2925), 1, - anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + ACTIONS(1993), 1, + anon_sym_RBRACE, + STATE(1082), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24865] = 4, - ACTIONS(2869), 1, + [25274] = 4, + ACTIONS(2965), 1, anon_sym_COMMA, - ACTIONS(2927), 1, + ACTIONS(3003), 1, anon_sym_GT, - STATE(1073), 1, + STATE(1080), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24879] = 4, - ACTIONS(1951), 1, - anon_sym_COMMA, - ACTIONS(1953), 1, - anon_sym_RBRACE, - STATE(1077), 1, - aux_sym_array_initializer_repeat1, + [25288] = 4, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_SEMI, + STATE(455), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24893] = 4, - ACTIONS(2929), 1, - anon_sym_RPAREN, - ACTIONS(2931), 1, + [25302] = 4, + ACTIONS(3007), 1, + anon_sym_GT, + ACTIONS(3009), 1, anon_sym_COMMA, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + STATE(1080), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24907] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(2934), 1, - anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + [25316] = 4, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(279), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24921] = 4, - ACTIONS(1203), 1, + [25330] = 4, + ACTIONS(376), 1, + anon_sym_RBRACE, + ACTIONS(3012), 1, anon_sym_COMMA, - ACTIONS(2936), 1, - anon_sym_RPAREN, - STATE(1037), 1, - aux_sym_inferred_parameters_repeat1, + STATE(1022), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24935] = 4, - ACTIONS(2921), 1, - anon_sym_COMMA, - ACTIONS(2938), 1, - anon_sym_SEMI, - STATE(1060), 1, - aux_sym__variable_declarator_list_repeat1, + [25344] = 4, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(278), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24949] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(2940), 1, + [25358] = 4, + ACTIONS(3014), 1, anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + ACTIONS(3016), 1, + anon_sym_SEMI, + STATE(1084), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24963] = 4, - ACTIONS(2942), 1, + [25372] = 4, + ACTIONS(3019), 1, anon_sym_COMMA, - ACTIONS(2945), 1, - anon_sym_RBRACE, - STATE(1069), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(3022), 1, + anon_sym_SEMI, + STATE(1085), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24977] = 4, - ACTIONS(1945), 1, - anon_sym_COMMA, - ACTIONS(2947), 1, + [25386] = 4, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3024), 1, anon_sym_SEMI, - STATE(990), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3026), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24991] = 4, - ACTIONS(1172), 1, - anon_sym_LPAREN, - ACTIONS(2189), 1, + [25400] = 4, + ACTIONS(1417), 1, anon_sym_DOT, - STATE(424), 1, - sym_argument_list, + ACTIONS(3028), 1, + anon_sym_SEMI, + ACTIONS(3030), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25005] = 4, - ACTIONS(1407), 1, + [25414] = 4, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2721), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_module_body, + ACTIONS(3032), 1, + anon_sym_SEMI, + ACTIONS(3034), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25019] = 4, - ACTIONS(2949), 1, - anon_sym_GT, - ACTIONS(2951), 1, + [25428] = 4, + ACTIONS(2918), 1, anon_sym_COMMA, - STATE(1073), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3036), 1, + anon_sym_RPAREN, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25033] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(2954), 1, + [25442] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1973), 3, anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_for_statement_repeat2, + anon_sym_COMMA, + anon_sym_SEMI, + [25452] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, + anon_sym_RBRACE, + STATE(1056), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25047] = 4, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(2721), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_module_body, + [25466] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25061] = 4, - ACTIONS(2956), 1, - anon_sym_GT, - ACTIONS(2958), 1, + ACTIONS(3042), 3, anon_sym_COMMA, - STATE(1076), 1, - aux_sym_type_arguments_repeat1, + anon_sym_RBRACE, + anon_sym_SEMI, + [25476] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25075] = 4, - ACTIONS(528), 1, - anon_sym_RBRACE, - ACTIONS(2961), 1, + ACTIONS(3044), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1042), 1, - aux_sym_array_initializer_repeat1, + [25485] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(461), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25089] = 3, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, - anon_sym_COLON, + [25496] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(206), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25100] = 3, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(2967), 1, - anon_sym_SEMI, + [25507] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(209), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25111] = 2, + [25518] = 3, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(217), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2956), 2, - anon_sym_GT, - anon_sym_COMMA, - [25120] = 2, + [25529] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(191), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2969), 2, - anon_sym_new, - sym_identifier, - [25129] = 2, + [25540] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(220), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2971), 2, - anon_sym_GT, - anon_sym_COMMA, - [25138] = 2, + [25551] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2945), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [25147] = 3, - ACTIONS(1463), 1, + ACTIONS(3046), 2, anon_sym_LBRACE, - STATE(130), 1, - sym_class_body, + anon_sym_SEMI, + [25560] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3048), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25158] = 3, - ACTIONS(1018), 1, - anon_sym_LPAREN, - STATE(1264), 1, - sym_parenthesized_expression, + [25571] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25169] = 3, - ACTIONS(1018), 1, - anon_sym_LPAREN, - STATE(1150), 1, - sym_parenthesized_expression, + ACTIONS(3050), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25580] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3052), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25180] = 3, - ACTIONS(1018), 1, - anon_sym_LPAREN, - STATE(45), 1, - sym_parenthesized_expression, + [25591] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25191] = 2, + [25602] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3056), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 2, - anon_sym_GT, - anon_sym_COMMA, - [25200] = 3, - ACTIONS(2664), 1, - anon_sym_LBRACE, - STATE(100), 1, - sym_block, + [25613] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3058), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25211] = 3, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(109), 1, - sym_class_body, + [25624] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3060), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25222] = 2, + [25635] = 3, + ACTIONS(3062), 1, + sym_identifier, + STATE(1199), 1, + sym_element_value_pair, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2975), 2, - anon_sym_LBRACE, - anon_sym_permits, - [25231] = 3, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(167), 1, - sym_class_body, + [25646] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25242] = 3, - ACTIONS(2977), 1, - sym_identifier, - ACTIONS(2979), 1, - anon_sym_SEMI, + ACTIONS(2835), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25655] = 3, + ACTIONS(2684), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25253] = 2, + [25666] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(1290), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 2, + [25677] = 3, + ACTIONS(353), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [25262] = 3, - ACTIONS(2983), 1, - sym_identifier, - ACTIONS(2985), 1, - anon_sym_SEMI, + STATE(478), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25273] = 2, + [25688] = 3, + ACTIONS(353), 1, + anon_sym_LBRACE, + STATE(485), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2987), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [25282] = 3, - ACTIONS(2311), 1, + [25699] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(135), 1, + STATE(199), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25293] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2989), 2, - sym_this, - sym_super, - [25302] = 3, - ACTIONS(1172), 1, - anon_sym_LPAREN, - STATE(484), 1, - sym_argument_list, + [25710] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25313] = 2, + ACTIONS(3014), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [25719] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2991), 2, + ACTIONS(3064), 2, anon_sym_LBRACE, - anon_sym_throws, - [25322] = 3, - ACTIONS(1172), 1, + anon_sym_SEMI, + [25728] = 3, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(1248), 1, + STATE(425), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25333] = 3, - ACTIONS(1172), 1, + [25739] = 3, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(485), 1, + STATE(1210), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25344] = 3, - ACTIONS(1463), 1, + [25750] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(170), 1, - sym_class_body, + STATE(196), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25355] = 2, + [25761] = 3, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(295), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 2, + [25772] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [25364] = 3, - ACTIONS(362), 1, + STATE(249), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25783] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(487), 1, - sym_array_initializer, + STATE(251), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25375] = 3, - ACTIONS(2650), 1, + [25794] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(436), 1, - sym_constructor_body, + STATE(252), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25386] = 2, + [25805] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2995), 2, + [25816] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [25395] = 3, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(759), 1, - sym_formal_parameters, + STATE(208), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25406] = 3, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(758), 1, - sym_formal_parameters, + [25827] = 3, + ACTIONS(2741), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25417] = 2, + [25838] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2039), 2, + ACTIONS(3007), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_RBRACE, - [25426] = 2, + [25847] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2997), 2, + ACTIONS(3068), 2, anon_sym_LBRACE, anon_sym_throws, - [25435] = 3, - ACTIONS(1172), 1, - anon_sym_LPAREN, - STATE(424), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25446] = 3, - ACTIONS(1018), 1, - anon_sym_LPAREN, - STATE(18), 1, - sym_parenthesized_expression, + [25856] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25457] = 2, + [25867] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2999), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [25466] = 3, - ACTIONS(2650), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_constructor_body, + ACTIONS(3070), 2, + anon_sym_GT, + anon_sym_COMMA, + [25876] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25477] = 3, - ACTIONS(3001), 1, - anon_sym_LBRACE, - STATE(150), 1, - sym_annotation_type_body, + ACTIONS(3072), 2, + anon_sym_GT, + anon_sym_COMMA, + [25885] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25488] = 2, + ACTIONS(2076), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25894] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3003), 2, + ACTIONS(3074), 2, anon_sym_GT, anon_sym_COMMA, - [25497] = 2, + [25903] = 3, + ACTIONS(2741), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2949), 2, - anon_sym_GT, - anon_sym_COMMA, - [25506] = 3, - ACTIONS(3005), 1, - anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, + [25914] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25517] = 3, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(138), 1, - sym_class_body, + ACTIONS(2998), 2, + anon_sym_GT, + anon_sym_COMMA, + [25923] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25528] = 3, - ACTIONS(2311), 1, + ACTIONS(3076), 2, + anon_sym_GT, + anon_sym_COMMA, + [25932] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(165), 1, + STATE(169), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25539] = 3, - ACTIONS(2311), 1, - anon_sym_LBRACE, - STATE(163), 1, - sym_interface_body, + [25943] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(1247), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25550] = 3, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(162), 1, - sym_class_body, + [25954] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25561] = 3, - ACTIONS(3001), 1, + ACTIONS(3078), 2, anon_sym_LBRACE, - STATE(119), 1, - sym_annotation_type_body, + anon_sym_throws, + [25963] = 3, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(765), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25572] = 3, - ACTIONS(3009), 1, + [25974] = 3, + ACTIONS(3080), 1, anon_sym_DOT, - ACTIONS(3011), 1, + ACTIONS(3082), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25583] = 3, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_SEMI, + [25985] = 3, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(758), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25594] = 3, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(3015), 1, - anon_sym_SEMI, + [25996] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25605] = 3, - ACTIONS(1463), 1, + ACTIONS(3084), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [26005] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(126), 1, - sym_class_body, + STATE(243), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25616] = 3, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(160), 1, - sym_class_body, + [26016] = 3, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(924), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25627] = 3, - ACTIONS(1463), 1, + [26027] = 3, + ACTIONS(2731), 1, anon_sym_LBRACE, - STATE(125), 1, - sym_class_body, + STATE(233), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25638] = 3, - ACTIONS(1463), 1, + [26038] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(159), 1, + STATE(231), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25649] = 3, - ACTIONS(2664), 1, - anon_sym_LBRACE, - STATE(88), 1, - sym_block, + [26049] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25660] = 2, + ACTIONS(3086), 2, + sym_this, + sym_super, + [26058] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(424), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3017), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25669] = 3, - ACTIONS(29), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_block, + [26069] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25680] = 3, - ACTIONS(1463), 1, + ACTIONS(3088), 2, anon_sym_LBRACE, - STATE(157), 1, - sym_class_body, + anon_sym_SEMI, + [26078] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(460), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25691] = 2, + [26089] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 2, + ACTIONS(3090), 2, anon_sym_RPAREN, anon_sym_COMMA, - [25700] = 3, - ACTIONS(2615), 1, - anon_sym_LBRACE, - STATE(139), 1, - sym_enum_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25711] = 3, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(934), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25722] = 3, - ACTIONS(29), 1, + [26098] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(190), 1, - sym_block, + STATE(226), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25733] = 3, - ACTIONS(2311), 1, + [26109] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(179), 1, + STATE(223), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25744] = 3, - ACTIONS(362), 1, - anon_sym_LBRACE, - STATE(471), 1, - sym_array_initializer, + [26120] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25755] = 3, - ACTIONS(2311), 1, + ACTIONS(3092), 2, anon_sym_LBRACE, - STATE(154), 1, - sym_interface_body, + anon_sym_permits, + [26129] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(214), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25766] = 3, - ACTIONS(1172), 1, - anon_sym_LPAREN, - STATE(428), 1, - sym_argument_list, + [26140] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25777] = 3, - ACTIONS(2311), 1, + [26151] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(142), 1, - sym_interface_body, + STATE(172), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25788] = 3, - ACTIONS(1463), 1, + [26162] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(146), 1, + STATE(185), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25799] = 3, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(3021), 1, - anon_sym_SEMI, + [26173] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(1194), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25810] = 3, - ACTIONS(1463), 1, + [26184] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(152), 1, + STATE(173), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25821] = 3, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(3023), 1, - anon_sym_SEMI, + [26195] = 3, + ACTIONS(2684), 1, + anon_sym_LBRACE, + STATE(130), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25832] = 3, - ACTIONS(362), 1, + [26206] = 3, + ACTIONS(33), 1, anon_sym_LBRACE, - STATE(459), 1, - sym_array_initializer, + STATE(277), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25843] = 3, - ACTIONS(3025), 1, + [26217] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(81), 1, - sym_switch_block, + STATE(174), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25854] = 2, + [26228] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25863] = 3, - ACTIONS(882), 1, - anon_sym_while, - ACTIONS(3029), 1, - anon_sym_else, + [26239] = 3, + ACTIONS(3094), 1, + sym_identifier, + ACTIONS(3096), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26250] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(469), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25874] = 2, + [26261] = 3, + ACTIONS(3098), 1, + sym_identifier, + ACTIONS(3100), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2873), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [25883] = 3, - ACTIONS(1463), 1, + [26272] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(147), 1, + STATE(161), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25894] = 2, + [26283] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(470), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 2, - anon_sym_GT, - anon_sym_COMMA, - [25903] = 3, - ACTIONS(362), 1, - anon_sym_LBRACE, - STATE(479), 1, - sym_array_initializer, + [26294] = 3, + ACTIONS(3102), 1, + anon_sym_DOT, + ACTIONS(3104), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25914] = 3, - ACTIONS(1463), 1, + [26305] = 3, + ACTIONS(3106), 1, anon_sym_LBRACE, - STATE(148), 1, - sym_class_body, + STATE(245), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25925] = 3, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(104), 1, - sym_class_body, + [26316] = 3, + ACTIONS(782), 1, + anon_sym_while, + ACTIONS(3108), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25936] = 3, - ACTIONS(1407), 1, + [26327] = 3, + ACTIONS(3110), 1, anon_sym_DOT, - ACTIONS(3033), 1, - anon_sym_with, + ACTIONS(3112), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25947] = 3, - ACTIONS(1437), 1, + [26338] = 3, + ACTIONS(3114), 1, anon_sym_DOT, - ACTIONS(3035), 1, - anon_sym_with, + ACTIONS(3116), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25958] = 3, - ACTIONS(3037), 1, - anon_sym_DOT, - ACTIONS(3039), 1, - anon_sym_SEMI, + [26349] = 3, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(948), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25969] = 3, - ACTIONS(1463), 1, + [26360] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(169), 1, - sym_class_body, + STATE(267), 1, + sym_interface_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26371] = 3, + ACTIONS(3118), 1, + anon_sym_DASH_GT, + ACTIONS(3120), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26382] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25980] = 3, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(3041), 1, - anon_sym_SEMI, + ACTIONS(3122), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [26391] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25991] = 3, - ACTIONS(1437), 1, + ACTIONS(3124), 2, + anon_sym_new, + sym_identifier, + [26400] = 3, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(3043), 1, + ACTIONS(3126), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26002] = 3, - ACTIONS(1463), 1, + [26411] = 3, + ACTIONS(3106), 1, anon_sym_LBRACE, - STATE(123), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [26013] = 2, + STATE(232), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 2, - anon_sym_GT, - anon_sym_COMMA, - [26022] = 3, - ACTIONS(1407), 1, + [26422] = 3, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3128), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26033] = 3, - ACTIONS(2311), 1, + [26433] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(113), 1, - sym_interface_body, + STATE(162), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26044] = 3, - ACTIONS(1018), 1, - anon_sym_LPAREN, - STATE(60), 1, - sym_parenthesized_expression, + [26444] = 3, + ACTIONS(2731), 1, + anon_sym_LBRACE, + STATE(216), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26055] = 2, + [26455] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [26064] = 3, - ACTIONS(1018), 1, + [26466] = 3, + ACTIONS(932), 1, anon_sym_LPAREN, - STATE(58), 1, + STATE(57), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26075] = 2, + [26477] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(159), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [26084] = 3, - ACTIONS(1407), 1, + [26488] = 3, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(3049), 1, + ACTIONS(3130), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26095] = 3, - ACTIONS(1437), 1, + [26499] = 3, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(3051), 1, + ACTIONS(3132), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26106] = 3, - ACTIONS(3053), 1, + [26510] = 3, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(3055), 1, + ACTIONS(3134), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26117] = 3, - ACTIONS(1463), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_class_body, + [26521] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26128] = 3, - ACTIONS(1463), 1, + ACTIONS(3136), 2, anon_sym_LBRACE, - STATE(175), 1, + anon_sym_permits, + [26530] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(201), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26139] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2716), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [26148] = 3, - ACTIONS(1172), 1, - anon_sym_LPAREN, - STATE(478), 1, - sym_argument_list, + [26541] = 3, + ACTIONS(3138), 1, + anon_sym_LBRACE, + STATE(80), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26159] = 3, - ACTIONS(1706), 1, - anon_sym_COLON_COLON, - ACTIONS(2599), 1, - anon_sym_DOT, + [26552] = 3, + ACTIONS(353), 1, + anon_sym_LBRACE, + STATE(490), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26170] = 3, - ACTIONS(3057), 1, - sym_identifier, - STATE(1178), 1, - sym_element_value_pair, + [26563] = 3, + ACTIONS(353), 1, + anon_sym_LBRACE, + STATE(492), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26181] = 3, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(3059), 1, - anon_sym_SEMI, + [26574] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26192] = 3, - ACTIONS(1437), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_SEMI, + ACTIONS(3140), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26583] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26203] = 3, - ACTIONS(1172), 1, - anon_sym_LPAREN, - STATE(466), 1, - sym_argument_list, + ACTIONS(2542), 2, + anon_sym_GT, + anon_sym_COMMA, + [26592] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26214] = 2, + ACTIONS(2950), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26601] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3142), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3063), 2, - anon_sym_LBRACE, - anon_sym_permits, - [26223] = 3, - ACTIONS(1407), 1, + [26612] = 3, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2760), 1, anon_sym_DOT, - ACTIONS(3065), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26234] = 2, + [26623] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3067), 2, + ACTIONS(2934), 2, anon_sym_RPAREN, anon_sym_COMMA, - [26243] = 3, - ACTIONS(1172), 1, - anon_sym_LPAREN, - STATE(1279), 1, - sym_argument_list, + [26632] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26254] = 3, - ACTIONS(2615), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_enum_body, + ACTIONS(3144), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26641] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3146), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26265] = 2, + [26652] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2711), 2, + ACTIONS(3148), 2, + anon_sym_AMP, anon_sym_RPAREN, - anon_sym_COMMA, - [26274] = 2, + [26661] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3069), 2, + ACTIONS(3150), 2, anon_sym_RPAREN, anon_sym_COMMA, - [26283] = 3, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(937), 1, - sym_formal_parameters, + [26670] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3152), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26294] = 2, + [26681] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3071), 2, - anon_sym_AMP, + ACTIONS(2924), 2, anon_sym_RPAREN, - [26303] = 3, - ACTIONS(2311), 1, - anon_sym_LBRACE, - STATE(133), 1, - sym_interface_body, + anon_sym_COMMA, + [26690] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(20), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26314] = 2, - ACTIONS(2019), 1, - anon_sym_RBRACE, + [26701] = 2, + ACTIONS(3154), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26322] = 2, - ACTIONS(2017), 1, - anon_sym_RBRACE, + [26709] = 2, + ACTIONS(3156), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26330] = 2, - ACTIONS(3073), 1, - anon_sym_RPAREN, + [26717] = 2, + ACTIONS(3158), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26338] = 2, - ACTIONS(3075), 1, - anon_sym_SEMI, + [26725] = 2, + ACTIONS(3160), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26346] = 2, - ACTIONS(3077), 1, - sym_this, + [26733] = 2, + ACTIONS(1195), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26354] = 2, - ACTIONS(988), 1, - anon_sym_RBRACK, + [26741] = 2, + ACTIONS(3162), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26362] = 2, - ACTIONS(1706), 1, - anon_sym_COLON_COLON, + [26749] = 2, + ACTIONS(3164), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26370] = 2, - ACTIONS(2587), 1, - anon_sym_RBRACE, + [26757] = 2, + ACTIONS(3166), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26378] = 2, - ACTIONS(3079), 1, - anon_sym_LBRACE, + [26765] = 2, + ACTIONS(3168), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26386] = 2, - ACTIONS(2809), 1, - anon_sym_RBRACE, + [26773] = 2, + ACTIONS(3170), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26394] = 2, - ACTIONS(3081), 1, + [26781] = 2, + ACTIONS(3172), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26402] = 2, - ACTIONS(1185), 1, - anon_sym_DASH_GT, + [26789] = 2, + ACTIONS(2959), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26410] = 2, - ACTIONS(2813), 1, - anon_sym_RPAREN, + [26797] = 2, + ACTIONS(3174), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26418] = 2, - ACTIONS(3083), 1, - anon_sym_RPAREN, + [26805] = 2, + ACTIONS(3176), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26426] = 2, - ACTIONS(3085), 1, - ts_builtin_sym_end, + [26813] = 2, + ACTIONS(3178), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26434] = 2, - ACTIONS(3087), 1, - anon_sym_DASH_GT, + [26821] = 2, + ACTIONS(3180), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26442] = 2, - ACTIONS(3089), 1, + [26829] = 2, + ACTIONS(3182), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26450] = 2, - ACTIONS(3091), 1, - anon_sym_EQ, + [26837] = 2, + ACTIONS(3184), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26458] = 2, - ACTIONS(3093), 1, - anon_sym_EQ, + [26845] = 2, + ACTIONS(408), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26466] = 2, - ACTIONS(3095), 1, + [26853] = 2, + ACTIONS(3186), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26474] = 2, - ACTIONS(3097), 1, + [26861] = 2, + ACTIONS(3188), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26482] = 2, - ACTIONS(980), 1, - anon_sym_RBRACK, + [26869] = 2, + ACTIONS(3190), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26490] = 2, - ACTIONS(2744), 1, + [26877] = 2, + ACTIONS(2922), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26498] = 2, - ACTIONS(3099), 1, - anon_sym_SEMI, + [26885] = 2, + ACTIONS(3192), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26506] = 2, - ACTIONS(3101), 1, - sym_identifier, + [26893] = 2, + ACTIONS(430), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26514] = 2, - ACTIONS(3103), 1, - sym_identifier, + [26901] = 2, + ACTIONS(3194), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26522] = 2, - ACTIONS(3105), 1, - anon_sym_SEMI, + [26909] = 2, + ACTIONS(3196), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26530] = 2, - ACTIONS(3107), 1, - anon_sym_LBRACE, + [26917] = 2, + ACTIONS(2049), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26538] = 2, - ACTIONS(3109), 1, - anon_sym_DOT, + [26925] = 2, + ACTIONS(3198), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26546] = 2, - ACTIONS(3111), 1, + [26933] = 2, + ACTIONS(3200), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26554] = 2, - ACTIONS(3113), 1, - anon_sym_SEMI, + [26941] = 2, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26562] = 2, - ACTIONS(2963), 1, - anon_sym_DASH_GT, + [26949] = 2, + ACTIONS(2996), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26570] = 2, - ACTIONS(3115), 1, - sym_identifier, + [26957] = 2, + ACTIONS(3202), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26578] = 2, - ACTIONS(2965), 1, - anon_sym_COLON, + [26965] = 2, + ACTIONS(3204), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26586] = 2, - ACTIONS(956), 1, - anon_sym_RBRACK, + [26973] = 2, + ACTIONS(3206), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26594] = 2, - ACTIONS(3117), 1, + [26981] = 2, + ACTIONS(3208), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26602] = 2, - ACTIONS(3119), 1, - anon_sym_DASH_GT, + [26989] = 2, + ACTIONS(392), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26610] = 2, - ACTIONS(3121), 1, + [26997] = 2, + ACTIONS(3210), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26618] = 2, - ACTIONS(2882), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [26626] = 2, - ACTIONS(3123), 1, - anon_sym_DASH_GT, + [27005] = 2, + ACTIONS(3212), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26634] = 2, - ACTIONS(3125), 1, - sym_identifier, + [27013] = 2, + ACTIONS(3214), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26642] = 2, - ACTIONS(3127), 1, - sym_identifier, + [27021] = 2, + ACTIONS(3216), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26650] = 2, - ACTIONS(3129), 1, + [27029] = 2, + ACTIONS(3218), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26658] = 2, - ACTIONS(3131), 1, - anon_sym_SEMI, + [27037] = 2, + ACTIONS(3220), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26666] = 2, - ACTIONS(3133), 1, - anon_sym_SEMI, + [27045] = 2, + ACTIONS(3222), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26674] = 2, - ACTIONS(3135), 1, - anon_sym_SEMI, + [27053] = 2, + ACTIONS(2983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26682] = 2, - ACTIONS(3137), 1, - anon_sym_SEMI, + [27061] = 2, + ACTIONS(2901), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26690] = 2, - ACTIONS(3139), 1, - anon_sym_SEMI, + [27069] = 2, + ACTIONS(2895), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26698] = 2, - ACTIONS(3141), 1, - sym_identifier, + [27077] = 2, + ACTIONS(3224), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26706] = 2, - ACTIONS(3143), 1, + [27085] = 2, + ACTIONS(3226), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26714] = 2, - ACTIONS(3145), 1, + [27093] = 2, + ACTIONS(3228), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26722] = 2, - ACTIONS(3147), 1, + [27101] = 2, + ACTIONS(3230), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26730] = 2, - ACTIONS(2738), 1, - anon_sym_RPAREN, + [27109] = 2, + ACTIONS(3232), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26738] = 2, - ACTIONS(3149), 1, + [27117] = 2, + ACTIONS(3234), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26746] = 2, - ACTIONS(3151), 1, - anon_sym_SEMI, + [27125] = 2, + ACTIONS(2603), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26754] = 2, - ACTIONS(3153), 1, - anon_sym_while, + [27133] = 2, + ACTIONS(3236), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26762] = 2, - ACTIONS(3155), 1, - sym_identifier, + [27141] = 2, + ACTIONS(3238), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26770] = 2, - ACTIONS(3157), 1, - sym_identifier, + [27149] = 2, + ACTIONS(3240), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26778] = 2, - ACTIONS(3159), 1, - sym_identifier, + [27157] = 2, + ACTIONS(1993), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26786] = 2, - ACTIONS(3161), 1, + [27165] = 2, + ACTIONS(3242), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26794] = 2, - ACTIONS(3163), 1, - anon_sym_SEMI, + [27173] = 2, + ACTIONS(3244), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26802] = 2, - ACTIONS(3165), 1, - sym_identifier, + [27181] = 2, + ACTIONS(3120), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26810] = 2, - ACTIONS(3167), 1, + [27189] = 2, + ACTIONS(3246), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26818] = 2, - ACTIONS(3169), 1, - sym_identifier, + [27197] = 2, + ACTIONS(3118), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26826] = 2, - ACTIONS(1002), 1, - anon_sym_RBRACK, + [27205] = 2, + ACTIONS(3248), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26834] = 2, - ACTIONS(3171), 1, - anon_sym_RPAREN, + [27213] = 2, + ACTIONS(3250), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26842] = 2, - ACTIONS(3173), 1, - anon_sym_class, + [27221] = 2, + ACTIONS(3252), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26850] = 2, - ACTIONS(3175), 1, - anon_sym_SEMI, + [27229] = 2, + ACTIONS(3254), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26858] = 2, - ACTIONS(2746), 1, - sym_identifier, + [27237] = 2, + ACTIONS(3256), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27245] = 2, + ACTIONS(3258), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26866] = 2, - ACTIONS(3177), 1, + [27253] = 2, + ACTIONS(3260), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26874] = 2, - ACTIONS(3179), 1, + [27261] = 2, + ACTIONS(3040), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26882] = 2, - ACTIONS(3181), 1, - anon_sym_LBRACE, + [27269] = 2, + ACTIONS(3262), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26890] = 2, - ACTIONS(3183), 1, - anon_sym_LBRACE, + [27277] = 2, + ACTIONS(3264), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26898] = 2, - ACTIONS(3185), 1, - anon_sym_module, + [27285] = 2, + ACTIONS(3266), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26906] = 2, - ACTIONS(3187), 1, - anon_sym_EQ, + [27293] = 2, + ACTIONS(3268), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26914] = 2, - ACTIONS(3189), 1, - anon_sym_RPAREN, + [27301] = 2, + ACTIONS(3270), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26922] = 2, - ACTIONS(3191), 1, - sym_this, + [27309] = 2, + ACTIONS(3272), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26930] = 2, - ACTIONS(3193), 1, - sym_identifier, + [27317] = 2, + ACTIONS(2072), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26938] = 2, - ACTIONS(3195), 1, - anon_sym_RPAREN, + [27325] = 2, + ACTIONS(3274), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26946] = 2, - ACTIONS(1953), 1, - anon_sym_RBRACE, + [27333] = 2, + ACTIONS(3276), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26954] = 2, - ACTIONS(2727), 1, - sym_identifier, + [27341] = 2, + ACTIONS(3278), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26962] = 2, - ACTIONS(3197), 1, - anon_sym_SEMI, + [27349] = 2, + ACTIONS(446), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26970] = 2, - ACTIONS(3199), 1, - anon_sym_DASH_GT, + [27357] = 2, + ACTIONS(3280), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26978] = 2, - ACTIONS(3201), 1, + [27365] = 2, + ACTIONS(3282), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26986] = 2, - ACTIONS(3203), 1, - anon_sym_SEMI, + [27373] = 2, + ACTIONS(3284), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26994] = 2, - ACTIONS(3205), 1, - anon_sym_LPAREN, + [27381] = 2, + ACTIONS(3286), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27002] = 2, - ACTIONS(3207), 1, - anon_sym_SEMI, + [27389] = 2, + ACTIONS(3288), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -63331,42 +65145,42 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(368)] = 1437, [SMALL_STATE(369)] = 1528, [SMALL_STATE(370)] = 1588, - [SMALL_STATE(371)] = 1654, - [SMALL_STATE(372)] = 1726, + [SMALL_STATE(371)] = 1648, + [SMALL_STATE(372)] = 1720, [SMALL_STATE(373)] = 1786, [SMALL_STATE(374)] = 1846, [SMALL_STATE(375)] = 1906, [SMALL_STATE(376)] = 1960, [SMALL_STATE(377)] = 2014, - [SMALL_STATE(378)] = 2068, + [SMALL_STATE(378)] = 2088, [SMALL_STATE(379)] = 2142, [SMALL_STATE(380)] = 2215, [SMALL_STATE(381)] = 2284, [SMALL_STATE(382)] = 2341, - [SMALL_STATE(383)] = 2401, + [SMALL_STATE(383)] = 2403, [SMALL_STATE(384)] = 2463, [SMALL_STATE(385)] = 2527, [SMALL_STATE(386)] = 2591, [SMALL_STATE(387)] = 2651, - [SMALL_STATE(388)] = 2712, - [SMALL_STATE(389)] = 2773, - [SMALL_STATE(390)] = 2836, - [SMALL_STATE(391)] = 2899, - [SMALL_STATE(392)] = 2962, + [SMALL_STATE(388)] = 2714, + [SMALL_STATE(389)] = 2777, + [SMALL_STATE(390)] = 2838, + [SMALL_STATE(391)] = 2901, + [SMALL_STATE(392)] = 2964, [SMALL_STATE(393)] = 3025, - [SMALL_STATE(394)] = 3079, - [SMALL_STATE(395)] = 3161, + [SMALL_STATE(394)] = 3075, + [SMALL_STATE(395)] = 3129, [SMALL_STATE(396)] = 3211, [SMALL_STATE(397)] = 3261, [SMALL_STATE(398)] = 3318, [SMALL_STATE(399)] = 3392, - [SMALL_STATE(400)] = 3439, - [SMALL_STATE(401)] = 3486, - [SMALL_STATE(402)] = 3533, - [SMALL_STATE(403)] = 3586, - [SMALL_STATE(404)] = 3639, - [SMALL_STATE(405)] = 3712, - [SMALL_STATE(406)] = 3783, + [SMALL_STATE(400)] = 3463, + [SMALL_STATE(401)] = 3510, + [SMALL_STATE(402)] = 3583, + [SMALL_STATE(403)] = 3636, + [SMALL_STATE(404)] = 3683, + [SMALL_STATE(405)] = 3730, + [SMALL_STATE(406)] = 3777, [SMALL_STATE(407)] = 3830, [SMALL_STATE(408)] = 3876, [SMALL_STATE(409)] = 3922, @@ -63375,42 +65189,42 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(412)] = 4066, [SMALL_STATE(413)] = 4112, [SMALL_STATE(414)] = 4158, - [SMALL_STATE(415)] = 4204, - [SMALL_STATE(416)] = 4250, - [SMALL_STATE(417)] = 4298, - [SMALL_STATE(418)] = 4344, + [SMALL_STATE(415)] = 4210, + [SMALL_STATE(416)] = 4256, + [SMALL_STATE(417)] = 4302, + [SMALL_STATE(418)] = 4348, [SMALL_STATE(419)] = 4396, [SMALL_STATE(420)] = 4441, [SMALL_STATE(421)] = 4486, [SMALL_STATE(422)] = 4531, [SMALL_STATE(423)] = 4576, - [SMALL_STATE(424)] = 4628, - [SMALL_STATE(425)] = 4676, - [SMALL_STATE(426)] = 4724, - [SMALL_STATE(427)] = 4772, - [SMALL_STATE(428)] = 4824, + [SMALL_STATE(424)] = 4624, + [SMALL_STATE(425)] = 4672, + [SMALL_STATE(426)] = 4720, + [SMALL_STATE(427)] = 4768, + [SMALL_STATE(428)] = 4820, [SMALL_STATE(429)] = 4872, [SMALL_STATE(430)] = 4915, [SMALL_STATE(431)] = 4958, [SMALL_STATE(432)] = 5001, [SMALL_STATE(433)] = 5044, - [SMALL_STATE(434)] = 5091, - [SMALL_STATE(435)] = 5134, - [SMALL_STATE(436)] = 5177, - [SMALL_STATE(437)] = 5220, - [SMALL_STATE(438)] = 5263, - [SMALL_STATE(439)] = 5306, - [SMALL_STATE(440)] = 5349, - [SMALL_STATE(441)] = 5396, - [SMALL_STATE(442)] = 5439, - [SMALL_STATE(443)] = 5482, - [SMALL_STATE(444)] = 5525, - [SMALL_STATE(445)] = 5568, - [SMALL_STATE(446)] = 5611, - [SMALL_STATE(447)] = 5654, - [SMALL_STATE(448)] = 5697, - [SMALL_STATE(449)] = 5740, - [SMALL_STATE(450)] = 5783, + [SMALL_STATE(434)] = 5087, + [SMALL_STATE(435)] = 5130, + [SMALL_STATE(436)] = 5173, + [SMALL_STATE(437)] = 5216, + [SMALL_STATE(438)] = 5259, + [SMALL_STATE(439)] = 5302, + [SMALL_STATE(440)] = 5345, + [SMALL_STATE(441)] = 5392, + [SMALL_STATE(442)] = 5435, + [SMALL_STATE(443)] = 5478, + [SMALL_STATE(444)] = 5521, + [SMALL_STATE(445)] = 5564, + [SMALL_STATE(446)] = 5607, + [SMALL_STATE(447)] = 5650, + [SMALL_STATE(448)] = 5693, + [SMALL_STATE(449)] = 5736, + [SMALL_STATE(450)] = 5779, [SMALL_STATE(451)] = 5826, [SMALL_STATE(452)] = 5869, [SMALL_STATE(453)] = 5912, @@ -63435,813 +65249,828 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(472)] = 6715, [SMALL_STATE(473)] = 6757, [SMALL_STATE(474)] = 6799, - [SMALL_STATE(475)] = 6841, - [SMALL_STATE(476)] = 6883, - [SMALL_STATE(477)] = 6929, - [SMALL_STATE(478)] = 6971, - [SMALL_STATE(479)] = 7013, - [SMALL_STATE(480)] = 7055, - [SMALL_STATE(481)] = 7097, - [SMALL_STATE(482)] = 7139, - [SMALL_STATE(483)] = 7187, - [SMALL_STATE(484)] = 7229, - [SMALL_STATE(485)] = 7271, - [SMALL_STATE(486)] = 7313, - [SMALL_STATE(487)] = 7355, - [SMALL_STATE(488)] = 7397, + [SMALL_STATE(475)] = 6847, + [SMALL_STATE(476)] = 6889, + [SMALL_STATE(477)] = 6931, + [SMALL_STATE(478)] = 6973, + [SMALL_STATE(479)] = 7015, + [SMALL_STATE(480)] = 7057, + [SMALL_STATE(481)] = 7099, + [SMALL_STATE(482)] = 7141, + [SMALL_STATE(483)] = 7183, + [SMALL_STATE(484)] = 7225, + [SMALL_STATE(485)] = 7267, + [SMALL_STATE(486)] = 7309, + [SMALL_STATE(487)] = 7351, + [SMALL_STATE(488)] = 7393, [SMALL_STATE(489)] = 7439, [SMALL_STATE(490)] = 7481, [SMALL_STATE(491)] = 7523, - [SMALL_STATE(492)] = 7569, - [SMALL_STATE(493)] = 7611, - [SMALL_STATE(494)] = 7653, - [SMALL_STATE(495)] = 7695, - [SMALL_STATE(496)] = 7737, - [SMALL_STATE(497)] = 7782, - [SMALL_STATE(498)] = 7822, - [SMALL_STATE(499)] = 7862, - [SMALL_STATE(500)] = 7902, - [SMALL_STATE(501)] = 7941, - [SMALL_STATE(502)] = 7982, - [SMALL_STATE(503)] = 8021, - [SMALL_STATE(504)] = 8060, - [SMALL_STATE(505)] = 8099, - [SMALL_STATE(506)] = 8138, - [SMALL_STATE(507)] = 8179, - [SMALL_STATE(508)] = 8218, - [SMALL_STATE(509)] = 8259, - [SMALL_STATE(510)] = 8298, - [SMALL_STATE(511)] = 8337, - [SMALL_STATE(512)] = 8376, - [SMALL_STATE(513)] = 8415, - [SMALL_STATE(514)] = 8454, - [SMALL_STATE(515)] = 8493, - [SMALL_STATE(516)] = 8532, - [SMALL_STATE(517)] = 8571, - [SMALL_STATE(518)] = 8610, - [SMALL_STATE(519)] = 8649, - [SMALL_STATE(520)] = 8688, - [SMALL_STATE(521)] = 8727, - [SMALL_STATE(522)] = 8789, - [SMALL_STATE(523)] = 8833, - [SMALL_STATE(524)] = 8901, - [SMALL_STATE(525)] = 8945, - [SMALL_STATE(526)] = 9013, - [SMALL_STATE(527)] = 9055, - [SMALL_STATE(528)] = 9123, - [SMALL_STATE(529)] = 9167, - [SMALL_STATE(530)] = 9229, - [SMALL_STATE(531)] = 9287, - [SMALL_STATE(532)] = 9337, - [SMALL_STATE(533)] = 9405, - [SMALL_STATE(534)] = 9473, - [SMALL_STATE(535)] = 9533, - [SMALL_STATE(536)] = 9597, - [SMALL_STATE(537)] = 9643, - [SMALL_STATE(538)] = 9699, - [SMALL_STATE(539)] = 9743, - [SMALL_STATE(540)] = 9787, - [SMALL_STATE(541)] = 9832, - [SMALL_STATE(542)] = 9877, - [SMALL_STATE(543)] = 9914, - [SMALL_STATE(544)] = 9951, - [SMALL_STATE(545)] = 10017, - [SMALL_STATE(546)] = 10087, - [SMALL_STATE(547)] = 10129, - [SMALL_STATE(548)] = 10194, - [SMALL_STATE(549)] = 10263, - [SMALL_STATE(550)] = 10298, - [SMALL_STATE(551)] = 10367, - [SMALL_STATE(552)] = 10436, - [SMALL_STATE(553)] = 10505, - [SMALL_STATE(554)] = 10574, - [SMALL_STATE(555)] = 10643, - [SMALL_STATE(556)] = 10708, - [SMALL_STATE(557)] = 10773, - [SMALL_STATE(558)] = 10832, - [SMALL_STATE(559)] = 10867, - [SMALL_STATE(560)] = 10936, - [SMALL_STATE(561)] = 10971, - [SMALL_STATE(562)] = 11014, - [SMALL_STATE(563)] = 11083, - [SMALL_STATE(564)] = 11140, - [SMALL_STATE(565)] = 11199, - [SMALL_STATE(566)] = 11240, - [SMALL_STATE(567)] = 11301, - [SMALL_STATE(568)] = 11370, - [SMALL_STATE(569)] = 11429, - [SMALL_STATE(570)] = 11498, - [SMALL_STATE(571)] = 11551, - [SMALL_STATE(572)] = 11620, - [SMALL_STATE(573)] = 11689, - [SMALL_STATE(574)] = 11736, - [SMALL_STATE(575)] = 11805, - [SMALL_STATE(576)] = 11874, - [SMALL_STATE(577)] = 11929, - [SMALL_STATE(578)] = 11964, - [SMALL_STATE(579)] = 12033, - [SMALL_STATE(580)] = 12068, - [SMALL_STATE(581)] = 12121, - [SMALL_STATE(582)] = 12186, - [SMALL_STATE(583)] = 12255, - [SMALL_STATE(584)] = 12324, - [SMALL_STATE(585)] = 12389, - [SMALL_STATE(586)] = 12458, - [SMALL_STATE(587)] = 12493, - [SMALL_STATE(588)] = 12558, - [SMALL_STATE(589)] = 12593, - [SMALL_STATE(590)] = 12658, - [SMALL_STATE(591)] = 12727, - [SMALL_STATE(592)] = 12762, - [SMALL_STATE(593)] = 12797, - [SMALL_STATE(594)] = 12866, - [SMALL_STATE(595)] = 12903, - [SMALL_STATE(596)] = 12962, - [SMALL_STATE(597)] = 13027, - [SMALL_STATE(598)] = 13096, - [SMALL_STATE(599)] = 13146, - [SMALL_STATE(600)] = 13196, - [SMALL_STATE(601)] = 13260, - [SMALL_STATE(602)] = 13324, - [SMALL_STATE(603)] = 13380, - [SMALL_STATE(604)] = 13444, - [SMALL_STATE(605)] = 13508, - [SMALL_STATE(606)] = 13572, - [SMALL_STATE(607)] = 13610, - [SMALL_STATE(608)] = 13674, - [SMALL_STATE(609)] = 13738, - [SMALL_STATE(610)] = 13804, - [SMALL_STATE(611)] = 13867, - [SMALL_STATE(612)] = 13930, - [SMALL_STATE(613)] = 13993, - [SMALL_STATE(614)] = 14056, - [SMALL_STATE(615)] = 14111, - [SMALL_STATE(616)] = 14174, - [SMALL_STATE(617)] = 14237, - [SMALL_STATE(618)] = 14300, - [SMALL_STATE(619)] = 14363, - [SMALL_STATE(620)] = 14426, - [SMALL_STATE(621)] = 14489, - [SMALL_STATE(622)] = 14552, - [SMALL_STATE(623)] = 14615, - [SMALL_STATE(624)] = 14678, - [SMALL_STATE(625)] = 14741, - [SMALL_STATE(626)] = 14796, - [SMALL_STATE(627)] = 14857, - [SMALL_STATE(628)] = 14912, - [SMALL_STATE(629)] = 14975, - [SMALL_STATE(630)] = 15030, - [SMALL_STATE(631)] = 15085, - [SMALL_STATE(632)] = 15148, - [SMALL_STATE(633)] = 15211, - [SMALL_STATE(634)] = 15274, - [SMALL_STATE(635)] = 15337, - [SMALL_STATE(636)] = 15400, - [SMALL_STATE(637)] = 15463, - [SMALL_STATE(638)] = 15526, - [SMALL_STATE(639)] = 15589, - [SMALL_STATE(640)] = 15641, - [SMALL_STATE(641)] = 15693, - [SMALL_STATE(642)] = 15725, - [SMALL_STATE(643)] = 15777, - [SMALL_STATE(644)] = 15829, - [SMALL_STATE(645)] = 15881, - [SMALL_STATE(646)] = 15933, - [SMALL_STATE(647)] = 15965, - [SMALL_STATE(648)] = 16017, - [SMALL_STATE(649)] = 16069, - [SMALL_STATE(650)] = 16110, - [SMALL_STATE(651)] = 16159, - [SMALL_STATE(652)] = 16196, - [SMALL_STATE(653)] = 16233, + [SMALL_STATE(492)] = 7565, + [SMALL_STATE(493)] = 7607, + [SMALL_STATE(494)] = 7649, + [SMALL_STATE(495)] = 7691, + [SMALL_STATE(496)] = 7733, + [SMALL_STATE(497)] = 7779, + [SMALL_STATE(498)] = 7821, + [SMALL_STATE(499)] = 7863, + [SMALL_STATE(500)] = 7905, + [SMALL_STATE(501)] = 7947, + [SMALL_STATE(502)] = 7992, + [SMALL_STATE(503)] = 8032, + [SMALL_STATE(504)] = 8072, + [SMALL_STATE(505)] = 8112, + [SMALL_STATE(506)] = 8151, + [SMALL_STATE(507)] = 8190, + [SMALL_STATE(508)] = 8229, + [SMALL_STATE(509)] = 8270, + [SMALL_STATE(510)] = 8309, + [SMALL_STATE(511)] = 8348, + [SMALL_STATE(512)] = 8387, + [SMALL_STATE(513)] = 8426, + [SMALL_STATE(514)] = 8465, + [SMALL_STATE(515)] = 8504, + [SMALL_STATE(516)] = 8543, + [SMALL_STATE(517)] = 8582, + [SMALL_STATE(518)] = 8621, + [SMALL_STATE(519)] = 8662, + [SMALL_STATE(520)] = 8701, + [SMALL_STATE(521)] = 8740, + [SMALL_STATE(522)] = 8781, + [SMALL_STATE(523)] = 8820, + [SMALL_STATE(524)] = 8859, + [SMALL_STATE(525)] = 8898, + [SMALL_STATE(526)] = 8937, + [SMALL_STATE(527)] = 8995, + [SMALL_STATE(528)] = 9045, + [SMALL_STATE(529)] = 9113, + [SMALL_STATE(530)] = 9173, + [SMALL_STATE(531)] = 9235, + [SMALL_STATE(532)] = 9279, + [SMALL_STATE(533)] = 9323, + [SMALL_STATE(534)] = 9391, + [SMALL_STATE(535)] = 9455, + [SMALL_STATE(536)] = 9499, + [SMALL_STATE(537)] = 9561, + [SMALL_STATE(538)] = 9629, + [SMALL_STATE(539)] = 9675, + [SMALL_STATE(540)] = 9719, + [SMALL_STATE(541)] = 9775, + [SMALL_STATE(542)] = 9817, + [SMALL_STATE(543)] = 9885, + [SMALL_STATE(544)] = 9953, + [SMALL_STATE(545)] = 9997, + [SMALL_STATE(546)] = 10042, + [SMALL_STATE(547)] = 10079, + [SMALL_STATE(548)] = 10124, + [SMALL_STATE(549)] = 10161, + [SMALL_STATE(550)] = 10227, + [SMALL_STATE(551)] = 10269, + [SMALL_STATE(552)] = 10339, + [SMALL_STATE(553)] = 10404, + [SMALL_STATE(554)] = 10463, + [SMALL_STATE(555)] = 10532, + [SMALL_STATE(556)] = 10597, + [SMALL_STATE(557)] = 10632, + [SMALL_STATE(558)] = 10697, + [SMALL_STATE(559)] = 10766, + [SMALL_STATE(560)] = 10831, + [SMALL_STATE(561)] = 10866, + [SMALL_STATE(562)] = 10935, + [SMALL_STATE(563)] = 10970, + [SMALL_STATE(564)] = 11039, + [SMALL_STATE(565)] = 11108, + [SMALL_STATE(566)] = 11177, + [SMALL_STATE(567)] = 11214, + [SMALL_STATE(568)] = 11283, + [SMALL_STATE(569)] = 11352, + [SMALL_STATE(570)] = 11421, + [SMALL_STATE(571)] = 11490, + [SMALL_STATE(572)] = 11525, + [SMALL_STATE(573)] = 11590, + [SMALL_STATE(574)] = 11625, + [SMALL_STATE(575)] = 11694, + [SMALL_STATE(576)] = 11763, + [SMALL_STATE(577)] = 11832, + [SMALL_STATE(578)] = 11885, + [SMALL_STATE(579)] = 11920, + [SMALL_STATE(580)] = 11955, + [SMALL_STATE(581)] = 12020, + [SMALL_STATE(582)] = 12089, + [SMALL_STATE(583)] = 12132, + [SMALL_STATE(584)] = 12167, + [SMALL_STATE(585)] = 12236, + [SMALL_STATE(586)] = 12271, + [SMALL_STATE(587)] = 12328, + [SMALL_STATE(588)] = 12397, + [SMALL_STATE(589)] = 12466, + [SMALL_STATE(590)] = 12535, + [SMALL_STATE(591)] = 12600, + [SMALL_STATE(592)] = 12665, + [SMALL_STATE(593)] = 12724, + [SMALL_STATE(594)] = 12783, + [SMALL_STATE(595)] = 12824, + [SMALL_STATE(596)] = 12879, + [SMALL_STATE(597)] = 12948, + [SMALL_STATE(598)] = 13009, + [SMALL_STATE(599)] = 13078, + [SMALL_STATE(600)] = 13147, + [SMALL_STATE(601)] = 13206, + [SMALL_STATE(602)] = 13253, + [SMALL_STATE(603)] = 13306, + [SMALL_STATE(604)] = 13362, + [SMALL_STATE(605)] = 13426, + [SMALL_STATE(606)] = 13476, + [SMALL_STATE(607)] = 13540, + [SMALL_STATE(608)] = 13604, + [SMALL_STATE(609)] = 13668, + [SMALL_STATE(610)] = 13734, + [SMALL_STATE(611)] = 13772, + [SMALL_STATE(612)] = 13822, + [SMALL_STATE(613)] = 13886, + [SMALL_STATE(614)] = 13950, + [SMALL_STATE(615)] = 14014, + [SMALL_STATE(616)] = 14077, + [SMALL_STATE(617)] = 14140, + [SMALL_STATE(618)] = 14203, + [SMALL_STATE(619)] = 14266, + [SMALL_STATE(620)] = 14327, + [SMALL_STATE(621)] = 14382, + [SMALL_STATE(622)] = 14445, + [SMALL_STATE(623)] = 14508, + [SMALL_STATE(624)] = 14571, + [SMALL_STATE(625)] = 14626, + [SMALL_STATE(626)] = 14689, + [SMALL_STATE(627)] = 14752, + [SMALL_STATE(628)] = 14815, + [SMALL_STATE(629)] = 14878, + [SMALL_STATE(630)] = 14941, + [SMALL_STATE(631)] = 15004, + [SMALL_STATE(632)] = 15067, + [SMALL_STATE(633)] = 15122, + [SMALL_STATE(634)] = 15185, + [SMALL_STATE(635)] = 15248, + [SMALL_STATE(636)] = 15303, + [SMALL_STATE(637)] = 15366, + [SMALL_STATE(638)] = 15429, + [SMALL_STATE(639)] = 15492, + [SMALL_STATE(640)] = 15555, + [SMALL_STATE(641)] = 15618, + [SMALL_STATE(642)] = 15681, + [SMALL_STATE(643)] = 15744, + [SMALL_STATE(644)] = 15799, + [SMALL_STATE(645)] = 15851, + [SMALL_STATE(646)] = 15903, + [SMALL_STATE(647)] = 15955, + [SMALL_STATE(648)] = 16007, + [SMALL_STATE(649)] = 16059, + [SMALL_STATE(650)] = 16091, + [SMALL_STATE(651)] = 16123, + [SMALL_STATE(652)] = 16175, + [SMALL_STATE(653)] = 16227, [SMALL_STATE(654)] = 16279, - [SMALL_STATE(655)] = 16309, - [SMALL_STATE(656)] = 16361, - [SMALL_STATE(657)] = 16391, - [SMALL_STATE(658)] = 16427, - [SMALL_STATE(659)] = 16463, - [SMALL_STATE(660)] = 16509, - [SMALL_STATE(661)] = 16539, - [SMALL_STATE(662)] = 16585, - [SMALL_STATE(663)] = 16633, + [SMALL_STATE(655)] = 16328, + [SMALL_STATE(656)] = 16365, + [SMALL_STATE(657)] = 16406, + [SMALL_STATE(658)] = 16443, + [SMALL_STATE(659)] = 16489, + [SMALL_STATE(660)] = 16519, + [SMALL_STATE(661)] = 16549, + [SMALL_STATE(662)] = 16595, + [SMALL_STATE(663)] = 16643, [SMALL_STATE(664)] = 16679, - [SMALL_STATE(665)] = 16725, - [SMALL_STATE(666)] = 16773, - [SMALL_STATE(667)] = 16803, + [SMALL_STATE(665)] = 16709, + [SMALL_STATE(666)] = 16755, + [SMALL_STATE(667)] = 16801, [SMALL_STATE(668)] = 16849, [SMALL_STATE(669)] = 16879, - [SMALL_STATE(670)] = 16909, - [SMALL_STATE(671)] = 16955, - [SMALL_STATE(672)] = 16984, - [SMALL_STATE(673)] = 17013, - [SMALL_STATE(674)] = 17062, - [SMALL_STATE(675)] = 17091, - [SMALL_STATE(676)] = 17120, - [SMALL_STATE(677)] = 17148, - [SMALL_STATE(678)] = 17176, - [SMALL_STATE(679)] = 17218, - [SMALL_STATE(680)] = 17246, - [SMALL_STATE(681)] = 17274, - [SMALL_STATE(682)] = 17302, - [SMALL_STATE(683)] = 17330, - [SMALL_STATE(684)] = 17378, - [SMALL_STATE(685)] = 17408, - [SMALL_STATE(686)] = 17436, - [SMALL_STATE(687)] = 17478, - [SMALL_STATE(688)] = 17510, - [SMALL_STATE(689)] = 17556, - [SMALL_STATE(690)] = 17596, - [SMALL_STATE(691)] = 17642, - [SMALL_STATE(692)] = 17676, - [SMALL_STATE(693)] = 17722, - [SMALL_STATE(694)] = 17755, - [SMALL_STATE(695)] = 17798, - [SMALL_STATE(696)] = 17841, - [SMALL_STATE(697)] = 17878, - [SMALL_STATE(698)] = 17915, - [SMALL_STATE(699)] = 17954, - [SMALL_STATE(700)] = 17979, - [SMALL_STATE(701)] = 18022, - [SMALL_STATE(702)] = 18059, - [SMALL_STATE(703)] = 18096, - [SMALL_STATE(704)] = 18133, - [SMALL_STATE(705)] = 18176, - [SMALL_STATE(706)] = 18201, - [SMALL_STATE(707)] = 18241, - [SMALL_STATE(708)] = 18283, - [SMALL_STATE(709)] = 18325, - [SMALL_STATE(710)] = 18365, - [SMALL_STATE(711)] = 18391, - [SMALL_STATE(712)] = 18431, - [SMALL_STATE(713)] = 18471, - [SMALL_STATE(714)] = 18511, - [SMALL_STATE(715)] = 18553, - [SMALL_STATE(716)] = 18593, - [SMALL_STATE(717)] = 18635, - [SMALL_STATE(718)] = 18675, - [SMALL_STATE(719)] = 18712, - [SMALL_STATE(720)] = 18747, - [SMALL_STATE(721)] = 18784, - [SMALL_STATE(722)] = 18817, - [SMALL_STATE(723)] = 18846, - [SMALL_STATE(724)] = 18883, - [SMALL_STATE(725)] = 18919, - [SMALL_STATE(726)] = 18953, - [SMALL_STATE(727)] = 18989, - [SMALL_STATE(728)] = 19023, - [SMALL_STATE(729)] = 19059, - [SMALL_STATE(730)] = 19093, - [SMALL_STATE(731)] = 19127, - [SMALL_STATE(732)] = 19161, - [SMALL_STATE(733)] = 19197, - [SMALL_STATE(734)] = 19229, - [SMALL_STATE(735)] = 19265, - [SMALL_STATE(736)] = 19301, - [SMALL_STATE(737)] = 19335, - [SMALL_STATE(738)] = 19371, - [SMALL_STATE(739)] = 19405, - [SMALL_STATE(740)] = 19435, - [SMALL_STATE(741)] = 19465, - [SMALL_STATE(742)] = 19499, - [SMALL_STATE(743)] = 19535, - [SMALL_STATE(744)] = 19569, - [SMALL_STATE(745)] = 19600, - [SMALL_STATE(746)] = 19631, - [SMALL_STATE(747)] = 19662, - [SMALL_STATE(748)] = 19693, - [SMALL_STATE(749)] = 19726, - [SMALL_STATE(750)] = 19757, - [SMALL_STATE(751)] = 19788, - [SMALL_STATE(752)] = 19811, - [SMALL_STATE(753)] = 19844, - [SMALL_STATE(754)] = 19874, - [SMALL_STATE(755)] = 19906, - [SMALL_STATE(756)] = 19936, - [SMALL_STATE(757)] = 19966, - [SMALL_STATE(758)] = 19998, - [SMALL_STATE(759)] = 20026, - [SMALL_STATE(760)] = 20054, - [SMALL_STATE(761)] = 20084, - [SMALL_STATE(762)] = 20113, - [SMALL_STATE(763)] = 20140, - [SMALL_STATE(764)] = 20171, - [SMALL_STATE(765)] = 20202, - [SMALL_STATE(766)] = 20229, - [SMALL_STATE(767)] = 20258, - [SMALL_STATE(768)] = 20293, - [SMALL_STATE(769)] = 20328, - [SMALL_STATE(770)] = 20358, - [SMALL_STATE(771)] = 20374, - [SMALL_STATE(772)] = 20400, - [SMALL_STATE(773)] = 20428, - [SMALL_STATE(774)] = 20457, - [SMALL_STATE(775)] = 20482, - [SMALL_STATE(776)] = 20511, - [SMALL_STATE(777)] = 20540, - [SMALL_STATE(778)] = 20569, - [SMALL_STATE(779)] = 20590, - [SMALL_STATE(780)] = 20610, - [SMALL_STATE(781)] = 20624, - [SMALL_STATE(782)] = 20648, - [SMALL_STATE(783)] = 20670, - [SMALL_STATE(784)] = 20684, - [SMALL_STATE(785)] = 20706, - [SMALL_STATE(786)] = 20720, - [SMALL_STATE(787)] = 20734, - [SMALL_STATE(788)] = 20754, - [SMALL_STATE(789)] = 20778, - [SMALL_STATE(790)] = 20800, - [SMALL_STATE(791)] = 20817, - [SMALL_STATE(792)] = 20834, - [SMALL_STATE(793)] = 20847, - [SMALL_STATE(794)] = 20860, - [SMALL_STATE(795)] = 20873, - [SMALL_STATE(796)] = 20890, - [SMALL_STATE(797)] = 20903, - [SMALL_STATE(798)] = 20916, - [SMALL_STATE(799)] = 20929, - [SMALL_STATE(800)] = 20942, - [SMALL_STATE(801)] = 20955, - [SMALL_STATE(802)] = 20968, - [SMALL_STATE(803)] = 20985, - [SMALL_STATE(804)] = 20998, - [SMALL_STATE(805)] = 21011, - [SMALL_STATE(806)] = 21030, - [SMALL_STATE(807)] = 21049, - [SMALL_STATE(808)] = 21068, - [SMALL_STATE(809)] = 21081, - [SMALL_STATE(810)] = 21098, - [SMALL_STATE(811)] = 21111, - [SMALL_STATE(812)] = 21128, - [SMALL_STATE(813)] = 21141, - [SMALL_STATE(814)] = 21164, - [SMALL_STATE(815)] = 21177, - [SMALL_STATE(816)] = 21196, - [SMALL_STATE(817)] = 21209, - [SMALL_STATE(818)] = 21222, - [SMALL_STATE(819)] = 21239, - [SMALL_STATE(820)] = 21252, - [SMALL_STATE(821)] = 21275, - [SMALL_STATE(822)] = 21288, - [SMALL_STATE(823)] = 21305, - [SMALL_STATE(824)] = 21318, - [SMALL_STATE(825)] = 21335, - [SMALL_STATE(826)] = 21348, - [SMALL_STATE(827)] = 21365, - [SMALL_STATE(828)] = 21378, - [SMALL_STATE(829)] = 21391, - [SMALL_STATE(830)] = 21404, - [SMALL_STATE(831)] = 21417, - [SMALL_STATE(832)] = 21430, - [SMALL_STATE(833)] = 21443, - [SMALL_STATE(834)] = 21460, - [SMALL_STATE(835)] = 21473, - [SMALL_STATE(836)] = 21486, - [SMALL_STATE(837)] = 21499, - [SMALL_STATE(838)] = 21512, - [SMALL_STATE(839)] = 21525, - [SMALL_STATE(840)] = 21538, - [SMALL_STATE(841)] = 21551, - [SMALL_STATE(842)] = 21564, - [SMALL_STATE(843)] = 21577, - [SMALL_STATE(844)] = 21590, - [SMALL_STATE(845)] = 21603, - [SMALL_STATE(846)] = 21626, - [SMALL_STATE(847)] = 21643, - [SMALL_STATE(848)] = 21666, - [SMALL_STATE(849)] = 21679, - [SMALL_STATE(850)] = 21696, - [SMALL_STATE(851)] = 21713, - [SMALL_STATE(852)] = 21730, - [SMALL_STATE(853)] = 21747, - [SMALL_STATE(854)] = 21760, - [SMALL_STATE(855)] = 21781, - [SMALL_STATE(856)] = 21802, - [SMALL_STATE(857)] = 21819, - [SMALL_STATE(858)] = 21842, - [SMALL_STATE(859)] = 21865, - [SMALL_STATE(860)] = 21881, - [SMALL_STATE(861)] = 21897, - [SMALL_STATE(862)] = 21913, - [SMALL_STATE(863)] = 21929, - [SMALL_STATE(864)] = 21945, - [SMALL_STATE(865)] = 21961, - [SMALL_STATE(866)] = 21981, - [SMALL_STATE(867)] = 21997, - [SMALL_STATE(868)] = 22013, - [SMALL_STATE(869)] = 22033, - [SMALL_STATE(870)] = 22049, - [SMALL_STATE(871)] = 22065, - [SMALL_STATE(872)] = 22085, - [SMALL_STATE(873)] = 22105, - [SMALL_STATE(874)] = 22121, - [SMALL_STATE(875)] = 22137, - [SMALL_STATE(876)] = 22151, - [SMALL_STATE(877)] = 22167, - [SMALL_STATE(878)] = 22179, - [SMALL_STATE(879)] = 22195, - [SMALL_STATE(880)] = 22211, - [SMALL_STATE(881)] = 22227, - [SMALL_STATE(882)] = 22239, - [SMALL_STATE(883)] = 22255, - [SMALL_STATE(884)] = 22275, - [SMALL_STATE(885)] = 22291, - [SMALL_STATE(886)] = 22307, - [SMALL_STATE(887)] = 22323, - [SMALL_STATE(888)] = 22339, - [SMALL_STATE(889)] = 22355, - [SMALL_STATE(890)] = 22371, - [SMALL_STATE(891)] = 22389, - [SMALL_STATE(892)] = 22405, - [SMALL_STATE(893)] = 22421, - [SMALL_STATE(894)] = 22437, - [SMALL_STATE(895)] = 22453, - [SMALL_STATE(896)] = 22469, - [SMALL_STATE(897)] = 22485, - [SMALL_STATE(898)] = 22505, - [SMALL_STATE(899)] = 22522, - [SMALL_STATE(900)] = 22533, - [SMALL_STATE(901)] = 22548, - [SMALL_STATE(902)] = 22565, - [SMALL_STATE(903)] = 22580, - [SMALL_STATE(904)] = 22595, - [SMALL_STATE(905)] = 22606, - [SMALL_STATE(906)] = 22621, - [SMALL_STATE(907)] = 22638, - [SMALL_STATE(908)] = 22655, - [SMALL_STATE(909)] = 22668, - [SMALL_STATE(910)] = 22685, - [SMALL_STATE(911)] = 22702, - [SMALL_STATE(912)] = 22713, - [SMALL_STATE(913)] = 22728, - [SMALL_STATE(914)] = 22743, - [SMALL_STATE(915)] = 22760, - [SMALL_STATE(916)] = 22777, - [SMALL_STATE(917)] = 22794, - [SMALL_STATE(918)] = 22811, - [SMALL_STATE(919)] = 22828, - [SMALL_STATE(920)] = 22845, - [SMALL_STATE(921)] = 22862, - [SMALL_STATE(922)] = 22879, - [SMALL_STATE(923)] = 22896, - [SMALL_STATE(924)] = 22913, - [SMALL_STATE(925)] = 22930, - [SMALL_STATE(926)] = 22947, - [SMALL_STATE(927)] = 22962, - [SMALL_STATE(928)] = 22979, - [SMALL_STATE(929)] = 22994, - [SMALL_STATE(930)] = 23009, - [SMALL_STATE(931)] = 23026, - [SMALL_STATE(932)] = 23043, - [SMALL_STATE(933)] = 23060, - [SMALL_STATE(934)] = 23075, - [SMALL_STATE(935)] = 23092, - [SMALL_STATE(936)] = 23109, - [SMALL_STATE(937)] = 23126, - [SMALL_STATE(938)] = 23143, - [SMALL_STATE(939)] = 23158, - [SMALL_STATE(940)] = 23175, - [SMALL_STATE(941)] = 23192, - [SMALL_STATE(942)] = 23205, - [SMALL_STATE(943)] = 23218, - [SMALL_STATE(944)] = 23233, - [SMALL_STATE(945)] = 23250, - [SMALL_STATE(946)] = 23265, - [SMALL_STATE(947)] = 23282, - [SMALL_STATE(948)] = 23297, - [SMALL_STATE(949)] = 23314, - [SMALL_STATE(950)] = 23327, - [SMALL_STATE(951)] = 23342, - [SMALL_STATE(952)] = 23359, - [SMALL_STATE(953)] = 23370, - [SMALL_STATE(954)] = 23385, - [SMALL_STATE(955)] = 23402, - [SMALL_STATE(956)] = 23419, - [SMALL_STATE(957)] = 23434, - [SMALL_STATE(958)] = 23451, - [SMALL_STATE(959)] = 23468, - [SMALL_STATE(960)] = 23479, - [SMALL_STATE(961)] = 23494, - [SMALL_STATE(962)] = 23511, - [SMALL_STATE(963)] = 23526, - [SMALL_STATE(964)] = 23541, - [SMALL_STATE(965)] = 23556, - [SMALL_STATE(966)] = 23573, - [SMALL_STATE(967)] = 23587, - [SMALL_STATE(968)] = 23601, - [SMALL_STATE(969)] = 23615, - [SMALL_STATE(970)] = 23629, - [SMALL_STATE(971)] = 23643, - [SMALL_STATE(972)] = 23657, - [SMALL_STATE(973)] = 23671, - [SMALL_STATE(974)] = 23685, - [SMALL_STATE(975)] = 23699, - [SMALL_STATE(976)] = 23713, - [SMALL_STATE(977)] = 23727, - [SMALL_STATE(978)] = 23741, - [SMALL_STATE(979)] = 23755, - [SMALL_STATE(980)] = 23769, - [SMALL_STATE(981)] = 23783, - [SMALL_STATE(982)] = 23797, - [SMALL_STATE(983)] = 23811, - [SMALL_STATE(984)] = 23825, - [SMALL_STATE(985)] = 23839, - [SMALL_STATE(986)] = 23853, - [SMALL_STATE(987)] = 23867, - [SMALL_STATE(988)] = 23881, - [SMALL_STATE(989)] = 23895, - [SMALL_STATE(990)] = 23909, - [SMALL_STATE(991)] = 23923, - [SMALL_STATE(992)] = 23937, - [SMALL_STATE(993)] = 23951, - [SMALL_STATE(994)] = 23965, - [SMALL_STATE(995)] = 23979, - [SMALL_STATE(996)] = 23993, - [SMALL_STATE(997)] = 24003, - [SMALL_STATE(998)] = 24017, - [SMALL_STATE(999)] = 24031, - [SMALL_STATE(1000)] = 24045, - [SMALL_STATE(1001)] = 24055, - [SMALL_STATE(1002)] = 24065, - [SMALL_STATE(1003)] = 24079, - [SMALL_STATE(1004)] = 24093, - [SMALL_STATE(1005)] = 24107, - [SMALL_STATE(1006)] = 24121, - [SMALL_STATE(1007)] = 24135, - [SMALL_STATE(1008)] = 24145, - [SMALL_STATE(1009)] = 24159, - [SMALL_STATE(1010)] = 24173, - [SMALL_STATE(1011)] = 24187, - [SMALL_STATE(1012)] = 24201, - [SMALL_STATE(1013)] = 24215, - [SMALL_STATE(1014)] = 24229, - [SMALL_STATE(1015)] = 24243, - [SMALL_STATE(1016)] = 24257, - [SMALL_STATE(1017)] = 24271, - [SMALL_STATE(1018)] = 24285, - [SMALL_STATE(1019)] = 24299, - [SMALL_STATE(1020)] = 24311, - [SMALL_STATE(1021)] = 24323, - [SMALL_STATE(1022)] = 24333, - [SMALL_STATE(1023)] = 24347, - [SMALL_STATE(1024)] = 24361, - [SMALL_STATE(1025)] = 24375, - [SMALL_STATE(1026)] = 24389, - [SMALL_STATE(1027)] = 24403, - [SMALL_STATE(1028)] = 24417, - [SMALL_STATE(1029)] = 24431, - [SMALL_STATE(1030)] = 24445, - [SMALL_STATE(1031)] = 24457, - [SMALL_STATE(1032)] = 24469, - [SMALL_STATE(1033)] = 24483, - [SMALL_STATE(1034)] = 24497, - [SMALL_STATE(1035)] = 24511, - [SMALL_STATE(1036)] = 24525, - [SMALL_STATE(1037)] = 24539, - [SMALL_STATE(1038)] = 24553, - [SMALL_STATE(1039)] = 24567, - [SMALL_STATE(1040)] = 24581, - [SMALL_STATE(1041)] = 24595, - [SMALL_STATE(1042)] = 24609, - [SMALL_STATE(1043)] = 24623, - [SMALL_STATE(1044)] = 24637, - [SMALL_STATE(1045)] = 24647, - [SMALL_STATE(1046)] = 24661, - [SMALL_STATE(1047)] = 24675, - [SMALL_STATE(1048)] = 24689, - [SMALL_STATE(1049)] = 24703, - [SMALL_STATE(1050)] = 24717, - [SMALL_STATE(1051)] = 24731, - [SMALL_STATE(1052)] = 24741, - [SMALL_STATE(1053)] = 24755, - [SMALL_STATE(1054)] = 24769, - [SMALL_STATE(1055)] = 24783, - [SMALL_STATE(1056)] = 24793, - [SMALL_STATE(1057)] = 24803, - [SMALL_STATE(1058)] = 24813, - [SMALL_STATE(1059)] = 24827, - [SMALL_STATE(1060)] = 24837, - [SMALL_STATE(1061)] = 24851, - [SMALL_STATE(1062)] = 24865, - [SMALL_STATE(1063)] = 24879, - [SMALL_STATE(1064)] = 24893, - [SMALL_STATE(1065)] = 24907, - [SMALL_STATE(1066)] = 24921, - [SMALL_STATE(1067)] = 24935, - [SMALL_STATE(1068)] = 24949, - [SMALL_STATE(1069)] = 24963, - [SMALL_STATE(1070)] = 24977, - [SMALL_STATE(1071)] = 24991, - [SMALL_STATE(1072)] = 25005, - [SMALL_STATE(1073)] = 25019, - [SMALL_STATE(1074)] = 25033, - [SMALL_STATE(1075)] = 25047, - [SMALL_STATE(1076)] = 25061, - [SMALL_STATE(1077)] = 25075, - [SMALL_STATE(1078)] = 25089, - [SMALL_STATE(1079)] = 25100, - [SMALL_STATE(1080)] = 25111, - [SMALL_STATE(1081)] = 25120, - [SMALL_STATE(1082)] = 25129, - [SMALL_STATE(1083)] = 25138, - [SMALL_STATE(1084)] = 25147, - [SMALL_STATE(1085)] = 25158, - [SMALL_STATE(1086)] = 25169, - [SMALL_STATE(1087)] = 25180, - [SMALL_STATE(1088)] = 25191, - [SMALL_STATE(1089)] = 25200, - [SMALL_STATE(1090)] = 25211, - [SMALL_STATE(1091)] = 25222, - [SMALL_STATE(1092)] = 25231, - [SMALL_STATE(1093)] = 25242, - [SMALL_STATE(1094)] = 25253, - [SMALL_STATE(1095)] = 25262, - [SMALL_STATE(1096)] = 25273, - [SMALL_STATE(1097)] = 25282, - [SMALL_STATE(1098)] = 25293, - [SMALL_STATE(1099)] = 25302, - [SMALL_STATE(1100)] = 25313, - [SMALL_STATE(1101)] = 25322, - [SMALL_STATE(1102)] = 25333, - [SMALL_STATE(1103)] = 25344, - [SMALL_STATE(1104)] = 25355, - [SMALL_STATE(1105)] = 25364, - [SMALL_STATE(1106)] = 25375, - [SMALL_STATE(1107)] = 25386, - [SMALL_STATE(1108)] = 25395, - [SMALL_STATE(1109)] = 25406, - [SMALL_STATE(1110)] = 25417, - [SMALL_STATE(1111)] = 25426, - [SMALL_STATE(1112)] = 25435, - [SMALL_STATE(1113)] = 25446, - [SMALL_STATE(1114)] = 25457, - [SMALL_STATE(1115)] = 25466, - [SMALL_STATE(1116)] = 25477, - [SMALL_STATE(1117)] = 25488, - [SMALL_STATE(1118)] = 25497, - [SMALL_STATE(1119)] = 25506, - [SMALL_STATE(1120)] = 25517, - [SMALL_STATE(1121)] = 25528, - [SMALL_STATE(1122)] = 25539, - [SMALL_STATE(1123)] = 25550, - [SMALL_STATE(1124)] = 25561, - [SMALL_STATE(1125)] = 25572, - [SMALL_STATE(1126)] = 25583, - [SMALL_STATE(1127)] = 25594, - [SMALL_STATE(1128)] = 25605, - [SMALL_STATE(1129)] = 25616, - [SMALL_STATE(1130)] = 25627, - [SMALL_STATE(1131)] = 25638, - [SMALL_STATE(1132)] = 25649, - [SMALL_STATE(1133)] = 25660, - [SMALL_STATE(1134)] = 25669, - [SMALL_STATE(1135)] = 25680, - [SMALL_STATE(1136)] = 25691, - [SMALL_STATE(1137)] = 25700, - [SMALL_STATE(1138)] = 25711, - [SMALL_STATE(1139)] = 25722, - [SMALL_STATE(1140)] = 25733, - [SMALL_STATE(1141)] = 25744, - [SMALL_STATE(1142)] = 25755, - [SMALL_STATE(1143)] = 25766, - [SMALL_STATE(1144)] = 25777, - [SMALL_STATE(1145)] = 25788, - [SMALL_STATE(1146)] = 25799, - [SMALL_STATE(1147)] = 25810, - [SMALL_STATE(1148)] = 25821, - [SMALL_STATE(1149)] = 25832, - [SMALL_STATE(1150)] = 25843, - [SMALL_STATE(1151)] = 25854, - [SMALL_STATE(1152)] = 25863, - [SMALL_STATE(1153)] = 25874, - [SMALL_STATE(1154)] = 25883, - [SMALL_STATE(1155)] = 25894, - [SMALL_STATE(1156)] = 25903, - [SMALL_STATE(1157)] = 25914, - [SMALL_STATE(1158)] = 25925, - [SMALL_STATE(1159)] = 25936, - [SMALL_STATE(1160)] = 25947, - [SMALL_STATE(1161)] = 25958, - [SMALL_STATE(1162)] = 25969, - [SMALL_STATE(1163)] = 25980, - [SMALL_STATE(1164)] = 25991, - [SMALL_STATE(1165)] = 26002, - [SMALL_STATE(1166)] = 26013, - [SMALL_STATE(1167)] = 26022, - [SMALL_STATE(1168)] = 26033, - [SMALL_STATE(1169)] = 26044, - [SMALL_STATE(1170)] = 26055, - [SMALL_STATE(1171)] = 26064, - [SMALL_STATE(1172)] = 26075, - [SMALL_STATE(1173)] = 26084, - [SMALL_STATE(1174)] = 26095, - [SMALL_STATE(1175)] = 26106, - [SMALL_STATE(1176)] = 26117, - [SMALL_STATE(1177)] = 26128, - [SMALL_STATE(1178)] = 26139, - [SMALL_STATE(1179)] = 26148, - [SMALL_STATE(1180)] = 26159, - [SMALL_STATE(1181)] = 26170, - [SMALL_STATE(1182)] = 26181, - [SMALL_STATE(1183)] = 26192, - [SMALL_STATE(1184)] = 26203, - [SMALL_STATE(1185)] = 26214, - [SMALL_STATE(1186)] = 26223, - [SMALL_STATE(1187)] = 26234, - [SMALL_STATE(1188)] = 26243, - [SMALL_STATE(1189)] = 26254, - [SMALL_STATE(1190)] = 26265, - [SMALL_STATE(1191)] = 26274, - [SMALL_STATE(1192)] = 26283, - [SMALL_STATE(1193)] = 26294, - [SMALL_STATE(1194)] = 26303, - [SMALL_STATE(1195)] = 26314, - [SMALL_STATE(1196)] = 26322, - [SMALL_STATE(1197)] = 26330, - [SMALL_STATE(1198)] = 26338, - [SMALL_STATE(1199)] = 26346, - [SMALL_STATE(1200)] = 26354, - [SMALL_STATE(1201)] = 26362, - [SMALL_STATE(1202)] = 26370, - [SMALL_STATE(1203)] = 26378, - [SMALL_STATE(1204)] = 26386, - [SMALL_STATE(1205)] = 26394, - [SMALL_STATE(1206)] = 26402, - [SMALL_STATE(1207)] = 26410, - [SMALL_STATE(1208)] = 26418, - [SMALL_STATE(1209)] = 26426, - [SMALL_STATE(1210)] = 26434, - [SMALL_STATE(1211)] = 26442, - [SMALL_STATE(1212)] = 26450, - [SMALL_STATE(1213)] = 26458, - [SMALL_STATE(1214)] = 26466, - [SMALL_STATE(1215)] = 26474, - [SMALL_STATE(1216)] = 26482, - [SMALL_STATE(1217)] = 26490, - [SMALL_STATE(1218)] = 26498, - [SMALL_STATE(1219)] = 26506, - [SMALL_STATE(1220)] = 26514, - [SMALL_STATE(1221)] = 26522, - [SMALL_STATE(1222)] = 26530, - [SMALL_STATE(1223)] = 26538, - [SMALL_STATE(1224)] = 26546, - [SMALL_STATE(1225)] = 26554, - [SMALL_STATE(1226)] = 26562, - [SMALL_STATE(1227)] = 26570, - [SMALL_STATE(1228)] = 26578, - [SMALL_STATE(1229)] = 26586, - [SMALL_STATE(1230)] = 26594, - [SMALL_STATE(1231)] = 26602, - [SMALL_STATE(1232)] = 26610, - [SMALL_STATE(1233)] = 26618, - [SMALL_STATE(1234)] = 26626, - [SMALL_STATE(1235)] = 26634, - [SMALL_STATE(1236)] = 26642, - [SMALL_STATE(1237)] = 26650, - [SMALL_STATE(1238)] = 26658, - [SMALL_STATE(1239)] = 26666, - [SMALL_STATE(1240)] = 26674, - [SMALL_STATE(1241)] = 26682, - [SMALL_STATE(1242)] = 26690, - [SMALL_STATE(1243)] = 26698, - [SMALL_STATE(1244)] = 26706, - [SMALL_STATE(1245)] = 26714, - [SMALL_STATE(1246)] = 26722, - [SMALL_STATE(1247)] = 26730, - [SMALL_STATE(1248)] = 26738, - [SMALL_STATE(1249)] = 26746, - [SMALL_STATE(1250)] = 26754, - [SMALL_STATE(1251)] = 26762, - [SMALL_STATE(1252)] = 26770, - [SMALL_STATE(1253)] = 26778, - [SMALL_STATE(1254)] = 26786, - [SMALL_STATE(1255)] = 26794, - [SMALL_STATE(1256)] = 26802, - [SMALL_STATE(1257)] = 26810, - [SMALL_STATE(1258)] = 26818, - [SMALL_STATE(1259)] = 26826, - [SMALL_STATE(1260)] = 26834, - [SMALL_STATE(1261)] = 26842, - [SMALL_STATE(1262)] = 26850, - [SMALL_STATE(1263)] = 26858, - [SMALL_STATE(1264)] = 26866, - [SMALL_STATE(1265)] = 26874, - [SMALL_STATE(1266)] = 26882, - [SMALL_STATE(1267)] = 26890, - [SMALL_STATE(1268)] = 26898, - [SMALL_STATE(1269)] = 26906, - [SMALL_STATE(1270)] = 26914, - [SMALL_STATE(1271)] = 26922, - [SMALL_STATE(1272)] = 26930, - [SMALL_STATE(1273)] = 26938, - [SMALL_STATE(1274)] = 26946, - [SMALL_STATE(1275)] = 26954, - [SMALL_STATE(1276)] = 26962, - [SMALL_STATE(1277)] = 26970, - [SMALL_STATE(1278)] = 26978, - [SMALL_STATE(1279)] = 26986, - [SMALL_STATE(1280)] = 26994, - [SMALL_STATE(1281)] = 27002, + [SMALL_STATE(670)] = 16915, + [SMALL_STATE(671)] = 16961, + [SMALL_STATE(672)] = 16991, + [SMALL_STATE(673)] = 17037, + [SMALL_STATE(674)] = 17067, + [SMALL_STATE(675)] = 17113, + [SMALL_STATE(676)] = 17165, + [SMALL_STATE(677)] = 17194, + [SMALL_STATE(678)] = 17223, + [SMALL_STATE(679)] = 17252, + [SMALL_STATE(680)] = 17301, + [SMALL_STATE(681)] = 17330, + [SMALL_STATE(682)] = 17360, + [SMALL_STATE(683)] = 17408, + [SMALL_STATE(684)] = 17436, + [SMALL_STATE(685)] = 17478, + [SMALL_STATE(686)] = 17510, + [SMALL_STATE(687)] = 17538, + [SMALL_STATE(688)] = 17566, + [SMALL_STATE(689)] = 17594, + [SMALL_STATE(690)] = 17622, + [SMALL_STATE(691)] = 17664, + [SMALL_STATE(692)] = 17692, + [SMALL_STATE(693)] = 17720, + [SMALL_STATE(694)] = 17766, + [SMALL_STATE(695)] = 17812, + [SMALL_STATE(696)] = 17846, + [SMALL_STATE(697)] = 17886, + [SMALL_STATE(698)] = 17932, + [SMALL_STATE(699)] = 17975, + [SMALL_STATE(700)] = 18008, + [SMALL_STATE(701)] = 18045, + [SMALL_STATE(702)] = 18088, + [SMALL_STATE(703)] = 18131, + [SMALL_STATE(704)] = 18174, + [SMALL_STATE(705)] = 18211, + [SMALL_STATE(706)] = 18248, + [SMALL_STATE(707)] = 18285, + [SMALL_STATE(708)] = 18310, + [SMALL_STATE(709)] = 18349, + [SMALL_STATE(710)] = 18386, + [SMALL_STATE(711)] = 18411, + [SMALL_STATE(712)] = 18451, + [SMALL_STATE(713)] = 18491, + [SMALL_STATE(714)] = 18531, + [SMALL_STATE(715)] = 18571, + [SMALL_STATE(716)] = 18613, + [SMALL_STATE(717)] = 18655, + [SMALL_STATE(718)] = 18681, + [SMALL_STATE(719)] = 18723, + [SMALL_STATE(720)] = 18763, + [SMALL_STATE(721)] = 18805, + [SMALL_STATE(722)] = 18845, + [SMALL_STATE(723)] = 18885, + [SMALL_STATE(724)] = 18918, + [SMALL_STATE(725)] = 18955, + [SMALL_STATE(726)] = 18990, + [SMALL_STATE(727)] = 19027, + [SMALL_STATE(728)] = 19064, + [SMALL_STATE(729)] = 19093, + [SMALL_STATE(730)] = 19129, + [SMALL_STATE(731)] = 19165, + [SMALL_STATE(732)] = 19201, + [SMALL_STATE(733)] = 19231, + [SMALL_STATE(734)] = 19267, + [SMALL_STATE(735)] = 19303, + [SMALL_STATE(736)] = 19337, + [SMALL_STATE(737)] = 19367, + [SMALL_STATE(738)] = 19403, + [SMALL_STATE(739)] = 19437, + [SMALL_STATE(740)] = 19471, + [SMALL_STATE(741)] = 19505, + [SMALL_STATE(742)] = 19539, + [SMALL_STATE(743)] = 19571, + [SMALL_STATE(744)] = 19607, + [SMALL_STATE(745)] = 19641, + [SMALL_STATE(746)] = 19675, + [SMALL_STATE(747)] = 19711, + [SMALL_STATE(748)] = 19745, + [SMALL_STATE(749)] = 19779, + [SMALL_STATE(750)] = 19810, + [SMALL_STATE(751)] = 19841, + [SMALL_STATE(752)] = 19872, + [SMALL_STATE(753)] = 19895, + [SMALL_STATE(754)] = 19926, + [SMALL_STATE(755)] = 19959, + [SMALL_STATE(756)] = 19990, + [SMALL_STATE(757)] = 20023, + [SMALL_STATE(758)] = 20054, + [SMALL_STATE(759)] = 20082, + [SMALL_STATE(760)] = 20112, + [SMALL_STATE(761)] = 20142, + [SMALL_STATE(762)] = 20174, + [SMALL_STATE(763)] = 20204, + [SMALL_STATE(764)] = 20236, + [SMALL_STATE(765)] = 20266, + [SMALL_STATE(766)] = 20294, + [SMALL_STATE(767)] = 20325, + [SMALL_STATE(768)] = 20360, + [SMALL_STATE(769)] = 20395, + [SMALL_STATE(770)] = 20426, + [SMALL_STATE(771)] = 20453, + [SMALL_STATE(772)] = 20482, + [SMALL_STATE(773)] = 20511, + [SMALL_STATE(774)] = 20538, + [SMALL_STATE(775)] = 20564, + [SMALL_STATE(776)] = 20594, + [SMALL_STATE(777)] = 20610, + [SMALL_STATE(778)] = 20638, + [SMALL_STATE(779)] = 20663, + [SMALL_STATE(780)] = 20684, + [SMALL_STATE(781)] = 20713, + [SMALL_STATE(782)] = 20736, + [SMALL_STATE(783)] = 20765, + [SMALL_STATE(784)] = 20794, + [SMALL_STATE(785)] = 20823, + [SMALL_STATE(786)] = 20846, + [SMALL_STATE(787)] = 20869, + [SMALL_STATE(788)] = 20891, + [SMALL_STATE(789)] = 20915, + [SMALL_STATE(790)] = 20937, + [SMALL_STATE(791)] = 20951, + [SMALL_STATE(792)] = 20965, + [SMALL_STATE(793)] = 20989, + [SMALL_STATE(794)] = 21003, + [SMALL_STATE(795)] = 21023, + [SMALL_STATE(796)] = 21037, + [SMALL_STATE(797)] = 21059, + [SMALL_STATE(798)] = 21079, + [SMALL_STATE(799)] = 21096, + [SMALL_STATE(800)] = 21109, + [SMALL_STATE(801)] = 21122, + [SMALL_STATE(802)] = 21139, + [SMALL_STATE(803)] = 21162, + [SMALL_STATE(804)] = 21175, + [SMALL_STATE(805)] = 21192, + [SMALL_STATE(806)] = 21209, + [SMALL_STATE(807)] = 21222, + [SMALL_STATE(808)] = 21239, + [SMALL_STATE(809)] = 21252, + [SMALL_STATE(810)] = 21265, + [SMALL_STATE(811)] = 21278, + [SMALL_STATE(812)] = 21291, + [SMALL_STATE(813)] = 21304, + [SMALL_STATE(814)] = 21321, + [SMALL_STATE(815)] = 21334, + [SMALL_STATE(816)] = 21347, + [SMALL_STATE(817)] = 21360, + [SMALL_STATE(818)] = 21373, + [SMALL_STATE(819)] = 21386, + [SMALL_STATE(820)] = 21399, + [SMALL_STATE(821)] = 21412, + [SMALL_STATE(822)] = 21425, + [SMALL_STATE(823)] = 21448, + [SMALL_STATE(824)] = 21461, + [SMALL_STATE(825)] = 21474, + [SMALL_STATE(826)] = 21487, + [SMALL_STATE(827)] = 21500, + [SMALL_STATE(828)] = 21513, + [SMALL_STATE(829)] = 21530, + [SMALL_STATE(830)] = 21543, + [SMALL_STATE(831)] = 21566, + [SMALL_STATE(832)] = 21579, + [SMALL_STATE(833)] = 21592, + [SMALL_STATE(834)] = 21609, + [SMALL_STATE(835)] = 21626, + [SMALL_STATE(836)] = 21639, + [SMALL_STATE(837)] = 21656, + [SMALL_STATE(838)] = 21677, + [SMALL_STATE(839)] = 21690, + [SMALL_STATE(840)] = 21703, + [SMALL_STATE(841)] = 21716, + [SMALL_STATE(842)] = 21739, + [SMALL_STATE(843)] = 21752, + [SMALL_STATE(844)] = 21771, + [SMALL_STATE(845)] = 21792, + [SMALL_STATE(846)] = 21805, + [SMALL_STATE(847)] = 21818, + [SMALL_STATE(848)] = 21831, + [SMALL_STATE(849)] = 21848, + [SMALL_STATE(850)] = 21861, + [SMALL_STATE(851)] = 21874, + [SMALL_STATE(852)] = 21893, + [SMALL_STATE(853)] = 21916, + [SMALL_STATE(854)] = 21939, + [SMALL_STATE(855)] = 21952, + [SMALL_STATE(856)] = 21965, + [SMALL_STATE(857)] = 21982, + [SMALL_STATE(858)] = 21999, + [SMALL_STATE(859)] = 22016, + [SMALL_STATE(860)] = 22029, + [SMALL_STATE(861)] = 22048, + [SMALL_STATE(862)] = 22065, + [SMALL_STATE(863)] = 22078, + [SMALL_STATE(864)] = 22095, + [SMALL_STATE(865)] = 22112, + [SMALL_STATE(866)] = 22129, + [SMALL_STATE(867)] = 22146, + [SMALL_STATE(868)] = 22165, + [SMALL_STATE(869)] = 22182, + [SMALL_STATE(870)] = 22195, + [SMALL_STATE(871)] = 22211, + [SMALL_STATE(872)] = 22227, + [SMALL_STATE(873)] = 22243, + [SMALL_STATE(874)] = 22259, + [SMALL_STATE(875)] = 22275, + [SMALL_STATE(876)] = 22291, + [SMALL_STATE(877)] = 22307, + [SMALL_STATE(878)] = 22323, + [SMALL_STATE(879)] = 22339, + [SMALL_STATE(880)] = 22359, + [SMALL_STATE(881)] = 22371, + [SMALL_STATE(882)] = 22387, + [SMALL_STATE(883)] = 22399, + [SMALL_STATE(884)] = 22413, + [SMALL_STATE(885)] = 22429, + [SMALL_STATE(886)] = 22445, + [SMALL_STATE(887)] = 22465, + [SMALL_STATE(888)] = 22481, + [SMALL_STATE(889)] = 22497, + [SMALL_STATE(890)] = 22513, + [SMALL_STATE(891)] = 22529, + [SMALL_STATE(892)] = 22549, + [SMALL_STATE(893)] = 22565, + [SMALL_STATE(894)] = 22581, + [SMALL_STATE(895)] = 22597, + [SMALL_STATE(896)] = 22613, + [SMALL_STATE(897)] = 22629, + [SMALL_STATE(898)] = 22645, + [SMALL_STATE(899)] = 22661, + [SMALL_STATE(900)] = 22677, + [SMALL_STATE(901)] = 22693, + [SMALL_STATE(902)] = 22709, + [SMALL_STATE(903)] = 22721, + [SMALL_STATE(904)] = 22737, + [SMALL_STATE(905)] = 22757, + [SMALL_STATE(906)] = 22777, + [SMALL_STATE(907)] = 22795, + [SMALL_STATE(908)] = 22811, + [SMALL_STATE(909)] = 22827, + [SMALL_STATE(910)] = 22847, + [SMALL_STATE(911)] = 22862, + [SMALL_STATE(912)] = 22877, + [SMALL_STATE(913)] = 22894, + [SMALL_STATE(914)] = 22909, + [SMALL_STATE(915)] = 22926, + [SMALL_STATE(916)] = 22939, + [SMALL_STATE(917)] = 22954, + [SMALL_STATE(918)] = 22965, + [SMALL_STATE(919)] = 22982, + [SMALL_STATE(920)] = 22993, + [SMALL_STATE(921)] = 23010, + [SMALL_STATE(922)] = 23025, + [SMALL_STATE(923)] = 23038, + [SMALL_STATE(924)] = 23055, + [SMALL_STATE(925)] = 23072, + [SMALL_STATE(926)] = 23089, + [SMALL_STATE(927)] = 23106, + [SMALL_STATE(928)] = 23119, + [SMALL_STATE(929)] = 23134, + [SMALL_STATE(930)] = 23151, + [SMALL_STATE(931)] = 23168, + [SMALL_STATE(932)] = 23185, + [SMALL_STATE(933)] = 23202, + [SMALL_STATE(934)] = 23219, + [SMALL_STATE(935)] = 23236, + [SMALL_STATE(936)] = 23253, + [SMALL_STATE(937)] = 23270, + [SMALL_STATE(938)] = 23287, + [SMALL_STATE(939)] = 23304, + [SMALL_STATE(940)] = 23321, + [SMALL_STATE(941)] = 23338, + [SMALL_STATE(942)] = 23355, + [SMALL_STATE(943)] = 23370, + [SMALL_STATE(944)] = 23385, + [SMALL_STATE(945)] = 23402, + [SMALL_STATE(946)] = 23419, + [SMALL_STATE(947)] = 23434, + [SMALL_STATE(948)] = 23451, + [SMALL_STATE(949)] = 23468, + [SMALL_STATE(950)] = 23483, + [SMALL_STATE(951)] = 23496, + [SMALL_STATE(952)] = 23511, + [SMALL_STATE(953)] = 23528, + [SMALL_STATE(954)] = 23543, + [SMALL_STATE(955)] = 23558, + [SMALL_STATE(956)] = 23573, + [SMALL_STATE(957)] = 23588, + [SMALL_STATE(958)] = 23605, + [SMALL_STATE(959)] = 23620, + [SMALL_STATE(960)] = 23635, + [SMALL_STATE(961)] = 23652, + [SMALL_STATE(962)] = 23669, + [SMALL_STATE(963)] = 23686, + [SMALL_STATE(964)] = 23701, + [SMALL_STATE(965)] = 23716, + [SMALL_STATE(966)] = 23731, + [SMALL_STATE(967)] = 23742, + [SMALL_STATE(968)] = 23759, + [SMALL_STATE(969)] = 23776, + [SMALL_STATE(970)] = 23791, + [SMALL_STATE(971)] = 23808, + [SMALL_STATE(972)] = 23825, + [SMALL_STATE(973)] = 23840, + [SMALL_STATE(974)] = 23855, + [SMALL_STATE(975)] = 23866, + [SMALL_STATE(976)] = 23881, + [SMALL_STATE(977)] = 23898, + [SMALL_STATE(978)] = 23915, + [SMALL_STATE(979)] = 23932, + [SMALL_STATE(980)] = 23949, + [SMALL_STATE(981)] = 23960, + [SMALL_STATE(982)] = 23974, + [SMALL_STATE(983)] = 23988, + [SMALL_STATE(984)] = 24002, + [SMALL_STATE(985)] = 24016, + [SMALL_STATE(986)] = 24030, + [SMALL_STATE(987)] = 24044, + [SMALL_STATE(988)] = 24058, + [SMALL_STATE(989)] = 24072, + [SMALL_STATE(990)] = 24086, + [SMALL_STATE(991)] = 24096, + [SMALL_STATE(992)] = 24110, + [SMALL_STATE(993)] = 24120, + [SMALL_STATE(994)] = 24134, + [SMALL_STATE(995)] = 24148, + [SMALL_STATE(996)] = 24162, + [SMALL_STATE(997)] = 24176, + [SMALL_STATE(998)] = 24190, + [SMALL_STATE(999)] = 24204, + [SMALL_STATE(1000)] = 24218, + [SMALL_STATE(1001)] = 24232, + [SMALL_STATE(1002)] = 24246, + [SMALL_STATE(1003)] = 24260, + [SMALL_STATE(1004)] = 24274, + [SMALL_STATE(1005)] = 24288, + [SMALL_STATE(1006)] = 24302, + [SMALL_STATE(1007)] = 24316, + [SMALL_STATE(1008)] = 24330, + [SMALL_STATE(1009)] = 24344, + [SMALL_STATE(1010)] = 24358, + [SMALL_STATE(1011)] = 24372, + [SMALL_STATE(1012)] = 24386, + [SMALL_STATE(1013)] = 24400, + [SMALL_STATE(1014)] = 24410, + [SMALL_STATE(1015)] = 24420, + [SMALL_STATE(1016)] = 24434, + [SMALL_STATE(1017)] = 24448, + [SMALL_STATE(1018)] = 24462, + [SMALL_STATE(1019)] = 24476, + [SMALL_STATE(1020)] = 24490, + [SMALL_STATE(1021)] = 24504, + [SMALL_STATE(1022)] = 24518, + [SMALL_STATE(1023)] = 24532, + [SMALL_STATE(1024)] = 24546, + [SMALL_STATE(1025)] = 24560, + [SMALL_STATE(1026)] = 24574, + [SMALL_STATE(1027)] = 24588, + [SMALL_STATE(1028)] = 24602, + [SMALL_STATE(1029)] = 24616, + [SMALL_STATE(1030)] = 24630, + [SMALL_STATE(1031)] = 24644, + [SMALL_STATE(1032)] = 24658, + [SMALL_STATE(1033)] = 24672, + [SMALL_STATE(1034)] = 24686, + [SMALL_STATE(1035)] = 24698, + [SMALL_STATE(1036)] = 24710, + [SMALL_STATE(1037)] = 24720, + [SMALL_STATE(1038)] = 24734, + [SMALL_STATE(1039)] = 24744, + [SMALL_STATE(1040)] = 24758, + [SMALL_STATE(1041)] = 24768, + [SMALL_STATE(1042)] = 24782, + [SMALL_STATE(1043)] = 24796, + [SMALL_STATE(1044)] = 24810, + [SMALL_STATE(1045)] = 24824, + [SMALL_STATE(1046)] = 24836, + [SMALL_STATE(1047)] = 24848, + [SMALL_STATE(1048)] = 24862, + [SMALL_STATE(1049)] = 24876, + [SMALL_STATE(1050)] = 24890, + [SMALL_STATE(1051)] = 24904, + [SMALL_STATE(1052)] = 24918, + [SMALL_STATE(1053)] = 24932, + [SMALL_STATE(1054)] = 24946, + [SMALL_STATE(1055)] = 24960, + [SMALL_STATE(1056)] = 24970, + [SMALL_STATE(1057)] = 24984, + [SMALL_STATE(1058)] = 24998, + [SMALL_STATE(1059)] = 25012, + [SMALL_STATE(1060)] = 25026, + [SMALL_STATE(1061)] = 25040, + [SMALL_STATE(1062)] = 25054, + [SMALL_STATE(1063)] = 25068, + [SMALL_STATE(1064)] = 25082, + [SMALL_STATE(1065)] = 25096, + [SMALL_STATE(1066)] = 25110, + [SMALL_STATE(1067)] = 25124, + [SMALL_STATE(1068)] = 25138, + [SMALL_STATE(1069)] = 25152, + [SMALL_STATE(1070)] = 25162, + [SMALL_STATE(1071)] = 25176, + [SMALL_STATE(1072)] = 25190, + [SMALL_STATE(1073)] = 25204, + [SMALL_STATE(1074)] = 25218, + [SMALL_STATE(1075)] = 25232, + [SMALL_STATE(1076)] = 25246, + [SMALL_STATE(1077)] = 25260, + [SMALL_STATE(1078)] = 25274, + [SMALL_STATE(1079)] = 25288, + [SMALL_STATE(1080)] = 25302, + [SMALL_STATE(1081)] = 25316, + [SMALL_STATE(1082)] = 25330, + [SMALL_STATE(1083)] = 25344, + [SMALL_STATE(1084)] = 25358, + [SMALL_STATE(1085)] = 25372, + [SMALL_STATE(1086)] = 25386, + [SMALL_STATE(1087)] = 25400, + [SMALL_STATE(1088)] = 25414, + [SMALL_STATE(1089)] = 25428, + [SMALL_STATE(1090)] = 25442, + [SMALL_STATE(1091)] = 25452, + [SMALL_STATE(1092)] = 25466, + [SMALL_STATE(1093)] = 25476, + [SMALL_STATE(1094)] = 25485, + [SMALL_STATE(1095)] = 25496, + [SMALL_STATE(1096)] = 25507, + [SMALL_STATE(1097)] = 25518, + [SMALL_STATE(1098)] = 25529, + [SMALL_STATE(1099)] = 25540, + [SMALL_STATE(1100)] = 25551, + [SMALL_STATE(1101)] = 25560, + [SMALL_STATE(1102)] = 25571, + [SMALL_STATE(1103)] = 25580, + [SMALL_STATE(1104)] = 25591, + [SMALL_STATE(1105)] = 25602, + [SMALL_STATE(1106)] = 25613, + [SMALL_STATE(1107)] = 25624, + [SMALL_STATE(1108)] = 25635, + [SMALL_STATE(1109)] = 25646, + [SMALL_STATE(1110)] = 25655, + [SMALL_STATE(1111)] = 25666, + [SMALL_STATE(1112)] = 25677, + [SMALL_STATE(1113)] = 25688, + [SMALL_STATE(1114)] = 25699, + [SMALL_STATE(1115)] = 25710, + [SMALL_STATE(1116)] = 25719, + [SMALL_STATE(1117)] = 25728, + [SMALL_STATE(1118)] = 25739, + [SMALL_STATE(1119)] = 25750, + [SMALL_STATE(1120)] = 25761, + [SMALL_STATE(1121)] = 25772, + [SMALL_STATE(1122)] = 25783, + [SMALL_STATE(1123)] = 25794, + [SMALL_STATE(1124)] = 25805, + [SMALL_STATE(1125)] = 25816, + [SMALL_STATE(1126)] = 25827, + [SMALL_STATE(1127)] = 25838, + [SMALL_STATE(1128)] = 25847, + [SMALL_STATE(1129)] = 25856, + [SMALL_STATE(1130)] = 25867, + [SMALL_STATE(1131)] = 25876, + [SMALL_STATE(1132)] = 25885, + [SMALL_STATE(1133)] = 25894, + [SMALL_STATE(1134)] = 25903, + [SMALL_STATE(1135)] = 25914, + [SMALL_STATE(1136)] = 25923, + [SMALL_STATE(1137)] = 25932, + [SMALL_STATE(1138)] = 25943, + [SMALL_STATE(1139)] = 25954, + [SMALL_STATE(1140)] = 25963, + [SMALL_STATE(1141)] = 25974, + [SMALL_STATE(1142)] = 25985, + [SMALL_STATE(1143)] = 25996, + [SMALL_STATE(1144)] = 26005, + [SMALL_STATE(1145)] = 26016, + [SMALL_STATE(1146)] = 26027, + [SMALL_STATE(1147)] = 26038, + [SMALL_STATE(1148)] = 26049, + [SMALL_STATE(1149)] = 26058, + [SMALL_STATE(1150)] = 26069, + [SMALL_STATE(1151)] = 26078, + [SMALL_STATE(1152)] = 26089, + [SMALL_STATE(1153)] = 26098, + [SMALL_STATE(1154)] = 26109, + [SMALL_STATE(1155)] = 26120, + [SMALL_STATE(1156)] = 26129, + [SMALL_STATE(1157)] = 26140, + [SMALL_STATE(1158)] = 26151, + [SMALL_STATE(1159)] = 26162, + [SMALL_STATE(1160)] = 26173, + [SMALL_STATE(1161)] = 26184, + [SMALL_STATE(1162)] = 26195, + [SMALL_STATE(1163)] = 26206, + [SMALL_STATE(1164)] = 26217, + [SMALL_STATE(1165)] = 26228, + [SMALL_STATE(1166)] = 26239, + [SMALL_STATE(1167)] = 26250, + [SMALL_STATE(1168)] = 26261, + [SMALL_STATE(1169)] = 26272, + [SMALL_STATE(1170)] = 26283, + [SMALL_STATE(1171)] = 26294, + [SMALL_STATE(1172)] = 26305, + [SMALL_STATE(1173)] = 26316, + [SMALL_STATE(1174)] = 26327, + [SMALL_STATE(1175)] = 26338, + [SMALL_STATE(1176)] = 26349, + [SMALL_STATE(1177)] = 26360, + [SMALL_STATE(1178)] = 26371, + [SMALL_STATE(1179)] = 26382, + [SMALL_STATE(1180)] = 26391, + [SMALL_STATE(1181)] = 26400, + [SMALL_STATE(1182)] = 26411, + [SMALL_STATE(1183)] = 26422, + [SMALL_STATE(1184)] = 26433, + [SMALL_STATE(1185)] = 26444, + [SMALL_STATE(1186)] = 26455, + [SMALL_STATE(1187)] = 26466, + [SMALL_STATE(1188)] = 26477, + [SMALL_STATE(1189)] = 26488, + [SMALL_STATE(1190)] = 26499, + [SMALL_STATE(1191)] = 26510, + [SMALL_STATE(1192)] = 26521, + [SMALL_STATE(1193)] = 26530, + [SMALL_STATE(1194)] = 26541, + [SMALL_STATE(1195)] = 26552, + [SMALL_STATE(1196)] = 26563, + [SMALL_STATE(1197)] = 26574, + [SMALL_STATE(1198)] = 26583, + [SMALL_STATE(1199)] = 26592, + [SMALL_STATE(1200)] = 26601, + [SMALL_STATE(1201)] = 26612, + [SMALL_STATE(1202)] = 26623, + [SMALL_STATE(1203)] = 26632, + [SMALL_STATE(1204)] = 26641, + [SMALL_STATE(1205)] = 26652, + [SMALL_STATE(1206)] = 26661, + [SMALL_STATE(1207)] = 26670, + [SMALL_STATE(1208)] = 26681, + [SMALL_STATE(1209)] = 26690, + [SMALL_STATE(1210)] = 26701, + [SMALL_STATE(1211)] = 26709, + [SMALL_STATE(1212)] = 26717, + [SMALL_STATE(1213)] = 26725, + [SMALL_STATE(1214)] = 26733, + [SMALL_STATE(1215)] = 26741, + [SMALL_STATE(1216)] = 26749, + [SMALL_STATE(1217)] = 26757, + [SMALL_STATE(1218)] = 26765, + [SMALL_STATE(1219)] = 26773, + [SMALL_STATE(1220)] = 26781, + [SMALL_STATE(1221)] = 26789, + [SMALL_STATE(1222)] = 26797, + [SMALL_STATE(1223)] = 26805, + [SMALL_STATE(1224)] = 26813, + [SMALL_STATE(1225)] = 26821, + [SMALL_STATE(1226)] = 26829, + [SMALL_STATE(1227)] = 26837, + [SMALL_STATE(1228)] = 26845, + [SMALL_STATE(1229)] = 26853, + [SMALL_STATE(1230)] = 26861, + [SMALL_STATE(1231)] = 26869, + [SMALL_STATE(1232)] = 26877, + [SMALL_STATE(1233)] = 26885, + [SMALL_STATE(1234)] = 26893, + [SMALL_STATE(1235)] = 26901, + [SMALL_STATE(1236)] = 26909, + [SMALL_STATE(1237)] = 26917, + [SMALL_STATE(1238)] = 26925, + [SMALL_STATE(1239)] = 26933, + [SMALL_STATE(1240)] = 26941, + [SMALL_STATE(1241)] = 26949, + [SMALL_STATE(1242)] = 26957, + [SMALL_STATE(1243)] = 26965, + [SMALL_STATE(1244)] = 26973, + [SMALL_STATE(1245)] = 26981, + [SMALL_STATE(1246)] = 26989, + [SMALL_STATE(1247)] = 26997, + [SMALL_STATE(1248)] = 27005, + [SMALL_STATE(1249)] = 27013, + [SMALL_STATE(1250)] = 27021, + [SMALL_STATE(1251)] = 27029, + [SMALL_STATE(1252)] = 27037, + [SMALL_STATE(1253)] = 27045, + [SMALL_STATE(1254)] = 27053, + [SMALL_STATE(1255)] = 27061, + [SMALL_STATE(1256)] = 27069, + [SMALL_STATE(1257)] = 27077, + [SMALL_STATE(1258)] = 27085, + [SMALL_STATE(1259)] = 27093, + [SMALL_STATE(1260)] = 27101, + [SMALL_STATE(1261)] = 27109, + [SMALL_STATE(1262)] = 27117, + [SMALL_STATE(1263)] = 27125, + [SMALL_STATE(1264)] = 27133, + [SMALL_STATE(1265)] = 27141, + [SMALL_STATE(1266)] = 27149, + [SMALL_STATE(1267)] = 27157, + [SMALL_STATE(1268)] = 27165, + [SMALL_STATE(1269)] = 27173, + [SMALL_STATE(1270)] = 27181, + [SMALL_STATE(1271)] = 27189, + [SMALL_STATE(1272)] = 27197, + [SMALL_STATE(1273)] = 27205, + [SMALL_STATE(1274)] = 27213, + [SMALL_STATE(1275)] = 27221, + [SMALL_STATE(1276)] = 27229, + [SMALL_STATE(1277)] = 27237, + [SMALL_STATE(1278)] = 27245, + [SMALL_STATE(1279)] = 27253, + [SMALL_STATE(1280)] = 27261, + [SMALL_STATE(1281)] = 27269, + [SMALL_STATE(1282)] = 27277, + [SMALL_STATE(1283)] = 27285, + [SMALL_STATE(1284)] = 27293, + [SMALL_STATE(1285)] = 27301, + [SMALL_STATE(1286)] = 27309, + [SMALL_STATE(1287)] = 27317, + [SMALL_STATE(1288)] = 27325, + [SMALL_STATE(1289)] = 27333, + [SMALL_STATE(1290)] = 27341, + [SMALL_STATE(1291)] = 27349, + [SMALL_STATE(1292)] = 27357, + [SMALL_STATE(1293)] = 27365, + [SMALL_STATE(1294)] = 27373, + [SMALL_STATE(1295)] = 27381, + [SMALL_STATE(1296)] = 27389, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -64249,1534 +66078,1571 @@ 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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), - [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(364), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(489), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(489), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(84), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(423), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(662), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1272), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1086), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(204), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(340), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1093), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1095), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(262), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(312), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(496), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(327), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(940), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1113), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1245), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(859), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(385), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(371), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(888), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(807), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1236), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(423), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1235), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1227), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(675), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(672), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(685), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(461), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1180), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 21), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 21), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 23), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 23), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1280), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 163), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 163), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 112), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 112), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, .production_id = 181), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, .production_id = 181), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), - [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 64), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 64), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), - [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 94), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 94), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 95), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 95), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 101), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 101), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 102), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 102), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 113), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 113), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 114), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 114), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 115), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 115), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 116), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 116), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 127), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 127), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 129), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 129), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 143), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 143), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), + [93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(365), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(463), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(463), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(958), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(786), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(84), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(192), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(428), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(192), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(200), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(662), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1269), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1160), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(289), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(256), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1165), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1166), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1168), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(132), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(270), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(501), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(177), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(918), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1209), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1224), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(907), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(371), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(908), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(843), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1218), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(428), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(385), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1216), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1215), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(676), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(680), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(687), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(468), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1201), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 23), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 23), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1259), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 163), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 163), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, .production_id = 181), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, .production_id = 181), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 179), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 179), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 201), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 201), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 154), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 154), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 153), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 153), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 150), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 150), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 148), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 148), [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 148), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 148), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 150), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 150), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 152), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 152), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 153), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 153), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 154), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 154), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 20), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 20), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 180), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 180), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 201), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 201), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 179), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 179), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 178), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 178), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 177), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 177), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 14), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 14), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 209), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 209), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 133), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 133), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 207), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 207), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 23), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 23), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 206), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 206), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 205), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 205), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 204), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 204), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 203), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 203), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 191), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 191), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 190), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 190), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 188), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 188), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 134), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 134), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 187), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 187), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 186), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 186), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 119), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 119), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 185), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 185), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 101), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 101), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 102), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 102), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 113), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 113), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 143), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 143), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 116), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 116), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 130), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 130), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 129), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 129), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 127), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 127), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 114), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 114), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 236), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 236), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 119), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 119), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 118), [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 118), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 21), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 21), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 171), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 171), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 170), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 170), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(330), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1114), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 169), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 169), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 96), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 96), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 25), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 25), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 168), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 168), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 97), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 97), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 229), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 229), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 230), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 230), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 231), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 231), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 236), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 236), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 30), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 30), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 20), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 20), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 14), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 14), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 14), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 14), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(724), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(787), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(423), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1272), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(10), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(358), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(859), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(476), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1236), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(423), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1243), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1235), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1227), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(675), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(672), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(685), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(657), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(787), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(423), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1272), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(359), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(859), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1236), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(423), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1243), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1235), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1227), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(675), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(672), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(685), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(557), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1190] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(856), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1199] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1210), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1205] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(856), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(657), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(423), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1272), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(859), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1236), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(423), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1235), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1227), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(675), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(672), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(685), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 72), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 72), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(203), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1277), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(221), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 188), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 188), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 133), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 133), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 231), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 231), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 230), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 230), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 229), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 229), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 187), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 187), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 186), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 186), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 134), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 134), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 185), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 185), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(154), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1179), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 209), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 209), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 207), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 207), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 206), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 206), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 96), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 96), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 205), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 205), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 204), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 204), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 203), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 203), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 168), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 168), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 170), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 170), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 97), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 97), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(746), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(794), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(428), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1269), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(354), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(907), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(496), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1218), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(428), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1225), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1216), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1215), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(676), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(680), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(687), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(669), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(794), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(428), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1269), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(359), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(907), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1218), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(428), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1225), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1216), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1215), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(676), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(680), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(687), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(553), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1200] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(858), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1283), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1215] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(858), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(669), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(428), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1269), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(907), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1218), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(428), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1216), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1215), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(676), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(680), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(687), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 72), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 72), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(109), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1285), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(108), [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1229), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(887), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(291), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(887), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(595), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(595), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(859), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 121), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 121), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 122), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 122), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 73), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 73), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 88), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 88), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 89), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 89), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 27), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 27), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 145), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 145), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 175), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 175), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 146), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 146), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 176), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 176), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 107), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 107), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 108), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 108), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1246), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(893), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(156), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(893), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(592), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(592), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(907), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 89), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 89), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 88), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 88), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 73), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 73), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 121), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 121), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 108), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 108), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 107), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 107), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 146), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 146), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 176), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 176), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 175), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 175), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 145), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 145), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 2), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 2), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 3), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 3), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 67), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 67), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 78), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 78), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(528), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(887), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(528), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 111), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1259), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 76), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 162), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 98), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 131), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 166), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(869), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(852), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(771), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(870), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(874), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(862), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(876), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 126), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 85), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), SHIFT_REPEAT(853), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(330), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1114), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 219), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 216), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 215), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(887), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 214), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 212), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 216), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 215), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 214), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 212), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 136), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 137), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 139), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 140), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 139), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 140), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 141), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 172), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 222), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 199), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 198), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 197), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 223), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 196), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(702), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 195), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 194), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 173), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 193), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 192), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 195), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 194), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 193), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 221), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 192), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 100), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(338), - [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1114), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(647), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 27), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(344), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 83), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 158), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(643), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 87), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(323), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(649), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 124), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(405), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1181), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), SHIFT_REPEAT(805), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(352), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(639), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), SHIFT_REPEAT(321), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 20), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 142), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 210), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 211), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), SHIFT_REPEAT(879), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 217), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 218), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), SHIFT_REPEAT(884), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(942), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(218), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 84), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 159), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 160), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 174), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), SHIFT_REPEAT(299), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(174), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(779), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(602), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 87), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 85), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 124), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 158), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 123), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 83), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, .production_id = 14), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 135), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 15), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3085] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 225), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, .production_id = 14), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 132), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 164), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, .production_id = 14), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 78), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 78), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 111), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(544), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(893), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(544), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1291), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 76), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 162), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 131), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 166), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 98), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(901), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(864), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(774), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(889), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(884), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(874), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(877), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 85), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 126), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), SHIFT_REPEAT(846), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), SHIFT_REPEAT(902), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), SHIFT_REPEAT(848), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), SHIFT_REPEAT(785), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(154), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1179), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 173), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 195), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_fragment_repeat1, 2), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_fragment_repeat1, 2), SHIFT_REPEAT(801), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 195), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(893), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 194), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 193), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 192), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 223), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 222), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 221), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 219), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 136), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 137), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 216), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 215), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 214), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 212), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 216), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 139), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 196), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 140), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 197), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 139), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 140), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 141), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 2), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(705), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 198), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(269), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1179), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 215), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 214), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 212), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 199), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 193), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 172), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 1), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 100), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 194), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 192), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 27), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(647), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), + [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(911), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(204), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 158), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 87), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 83), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(653), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 124), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(166), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(656), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 174), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(105), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), SHIFT_REPEAT(235), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 160), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 159), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(106), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 210), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 211), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 20), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), SHIFT_REPEAT(888), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 142), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(927), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(652), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(399), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 217), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 218), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), SHIFT_REPEAT(903), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1108), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), SHIFT_REPEAT(851), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(603), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(797), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(347), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), SHIFT_REPEAT(190), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 84), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 158), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 15), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 124), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 85), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 83), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 123), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 87), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, .production_id = 14), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 135), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 225), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, .production_id = 14), + [3176] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 132), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 164), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, .production_id = 14), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), }; #ifdef __cplusplus From 4f5b1ed40aece2e4f91509114ab443250ab5e9a8 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 1 Feb 2023 20:15:42 -0500 Subject: [PATCH 20/23] feat: add test for escape sequences --- test/corpus/literals.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index f38812f34..8853809d4 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -231,6 +231,30 @@ at new line (string_literal (multiline_string_fragment)))) +=============== +escape sequences +=============== + +"\n\a\b\fhi im a piece of text\t\v and im some more text \\\'\"\?"; + +--- + +(program + (expression_statement + (string_literal + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (string_fragment) + (escape_sequence) + (escape_sequence) + (string_fragment) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence)))) + ============= null literals ============= From b6e8dea6d8b10095377a4d818b9db0d5e432f26b Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Wed, 22 Feb 2023 11:19:36 +0100 Subject: [PATCH 21/23] Remove deprecated actions --- .github/workflows/publish_crate.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish_crate.yml b/.github/workflows/publish_crate.yml index b25fb57f6..cec684b5d 100644 --- a/.github/workflows/publish_crate.yml +++ b/.github/workflows/publish_crate.yml @@ -16,14 +16,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - - name: Install rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - override: true + - name: Install Rust stable + run: | + rustup toolchain install stable --profile minimal --no-self-update - name: Verify publish crate uses: katyo/publish-crates@v1 From 2b3b776b953a34ccffb647dd89732db79690d4c5 Mon Sep 17 00:00:00 2001 From: Andreas Humenberger Date: Wed, 22 Feb 2023 13:32:56 +0100 Subject: [PATCH 22/23] fix, Remove obsolete "text_block" This seems to be a leftover of #137. Fixes #141 --- grammar.js | 1 - src/parser.c | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/grammar.js b/grammar.js index dd5e8faf5..d932d43d6 100644 --- a/grammar.js +++ b/grammar.js @@ -91,7 +91,6 @@ module.exports = grammar({ $.false, $.character_literal, $.string_literal, - $.text_block, $.null_literal ), diff --git a/src/parser.c b/src/parser.c index 321012d5a..f25dc1521 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5228,7 +5228,7 @@ static inline bool sym_identifier_character_set_1(int32_t c) { : c <= 67826) : (c <= 67829 || (c < 67872 ? (c >= 67840 && c <= 67861) - : c <= 67880))))))))))))))); + : c <= 67883))))))))))))))); } static inline bool sym_identifier_character_set_2(int32_t c) { @@ -5742,7 +5742,7 @@ static inline bool sym_identifier_character_set_2(int32_t c) { : c <= 67826) : (c <= 67829 || (c < 67872 ? (c >= 67840 && c <= 67861) - : c <= 67880))))))))))))))); + : c <= 67883))))))))))))))); } static inline bool sym_identifier_character_set_3(int32_t c) { @@ -6256,7 +6256,7 @@ static inline bool sym_identifier_character_set_3(int32_t c) { : c <= 67826) : (c <= 67829 || (c < 67872 ? (c >= 67840 && c <= 67861) - : c <= 67880))))))))))))))); + : c <= 67883))))))))))))))); } static inline bool sym_identifier_character_set_4(int32_t c) { @@ -6770,7 +6770,7 @@ static inline bool sym_identifier_character_set_4(int32_t c) { : (c <= 67742 || (c >= 67808 && c <= 67826))) : (c <= 67829 || (c < 67872 ? (c >= 67840 && c <= 67861) - : c <= 67880))))))))))))))); + : c <= 67883))))))))))))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { From e23cdc72ad33ed08ca47a65a24bff31405455948 Mon Sep 17 00:00:00 2001 From: Andreas Humenberger Date: Wed, 22 Feb 2023 05:22:04 +0100 Subject: [PATCH 23/23] fix, Local variable declaration with generic types and scoped type identifier This change partially reverts a change from #125 which caused the regression. The test case introduced by #125 still exists and works. Fixes #138 --- grammar.js | 4 +- src/grammar.json | 102 +++++++++++++++++------------------- src/parser.c | 16 +++--- test/corpus/expressions.txt | 50 ++++++++++++++++++ 4 files changed, 109 insertions(+), 63 deletions(-) diff --git a/grammar.js b/grammar.js index d932d43d6..7de9257e2 100644 --- a/grammar.js +++ b/grammar.js @@ -360,7 +360,7 @@ module.exports = grammar({ optional($.class_body) )), - field_access: $ => prec.dynamic(PREC.OBJ_ACCESS, seq( + field_access: $ => seq( field('object', choice($.primary_expression, $.super)), optional(seq( '.', @@ -368,7 +368,7 @@ module.exports = grammar({ )), '.', field('field', choice($.identifier, $._reserved_identifier, $.this)) - )), + ), array_access: $ => seq( field('array', $.primary_expression), diff --git a/src/grammar.json b/src/grammar.json index ac49b90e5..8dd9cc37b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2749,76 +2749,72 @@ } }, "field_access": { - "type": "PREC_DYNAMIC", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "object", - "content": { - "type": "CHOICE", + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "super" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "primary_expression" + "type": "STRING", + "value": "." }, { "type": "SYMBOL", "name": "super" } ] + }, + { + "type": "BLANK" } - }, - { + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "field", + "content": { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "super" - } - ] + "type": "SYMBOL", + "name": "identifier" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + { + "type": "SYMBOL", + "name": "this" } ] - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "field", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - { - "type": "SYMBOL", - "name": "this" - } - ] - } } - ] - } + } + ] }, "array_access": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index f25dc1521..d8165f5e3 100644 --- a/src/parser.c +++ b/src/parser.c @@ -66657,10 +66657,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(687), [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 31), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .dynamic_precedence = 16, .production_id = 32), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 32), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 32), [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), @@ -66668,10 +66668,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 105), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .dynamic_precedence = 16, .production_id = 106), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 105), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 105), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 106), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 106), [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 72), [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 72), [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index aba0a2978..852d9caae 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -1164,3 +1164,53 @@ $cibleVisée2 = 2; (assignment_expression (identifier) (decimal_integer_literal)))) + +================================================================================ +Local variable declaration with scoped type identifiers +================================================================================ + +util.List x = null; +java.util.List x = null; +java.util.List x = null; + +-------------------------------------------------------------------------------- + +(program + (local_variable_declaration + (generic_type + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_arguments + (type_identifier))) + (variable_declarator + (identifier) + (null_literal))) + (local_variable_declaration + (generic_type + (scoped_type_identifier + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_identifier)) + (type_arguments + (type_identifier))) + (variable_declarator + (identifier) + (null_literal))) + (local_variable_declaration + (generic_type + (scoped_type_identifier + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_identifier)) + (type_arguments + (scoped_type_identifier + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_identifier)))) + (variable_declarator + (identifier) + (null_literal))))